Rev 1525 | Rev 3278 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1135 | cbradney | 1 | <!DOCTYPE TS><TS> |
2 | <context> |
||
3 | <name></name> |
||
4 | <message> |
||
5 | <source>getColorNames() -> list |
||
6 | |||
7 | Returns a list containing the names of all defined colors in the document. |
||
8 | If no document is open, returns a list of the default document colors. |
||
9 | </source> |
||
10 | <translation type="unfinished"></translation> |
||
11 | </message> |
||
12 | <message> |
||
13 | <source>newDocDialog() -> bool |
||
14 | |||
15 | Displays the "New Document" dialog box. Creates a new document if the user |
||
16 | accepts the settings. Does not create a document if the user presses cancel. |
||
17 | Returns true if a new document was created. |
||
18 | </source> |
||
19 | <translation type="unfinished"></translation> |
||
20 | </message> |
||
21 | <message> |
||
22 | <source>getFillColor(["name"]) -> string |
||
23 | |||
24 | Returns the name of the fill color of the object "name". |
||
25 | If "name" is not given the currently selected item is used. |
||
26 | </source> |
||
27 | <translation type="unfinished"></translation> |
||
28 | </message> |
||
29 | <message> |
||
30 | <source>moveObject(dx, dy [, "name"]) |
||
31 | |||
32 | Moves the object "name" by dx and dy relative to its current position. The |
||
33 | distances are expressed in the current measurement unit of the document (see |
||
34 | UNIT constants). If "name" is not given the currently selected item is used. |
||
35 | If the object "name" belongs to a group, the whole group is moved. |
||
36 | </source> |
||
37 | <translation type="unfinished"></translation> |
||
38 | </message> |
||
39 | <message> |
||
40 | <source>setRedraw(bool) |
||
41 | |||
42 | Disables page redraw when bool = False, otherwise redrawing is enabled. |
||
43 | This change will persist even after the script exits, so make sure to call |
||
44 | setRedraw(True) in a finally: clause at the top level of your script. |
||
45 | </source> |
||
46 | <translation type="unfinished"></translation> |
||
47 | </message> |
||
48 | <message> |
||
49 | <source>createRect(x, y, width, height, ["name"]) -> string |
||
50 | |||
51 | Creates a new rectangle on the current page and returns its name. The |
||
52 | coordinates are given in the current measurement units of the document |
||
53 | (see UNIT constants). "name" should be a unique identifier for the object |
||
54 | because you need this name to reference that object in future. If "name" |
||
55 | is not given Scribus will create one for you. |
||
56 | |||
57 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
58 | </source> |
||
59 | <translation type="unfinished"></translation> |
||
60 | </message> |
||
61 | <message> |
||
62 | <source>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"]) |
||
63 | |||
64 | Sets the gradient fill of the object "name" to type. Color descriptions are |
||
65 | the same as for setFillColor() and setFillShade(). See the constants for |
||
66 | available types (FILL_<type>). |
||
67 | </source> |
||
68 | <translation type="unfinished"></translation> |
||
69 | </message> |
||
70 | <message> |
||
71 | <source>getFontSize(["name"]) -> float |
||
72 | |||
73 | Returns the font size in points for the text frame "name". If this text |
||
74 | frame has some text selected the value assigned to the first character of |
||
75 | the selection is returned. |
||
76 | If "name" is not given the currently selected item is used. |
||
77 | </source> |
||
78 | <translation type="unfinished"></translation> |
||
79 | </message> |
||
80 | <message> |
||
81 | <source>messagebarText("string") |
||
82 | |||
83 | Writes the "string" into the Scribus message bar (status line). The text |
||
84 | must be UTF8 encoded or 'unicode' string(recommended). |
||
85 | </source> |
||
86 | <translation type="unfinished"></translation> |
||
87 | </message> |
||
1525 | cbradney | 88 | <message> |
89 | <source>newDoc(size, margins, orientation, firstPageNumber, |
||
90 | unit, facingPages, firstSideLeft) -> bool |
||
91 | |||
92 | Creates a new document and returns true if successful. The parameters have the |
||
93 | following meaning: |
||
94 | |||
95 | size = A tuple (width, height) describing the size of the document. You can |
||
96 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
||
97 | |||
98 | margins = A tuple (left, right, top, bottom) describing the document |
||
99 | margins |
||
100 | |||
101 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
102 | |||
103 | firstPageNumer = is the number of the first page in the document used for |
||
104 | pagenumbering. While you'll usually want 1, it's useful to have higher |
||
105 | numbers if you're creating a document in several parts. |
||
106 | |||
107 | unit: this value sets the measurement units used by the document. Use a |
||
108 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
109 | UNIT_PICAS, UNIT_POINTS. |
||
110 | |||
111 | facingPages = FACINGPAGES, NOFACINGPAGES |
||
112 | |||
113 | firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT |
||
114 | |||
115 | The values for width, height and the margins are expressed in the given unit |
||
116 | for the document. PAPER_* constants are expressed in points. If your document |
||
117 | is not in points, make sure to account for this. |
||
118 | |||
119 | example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
||
120 | FACINGPAGES, FIRSTPAGERIGHT) |
||
121 | </source> |
||
122 | <translation type="unfinished"></translation> |
||
123 | </message> |
||
3064 | cbradney | 124 | <message> |
125 | <source>newPage(where [,"masterpage"]) |
||
126 | |||
127 | Creates a new page. If "where" is -1 the new Page is appended to the |
||
128 | document, otherwise the new page is inserted before "where". Page numbers are |
||
129 | counted from 1 upwards, no matter what the displayed first page number of your |
||
130 | document is. The optional parameter "masterpage" specifies the name of the |
||
131 | master page for the new page. |
||
132 | |||
133 | May raise IndexError if the page number is out of range |
||
134 | </source> |
||
135 | <translation type="unfinished"></translation> |
||
136 | </message> |
||
137 | <message> |
||
138 | <source>importSVG("string") |
||
139 | |||
140 | The "string" must be a valid filename for a SVG image. The text |
||
141 | must be UTF8 encoded or 'unicode' string(recommended). |
||
142 | </source> |
||
143 | <translation type="unfinished"></translation> |
||
144 | </message> |
||
1135 | cbradney | 145 | </context> |
146 | <context> |
||
147 | <name>@default</name> |
||
148 | <message> |
||
149 | <source>getColor("name") -> tuple |
||
150 | |||
151 | Returns a tuple (C, M, Y, K) containing the four color components of the |
||
152 | color "name" from the current document. If no document is open, returns |
||
153 | the value of the named color from the default document colors. |
||
154 | |||
155 | May raise NotFoundError if the named color wasn't found. |
||
156 | May raise ValueError if an invalid color name is specified. |
||
157 | </source> |
||
158 | <translation type="unfinished"></translation> |
||
159 | </message> |
||
160 | <message> |
||
161 | <source>changeColor("name", c, m, y, k) |
||
162 | |||
163 | Changes the color "name" to the specified CMYK value. The color value is |
||
164 | defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black. |
||
165 | Color components should be in the range from 0 to 255. |
||
166 | |||
167 | May raise NotFoundError if the named color wasn't found. |
||
168 | May raise ValueError if an invalid color name is specified. |
||
169 | </source> |
||
170 | <translation type="unfinished"></translation> |
||
171 | </message> |
||
172 | <message> |
||
173 | <source>deleteColor("name", "replace") |
||
174 | |||
175 | Deletes the color "name". Every occurence of that color is replaced by the |
||
176 | color "replace". If not specified, "replace" defaults to the color |
||
177 | "None" - transparent. |
||
178 | |||
179 | deleteColor works on the default document colors if there is no document open. |
||
180 | In that case, "replace", if specified, has no effect. |
||
181 | |||
182 | May raise NotFoundError if a named color wasn't found. |
||
183 | May raise ValueError if an invalid color name is specified. |
||
184 | </source> |
||
185 | <translation type="unfinished"></translation> |
||
186 | </message> |
||
187 | <message> |
||
188 | <source>replaceColor("name", "replace") |
||
189 | |||
190 | Every occurence of the color "name" is replaced by the color "replace". |
||
191 | |||
192 | May raise NotFoundError if a named color wasn't found. |
||
193 | May raise ValueError if an invalid color name is specified. |
||
194 | </source> |
||
195 | <translation type="unfinished"></translation> |
||
196 | </message> |
||
197 | <message> |
||
198 | <source>messageBox("caption", "message", |
||
199 | icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT, |
||
200 | button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer |
||
201 | |||
202 | Displays a message box with the title "caption", the message "message", and |
||
203 | an icon "icon" and up to 3 buttons. By default no icon is used and a single |
||
204 | button, OK, is displayed. Only the caption and message arguments are required, |
||
205 | though setting an icon and appropriate button(s) is strongly |
||
206 | recommended. The message text may contain simple HTML-like markup. |
||
207 | |||
208 | Returns the number of the button the user pressed. Button numbers start |
||
209 | at 1. |
||
210 | |||
211 | For the icon and the button parameters there are predefined constants available |
||
212 | with the same names as in the Qt Documentation. These are the BUTTON_* and |
||
213 | ICON_* constants defined in the module. There are also two extra constants that |
||
214 | can be binary-ORed with button constants: |
||
215 | BUTTONOPT_DEFAULT Pressing enter presses this button. |
||
216 | BUTTONOPT_ESCAPE Pressing escape presses this button. |
||
217 | |||
218 | Usage examples: |
||
219 | result = messageBox('Script failed', |
||
220 | 'This script only works when you have a text frame selected.', |
||
221 | ICON_ERROR) |
||
222 | result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>', |
||
223 | ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
||
224 | BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
||
225 | |||
226 | Defined button and icon constants: |
||
227 | BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO, |
||
228 | BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
||
229 | ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL. |
||
230 | </source> |
||
231 | <translation type="unfinished"></translation> |
||
232 | </message> |
||
233 | <message> |
||
234 | <source>valueDialog(caption, message [,defaultvalue]) -> string |
||
235 | |||
236 | Shows the common 'Ask for string' dialog and returns its value as a string |
||
237 | Parameters: window title, text in the window and optional 'default' value. |
||
238 | |||
239 | Example: valueDialog('title', 'text in the window', 'optional') |
||
240 | </source> |
||
241 | <translation type="unfinished"></translation> |
||
242 | </message> |
||
243 | <message> |
||
244 | <source>closeDoc() |
||
245 | |||
246 | Closes the current document without prompting to save. |
||
247 | |||
248 | May throw NoDocOpenError if there is no document to close |
||
249 | </source> |
||
250 | <translation type="unfinished"></translation> |
||
251 | </message> |
||
252 | <message> |
||
253 | <source>haveDoc() -> bool |
||
254 | |||
255 | Returns true if there is a document open. |
||
256 | </source> |
||
257 | <translation type="unfinished"></translation> |
||
258 | </message> |
||
259 | <message> |
||
260 | <source>openDoc("name") |
||
261 | |||
262 | Opens the document "name". |
||
263 | |||
264 | May raise ScribusError if the document could not be opened. |
||
265 | </source> |
||
266 | <translation type="unfinished"></translation> |
||
267 | </message> |
||
268 | <message> |
||
269 | <source>saveDoc() |
||
270 | |||
271 | Saves the current document with its current name, returns true if successful. |
||
272 | If the document has not already been saved, this may bring up an interactive |
||
273 | save file dialog. |
||
274 | |||
275 | If the save fails, there is currently no way to tell. |
||
276 | </source> |
||
277 | <translation type="unfinished"></translation> |
||
278 | </message> |
||
279 | <message> |
||
280 | <source>saveDocAs("name") |
||
281 | |||
282 | Saves the current document under the new name "name" (which may be a full or |
||
283 | relative path). |
||
284 | |||
285 | May raise ScribusError if the save fails. |
||
286 | </source> |
||
287 | <translation type="unfinished"></translation> |
||
288 | </message> |
||
289 | <message> |
||
290 | <source>saveDocAs("author", "info", "description") -> bool |
||
291 | |||
292 | Sets the document information. "Author", "Info", "Description" are |
||
293 | strings. |
||
294 | </source> |
||
295 | <translation type="unfinished"></translation> |
||
296 | </message> |
||
297 | <message> |
||
298 | <source>setMargins(lr, rr, tr, br) |
||
299 | |||
300 | Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br) |
||
301 | margins are given in the measurement units of the document - see UNIT_<type> |
||
302 | constants. |
||
303 | </source> |
||
304 | <translation type="unfinished"></translation> |
||
305 | </message> |
||
306 | <message> |
||
307 | <source>setUnit(type) |
||
308 | |||
309 | Changes the measurement unit of the document. Possible values for "unit" are |
||
310 | defined as constants UNIT_<type>. |
||
311 | |||
312 | May raise ValueError if an invalid unit is passed. |
||
313 | </source> |
||
314 | <translation type="unfinished"></translation> |
||
315 | </message> |
||
316 | <message> |
||
317 | <source>getUnit() -> integer (Scribus unit constant) |
||
318 | |||
319 | Returns the measurement units of the document. The returned value will be one |
||
320 | of the UNIT_* constants: |
||
321 | UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS. |
||
322 | </source> |
||
323 | <translation type="unfinished"></translation> |
||
324 | </message> |
||
325 | <message> |
||
326 | <source>loadStylesFromFile("filename") |
||
327 | |||
328 | Loads paragraph styles from the Scribus document at "filename" into the |
||
329 | current document. |
||
330 | </source> |
||
331 | <translation type="unfinished"></translation> |
||
332 | </message> |
||
333 | <message> |
||
334 | <source>setDocType(facingPages, firstPageLeft) |
||
335 | |||
336 | Sets the document type. To get facing pages set the first parameter to |
||
337 | FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead. If you want |
||
338 | to be the first page a left side set the second parameter to FIRSTPAGELEFT, for |
||
339 | a right page use FIRSTPAGERIGHT. |
||
340 | </source> |
||
341 | <translation type="unfinished"></translation> |
||
342 | </message> |
||
343 | <message> |
||
344 | <source>getLineColor(["name"]) -> string |
||
345 | |||
346 | Returns the name of the line color of the object "name". |
||
347 | If "name" is not given the currently selected item is used. |
||
348 | </source> |
||
349 | <translation type="unfinished"></translation> |
||
350 | </message> |
||
351 | <message> |
||
352 | <source>getLineWidth(["name"]) -> integer |
||
353 | |||
354 | Returns the line width of the object "name". If "name" |
||
355 | is not given the currently selected Item is used. |
||
356 | </source> |
||
357 | <translation type="unfinished"></translation> |
||
358 | </message> |
||
359 | <message> |
||
360 | <source>getLineShade(["name"]) -> integer |
||
361 | |||
362 | Returns the shading value of the line color of the object "name". |
||
363 | If "name" is not given the currently selected item is used. |
||
364 | </source> |
||
365 | <translation type="unfinished"></translation> |
||
366 | </message> |
||
367 | <message> |
||
368 | <source>getLineJoin(["name"]) -> integer (see contants) |
||
369 | |||
370 | Returns the line join style of the object "name". If "name" is not given |
||
371 | the currently selected item is used. The join types are: |
||
372 | JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND |
||
373 | </source> |
||
374 | <translation type="unfinished"></translation> |
||
375 | </message> |
||
376 | <message> |
||
377 | <source>getLineEnd(["name"]) -> integer (see constants) |
||
378 | |||
379 | Returns the line cap style of the object "name". If "name" is not given the |
||
380 | currently selected item is used. The cap types are: |
||
381 | CAP_FLAT, CAP_ROUND, CAP_SQUARE |
||
382 | </source> |
||
383 | <translation type="unfinished"></translation> |
||
384 | </message> |
||
385 | <message> |
||
386 | <source>getLineStyle(["name"]) -> integer (see constants) |
||
387 | |||
388 | Returns the line style of the object "name". If "name" is not given the |
||
389 | currently selected item is used. Line style constants are: |
||
390 | LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID |
||
391 | </source> |
||
392 | <translation type="unfinished"></translation> |
||
393 | </message> |
||
394 | <message> |
||
395 | <source>getFillShade(["name"]) -> integer |
||
396 | |||
397 | Returns the shading value of the fill color of the object "name". |
||
398 | If "name" is not given the currently selected item is used. |
||
399 | </source> |
||
400 | <translation type="unfinished"></translation> |
||
401 | </message> |
||
402 | <message> |
||
403 | <source>getImageScale(["name"]) -> (x,y) |
||
404 | |||
405 | Returns a (x, y) tuple containing the scaling values of the image frame |
||
406 | "name". If "name" is not given the currently selected item is used. |
||
407 | </source> |
||
408 | <translation type="unfinished"></translation> |
||
409 | </message> |
||
410 | <message> |
||
411 | <source>getImageName(["name"]) -> string |
||
412 | |||
413 | Returns the filename for the image in the image frame. If "name" is not |
||
414 | given the currently selected item is used. |
||
415 | </source> |
||
416 | <translation type="unfinished"></translation> |
||
417 | </message> |
||
418 | <message> |
||
419 | <source>getSize(["name"]) -> (width,height) |
||
420 | |||
421 | Returns a (width, height) tuple with the size of the object "name". |
||
422 | If "name" is not given the currently selected item is used. The size is |
||
423 | expressed in the current measurement unit of the document - see UNIT_<type> |
||
424 | for reference. |
||
425 | </source> |
||
426 | <translation type="unfinished"></translation> |
||
427 | </message> |
||
428 | <message> |
||
429 | <source>getRotation(["name"]) -> integer |
||
430 | |||
431 | Returns the rotation of the object "name". The value is expressed in degrees, |
||
432 | and clockwise is positive. If "name" is not given the currently selected item |
||
433 | is used. |
||
434 | </source> |
||
435 | <translation type="unfinished"></translation> |
||
436 | </message> |
||
437 | <message> |
||
438 | <source>getAllObjects() -> list |
||
439 | |||
440 | Returns a list containing the names of all objects on the current page. |
||
441 | </source> |
||
442 | <translation type="unfinished"></translation> |
||
443 | </message> |
||
444 | <message> |
||
445 | <source>moveObjectAbs(x, y [, "name"]) |
||
446 | |||
447 | Moves the object "name" to a new location. The coordinates are expressed in |
||
448 | the current measurement unit of the document (see UNIT constants). If "name" |
||
449 | is not given the currently selected item is used. If the object "name" |
||
450 | belongs to a group, the whole group is moved. |
||
451 | </source> |
||
452 | <translation type="unfinished"></translation> |
||
453 | </message> |
||
454 | <message> |
||
455 | <source>rotateObject(rot [, "name"]) |
||
456 | |||
457 | Rotates the object "name" by "rot" degrees relatively. The object is |
||
458 | rotated by the vertex that is currently selected as the rotation point - by |
||
459 | default, the top left vertext at zero rotation. Positive values mean counter |
||
460 | clockwise rotation when the default rotation point is used. If "name" is not |
||
461 | given the currently selected item is used. |
||
462 | </source> |
||
463 | <translation type="unfinished"></translation> |
||
464 | </message> |
||
465 | <message> |
||
466 | <source>sizeObject(width, height [, "name"]) |
||
467 | |||
468 | Resizes the object "name" to the given width and height. If "name" |
||
469 | is not given the currently selected item is used. |
||
470 | </source> |
||
471 | <translation type="unfinished"></translation> |
||
472 | </message> |
||
473 | <message> |
||
474 | <source>getSelectedObject([nr]) -> string |
||
475 | |||
476 | Returns the name of the selected object. "nr" if given indicates the number |
||
477 | of the selected object, e.g. 0 means the first selected object, 1 means the |
||
478 | second selected Object and so on. |
||
479 | </source> |
||
480 | <translation type="unfinished"></translation> |
||
481 | </message> |
||
482 | <message> |
||
483 | <source>selectionCount() -> integer |
||
484 | |||
485 | Returns the number of selected objects. |
||
486 | </source> |
||
487 | <translation type="unfinished"></translation> |
||
488 | </message> |
||
489 | <message> |
||
490 | <source>selectObject("name") |
||
491 | |||
492 | Selects the object with the given "name". |
||
493 | </source> |
||
494 | <translation type="unfinished"></translation> |
||
495 | </message> |
||
496 | <message> |
||
497 | <source>deselectAll() |
||
498 | |||
499 | Deselects all objects in the whole document. |
||
500 | </source> |
||
501 | <translation type="unfinished"></translation> |
||
502 | </message> |
||
503 | <message> |
||
504 | <source>groupObjects(list) |
||
505 | |||
506 | Groups the objects named in "list" together. "list" must contain the names |
||
507 | of the objects to be grouped. If "list" is not given the currently selected |
||
508 | items are used. |
||
509 | </source> |
||
510 | <translation type="unfinished"></translation> |
||
511 | </message> |
||
512 | <message> |
||
513 | <source>unGroupObjects("name") |
||
514 | |||
515 | Destructs the group the object "name" belongs to.If "name" is not given the currently selected item is used.</source> |
||
516 | <translation type="unfinished"></translation> |
||
517 | </message> |
||
518 | <message> |
||
519 | <source>scaleGroup(factor [,"name"]) |
||
520 | |||
521 | Scales the group the object "name" belongs to. Values greater than 1 enlarge |
||
522 | the group, values smaller than 1 make the group smaller e.g a value of 0.5 |
||
523 | scales the group to 50 % of its original size, a value of 1.5 scales the group |
||
524 | to 150 % of its original size. The value for "factor" must be greater than |
||
525 | 0. If "name" is not given the currently selected item is used. |
||
526 | |||
527 | May raise ValueError if an invalid scale factor is passed. |
||
528 | </source> |
||
529 | <translation type="unfinished"></translation> |
||
530 | </message> |
||
531 | <message> |
||
532 | <source>loadImage("filename" [, "name"]) |
||
533 | |||
534 | Loads the picture "picture" into the image frame "name". If "name" is |
||
535 | not given the currently selected item is used. |
||
536 | |||
537 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
538 | </source> |
||
539 | <translation type="unfinished"></translation> |
||
540 | </message> |
||
541 | <message> |
||
542 | <source>scaleImage(x, y [, "name"]) |
||
543 | |||
544 | Sets the scaling factors of the picture in the image frame "name". |
||
545 | If "name" is not given the currently selected item is used. A number of 1 |
||
546 | means 100 %. |
||
547 | |||
548 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
549 | </source> |
||
550 | <translation type="unfinished"></translation> |
||
551 | </message> |
||
552 | <message> |
||
553 | <source>lockObject(["name"]) -> bool |
||
554 | |||
555 | Locks the object "name" if it's unlocked or unlock it if it's locked. |
||
556 | If "name" is not given the currently selected item is used. Returns true |
||
557 | if locked. |
||
558 | </source> |
||
559 | <translation type="unfinished"></translation> |
||
560 | </message> |
||
561 | <message> |
||
562 | <source>isLocked(["name"]) -> bool |
||
563 | |||
564 | Returns true if is the object "name" locked. If "name" is not given the |
||
565 | currently selected item is used. |
||
566 | </source> |
||
567 | <translation type="unfinished"></translation> |
||
568 | </message> |
||
569 | <message> |
||
570 | <source>getFontNames() -> list |
||
571 | |||
572 | Returns a list with the names of all available fonts. |
||
573 | </source> |
||
574 | <translation type="unfinished"></translation> |
||
575 | </message> |
||
576 | <message> |
||
577 | <source>getXFontNames() -> list of tuples |
||
578 | |||
579 | Returns a larger font info. It's a list of the tuples with: |
||
580 | [ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ] |
||
581 | </source> |
||
582 | <translation type="unfinished"></translation> |
||
583 | </message> |
||
584 | <message> |
||
585 | <source>getLayers() -> list |
||
586 | |||
587 | Returns a list with the names of all defined layers. |
||
588 | </source> |
||
589 | <translation type="unfinished"></translation> |
||
590 | </message> |
||
591 | <message> |
||
592 | <source>setActiveLayer("name") |
||
593 | |||
594 | Sets the active layer to the layer named "name". |
||
595 | |||
596 | May raise NotFoundError if the layer can't be found. |
||
597 | May raise ValueError if the layer name isn't acceptable. |
||
598 | </source> |
||
599 | <translation type="unfinished"></translation> |
||
600 | </message> |
||
601 | <message> |
||
602 | <source>getActiveLayer() -> string |
||
603 | |||
604 | Returns the name of the current active layer. |
||
605 | </source> |
||
606 | <translation type="unfinished"></translation> |
||
607 | </message> |
||
608 | <message> |
||
609 | <source>sentToLayer("layer" [, "name"]) |
||
610 | |||
611 | Sends the object "name" to the layer "layer". The layer must exist. |
||
612 | If "name" is not given the currently selected item is used. |
||
613 | |||
614 | May raise NotFoundError if the layer can't be found. |
||
615 | May raise ValueError if the layer name isn't acceptable. |
||
616 | </source> |
||
617 | <translation type="unfinished"></translation> |
||
618 | </message> |
||
619 | <message> |
||
620 | <source>setLayerVisible("layer", visible) |
||
621 | |||
622 | Sets the layer "layer" to be visible or not. If is the visible set to false |
||
623 | the layer is invisible. |
||
624 | |||
625 | May raise NotFoundError if the layer can't be found. |
||
626 | May raise ValueError if the layer name isn't acceptable. |
||
627 | </source> |
||
628 | <translation type="unfinished"></translation> |
||
629 | </message> |
||
630 | <message> |
||
631 | <source>setLayerPrintable("layer", printable) |
||
632 | |||
633 | Sets the layer "layer" to be printable or not. If is the printable set to |
||
634 | false the layer won't be printed. |
||
635 | |||
636 | May raise NotFoundError if the layer can't be found. |
||
637 | May raise ValueError if the layer name isn't acceptable. |
||
638 | </source> |
||
639 | <translation type="unfinished"></translation> |
||
640 | </message> |
||
641 | <message> |
||
642 | <source>deleteLayer("layer") |
||
643 | |||
644 | Deletes the layer with the name "layer". Nothing happens if the layer doesn't |
||
645 | exists or if it's the only layer in the document. |
||
646 | |||
647 | May raise NotFoundError if the layer can't be found. |
||
648 | May raise ValueError if the layer name isn't acceptable. |
||
649 | </source> |
||
650 | <translation type="unfinished"></translation> |
||
651 | </message> |
||
652 | <message> |
||
653 | <source>createLayer(layer) |
||
654 | |||
655 | Creates a new layer with the name "name". |
||
656 | |||
657 | May raise ValueError if the layer name isn't acceptable. |
||
658 | </source> |
||
659 | <translation type="unfinished"></translation> |
||
660 | </message> |
||
661 | <message> |
||
662 | <source>getGuiLanguage() -> string |
||
663 | |||
664 | Returns a string with the -lang value. |
||
665 | </source> |
||
666 | <translation type="unfinished"></translation> |
||
667 | </message> |
||
668 | <message> |
||
669 | <source>createEllipse(x, y, width, height, ["name"]) -> string |
||
670 | |||
671 | Creates a new ellipse on the current page and returns its name. |
||
672 | The coordinates are given in the current measurement units of the document |
||
673 | (see UNIT constants). "name" should be a unique identifier for the object |
||
674 | because you need this name for further referencing of that object. If "name" |
||
675 | is not given Scribus will create one for you. |
||
676 | |||
677 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
678 | </source> |
||
679 | <translation type="unfinished"></translation> |
||
680 | </message> |
||
681 | <message> |
||
682 | <source>createImage(x, y, width, height, ["name"]) -> string |
||
683 | |||
684 | Creates a new picture frame on the current page and returns its name. The |
||
685 | coordinates are given in the current measurement units of the document. |
||
686 | "name" should be a unique identifier for the object because you need this |
||
687 | name for further access to that object. If "name" is not given Scribus will |
||
688 | create one for you. |
||
689 | |||
690 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
691 | </source> |
||
692 | <translation type="unfinished"></translation> |
||
693 | </message> |
||
694 | <message> |
||
695 | <source>createText(x, y, width, height, ["name"]) -> string |
||
696 | |||
697 | Creates a new text frame on the actual page and returns its name. |
||
698 | The coordinates are given in the actual measurement unit of the document (see |
||
699 | UNIT constants). "name" should be a unique identifier for the object because |
||
700 | you need this name for further referencing of that object. If "name" is not |
||
701 | given Scribus will create one for you. |
||
702 | |||
703 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
704 | </source> |
||
705 | <translation type="unfinished"></translation> |
||
706 | </message> |
||
707 | <message> |
||
708 | <source>createLine(x1, y1, x2, y2, ["name"]) -> string |
||
709 | |||
710 | Creates a new line from the point(x1, y1) to the point(x2, y2) and returns |
||
711 | its name. The coordinates are given in the current measurement unit of the |
||
712 | document (see UNIT constants). "name" should be a unique identifier for the |
||
713 | object because you need this name for further access to that object. If |
||
714 | "name" is not given Scribus will create one for you. |
||
715 | |||
716 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
717 | </source> |
||
718 | <translation type="unfinished"></translation> |
||
719 | </message> |
||
720 | <message> |
||
721 | <source>createPolyLine(list, ["name"]) -> string |
||
722 | |||
723 | Creates a new polyline and returns its name. The points for the polyline are |
||
724 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
725 | The coordinates are given in the current measurement units of the document (see |
||
726 | UNIT constants). "name" should be a unique identifier for the object because |
||
727 | you need this name for further access to that object. If "name" is not given |
||
728 | Scribus will create one for you. |
||
729 | |||
730 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
731 | May raise ValueError if an insufficient number of points is passed or if |
||
732 | the number of values passed don't group into points without leftovers. |
||
733 | </source> |
||
734 | <translation type="unfinished"></translation> |
||
735 | </message> |
||
736 | <message> |
||
737 | <source>createPolygon(list, ["name"]) -> string |
||
738 | |||
739 | Creates a new polygon and returns its name. The points for the polygon are |
||
740 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
741 | At least three points are required. There is no need to repeat the first point |
||
742 | to close the polygon. The polygon is automatically closed by connecting the |
||
743 | first and the last point. The coordinates are given in the current measurement |
||
744 | units of the document (see UNIT constants). "name" should be a unique |
||
745 | identifier for the object because you need this name for further access to that |
||
746 | object. If "name" is not given Scribus will create one for you. |
||
747 | |||
748 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
749 | May raise ValueError if an insufficient number of points is passed or if |
||
750 | the number of values passed don't group into points without leftovers. |
||
751 | </source> |
||
752 | <translation type="unfinished"></translation> |
||
753 | </message> |
||
754 | <message> |
||
755 | <source>createBezierLine(list, ["name"]) -> string |
||
756 | |||
757 | Creates a new bezier curve and returns its name. The points for the bezier |
||
758 | curve are stored in the list "list" in the following order: |
||
759 | [x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn] |
||
760 | In the points list, x and y mean the x and y coordinates of the point and kx |
||
761 | and ky meaning the control point for the curve. The coordinates are given in |
||
762 | the current measurement units of the document (see UNIT constants). "name" |
||
763 | should be a unique identifier for the object because you need this name for |
||
764 | further access to that object. If "name" is not given Scribus will create one |
||
765 | for you. |
||
766 | |||
767 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
768 | May raise ValueError if an insufficient number of points is passed or if |
||
769 | the number of values passed don't group into points without leftovers. |
||
770 | </source> |
||
771 | <translation type="unfinished"></translation> |
||
772 | </message> |
||
773 | <message> |
||
774 | <source>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string |
||
775 | |||
776 | Creates a new pathText by merging the two objects "textbox" and |
||
777 | "beziercurve" and returns its name. The coordinates are given in the current |
||
778 | measurement unit of the document (see UNIT constants). "name" should be a |
||
779 | unique identifier for the object because you need this name for further access |
||
780 | to that object. If "name" is not given Scribus will create one for you. |
||
781 | |||
782 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
783 | May raise NotFoundError if one or both of the named base object don't exist. |
||
784 | </source> |
||
785 | <translation type="unfinished"></translation> |
||
786 | </message> |
||
787 | <message> |
||
788 | <source>deleteObject(["name"]) |
||
789 | |||
790 | Deletes the item with the name "name". If "name" is not given the currently |
||
791 | selected item is deleted. |
||
792 | </source> |
||
793 | <translation type="unfinished"></translation> |
||
794 | </message> |
||
795 | <message> |
||
796 | <source>textFlowsAroundFrame("name" [, state]) |
||
797 | |||
798 | Enables/disables "Text Flows Around Frame" feature for object "name". |
||
799 | Called with parameters string name and optional boolean "state". If "state" |
||
800 | is not passed, text flow is toggled. |
||
801 | </source> |
||
802 | <translation type="unfinished"></translation> |
||
803 | </message> |
||
804 | <message> |
||
805 | <source>objectExists(["name"]) -> bool |
||
806 | |||
807 | Test if an object with specified name really exists in the document. |
||
808 | The optional parameter is the object name. When no object name is given, |
||
809 | returns True if there is something selected. |
||
810 | </source> |
||
811 | <translation type="unfinished"></translation> |
||
812 | </message> |
||
813 | <message> |
||
814 | <source>setStyle("style" [, "name"]) |
||
815 | |||
816 | Apply the named "style" to the object named "name". If is no object name |
||
817 | given, it's applied on the selected object. |
||
818 | </source> |
||
819 | <translation type="unfinished"></translation> |
||
820 | </message> |
||
821 | <message> |
||
822 | <source>getAllStyles() -> list |
||
823 | |||
824 | Return a list of the names of all paragraph styles in the current document. |
||
825 | </source> |
||
826 | <translation type="unfinished"></translation> |
||
827 | </message> |
||
828 | <message> |
||
829 | <source>currentPage() -> integer |
||
830 | |||
831 | Returns the number of the current working page. Page numbers are counted from 1 |
||
832 | upwards, no matter what the displayed first page number of your document is. |
||
833 | </source> |
||
834 | <translation type="unfinished"></translation> |
||
835 | </message> |
||
836 | <message> |
||
837 | <source>redrawAll() |
||
838 | |||
839 | Redraws all pages. |
||
840 | </source> |
||
841 | <translation type="unfinished"></translation> |
||
842 | </message> |
||
843 | <message> |
||
844 | <source>savePageAsEPS("name") |
||
845 | |||
846 | Saves the current page as an EPS to the file "name". |
||
847 | |||
848 | May raise ScribusError if the save failed. |
||
849 | </source> |
||
850 | <translation type="unfinished"></translation> |
||
851 | </message> |
||
852 | <message> |
||
853 | <source>deletePage(nr) |
||
854 | |||
855 | Deletes the given page. Does nothing if the document contains only one page. |
||
856 | Page numbers are counted from 1 upwards, no matter what the displayed first |
||
857 | page number is. |
||
858 | |||
859 | May raise IndexError if the page number is out of range |
||
860 | </source> |
||
861 | <translation type="unfinished"></translation> |
||
862 | </message> |
||
863 | <message> |
||
864 | <source>gotoPage(nr) |
||
865 | |||
866 | Moves to the page "nr" (that is, makes the current page "nr"). Note that |
||
867 | gotoPage doesn't (curently) change the page the user's view is displaying, it |
||
868 | just sets the page that script commands will operates on. |
||
869 | |||
870 | May raise IndexError if the page number is out of range. |
||
871 | </source> |
||
872 | <translation type="unfinished"></translation> |
||
873 | </message> |
||
874 | <message> |
||
875 | <source>pageCount() -> integer |
||
876 | |||
877 | Returns the number of pages in the document. |
||
878 | </source> |
||
879 | <translation type="unfinished"></translation> |
||
880 | </message> |
||
881 | <message> |
||
882 | <source>getHGuides() -> list |
||
883 | |||
884 | Returns a list containing positions of the horizontal guides. Values are in the |
||
885 | document's current units - see UNIT_<type> constants. |
||
886 | </source> |
||
887 | <translation type="unfinished"></translation> |
||
888 | </message> |
||
889 | <message> |
||
890 | <source>setHGuides(list) |
||
891 | |||
892 | Sets horizontal guides. Input parameter must be a list of guide positions |
||
893 | measured in the current document units - see UNIT_<type> constants. |
||
894 | |||
895 | Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost |
||
896 | setHGuides([90,250]) # replace current guides entirely |
||
897 | </source> |
||
898 | <translation type="unfinished"></translation> |
||
899 | </message> |
||
900 | <message> |
||
901 | <source>getVGuides() |
||
902 | |||
903 | See getHGuides. |
||
904 | </source> |
||
905 | <translation type="unfinished"></translation> |
||
906 | </message> |
||
907 | <message> |
||
908 | <source>setVGuides() |
||
909 | |||
910 | See setHGuides. |
||
911 | </source> |
||
912 | <translation type="unfinished"></translation> |
||
913 | </message> |
||
914 | <message> |
||
915 | <source>getPageSize() -> tuple |
||
916 | |||
917 | Returns a tuple with page dimensions measured in the document's current units. |
||
918 | See UNIT_<type> constants and getPageMargins() |
||
919 | </source> |
||
920 | <translation type="unfinished"></translation> |
||
921 | </message> |
||
922 | <message> |
||
923 | <source>getPageItems() -> list |
||
924 | |||
925 | Returns a list of tuples with items on the current page. The tuple is: |
||
926 | (name, objectType, order) E.g. [('Text1', 4, 0), ('Image1', 2, 1)] |
||
927 | means that object named 'Text1' is a text frame (type 4) and is the first at |
||
928 | the page... |
||
929 | </source> |
||
930 | <translation type="unfinished"></translation> |
||
931 | </message> |
||
932 | <message> |
||
933 | <source>setFillColor("color", ["name"]) |
||
934 | |||
935 | Sets the fill color of the object "name" to the color "color". "color" |
||
936 | is the name of one of the defined colors. If "name" is not given the |
||
937 | currently selected item is used. |
||
938 | </source> |
||
939 | <translation type="unfinished"></translation> |
||
940 | </message> |
||
941 | <message> |
||
942 | <source>setLineColor("color", ["name"]) |
||
943 | |||
944 | Sets the line color of the object "name" to the color "color". If "name" |
||
945 | is not given the currently selected item is used. |
||
946 | </source> |
||
947 | <translation type="unfinished"></translation> |
||
948 | </message> |
||
949 | <message> |
||
950 | <source>setLineWidth(width, ["name"]) |
||
951 | |||
952 | Sets line width of the object "name" to "width". "width" must be in the |
||
953 | range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not |
||
954 | given the currently selected item is used. |
||
955 | |||
956 | May raise ValueError if the line width is out of bounds. |
||
957 | </source> |
||
958 | <translation type="unfinished"></translation> |
||
959 | </message> |
||
960 | <message> |
||
961 | <source>setLineShade(shade, ["name"]) |
||
962 | |||
963 | Sets the shading of the line color of the object "name" to "shade". |
||
964 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
965 | (full color intensity). If "name" is not given the currently selected item |
||
966 | is used. |
||
967 | |||
968 | May raise ValueError if the line shade is out of bounds. |
||
969 | </source> |
||
970 | <translation type="unfinished"></translation> |
||
971 | </message> |
||
972 | <message> |
||
973 | <source>setLineJoin(join, ["name"]) |
||
974 | |||
975 | Sets the line join style of the object "name" to the style "join". |
||
976 | If "name" is not given the currently selected item is used. There are |
||
977 | predefined constants for join - JOIN_<type>. |
||
978 | </source> |
||
979 | <translation type="unfinished"></translation> |
||
980 | </message> |
||
981 | <message> |
||
982 | <source>setLineEnd(endtype, ["name"]) |
||
983 | |||
984 | Sets the line cap style of the object "name" to the style "cap". |
||
985 | If "name" is not given the currently selected item is used. There are |
||
986 | predefined constants for "cap" - CAP_<type>. |
||
987 | </source> |
||
988 | <translation type="unfinished"></translation> |
||
989 | </message> |
||
990 | <message> |
||
991 | <source>setLineStyle(style, ["name"]) |
||
992 | |||
993 | Sets the line style of the object "name" to the style "style". If "name" |
||
994 | is not given the currently selected item is used. There are predefined |
||
995 | constants for "style" - LINE_<style>. |
||
996 | </source> |
||
997 | <translation type="unfinished"></translation> |
||
998 | </message> |
||
999 | <message> |
||
1000 | <source>setFillShade(shade, ["name"]) |
||
1001 | |||
1002 | Sets the shading of the fill color of the object "name" to "shade". |
||
1003 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
1004 | (full Color intensity). If "name" is not given the currently selected |
||
1005 | Item is used. |
||
1006 | |||
1007 | May raise ValueError if the fill shade is out of bounds. |
||
1008 | </source> |
||
1009 | <translation type="unfinished"></translation> |
||
1010 | </message> |
||
1011 | <message> |
||
1012 | <source>setCornerRadius(radius, ["name"]) |
||
1013 | |||
1014 | Sets the corner radius of the object "name". The radius is expressed |
||
1015 | in points. If "name" is not given the currently selected item is used. |
||
1016 | |||
1017 | May raise ValueError if the corner radius is negative. |
||
1018 | </source> |
||
1019 | <translation type="unfinished"></translation> |
||
1020 | </message> |
||
1021 | <message> |
||
1022 | <source>setMultiLine("namedStyle", ["name"]) |
||
1023 | |||
1024 | Sets the line style of the object "name" to the named style "namedStyle". |
||
1025 | If "name" is not given the currently selected item is used. |
||
1026 | |||
1027 | May raise NotFoundError if the line style doesn't exist. |
||
1028 | </source> |
||
1029 | <translation type="unfinished"></translation> |
||
1030 | </message> |
||
1031 | <message> |
||
1032 | <source>getFont(["name"]) -> string |
||
1033 | |||
1034 | Returns the font name for the text frame "name". If this text frame |
||
1035 | has some text selected the value assigned to the first character |
||
1036 | of the selection is returned. If "name" is not given the currently |
||
1037 | selected item is used. |
||
1038 | </source> |
||
1039 | <translation type="unfinished"></translation> |
||
1040 | </message> |
||
1041 | <message> |
||
1042 | <source>getTextLength(["name"]) -> integer |
||
1043 | |||
1044 | Returns the length of the text in the text frame "name". |
||
1045 | If "name" is not given the currently selected item is used. |
||
1046 | </source> |
||
1047 | <translation type="unfinished"></translation> |
||
1048 | </message> |
||
1049 | <message> |
||
1050 | <source>getText(["name"]) -> string |
||
1051 | |||
1052 | Returns the text of the text frame "name". If this text frame has some text |
||
1053 | selected, the selected text is returned. All text in the frame, not just |
||
1054 | currently visible text, is returned. If "name" is not given the currently |
||
1055 | selected item is used. |
||
1056 | </source> |
||
1057 | <translation type="unfinished"></translation> |
||
1058 | </message> |
||
1059 | <message> |
||
1060 | <source>getAllText(["name"]) -> string |
||
1061 | |||
1062 | Returns the text of the text frame "name" and of all text frames which are |
||
1063 | linked with this frame. If this textframe has some text selected, the selected |
||
1064 | text is returned. If "name" is not given the currently selected item is |
||
1065 | used. |
||
1066 | </source> |
||
1067 | <translation type="unfinished"></translation> |
||
1068 | </message> |
||
1069 | <message> |
||
1070 | <source>getLineSpacing(["name"]) -> float |
||
1071 | |||
1072 | Returns the line spacing ("leading") of the text frame "name" expressed in |
||
1073 | points. If "name" is not given the currently selected item is used. |
||
1074 | </source> |
||
1075 | <translation type="unfinished"></translation> |
||
1076 | </message> |
||
1077 | <message> |
||
1078 | <source>getColumnGap(["name"]) -> float |
||
1079 | |||
1080 | Returns the column gap size of the text frame "name" expressed in points. If |
||
1081 | "name" is not given the currently selected item is used. |
||
1082 | </source> |
||
1083 | <translation type="unfinished"></translation> |
||
1084 | </message> |
||
1085 | <message> |
||
1086 | <source>getColumns(["name"]) -> integer |
||
1087 | |||
1088 | Gets the number of columns of the text frame "name". If "name" is not |
||
1089 | given the currently selected item is used. |
||
1090 | </source> |
||
1091 | <translation type="unfinished"></translation> |
||
1092 | </message> |
||
1093 | <message> |
||
1094 | <source>setText("text", ["name"]) |
||
1095 | |||
1096 | Sets the text of the text frame "name" to the text of the string "text". |
||
1097 | Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ |
||
1098 | for more details. If "name" is not given the currently selected item is |
||
1099 | used. |
||
1100 | </source> |
||
1101 | <translation type="unfinished"></translation> |
||
1102 | </message> |
||
1103 | <message> |
||
1104 | <source>setFont("font", ["name"]) |
||
1105 | |||
1106 | Sets the font of the text frame "name" to "font". If there is some text |
||
1107 | selected only the selected text is changed. If "name" is not given the |
||
1108 | currently selected item is used. |
||
1109 | |||
1110 | May throw ValueError if the font cannot be found. |
||
1111 | </source> |
||
1112 | <translation type="unfinished"></translation> |
||
1113 | </message> |
||
1114 | <message> |
||
1115 | <source>setFontSize(size, ["name"]) |
||
1116 | |||
1117 | Sets the font size of the text frame "name" to "size". "size" is treated |
||
1118 | as a value in points. If there is some text selected only the selected text is |
||
1119 | changed. "size" must be in the range 1 to 512. If "name" is not given the |
||
1120 | currently selected item is used. |
||
1121 | |||
1122 | May throw ValueError for a font size that's out of bounds. |
||
1123 | </source> |
||
1124 | <translation type="unfinished"></translation> |
||
1125 | </message> |
||
1126 | <message> |
||
1127 | <source>setLineSpacing(size, ["name"]) |
||
1128 | |||
1129 | Sets the line spacing ("leading") of the text frame "name" to "size". |
||
1130 | "size" is a value in points. If "name" is not given the currently selected |
||
1131 | item is used. |
||
1132 | |||
1133 | May throw ValueError if the line spacing is out of bounds. |
||
1134 | </source> |
||
1135 | <translation type="unfinished"></translation> |
||
1136 | </message> |
||
1137 | <message> |
||
1138 | <source>setColumnGap(size, ["name"]) |
||
1139 | |||
1140 | Sets the column gap of the text frame "name" to the value "size". If |
||
1141 | "name" is not given the currently selected item is used. |
||
1142 | |||
1143 | May throw ValueError if the column gap is out of bounds (must be positive). |
||
1144 | </source> |
||
1145 | <translation type="unfinished"></translation> |
||
1146 | </message> |
||
1147 | <message> |
||
1148 | <source>setColumns(nr, ["name"]) |
||
1149 | |||
1150 | Sets the number of columns of the text frame "name" to the integer "nr". |
||
1151 | If "name" is not given the currently selected item is used. |
||
1152 | |||
1153 | May throw ValueError if number of columns is not at least one. |
||
1154 | </source> |
||
1155 | <translation type="unfinished"></translation> |
||
1156 | </message> |
||
1157 | <message> |
||
1158 | <source>setTextAlignment(align, ["name"]) |
||
1159 | |||
1160 | Sets the text alignment of the text frame "name" to the specified alignment. |
||
1161 | If "name" is not given the currently selected item is used. "align" should |
||
1162 | be one of the ALIGN_ constants defined in this module - see dir(scribus). |
||
1163 | |||
1164 | May throw ValueError for an invalid alignment constant. |
||
1165 | </source> |
||
1166 | <translation type="unfinished"></translation> |
||
1167 | </message> |
||
1168 | <message> |
||
1169 | <source>deleteText(["name"]) |
||
1170 | |||
1171 | Deletes any text in the text frame "name". If there is some text selected, |
||
1172 | only the selected text will be deleted. If "name" is not given the currently |
||
1173 | selected item is used. |
||
1174 | </source> |
||
1175 | <translation type="unfinished"></translation> |
||
1176 | </message> |
||
1177 | <message> |
||
1178 | <source>setTextColor("color", ["name"]) |
||
1179 | |||
1180 | Sets the text color of the text frame "name" to the color "color". If there |
||
1181 | is some text selected only the selected text is changed. If "name" is not |
||
1182 | given the currently selected item is used. |
||
1183 | </source> |
||
1184 | <translation type="unfinished"></translation> |
||
1185 | </message> |
||
1186 | <message> |
||
1187 | <source>setTextStroke("color", ["name"]) |
||
1188 | |||
1189 | Set "color" of the text stroke. If "name" is not given the currently |
||
1190 | selected item is used. |
||
1191 | </source> |
||
1192 | <translation type="unfinished"></translation> |
||
1193 | </message> |
||
1194 | <message> |
||
1195 | <source>setTextShade(shade, ["name"]) |
||
1196 | |||
1197 | Sets the shading of the text color of the object "name" to "shade". If |
||
1198 | there is some text selected only the selected text is changed. "shade" must |
||
1199 | be an integer value in the range from 0 (lightest) to 100 (full color |
||
1200 | intensity). If "name" is not given the currently selected item is |
||
1201 | used. |
||
1202 | </source> |
||
1203 | <translation type="unfinished"></translation> |
||
1204 | </message> |
||
1205 | <message> |
||
1206 | <source>linkTextFrames("fromname", "toname") |
||
1207 | |||
1208 | Link two text frames. The frame named "fromname" is linked to the |
||
1209 | frame named "toname". The target frame must be an empty text frame |
||
1210 | and must not link to or be linked from any other frames already. |
||
1211 | |||
1212 | May throw ScribusException if linking rules are violated. |
||
1213 | </source> |
||
1214 | <translation type="unfinished"></translation> |
||
1215 | </message> |
||
1216 | <message> |
||
1217 | <source>unlinkTextFrames("name") |
||
1218 | |||
1219 | Remove the specified (named) object from the text frame flow/linkage. If the |
||
1220 | frame was in the middle of a chain, the previous and next frames will be |
||
1221 | connected, eg 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)' |
||
1222 | |||
1223 | May throw ScribusException if linking rules are violated. |
||
1224 | </source> |
||
1225 | <translation type="unfinished"></translation> |
||
1226 | </message> |
||
1227 | <message> |
||
1228 | <source>traceText(["name"]) |
||
1229 | |||
1230 | Convert the text frame "name" to outlines. If "name" is not given the |
||
1231 | currently selected item is used.</source> |
||
1232 | <translation type="unfinished"></translation> |
||
1233 | </message> |
||
1234 | <message> |
||
1235 | <source>progressReset() |
||
1236 | |||
1237 | Cleans up the Scribus progress bar previous settings. It is called before the |
||
1238 | new progress bar use. See progressSet. |
||
1239 | </source> |
||
1240 | <translation type="unfinished"></translation> |
||
1241 | </message> |
||
1242 | <message> |
||
1243 | <source>progressTotal(max) |
||
1244 | |||
1245 | Sets the progress bar's maximum steps value to the specified number. |
||
1246 | See progressSet. |
||
1247 | </source> |
||
1248 | <translation type="unfinished"></translation> |
||
1249 | </message> |
||
1250 | <message> |
||
1251 | <source>progressSet(nr) |
||
1252 | |||
1253 | Set the progress bar position to "nr", a value relative to the previously set |
||
1254 | progressTotal. The progress bar uses the concept of steps; you give it the |
||
1255 | total number of steps and the number of steps completed so far and it will |
||
1256 | display the percentage of steps that have been completed. You can specify the |
||
1257 | total number of steps with progressTotal(). The current number of steps is set |
||
1258 | with progressSet(). The progress bar can be rewound to the beginning with |
||
1259 | progressReset(). [based on info taken from Trolltech's Qt docs] |
||
1260 | </source> |
||
1261 | <translation type="unfinished"></translation> |
||
1262 | </message> |
||
1263 | <message> |
||
1264 | <source>setCursor() |
||
1265 | |||
1266 | [UNSUPPORTED!] This might break things, so steer clear for now. |
||
1267 | </source> |
||
1268 | <translation type="unfinished"></translation> |
||
1269 | </message> |
||
1270 | <message> |
||
1271 | <source>docChanged(bool) |
||
1272 | |||
1273 | Enable/disable save icon in the Scribus icon bar and the Save menu item. It's |
||
1274 | useful to call this procedure when you're changing the document, because Scribus |
||
1275 | won't automatically notice when you change the document using a script. |
||
1276 | </source> |
||
1277 | <translation type="unfinished"></translation> |
||
1278 | </message> |
||
1525 | cbradney | 1279 | <message> |
1280 | <source>setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>) |
||
1281 | |||
1282 | Sets the scale to frame on the selected or specified image frame to `scaletoframe'. |
||
1283 | If `proportional' is specified, set fixed aspect ratio scaling to `proportional'. |
||
1284 | Both `scaletoframe' and `proportional' are boolean. |
||
1285 | |||
1286 | May raise WrongFrameTypeError. |
||
1287 | </source> |
||
1288 | <translation type="unfinished"></translation> |
||
1289 | </message> |
||
1290 | <message> |
||
1291 | <source>isLayerPrintable("layer") -> bool |
||
1292 | |||
1293 | Returns whether the layer "layer" is visible or not, a value of True means |
||
1294 | that the layer "layer" is visible, a value of False means that the layer |
||
1295 | "layer" is invisible. |
||
1296 | |||
1297 | May raise NotFoundError if the layer can't be found. |
||
1298 | May raise ValueError if the layer name isn't acceptable. |
||
1299 | </source> |
||
1300 | <translation type="unfinished"></translation> |
||
1301 | </message> |
||
1302 | <message> |
||
1303 | <source>isLayerPrintable("layer") -> bool |
||
1304 | |||
1305 | Returns whether the layer "layer" is printable or not, a value of True means |
||
1306 | that the layer "layer" can be printed, a value of False means that printing |
||
1307 | the layer "layer" is disabled. |
||
1308 | |||
1309 | May raise NotFoundError if the layer can't be found. |
||
1310 | May raise ValueError if the layer name isn't acceptable. |
||
1311 | </source> |
||
1312 | <translation type="unfinished"></translation> |
||
1313 | </message> |
||
1314 | <message> |
||
1315 | <source>getColorAsRGB("name") -> tuple |
||
1316 | |||
1317 | Returns a tuple (R,G,B) containing the three color components of the |
||
1318 | color "name" from the current document, converted to the RGB color |
||
1319 | space. If no document is open, returns the value of the named color |
||
1320 | from the default document colors. |
||
1321 | |||
1322 | May raise NotFoundError if the named color wasn't found. |
||
1323 | May raise ValueError if an invalid color name is specified. |
||
1324 | </source> |
||
1325 | <translation type="unfinished"></translation> |
||
1326 | </message> |
||
1327 | <message> |
||
1328 | <source>defineColor("name", c, m, y, k) |
||
1329 | |||
1330 | Defines a new color "name". The color Value is defined via four components: |
||
1331 | c = Cyan, m = Magenta, y = Yello and k = Black. Color components should be in |
||
1332 | the range from 0 to 255. |
||
1333 | |||
1334 | May raise ValueError if an invalid color name is specified. |
||
1335 | </source> |
||
1336 | <translation type="unfinished"></translation> |
||
1337 | </message> |
||
1338 | <message> |
||
1339 | <source>getCornerRadius(["name"]) -> integer |
||
1340 | |||
1341 | Returns the corner radius of the object "name". The radius isexpressed in points. If "name" is not given the currentlyselected item is used. |
||
1342 | </source> |
||
1343 | <translation type="unfinished"></translation> |
||
1344 | </message> |
||
1345 | <message> |
||
1346 | <source>getPosition(["name"]) -> (x,y) |
||
1347 | |||
1348 | Returns a (x, y) tuple with the position of the object "name". |
||
1349 | If "name" is not given the currently selected item is used.The position is expressed in the actual measurement unit of the document |
||
1350 | - see UNIT_<type> for reference. |
||
1351 | </source> |
||
1352 | <translation type="unfinished"></translation> |
||
1353 | </message> |
||
1354 | <message> |
||
1355 | <source>getPropertyCType(object, property, includesuper=True) |
||
1356 | |||
1357 | Returns the name of the C type of `property' of `object'. See getProperty() |
||
1358 | for details of arguments. |
||
1359 | |||
1360 | If `includesuper' is true, search inherited properties too. |
||
1361 | </source> |
||
1362 | <translation type="unfinished"></translation> |
||
1363 | </message> |
||
1364 | <message> |
||
1365 | <source>getPropertyNames(object, includesuper=True) |
||
1366 | |||
1367 | Return a list of property names supported by `object'. |
||
1368 | If `includesuper' is true, return properties supported |
||
1369 | by parent classes as well. |
||
1370 | </source> |
||
1371 | <translation type="unfinished"></translation> |
||
1372 | </message> |
||
1373 | <message> |
||
1374 | <source>getProperty(object, property) |
||
1375 | |||
1376 | Return the value of the property `property' of the passed `object'. |
||
1377 | |||
1378 | The `object' argument may be a string, in which case the named PageItem |
||
1379 | is searched for. It may also be a PyCObject, which may point to any |
||
1380 | C++ QObject instance. |
||
1381 | |||
1382 | The `property' argument must be a string, and is the name of the property |
||
1383 | to look up on `object'. |
||
1384 | |||
1385 | The return value varies depending on the type of the property. |
||
1386 | </source> |
||
1387 | <translation type="unfinished"></translation> |
||
1388 | </message> |
||
1389 | <message> |
||
1390 | <source>setProperty(object, property, value) |
||
1391 | |||
1392 | Set `property' of `object' to `value'. If `value' cannot be converted to a type |
||
1393 | compatible with the type of `property', an exception is raised. An exception may |
||
1394 | also be raised if the underlying setter fails. |
||
1395 | |||
1396 | See getProperty() for more information. |
||
1397 | </source> |
||
1398 | <translation type="unfinished"></translation> |
||
1399 | </message> |
||
1400 | <message> |
||
1401 | <source>getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True) |
||
1402 | |||
1403 | Return a list of children of `object', possibly restricted to children |
||
1404 | of class named `ofclass' or children named `ofname'. If `recursive' is true, |
||
1405 | search recursively through children, grandchildren, etc. |
||
1406 | |||
1407 | See QObject::children() in the Qt docs for more information. |
||
1408 | </source> |
||
1409 | <translation type="unfinished"></translation> |
||
1410 | </message> |
||
1411 | <message> |
||
1412 | <source>getChild(object, childname, ofclass=None, recursive=True) |
||
1413 | |||
1414 | Return the first child of `object' named `childname', possibly restricting |
||
1415 | the search to children of type name `ofclass'. If `recursive' is true, |
||
1416 | search recursively through children, grandchildren, etc. |
||
1417 | </source> |
||
1418 | <translation type="unfinished"></translation> |
||
1419 | </message> |
||
1420 | <message> |
||
1421 | <source>rotateObjectAbs(rot [, "name"]) |
||
1422 | |||
1423 | Sets the rotation of the object "name" to "rot". Positve values |
||
1424 | mean counter clockwise rotation. If "name" is not given the currently |
||
1425 | selected item is used. |
||
1426 | </source> |
||
1427 | <translation type="unfinished"></translation> |
||
1428 | </message> |
||
1429 | <message> |
||
1430 | <source>renderFont("name", "filename", "sample", size, format="PPM") -> bool |
||
1431 | |||
1432 | Creates an image preview of font "name" with given text "sample" and size. |
||
1433 | If "filename" is not "", image is saved into "filename". Otherwise |
||
1434 | image data is returned as a string. The optional "format" argument |
||
1435 | specifies the image format to generate, and supports any format allowed |
||
1436 | by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM. |
||
1437 | |||
1438 | May raise NotFoundError if the specified font can't be found. |
||
1439 | May raise ValueError if an empty sample or filename is passed. |
||
1440 | </source> |
||
1441 | <translation type="unfinished"></translation> |
||
1442 | </message> |
||
1443 | <message> |
||
1444 | <source>selectText(start, count, ["name"]) |
||
1445 | |||
1446 | Selects "count" characters of text in the text frame "name" starting from the |
||
1447 | character "start". Character counting starts at 0. If "count" is zero, any |
||
1448 | text selection will be cleared. If "name" is not given the currently |
||
1449 | selected item is used. |
||
1450 | |||
1451 | May throw IndexError if the selection is outside the bounds of the text. |
||
1452 | </source> |
||
1453 | <translation type="unfinished"></translation> |
||
1454 | </message> |
||
1455 | <message> |
||
3064 | cbradney | 1456 | <source>fileDialog("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename |
1525 | cbradney | 1457 | |
3064 | cbradney | 1458 | Shows a File Open dialog box with the caption "caption". Files are filtered |
1459 | with the filter string "filter". A default filename or file path can also |
||
1460 | supplied, leave this string empty when you don't want to use it. A value of |
||
1461 | True for haspreview enables a small preview widget in the FileSelect box. When |
||
1462 | the issave parameter is set to True the dialog acts like a "Save As" dialog |
||
1463 | otherwise it acts like a "File Open Dialog". When the isdir parameter is True |
||
1464 | the dialog shows and returns only directories. The default for all of the |
||
1465 | opional parameters is False. |
||
1525 | cbradney | 1466 | |
3064 | cbradney | 1467 | The filter, if specified, takes the form 'comment (*.type *.type2 ...)'. |
1468 | For example 'Images (*.png *.xpm *.jpg)'. |
||
1469 | |||
1470 | Refer to the Qt-Documentation for QFileDialog for details on filters. |
||
1471 | |||
1472 | Example: fileDialog('Open input', 'CSV files (*.csv)') |
||
1473 | Example: fileDialog('Save report', defaultname='report.txt', issave=True) |
||
1474 | </source> |
||
1475 | <translation type="unfinished"></translation> |
||
1476 | </message> |
||
1477 | <message> |
||
1478 | <source>newStyleDialog() -> string |
||
1479 | |||
1480 | Shows 'Create new paragraph style' dialog. Function returns real |
||
1481 | style name or None when user cancels the dialog. |
||
1482 | </source> |
||
1483 | <translation type="unfinished"></translation> |
||
1484 | </message> |
||
1485 | <message> |
||
1486 | <source>getPageMargins() |
||
1487 | |||
1488 | Returns the page margins as a (top, left, right, bottom) tuple in the current |
||
1489 | units. See UNIT_<type> constants and getPageSize(). |
||
1490 | </source> |
||
1491 | <translation type="unfinished"></translation> |
||
1492 | </message> |
||
1493 | <message> |
||
1494 | <source>insertText("text", pos, ["name"]) |
||
1495 | |||
1496 | Inserts the text "text" at the position "pos" into the text frame "name". |
||
1497 | Text must be UTF encoded (see setText() as reference) The first character has an |
||
1498 | index of 0. Inserting at position -1 appends text to the frame. If "name" is |
||
1499 | not given the currently selected Item is used. |
||
1500 | |||
1501 | May throw IndexError for an insertion out of bounds. |
||
1502 | </source> |
||
1503 | <translation type="unfinished"></translation> |
||
1504 | </message> |
||
1505 | <message> |
||
1506 | <source>textOverflows(["name", nolinks]) -> integer |
||
1507 | |||
1508 | Returns the actual number of overflowing characters in text frame "name". |
||
1509 | If is nolinks set to non zero value it takes only one frame - it doesn't |
||
1510 | use text frame linking. Without this parameter it search all linking chain. |
||
1511 | |||
1525 | cbradney | 1512 | May raise WrongFrameTypeError if the target frame is not an text frame |
1513 | </source> |
||
1514 | <translation type="unfinished"></translation> |
||
1515 | </message> |
||
3064 | cbradney | 1516 | <message> |
1517 | <source>setPDFBookmark("toggle", ["name"]) |
||
1518 | |||
1519 | Sets wether (toggle = 1) the text frame "name" is a bookmark nor not. |
||
1520 | If "name" is not given the currently selected item is used. |
||
1521 | |||
1522 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
1523 | </source> |
||
1524 | <translation type="unfinished"></translation> |
||
1525 | </message> |
||
1526 | <message> |
||
1527 | <source>isPDFBookmark(["name"]) -> bool |
||
1528 | |||
1529 | Returns true if the text frame "name" is a PDF bookmark. |
||
1530 | If "name" is not given the currently selected item is used. |
||
1531 | |||
1532 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
1533 | </source> |
||
1534 | <translation type="unfinished"></translation> |
||
1535 | </message> |
||
1135 | cbradney | 1536 | </context> |
1537 | <context> |
||
890 | cbradney | 1538 | <name>About</name> |
1539 | <message> |
||
1135 | cbradney | 1540 | <source>About Scribus%1%2</source> |
1541 | <translation type="obsolete">关于 Scribus%1%2</translation> |
||
890 | cbradney | 1542 | </message> |
1543 | <message> |
||
1135 | cbradney | 1544 | <source>%1. %2 %3 </source> |
3064 | cbradney | 1545 | <translation type="obsolete">%1. %2 %3 </translation> |
890 | cbradney | 1546 | </message> |
1547 | <message> |
||
1135 | cbradney | 1548 | <source>Scribus Version %1 |
890 | cbradney | 1549 | %2 %3</source> |
3064 | cbradney | 1550 | <translation type="obsolete">Scribus 版本 %1 |
890 | cbradney | 1551 | %2 %3</translation> |
1552 | </message> |
||
1553 | <message> |
||
1135 | cbradney | 1554 | <source>Build-ID:</source> |
1555 | <translation>Build-ID:</translation> |
||
890 | cbradney | 1556 | </message> |
1557 | <message> |
||
1135 | cbradney | 1558 | <source>Contributions from:</source> |
1559 | <translation>:</translation> |
||
890 | cbradney | 1560 | </message> |
1561 | <message> |
||
1135 | cbradney | 1562 | <source>Windows port:</source> |
3064 | cbradney | 1563 | <translation type="obsolete">Windows port:</translation> |
890 | cbradney | 1564 | </message> |
1565 | <message> |
||
1135 | cbradney | 1566 | <source>German:</source> |
3064 | cbradney | 1567 | <translation type="obsolete">德国文:</translation> |
890 | cbradney | 1568 | </message> |
1569 | <message> |
||
1135 | cbradney | 1570 | <source>French:</source> |
3064 | cbradney | 1571 | <translation type="obsolete">French:</translation> |
890 | cbradney | 1572 | </message> |
1573 | <message> |
||
1135 | cbradney | 1574 | <source>Italian:</source> |
3064 | cbradney | 1575 | <translation type="obsolete">Italian:</translation> |
890 | cbradney | 1576 | </message> |
1577 | <message> |
||
1135 | cbradney | 1578 | <source>Hungarian:</source> |
3064 | cbradney | 1579 | <translation type="obsolete">Hungarian:</translation> |
890 | cbradney | 1580 | </message> |
1581 | <message> |
||
1135 | cbradney | 1582 | <source>Ukrainian:</source> |
3064 | cbradney | 1583 | <translation type="obsolete">Ukrainian:</translation> |
890 | cbradney | 1584 | </message> |
1585 | <message> |
||
1135 | cbradney | 1586 | <source>Bulgarian:</source> |
3064 | cbradney | 1587 | <translation type="obsolete">Bulgarian:</translation> |
890 | cbradney | 1588 | </message> |
1589 | <message> |
||
1135 | cbradney | 1590 | <source>Galician:</source> |
3064 | cbradney | 1591 | <translation type="obsolete">Galician:</translation> |
890 | cbradney | 1592 | </message> |
1593 | <message> |
||
1135 | cbradney | 1594 | <source>Turkish:</source> |
3064 | cbradney | 1595 | <translation type="obsolete">Turkish:</translation> |
890 | cbradney | 1596 | </message> |
1597 | <message> |
||
1135 | cbradney | 1598 | <source>Lithuanian:</source> |
3064 | cbradney | 1599 | <translation type="obsolete">Lithuanian:</translation> |
890 | cbradney | 1600 | </message> |
1601 | <message> |
||
1135 | cbradney | 1602 | <source>Polish:</source> |
3064 | cbradney | 1603 | <translation type="obsolete">Polish:</translation> |
890 | cbradney | 1604 | </message> |
1605 | <message> |
||
1135 | cbradney | 1606 | <source>Czech:</source> |
3064 | cbradney | 1607 | <translation type="obsolete">Czech:</translation> |
890 | cbradney | 1608 | </message> |
1609 | <message> |
||
1135 | cbradney | 1610 | <source>Slovak:</source> |
3064 | cbradney | 1611 | <translation type="obsolete">Slovak:</translation> |
890 | cbradney | 1612 | </message> |
1613 | <message> |
||
1135 | cbradney | 1614 | <source>Danish:</source> |
3064 | cbradney | 1615 | <translation type="obsolete">Danish:</translation> |
890 | cbradney | 1616 | </message> |
1617 | <message> |
||
1135 | cbradney | 1618 | <source>Norwegian:</source> |
3064 | cbradney | 1619 | <translation type="obsolete">Norwegian:</translation> |
890 | cbradney | 1620 | </message> |
1621 | <message> |
||
1135 | cbradney | 1622 | <source>Welsh:</source> |
3064 | cbradney | 1623 | <translation type="obsolete">Welsh:</translation> |
890 | cbradney | 1624 | </message> |
1625 | <message> |
||
1135 | cbradney | 1626 | <source>Russian:</source> |
3064 | cbradney | 1627 | <translation type="obsolete">Russian:</translation> |
890 | cbradney | 1628 | </message> |
1629 | <message> |
||
1135 | cbradney | 1630 | <source>Brazilian:</source> |
3064 | cbradney | 1631 | <translation type="obsolete">Brazilian:</translation> |
890 | cbradney | 1632 | </message> |
1633 | <message> |
||
1135 | cbradney | 1634 | <source>Finnish:</source> |
3064 | cbradney | 1635 | <translation type="obsolete">Finnish:</translation> |
890 | cbradney | 1636 | </message> |
1637 | <message> |
||
1135 | cbradney | 1638 | <source>Basque:</source> |
3064 | cbradney | 1639 | <translation type="obsolete">Basque:</translation> |
890 | cbradney | 1640 | </message> |
1641 | <message> |
||
1135 | cbradney | 1642 | <source>Slovenian:</source> |
3064 | cbradney | 1643 | <translation type="obsolete">Slovenian:</translation> |
890 | cbradney | 1644 | </message> |
1645 | <message> |
||
1135 | cbradney | 1646 | <source>This panel shows the version, build date and |
890 | cbradney | 1647 | compiled in library support in Scribus |
1648 | The C-C-T equates to C=CUPS C=littlecms T=TIFF support. |
||
1649 | Missing library support is indicated by a *</source> |
||
1135 | cbradney | 1650 | <translation type="obsolete">This panel shows the version, build date and |
890 | cbradney | 1651 | compiled in library support in Scribus |
1652 | The C-C-T equates to C=CUPS C=littlecms T=TIFF support. |
||
1653 | Missing library support is indicated by a *</translation> |
||
1654 | </message> |
||
1655 | <message> |
||
1135 | cbradney | 1656 | <source>&About</source> |
1657 | <translation>&About</translation> |
||
890 | cbradney | 1658 | </message> |
1659 | <message> |
||
1135 | cbradney | 1660 | <source>A&uthors</source> |
1661 | <translation>A&uthors</translation> |
||
890 | cbradney | 1662 | </message> |
1663 | <message> |
||
1135 | cbradney | 1664 | <source>&Translations</source> |
1665 | <translation>&Translations</translation> |
||
890 | cbradney | 1666 | </message> |
1667 | <message> |
||
1135 | cbradney | 1668 | <source>&Online</source> |
1669 | <translation>&Online</translation> |
||
890 | cbradney | 1670 | </message> |
1671 | <message> |
||
1135 | cbradney | 1672 | <source>&Close</source> |
1673 | <translation>&Close</translation> |
||
890 | cbradney | 1674 | </message> |
1675 | <message> |
||
1135 | cbradney | 1676 | <source>?? Team:</source> |
1677 | <translation type="obsolete">Development Team:</translation> |
||
890 | cbradney | 1678 | </message> |
1679 | <message> |
||
1135 | cbradney | 1680 | <source>Official Documentation:</source> |
1681 | <translation>Official Documentation:</translation> |
||
890 | cbradney | 1682 | </message> |
1683 | <message> |
||
1135 | cbradney | 1684 | <source>Other Documentation:</source> |
1685 | <translation>Other Documentation:</translation> |
||
890 | cbradney | 1686 | </message> |
1687 | <message> |
||
1135 | cbradney | 1688 | <source>English (British):</source> |
3064 | cbradney | 1689 | <translation type="obsolete">英文 (英国):</translation> |
890 | cbradney | 1690 | </message> |
1691 | <message> |
||
1135 | cbradney | 1692 | <source>Swedish:</source> |
3064 | cbradney | 1693 | <translation type="obsolete">Swedish:</translation> |
890 | cbradney | 1694 | </message> |
1695 | <message> |
||
1135 | cbradney | 1696 | <source>Homepage</source> |
1697 | <translation>Homepage</translation> |
||
890 | cbradney | 1698 | </message> |
1699 | <message> |
||
1135 | cbradney | 1700 | <source>Online Reference</source> |
1701 | <translation>Online Reference</translation> |
||
890 | cbradney | 1702 | </message> |
1703 | <message> |
||
1135 | cbradney | 1704 | <source>Bugs and Feature Requests</source> |
1705 | <translation>Bugs and Feature Requests</translation> |
||
890 | cbradney | 1706 | </message> |
1707 | <message> |
||
1135 | cbradney | 1708 | <source>Mailing List</source> |
1709 | <translation>Mailing List</translation> |
||
890 | cbradney | 1710 | </message> |
1711 | <message> |
||
1135 | cbradney | 1712 | <source>Official Translations and Translators:</source> |
1713 | <translation>Official Translations and Translators:</translation> |
||
890 | cbradney | 1714 | </message> |
1715 | <message> |
||
1135 | cbradney | 1716 | <source>Esperanto:</source> |
3064 | cbradney | 1717 | <translation type="obsolete">Esperanto:</translation> |
890 | cbradney | 1718 | </message> |
1719 | <message> |
||
1135 | cbradney | 1720 | <source>Korean:</source> |
3064 | cbradney | 1721 | <translation type="obsolete">Korean:</translation> |
890 | cbradney | 1722 | </message> |
1723 | <message> |
||
1135 | cbradney | 1724 | <source>Serbian:</source> |
3064 | cbradney | 1725 | <translation type="obsolete">Serbian:</translation> |
890 | cbradney | 1726 | </message> |
1727 | <message> |
||
1135 | cbradney | 1728 | <source>Spanish:</source> |
3064 | cbradney | 1729 | <translation type="obsolete">Spanish:</translation> |
890 | cbradney | 1730 | </message> |
1731 | <message> |
||
1135 | cbradney | 1732 | <source>Previous Translation Contributors:</source> |
1733 | <translation>Previous Translation Contributors:</translation> |
||
890 | cbradney | 1734 | </message> |
1735 | <message> |
||
1135 | cbradney | 1736 | <source>Catalan:</source> |
3064 | cbradney | 1737 | <translation type="obsolete">Catalan:</translation> |
890 | cbradney | 1738 | </message> |
1135 | cbradney | 1739 | <message> |
1740 | <source>About Scribus %1</source> |
||
1741 | <translation type="unfinished"></translation> |
||
1742 | </message> |
||
1743 | <message> |
||
1744 | <source>Development Team:</source> |
||
1745 | <translation type="unfinished"></translation> |
||
1746 | </message> |
||
1747 | <message> |
||
3064 | cbradney | 1748 | <source>%1 %2 %3 </source> |
1525 | cbradney | 1749 | <translation type="unfinished"></translation> |
1750 | </message> |
||
1751 | <message> |
||
3064 | cbradney | 1752 | <source>Using GhostScript version %1</source> |
1525 | cbradney | 1753 | <translation type="unfinished"></translation> |
1754 | </message> |
||
1755 | <message> |
||
3064 | cbradney | 1756 | <source>No GS version available</source> |
1525 | cbradney | 1757 | <translation type="unfinished"></translation> |
1758 | </message> |
||
1759 | <message> |
||
3064 | cbradney | 1760 | <source>Scribus Version %1 |
1761 | %2 %3 (%4)</source> |
||
1135 | cbradney | 1762 | <translation type="unfinished"></translation> |
1763 | </message> |
||
3064 | cbradney | 1764 | <message> |
1765 | <source>Mac OSX Aqua Port:</source> |
||
1766 | <translation type="unfinished"></translation> |
||
1767 | </message> |
||
1768 | <message> |
||
1769 | <source>Windows Port:</source> |
||
1770 | <translation type="unfinished"></translation> |
||
1771 | </message> |
||
1772 | <message> |
||
1773 | <source>Wiki</source> |
||
1774 | <translation type="unfinished"></translation> |
||
1775 | </message> |
||
1776 | <message> |
||
1777 | <source>This panel shows the version, build date and compiled in library support in Scribus. The C-C-T-F equates to C=littlecms C=CUPS T=TIFF support F=Fontconfig support. Missing library support is indicated by a * This also indicates the version of Ghostscript which Scribus has detected.</source> |
||
1778 | <translation type="unfinished"></translation> |
||
1779 | </message> |
||
1135 | cbradney | 1780 | </context> |
1781 | <context> |
||
3064 | cbradney | 1782 | <name>ActionManager</name> |
1783 | <message> |
||
1784 | <source>&New</source> |
||
1785 | <translation type="unfinished">&New</translation> |
||
1786 | </message> |
||
1787 | <message> |
||
1788 | <source>&Open...</source> |
||
1789 | <translation type="unfinished">&Open...</translation> |
||
1790 | </message> |
||
1791 | <message> |
||
1792 | <source>&Close</source> |
||
1793 | <translation type="unfinished">&Close</translation> |
||
1794 | </message> |
||
1795 | <message> |
||
1796 | <source>&Save</source> |
||
1797 | <translation type="unfinished">&Save</translation> |
||
1798 | </message> |
||
1799 | <message> |
||
1800 | <source>Save &As...</source> |
||
1801 | <translation type="unfinished">Save &As...</translation> |
||
1802 | </message> |
||
1803 | <message> |
||
1804 | <source>Re&vert to Saved</source> |
||
1805 | <translation type="unfinished">Re&vert to Saved</translation> |
||
1806 | </message> |
||
1807 | <message> |
||
1808 | <source>Collect for O&utput...</source> |
||
1809 | <translation type="unfinished">Collect for O&utput...</translation> |
||
1810 | </message> |
||
1811 | <message> |
||
1812 | <source>Get Text...</source> |
||
1813 | <translation type="unfinished">Get Text...</translation> |
||
1814 | </message> |
||
1815 | <message> |
||
1816 | <source>Append &Text...</source> |
||
1817 | <translation type="unfinished">Append &Text...</translation> |
||
1818 | </message> |
||
1819 | <message> |
||
1820 | <source>Get Image...</source> |
||
1821 | <translation type="unfinished"></translation> |
||
1822 | </message> |
||
1823 | <message> |
||
1824 | <source>Save &Text...</source> |
||
1825 | <translation type="unfinished">Save &Text...</translation> |
||
1826 | </message> |
||
1827 | <message> |
||
1828 | <source>Save Page as &EPS...</source> |
||
1829 | <translation type="unfinished">Save Page as &EPS...</translation> |
||
1830 | </message> |
||
1831 | <message> |
||
1832 | <source>Save as P&DF...</source> |
||
1833 | <translation type="unfinished">Save as P&DF...</translation> |
||
1834 | </message> |
||
1835 | <message> |
||
1836 | <source>Document &Setup...</source> |
||
1837 | <translation type="unfinished">Document &Setup...</translation> |
||
1838 | </message> |
||
1839 | <message> |
||
1840 | <source>&Print...</source> |
||
1841 | <translation type="unfinished">&Print...</translation> |
||
1842 | </message> |
||
1843 | <message> |
||
1844 | <source>&Quit</source> |
||
1845 | <translation type="unfinished">&Quit</translation> |
||
1846 | </message> |
||
1847 | <message> |
||
1848 | <source>&Undo</source> |
||
1849 | <translation type="unfinished">&Undo</translation> |
||
1850 | </message> |
||
1851 | <message> |
||
1852 | <source>&Redo</source> |
||
1853 | <translation type="unfinished">&Redo</translation> |
||
1854 | </message> |
||
1855 | <message> |
||
1856 | <source>&Item Action Mode</source> |
||
1857 | <translation type="unfinished"></translation> |
||
1858 | </message> |
||
1859 | <message> |
||
1860 | <source>Cu&t</source> |
||
1861 | <translation type="unfinished">Cu&t</translation> |
||
1862 | </message> |
||
1863 | <message> |
||
1864 | <source>&Copy</source> |
||
1865 | <translation type="unfinished">&Copy</translation> |
||
1866 | </message> |
||
1867 | <message> |
||
1868 | <source>&Paste</source> |
||
1869 | <translation type="unfinished">&Paste</translation> |
||
1870 | </message> |
||
1871 | <message> |
||
1872 | <source>C&lear Contents</source> |
||
1873 | <translation type="unfinished">C&lear Contents</translation> |
||
1874 | </message> |
||
1875 | <message> |
||
1876 | <source>Select &All</source> |
||
1877 | <translation type="unfinished">Select &All</translation> |
||
1878 | </message> |
||
1879 | <message> |
||
1880 | <source>&Deselect All</source> |
||
1881 | <translation type="unfinished"></translation> |
||
1882 | </message> |
||
1883 | <message> |
||
1884 | <source>&Search/Replace...</source> |
||
1885 | <translation type="unfinished">&Search/Replace...</translation> |
||
1886 | </message> |
||
1887 | <message> |
||
1888 | <source>Edit Image...</source> |
||
1889 | <translation type="unfinished"></translation> |
||
1890 | </message> |
||
1891 | <message> |
||
1892 | <source>C&olors...</source> |
||
1893 | <translation type="unfinished">C&olours...</translation> |
||
1894 | </message> |
||
1895 | <message> |
||
1896 | <source>&Paragraph Styles...</source> |
||
1897 | <translation type="unfinished">&Paragraph Styles...</translation> |
||
1898 | </message> |
||
1899 | <message> |
||
1900 | <source>&Line Styles...</source> |
||
1901 | <translation type="unfinished">&Line Styles...</translation> |
||
1902 | </message> |
||
1903 | <message> |
||
1904 | <source>&Master Pages...</source> |
||
1905 | <translation type="unfinished"></translation> |
||
1906 | </message> |
||
1907 | <message> |
||
1908 | <source>&Javascripts...</source> |
||
1909 | <translation type="unfinished">&Javascripts...</translation> |
||
1910 | </message> |
||
1911 | <message> |
||
1912 | <source>P&references...</source> |
||
1913 | <translation type="unfinished">P&references...</translation> |
||
1914 | </message> |
||
1915 | <message> |
||
1916 | <source>%1 pt</source> |
||
1917 | <translation type="unfinished"></translation> |
||
1918 | </message> |
||
1919 | <message> |
||
1920 | <source>&Other...</source> |
||
1921 | <translation type="unfinished">&Other...</translation> |
||
1922 | </message> |
||
1923 | <message> |
||
1924 | <source>&Left</source> |
||
1925 | <translation type="unfinished">&Left</translation> |
||
1926 | </message> |
||
1927 | <message> |
||
1928 | <source>&Center</source> |
||
1929 | <translation type="unfinished">&Centre</translation> |
||
1930 | </message> |
||
1931 | <message> |
||
1932 | <source>&Right</source> |
||
1933 | <translation type="unfinished">&Right</translation> |
||
1934 | </message> |
||
1935 | <message> |
||
1936 | <source>&Block</source> |
||
1937 | <translation type="unfinished">&Block</translation> |
||
1938 | </message> |
||
1939 | <message> |
||
1940 | <source>&Forced</source> |
||
1941 | <translation type="unfinished">&Forced</translation> |
||
1942 | </message> |
||
1943 | <message> |
||
1944 | <source>&%1 %</source> |
||
1945 | <translation type="unfinished"></translation> |
||
1946 | </message> |
||
1947 | <message> |
||
1948 | <source>&Normal</source> |
||
1949 | <translation type="unfinished"></translation> |
||
1950 | </message> |
||
1951 | <message> |
||
1952 | <source>&Underline</source> |
||
1953 | <translation type="unfinished">&Underline</translation> |
||
1954 | </message> |
||
1955 | <message> |
||
1956 | <source>Underline &Words</source> |
||
1957 | <translation type="unfinished"></translation> |
||
1958 | </message> |
||
1959 | <message> |
||
1960 | <source>&Strike Through</source> |
||
1961 | <translation type="unfinished"></translation> |
||
1962 | </message> |
||
1963 | <message> |
||
1964 | <source>&All Caps</source> |
||
1965 | <translation type="unfinished"></translation> |
||
1966 | </message> |
||
1967 | <message> |
||
1968 | <source>Small &Caps</source> |
||
1969 | <translation type="unfinished"></translation> |
||
1970 | </message> |
||
1971 | <message> |
||
1972 | <source>Su&perscript</source> |
||
1973 | <translation type="unfinished"></translation> |
||
1974 | </message> |
||
1975 | <message> |
||
1976 | <source>Su&bscript</source> |
||
1977 | <translation type="unfinished"></translation> |
||
1978 | </message> |
||
1979 | <message> |
||
1980 | <source>&Outline</source> |
||
1981 | <translation type="unfinished">&Outline</translation> |
||
1982 | </message> |
||
1983 | <message> |
||
1984 | <source>S&hadow</source> |
||
1985 | <translation type="unfinished"></translation> |
||
1986 | </message> |
||
1987 | <message> |
||
1988 | <source>&Image Effects</source> |
||
1989 | <translation type="unfinished"></translation> |
||
1990 | </message> |
||
1991 | <message> |
||
1992 | <source>&Tabulators...</source> |
||
1993 | <translation type="unfinished">&Tabulators...</translation> |
||
1994 | </message> |
||
1995 | <message> |
||
1996 | <source>D&uplicate</source> |
||
1997 | <translation type="unfinished">D&uplicate</translation> |
||
1998 | </message> |
||
1999 | <message> |
||
2000 | <source>&Multiple Duplicate</source> |
||
2001 | <translation type="unfinished">&Multiple Duplicate</translation> |
||
2002 | </message> |
||
2003 | <message> |
||
2004 | <source>&Delete</source> |
||
2005 | <translation type="unfinished">&Delete</translation> |
||
2006 | </message> |
||
2007 | <message> |
||
2008 | <source>&Group</source> |
||
2009 | <translation type="unfinished">&Group</translation> |
||
2010 | </message> |
||
2011 | <message> |
||
2012 | <source>&Ungroup</source> |
||
2013 | <translation type="unfinished">&Ungroup</translation> |
||
2014 | </message> |
||
2015 | <message> |
||
2016 | <source>Is &Locked</source> |
||
2017 | <translation type="unfinished"></translation> |
||
2018 | </message> |
||
2019 | <message> |
||
2020 | <source>Si&ze is Locked</source> |
||
2021 | <translation type="unfinished"></translation> |
||
2022 | </message> |
||
2023 | <message> |
||
2024 | <source>Lower to &Bottom</source> |
||
2025 | <translation type="unfinished"></translation> |
||
2026 | </message> |
||
2027 | <message> |
||
2028 | <source>Raise to &Top</source> |
||
2029 | <translation type="unfinished"></translation> |
||
2030 | </message> |
||
2031 | <message> |
||
2032 | <source>&Lower</source> |
||
2033 | <translation type="unfinished">&Lower</translation> |
||
2034 | </message> |
||
2035 | <message> |
||
2036 | <source>&Raise</source> |
||
2037 | <translation type="unfinished">&Raise</translation> |
||
2038 | </message> |
||
2039 | <message> |
||
2040 | <source>Send to S&crapbook</source> |
||
2041 | <translation type="unfinished">Send to S&crapbook</translation> |
||
2042 | </message> |
||
2043 | <message> |
||
2044 | <source>&Attributes...</source> |
||
2045 | <translation type="unfinished"></translation> |
||
2046 | </message> |
||
2047 | <message> |
||
2048 | <source>I&mage Visible</source> |
||
2049 | <translation type="unfinished">I&mage Visible</translation> |
||
2050 | </message> |
||
2051 | <message> |
||
2052 | <source>&Update Image</source> |
||
2053 | <translation type="unfinished"></translation> |
||
2054 | </message> |
||
2055 | <message> |
||
2056 | <source>Adjust Frame to Image</source> |
||
2057 | <translation type="unfinished"></translation> |
||
2058 | </message> |
||
2059 | <message> |
||
2060 | <source>Extended Image Properties</source> |
||
2061 | <translation type="unfinished"></translation> |
||
2062 | </message> |
||
2063 | <message> |
||
2064 | <source>&Low Resolution</source> |
||
2065 | <translation type="unfinished"></translation> |
||
2066 | </message> |
||
2067 | <message> |
||
2068 | <source>&Normal Resolution</source> |
||
2069 | <translation type="unfinished"></translation> |
||
2070 | </message> |
||
2071 | <message> |
||
2072 | <source>&Full Resolution</source> |
||
2073 | <translation type="unfinished"></translation> |
||
2074 | </message> |
||
2075 | <message> |
||
2076 | <source>Is PDF &Bookmark</source> |
||
2077 | <translation type="unfinished">Is PDF &Bookmark</translation> |
||
2078 | </message> |
||
2079 | <message> |
||
2080 | <source>Is PDF A&nnotation</source> |
||
2081 | <translation type="unfinished">Is PDF A&nnotation</translation> |
||
2082 | </message> |
||
2083 | <message> |
||
2084 | <source>Annotation P&roperties</source> |
||
2085 | <translation type="unfinished">Annotation P&roperties</translation> |
||
2086 | </message> |
||
2087 | <message> |
||
2088 | <source>Field P&roperties</source> |
||
2089 | <translation type="unfinished">Field P&roperties</translation> |
||
2090 | </message> |
||
2091 | <message> |
||
2092 | <source>&Edit Shape...</source> |
||
2093 | <translation type="unfinished">&Edit Shape...</translation> |
||
2094 | </message> |
||
2095 | <message> |
||
2096 | <source>&Attach Text to Path</source> |
||
2097 | <translation type="unfinished">&Attach Text to Path</translation> |
||
2098 | </message> |
||
2099 | <message> |
||
2100 | <source>&Detach Text from Path</source> |
||
2101 | <translation type="unfinished">&Detach Text from Path</translation> |
||
2102 | </message> |
||
2103 | <message> |
||
2104 | <source>&Combine Polygons</source> |
||
2105 | <translation type="unfinished">&Combine Polygons</translation> |
||
2106 | </message> |
||
2107 | <message> |
||
2108 | <source>Split &Polygons</source> |
||
2109 | <translation type="unfinished">Split &Polygons</translation> |
||
2110 | </message> |
||
2111 | <message> |
||
2112 | <source>&Bezier Curve</source> |
||
2113 | <translation type="unfinished">&Bezier Curve</translation> |
||
2114 | </message> |
||
2115 | <message> |
||
2116 | <source>&Image Frame</source> |
||
2117 | <translation type="unfinished"></translation> |
||
2118 | </message> |
||
2119 | <message> |
||
2120 | <source>&Outlines</source> |
||
2121 | <translation type="unfinished">&Outlines</translation> |
||
2122 | </message> |
||
2123 | <message> |
||
2124 | <source>&Polygon</source> |
||
2125 | <translation type="unfinished"></translation> |
||
2126 | </message> |
||
2127 | <message> |
||
2128 | <source>&Text Frame</source> |
||
2129 | <translation type="unfinished">&Text Frame</translation> |
||
2130 | </message> |
||
2131 | <message> |
||
2132 | <source>&Glyph...</source> |
||
2133 | <translation type="unfinished"></translation> |
||
2134 | </message> |
||
2135 | <message> |
||
2136 | <source>Sample Text</source> |
||
2137 | <translation type="unfinished"></translation> |
||
2138 | </message> |
||
2139 | <message> |
||
2140 | <source>&Insert...</source> |
||
2141 | <translation type="unfinished">&Insert...</translation> |
||
2142 | </message> |
||
2143 | <message> |
||
2144 | <source>Im&port...</source> |
||
2145 | <translation type="unfinished"></translation> |
||
2146 | </message> |
||
2147 | <message> |
||
2148 | <source>&Delete...</source> |
||
2149 | <translation type="unfinished">&Delete...</translation> |
||
2150 | </message> |
||
2151 | <message> |
||
2152 | <source>&Copy...</source> |
||
2153 | <translation type="unfinished"></translation> |
||
2154 | </message> |
||
2155 | <message> |
||
2156 | <source>&Move...</source> |
||
2157 | <translation type="unfinished">&Move...</translation> |
||
2158 | </message> |
||
2159 | <message> |
||
2160 | <source>&Apply Master Page...</source> |
||
2161 | <translation type="unfinished"></translation> |
||
2162 | </message> |
||
2163 | <message> |
||
2164 | <source>Manage &Guides...</source> |
||
2165 | <translation type="unfinished">Manage &Guides...</translation> |
||
2166 | </message> |
||
2167 | <message> |
||
2168 | <source>Manage Page Properties...</source> |
||
2169 | <translation type="unfinished"></translation> |
||
2170 | </message> |
||
2171 | <message> |
||
2172 | <source>&Fit in window</source> |
||
2173 | <translation type="unfinished"></translation> |
||
2174 | </message> |
||
2175 | <message> |
||
2176 | <source>&50%</source> |
||
2177 | <translation type="unfinished">&50%</translation> |
||
2178 | </message> |
||
2179 | <message> |
||
2180 | <source>&75%</source> |
||
2181 | <translation type="unfinished">&75%</translation> |
||
2182 | </message> |
||
2183 | <message> |
||
2184 | <source>&100%</source> |
||
2185 | <translation type="unfinished">&100%</translation> |
||
2186 | </message> |
||
2187 | <message> |
||
2188 | <source>&200%</source> |
||
2189 | <translation type="unfinished">&200%</translation> |
||
2190 | </message> |
||
2191 | <message> |
||
2192 | <source>&Thumbnails</source> |
||
2193 | <translation type="unfinished">&Thumbnails</translation> |
||
2194 | </message> |
||
2195 | <message> |
||
2196 | <source>Show &Margins</source> |
||
2197 | <translation type="unfinished">Show &Margins</translation> |
||
2198 | </message> |
||
2199 | <message> |
||
2200 | <source>Show &Frames</source> |
||
2201 | <translation type="unfinished">Show &Frames</translation> |
||
2202 | </message> |
||
2203 | <message> |
||
2204 | <source>Show &Images</source> |
||
2205 | <translation type="unfinished">Show &Images</translation> |
||
2206 | </message> |
||
2207 | <message> |
||
2208 | <source>Show &Grid</source> |
||
2209 | <translation type="unfinished">Show &Grid</translation> |
||
2210 | </message> |
||
2211 | <message> |
||
2212 | <source>Show G&uides</source> |
||
2213 | <translation type="unfinished">Show G&uides</translation> |
||
2214 | </message> |
||
2215 | <message> |
||
2216 | <source>Show &Baseline Grid</source> |
||
2217 | <translation type="unfinished">Show &Baseline Grid</translation> |
||
2218 | </message> |
||
2219 | <message> |
||
2220 | <source>Show &Text Chain</source> |
||
2221 | <translation type="unfinished"></translation> |
||
2222 | </message> |
||
2223 | <message> |
||
2224 | <source>Show Control Characters</source> |
||
2225 | <translation type="unfinished"></translation> |
||
2226 | </message> |
||
2227 | <message> |
||
2228 | <source>Rulers relative to Page</source> |
||
2229 | <translation type="unfinished"></translation> |
||
2230 | </message> |
||
2231 | <message> |
||
2232 | <source>Sn&ap to Grid</source> |
||
2233 | <translation type="unfinished">Sn&ap to Grid</translation> |
||
2234 | </message> |
||
2235 | <message> |
||
2236 | <source>Sna&p to Guides</source> |
||
2237 | <translation type="unfinished">Sna&p to Guides</translation> |
||
2238 | </message> |
||
2239 | <message> |
||
2240 | <source>&Properties</source> |
||
2241 | <translation type="unfinished">&Properties</translation> |
||
2242 | </message> |
||
2243 | <message> |
||
2244 | <source>&Scrapbook</source> |
||
2245 | <translation type="unfinished">&Scrapbook</translation> |
||
2246 | </message> |
||
2247 | <message> |
||
2248 | <source>&Layers</source> |
||
2249 | <translation type="unfinished">&Layers</translation> |
||
2250 | </message> |
||
2251 | <message> |
||
2252 | <source>&Arrange Pages</source> |
||
2253 | <translation type="unfinished"></translation> |
||
2254 | </message> |
||
2255 | <message> |
||
2256 | <source>&Bookmarks</source> |
||
2257 | <translation type="unfinished">&Bookmarks</translation> |
||
2258 | </message> |
||
2259 | <message> |
||
2260 | <source>&Measurements</source> |
||
2261 | <translation type="unfinished"></translation> |
||
2262 | </message> |
||
2263 | <message> |
||
2264 | <source>Action &History</source> |
||
2265 | <translation type="unfinished"></translation> |
||
2266 | </message> |
||
2267 | <message> |
||
2268 | <source>Preflight &Verifier</source> |
||
2269 | <translation type="unfinished"></translation> |
||
2270 | </message> |
||
2271 | <message> |
||
2272 | <source>&Align and Distribute</source> |
||
2273 | <translation type="unfinished"></translation> |
||
2274 | </message> |
||
2275 | <message> |
||
2276 | <source>&Tools</source> |
||
2277 | <translation type="unfinished">&Tools</translation> |
||
2278 | </message> |
||
2279 | <message> |
||
2280 | <source>P&DF Tools</source> |
||
2281 | <translation type="unfinished">P&DF Tools</translation> |
||
2282 | </message> |
||
2283 | <message> |
||
2284 | <source>Select Item</source> |
||
2285 | <translation type="unfinished"></translation> |
||
2286 | </message> |
||
2287 | <message> |
||
2288 | <source>T&able</source> |
||
2289 | <translation type="unfinished"></translation> |
||
2290 | </message> |
||
2291 | <message> |
||
2292 | <source>&Shape</source> |
||
2293 | <translation type="unfinished">&Shape</translation> |
||
2294 | </message> |
||
2295 | <message> |
||
2296 | <source>&Line</source> |
||
2297 | <translation type="unfinished">&Line</translation> |
||
2298 | </message> |
||
2299 | <message> |
||
2300 | <source>&Freehand Line</source> |
||
2301 | <translation type="unfinished"></translation> |
||
2302 | </message> |
||
2303 | <message> |
||
2304 | <source>Rotate Item</source> |
||
2305 | <translation type="unfinished">Rotate Item</translation> |
||
2306 | </message> |
||
2307 | <message> |
||
2308 | <source>Zoom in or out</source> |
||
2309 | <translation type="unfinished">Zoom in or out</translation> |
||
2310 | </message> |
||
2311 | <message> |
||
2312 | <source>Zoom in</source> |
||
2313 | <translation type="unfinished"></translation> |
||
2314 | </message> |
||
2315 | <message> |
||
2316 | <source>Zoom out</source> |
||
2317 | <translation type="unfinished"></translation> |
||
2318 | </message> |
||
2319 | <message> |
||
2320 | <source>Edit Contents of Frame</source> |
||
2321 | <translation type="unfinished">Edit Contents of Frame</translation> |
||
2322 | </message> |
||
2323 | <message> |
||
2324 | <source>Edit Text...</source> |
||
2325 | <translation type="unfinished">Edit Text...</translation> |
||
2326 | </message> |
||
2327 | <message> |
||
2328 | <source>Link Text Frames</source> |
||
2329 | <translation type="unfinished">Link Text Frames</translation> |
||
2330 | </message> |
||
2331 | <message> |
||
2332 | <source>Unlink Text Frames</source> |
||
2333 | <translation type="unfinished">Unlink Text Frames</translation> |
||
2334 | </message> |
||
2335 | <message> |
||
2336 | <source>&Eye Dropper</source> |
||
2337 | <translation type="unfinished"></translation> |
||
2338 | </message> |
||
2339 | <message> |
||
2340 | <source>Copy Item Properties</source> |
||
2341 | <translation type="unfinished"></translation> |
||
2342 | </message> |
||
2343 | <message> |
||
2344 | <source>Edit the text with the Story Editor</source> |
||
2345 | <translation type="unfinished">Edit the text with the Story Editor</translation> |
||
2346 | </message> |
||
2347 | <message> |
||
2348 | <source>Insert Text Frame</source> |
||
2349 | <translation type="unfinished">Insert Text Frame</translation> |
||
2350 | </message> |
||
2351 | <message> |
||
2352 | <source>Insert Image Frame</source> |
||
2353 | <translation type="unfinished"></translation> |
||
2354 | </message> |
||
2355 | <message> |
||
2356 | <source>Insert Table</source> |
||
2357 | <translation type="unfinished">Insert Table</translation> |
||
2358 | </message> |
||
2359 | <message> |
||
2360 | <source>Insert Shape</source> |
||
2361 | <translation type="unfinished"></translation> |
||
2362 | </message> |
||
2363 | <message> |
||
2364 | <source>Insert Polygon</source> |
||
2365 | <translation type="unfinished"></translation> |
||
2366 | </message> |
||
2367 | <message> |
||
2368 | <source>Insert Line</source> |
||
2369 | <translation type="unfinished"></translation> |
||
2370 | </message> |
||
2371 | <message> |
||
2372 | <source>Insert Bezier Curve</source> |
||
2373 | <translation type="unfinished"></translation> |
||
2374 | </message> |
||
2375 | <message> |
||
2376 | <source>Insert Freehand Line</source> |
||
2377 | <translation type="unfinished">Insert Freehand Line</translation> |
||
2378 | </message> |
||
2379 | <message> |
||
2380 | <source>&Manage Pictures</source> |
||
2381 | <translation type="unfinished">&Manage Pictures</translation> |
||
2382 | </message> |
||
2383 | <message> |
||
2384 | <source>&Hyphenate Text</source> |
||
2385 | <translation type="unfinished">&Hyphenate Text</translation> |
||
2386 | </message> |
||
2387 | <message> |
||
2388 | <source>Dehyphenate Text</source> |
||
2389 | <translation type="unfinished"></translation> |
||
2390 | </message> |
||
2391 | <message> |
||
2392 | <source>&Generate Table Of Contents</source> |
||
2393 | <translation type="unfinished"></translation> |
||
2394 | </message> |
||
2395 | <message> |
||
2396 | <source>&About Scribus</source> |
||
2397 | <translation type="unfinished">&About Scribus</translation> |
||
2398 | </message> |
||
2399 | <message> |
||
2400 | <source>About &Qt</source> |
||
2401 | <translation type="unfinished">About &Qt</translation> |
||
2402 | </message> |
||
2403 | <message> |
||
2404 | <source>Toolti&ps</source> |
||
2405 | <translation type="unfinished">Toolti&ps</translation> |
||
2406 | </message> |
||
2407 | <message> |
||
2408 | <source>Scribus &Manual...</source> |
||
2409 | <translation type="unfinished">Scribus &Manual...</translation> |
||
2410 | </message> |
||
2411 | <message> |
||
2412 | <source>Smart &Hyphen</source> |
||
2413 | <translation type="unfinished"></translation> |
||
2414 | </message> |
||
2415 | <message> |
||
2416 | <source>Non Breaking Dash</source> |
||
2417 | <translation type="unfinished"></translation> |
||
2418 | </message> |
||
2419 | <message> |
||
2420 | <source>Non Breaking &Space</source> |
||
2421 | <translation type="unfinished"></translation> |
||
2422 | </message> |
||
2423 | <message> |
||
2424 | <source>Page &Number</source> |
||
2425 | <translation type="unfinished"></translation> |
||
2426 | </message> |
||
2427 | <message> |
||
2428 | <source>New Line</source> |
||
2429 | <translation type="unfinished"></translation> |
||
2430 | </message> |
||
2431 | <message> |
||
2432 | <source>Frame Break</source> |
||
2433 | <translation type="unfinished"></translation> |
||
2434 | </message> |
||
2435 | <message> |
||
2436 | <source>Column Break</source> |
||
2437 | <translation type="unfinished"></translation> |
||
2438 | </message> |
||
2439 | <message> |
||
2440 | <source>Copyright</source> |
||
2441 | <translation type="unfinished"></translation> |
||
2442 | </message> |
||
2443 | <message> |
||
2444 | <source>Registered Trademark</source> |
||
2445 | <translation type="unfinished"></translation> |
||
2446 | </message> |
||
2447 | <message> |
||
2448 | <source>Trademark</source> |
||
2449 | <translation type="unfinished"></translation> |
||
2450 | </message> |
||
2451 | <message> |
||
2452 | <source>Bullet</source> |
||
2453 | <translation type="unfinished"></translation> |
||
2454 | </message> |
||
2455 | <message> |
||
2456 | <source>Em Dash</source> |
||
2457 | <translation type="unfinished"></translation> |
||
2458 | </message> |
||
2459 | <message> |
||
2460 | <source>En Dash</source> |
||
2461 | <translation type="unfinished"></translation> |
||
2462 | </message> |
||
2463 | <message> |
||
2464 | <source>Figure Dash</source> |
||
2465 | <translation type="unfinished"></translation> |
||
2466 | </message> |
||
2467 | <message> |
||
2468 | <source>Quotation Dash</source> |
||
2469 | <translation type="unfinished"></translation> |
||
2470 | </message> |
||
2471 | <message> |
||
2472 | <source>Apostrophe</source> |
||
2473 | <translation type="unfinished"></translation> |
||
2474 | </message> |
||
2475 | <message> |
||
2476 | <source>Straight Double</source> |
||
2477 | <translation type="unfinished"></translation> |
||
2478 | </message> |
||
2479 | <message> |
||
2480 | <source>Single Left</source> |
||
2481 | <translation type="unfinished"></translation> |
||
2482 | </message> |
||
2483 | <message> |
||
2484 | <source>Single Right</source> |
||
2485 | <translation type="unfinished"></translation> |
||
2486 | </message> |
||
2487 | <message> |
||
2488 | <source>Double Left</source> |
||
2489 | <translation type="unfinished"></translation> |
||
2490 | </message> |
||
2491 | <message> |
||
2492 | <source>Double Right</source> |
||
2493 | <translation type="unfinished"></translation> |
||
2494 | </message> |
||
2495 | <message> |
||
2496 | <source>Single Reversed</source> |
||
2497 | <translation type="unfinished"></translation> |
||
2498 | </message> |
||
2499 | <message> |
||
2500 | <source>Double Reversed</source> |
||
2501 | <translation type="unfinished"></translation> |
||
2502 | </message> |
||
2503 | <message> |
||
2504 | <source>Single Left Guillemet</source> |
||
2505 | <translation type="unfinished"></translation> |
||
2506 | </message> |
||
2507 | <message> |
||
2508 | <source>Single Right Guillemet</source> |
||
2509 | <translation type="unfinished"></translation> |
||
2510 | </message> |
||
2511 | <message> |
||
2512 | <source>Double Left Guillemet</source> |
||
2513 | <translation type="unfinished"></translation> |
||
2514 | </message> |
||
2515 | <message> |
||
2516 | <source>Double Right Guillemet</source> |
||
2517 | <translation type="unfinished"></translation> |
||
2518 | </message> |
||
2519 | <message> |
||
2520 | <source>Low Single Comma</source> |
||
2521 | <translation type="unfinished"></translation> |
||
2522 | </message> |
||
2523 | <message> |
||
2524 | <source>Low Double Comma</source> |
||
2525 | <translation type="unfinished"></translation> |
||
2526 | </message> |
||
2527 | <message> |
||
2528 | <source>Double Turned Comma</source> |
||
2529 | <translation type="unfinished"></translation> |
||
2530 | </message> |
||
2531 | <message> |
||
2532 | <source>CJK Single Left</source> |
||
2533 | <translation type="unfinished"></translation> |
||
2534 | </message> |
||
2535 | <message> |
||
2536 | <source>CJK Single Right</source> |
||
2537 | <translation type="unfinished"></translation> |
||
2538 | </message> |
||
2539 | <message> |
||
2540 | <source>CJK Double Left</source> |
||
2541 | <translation type="unfinished"></translation> |
||
2542 | </message> |
||
2543 | <message> |
||
2544 | <source>CJK Double Right</source> |
||
2545 | <translation type="unfinished"></translation> |
||
2546 | </message> |
||
2547 | <message> |
||
2548 | <source>Toggle Palettes</source> |
||
2549 | <translation type="unfinished"></translation> |
||
2550 | </message> |
||
2551 | <message> |
||
2552 | <source>Toggle Guides</source> |
||
2553 | <translation type="unfinished"></translation> |
||
2554 | </message> |
||
2555 | </context> |
||
2556 | <context> |
||
890 | cbradney | 2557 | <name>AdvOptions</name> |
2558 | <message> |
||
1135 | cbradney | 2559 | <source>Advanced Options</source> |
2560 | <translation>Advanced Options</translation> |
||
890 | cbradney | 2561 | </message> |
2562 | <message> |
||
1135 | cbradney | 2563 | <source>Creates PostScript Level 3</source> |
2564 | <translation>Creates PostScript Level 3</translation> |
||
890 | cbradney | 2565 | </message> |
2566 | <message> |
||
1135 | cbradney | 2567 | <source>Creates PostScript Level 2 only, beware, |
890 | cbradney | 2568 | this can create huge files</source> |
1135 | cbradney | 2569 | <translation>Creates PostScript Level 2 only, beware, |
890 | cbradney | 2570 | this can create huge files</translation> |
2571 | </message> |
||
2572 | <message> |
||
1135 | cbradney | 2573 | <source>Creates PostScript Level 1 only, beware, |
890 | cbradney | 2574 | this can create huge files</source> |
1135 | cbradney | 2575 | <translation>Creates PostScript Level 1 only, beware, |
890 | cbradney | 2576 | this can create huge files</translation> |
2577 | </message> |
||
2578 | <message> |
||
1135 | cbradney | 2579 | <source>Mirror Page(s) &Horizontal</source> |
2580 | <translation>Mirror Page(s) &Horizontal</translation> |
||
890 | cbradney | 2581 | </message> |
2582 | <message> |
||
1135 | cbradney | 2583 | <source>Mirror Page(s) &Vertical</source> |
2584 | <translation>Mirror Page(s) &Vertical</translation> |
||
890 | cbradney | 2585 | </message> |
2586 | <message> |
||
1135 | cbradney | 2587 | <source>Apply &ICC Profiles</source> |
2588 | <translation>Apply &ICC Profiles</translation> |
||
890 | cbradney | 2589 | </message> |
2590 | <message> |
||
1135 | cbradney | 2591 | <source>PostScript Level &1</source> |
2592 | <translation>PostScript Level &1</translation> |
||
890 | cbradney | 2593 | </message> |
2594 | <message> |
||
1135 | cbradney | 2595 | <source>PostScript Level &2</source> |
2596 | <translation>PostScript Level &2</translation> |
||
890 | cbradney | 2597 | </message> |
2598 | <message> |
||
1135 | cbradney | 2599 | <source>PostScript Level &3</source> |
2600 | <translation>PostScript Level &3</translation> |
||
890 | cbradney | 2601 | </message> |
2602 | <message> |
||
1135 | cbradney | 2603 | <source>&OK</source> |
3064 | cbradney | 2604 | <translation type="obsolete">&OK</translation> |
890 | cbradney | 2605 | </message> |
2606 | <message> |
||
1135 | cbradney | 2607 | <source>&Cancel</source> |
3064 | cbradney | 2608 | <translation type="obsolete">&Cancel</translation> |
890 | cbradney | 2609 | </message> |
2610 | <message> |
||
1135 | cbradney | 2611 | <source>Apply Under Color &Removal</source> |
2612 | <translation>Apply Under Colour &Removal</translation> |
||
890 | cbradney | 2613 | </message> |
2614 | <message> |
||
1135 | cbradney | 2615 | <source>A way of switching off some of the gray shades which are composed |
890 | cbradney | 2616 | of cyan, yellow and magenta and using black instead. |
2617 | UCR most affects parts of images which are neutral and/or dark tones |
||
2618 | which are close to the gray. Use of this may improve printing some images |
||
2619 | and some experimentation and testing is need on a case by case basis. |
||
2620 | UCR reduces the possibility of over saturation with CMY inks.</source> |
||
1135 | cbradney | 2621 | <translation>A way of switching off some of the grey shades which are composed |
890 | cbradney | 2622 | of cyan, yellow and magenta and using black instead. |
2623 | UCR most affects parts of images which are neutral and/or dark tones |
||
2624 | which are close to the grey. Use of this may improve printing some images |
||
2625 | and some experimentation and testing is need on a case by case basis. |
||
2626 | UCR reduces the possibility of over saturation with CMY inks.</translation> |
||
2627 | </message> |
||
3064 | cbradney | 2628 | <message> |
2629 | <source>Set Media Size</source> |
||
2630 | <translation type="unfinished"></translation> |
||
2631 | </message> |
||
1135 | cbradney | 2632 | </context> |
2633 | <context> |
||
890 | cbradney | 2634 | <name>Align</name> |
2635 | <message> |
||
1135 | cbradney | 2636 | <source>Distribute/Align</source> |
3064 | cbradney | 2637 | <translation type="obsolete">Distribute/Align</translation> |
890 | cbradney | 2638 | </message> |
2639 | <message> |
||
1135 | cbradney | 2640 | <source>Align</source> |
3064 | cbradney | 2641 | <translation type="obsolete">Align</translation> |
890 | cbradney | 2642 | </message> |
2643 | <message> |
||
1135 | cbradney | 2644 | <source>Horizontal</source> |
3064 | cbradney | 2645 | <translation type="obsolete">Horizontal</translation> |
890 | cbradney | 2646 | </message> |
2647 | <message> |
||
1135 | cbradney | 2648 | <source>Left Sides</source> |
3064 | cbradney | 2649 | <translation type="obsolete">Left Sides</translation> |
890 | cbradney | 2650 | </message> |
2651 | <message> |
||
1135 | cbradney | 2652 | <source>Middles</source> |
3064 | cbradney | 2653 | <translation type="obsolete">Middles</translation> |
890 | cbradney | 2654 | </message> |
2655 | <message> |
||
1135 | cbradney | 2656 | <source>Right Sides</source> |
3064 | cbradney | 2657 | <translation type="obsolete">Right Sides</translation> |
890 | cbradney | 2658 | </message> |
2659 | <message> |
||
1135 | cbradney | 2660 | <source>Vertical</source> |
3064 | cbradney | 2661 | <translation type="obsolete">Vertical</translation> |
890 | cbradney | 2662 | </message> |
2663 | <message> |
||
1135 | cbradney | 2664 | <source>Top Sides</source> |
3064 | cbradney | 2665 | <translation type="obsolete">Top Sides</translation> |
890 | cbradney | 2666 | </message> |
2667 | <message> |
||
1135 | cbradney | 2668 | <source>Bottom Sides</source> |
3064 | cbradney | 2669 | <translation type="obsolete">Bottom Sides</translation> |
890 | cbradney | 2670 | </message> |
2671 | <message> |
||
1135 | cbradney | 2672 | <source> mm</source> |
1525 | cbradney | 2673 | <translation type="obsolete">mm</translation> |
890 | cbradney | 2674 | </message> |
2675 | <message> |
||
1135 | cbradney | 2676 | <source> in</source> |
1525 | cbradney | 2677 | <translation type="obsolete">in</translation> |
890 | cbradney | 2678 | </message> |
2679 | <message> |
||
1135 | cbradney | 2680 | <source> p</source> |
1525 | cbradney | 2681 | <translation type="obsolete">p</translation> |
890 | cbradney | 2682 | </message> |
2683 | <message> |
||
1135 | cbradney | 2684 | <source>&OK</source> |
3064 | cbradney | 2685 | <translation type="obsolete">&OK</translation> |
890 | cbradney | 2686 | </message> |
2687 | <message> |
||
1135 | cbradney | 2688 | <source>&Apply</source> |
3064 | cbradney | 2689 | <translation type="obsolete">&Apply</translation> |
890 | cbradney | 2690 | </message> |
2691 | <message> |
||
1135 | cbradney | 2692 | <source>&Cancel</source> |
3064 | cbradney | 2693 | <translation type="obsolete">&Cancel</translation> |
890 | cbradney | 2694 | </message> |
2695 | <message> |
||
1135 | cbradney | 2696 | <source>&Between:</source> |
3064 | cbradney | 2697 | <translation type="obsolete">&Between:</translation> |
890 | cbradney | 2698 | </message> |
2699 | <message> |
||
1135 | cbradney | 2700 | <source>A&lign</source> |
3064 | cbradney | 2701 | <translation type="obsolete">A&lign</translation> |
890 | cbradney | 2702 | </message> |
2703 | <message> |
||
1135 | cbradney | 2704 | <source>Di&splacement</source> |
3064 | cbradney | 2705 | <translation type="obsolete">Di&splacement</translation> |
890 | cbradney | 2706 | </message> |
2707 | <message> |
||
1135 | cbradney | 2708 | <source>Distribute &Evenly</source> |
3064 | cbradney | 2709 | <translation type="obsolete">Distribute &Evenly</translation> |
890 | cbradney | 2710 | </message> |
2711 | <message> |
||
1135 | cbradney | 2712 | <source>Bet&ween:</source> |
3064 | cbradney | 2713 | <translation type="obsolete">Bet&ween:</translation> |
890 | cbradney | 2714 | </message> |
2715 | <message> |
||
1135 | cbradney | 2716 | <source>Do &Not Change</source> |
3064 | cbradney | 2717 | <translation type="obsolete">Do &Not Change</translation> |
890 | cbradney | 2718 | </message> |
2719 | <message> |
||
1135 | cbradney | 2720 | <source>Al&ign</source> |
3064 | cbradney | 2721 | <translation type="obsolete">Al&ign</translation> |
890 | cbradney | 2722 | </message> |
2723 | <message> |
||
1135 | cbradney | 2724 | <source>Dis&placement</source> |
3064 | cbradney | 2725 | <translation type="obsolete">Dis&placement</translation> |
890 | cbradney | 2726 | </message> |
2727 | <message> |
||
1135 | cbradney | 2728 | <source> pt</source> |
1525 | cbradney | 2729 | <translation type="obsolete"> pt</translation> |
890 | cbradney | 2730 | </message> |
2731 | <message> |
||
1135 | cbradney | 2732 | <source>Distribute E&venly</source> |
3064 | cbradney | 2733 | <translation type="obsolete">Distribute E&venly</translation> |
890 | cbradney | 2734 | </message> |
2735 | <message> |
||
1135 | cbradney | 2736 | <source>&Do Not Change</source> |
3064 | cbradney | 2737 | <translation type="obsolete">&Do Not Change</translation> |
890 | cbradney | 2738 | </message> |
1135 | cbradney | 2739 | </context> |
2740 | <context> |
||
3064 | cbradney | 2741 | <name>AlignDistributePalette</name> |
2742 | <message> |
||
2743 | <source>Align and Distribute</source> |
||
2744 | <translation type="unfinished"></translation> |
||
2745 | </message> |
||
2746 | <message> |
||
2747 | <source>Align</source> |
||
2748 | <translation type="unfinished">Align</translation> |
||
2749 | </message> |
||
2750 | <message> |
||
2751 | <source>&Relative to:</source> |
||
2752 | <translation type="unfinished"></translation> |
||
2753 | </message> |
||
2754 | <message> |
||
2755 | <source>First Selected</source> |
||
2756 | <translation type="unfinished"></translation> |
||
2757 | </message> |
||
2758 | <message> |
||
2759 | <source>Last Selected</source> |
||
2760 | <translation type="unfinished"></translation> |
||
2761 | </message> |
||
2762 | <message> |
||
2763 | <source>Page</source> |
||
2764 | <translation type="unfinished">Page</translation> |
||
2765 | </message> |
||
2766 | <message> |
||
2767 | <source>Margins</source> |
||
2768 | <translation type="unfinished"></translation> |
||
2769 | </message> |
||
2770 | <message> |
||
2771 | <source>Guide</source> |
||
2772 | <translation type="unfinished"></translation> |
||
2773 | </message> |
||
2774 | <message> |
||
2775 | <source>Selection</source> |
||
2776 | <translation type="unfinished"></translation> |
||
2777 | </message> |
||
2778 | <message> |
||
2779 | <source>Align right sides of objects to left side of anchor</source> |
||
2780 | <translation type="unfinished"></translation> |
||
2781 | </message> |
||
2782 | <message> |
||
2783 | <source>Align left sides of objects to right side of anchor</source> |
||
2784 | <translation type="unfinished"></translation> |
||
2785 | </message> |
||
2786 | <message> |
||
2787 | <source>Align bottoms</source> |
||
2788 | <translation type="unfinished"></translation> |
||
2789 | </message> |
||
2790 | <message> |
||
2791 | <source>Align right sides</source> |
||
2792 | <translation type="unfinished"></translation> |
||
2793 | </message> |
||
2794 | <message> |
||
2795 | <source>Align tops of objects to bottom of anchor</source> |
||
2796 | <translation type="unfinished"></translation> |
||
2797 | </message> |
||
2798 | <message> |
||
2799 | <source>Center on vertical axis</source> |
||
2800 | <translation type="unfinished"></translation> |
||
2801 | </message> |
||
2802 | <message> |
||
2803 | <source>Align left sides</source> |
||
2804 | <translation type="unfinished"></translation> |
||
2805 | </message> |
||
2806 | <message> |
||
2807 | <source>Center on horizontal axis</source> |
||
2808 | <translation type="unfinished"></translation> |
||
2809 | </message> |
||
2810 | <message> |
||
2811 | <source>Align bottoms of objects to top of anchor</source> |
||
2812 | <translation type="unfinished"></translation> |
||
2813 | </message> |
||
2814 | <message> |
||
2815 | <source>Align tops</source> |
||
2816 | <translation type="unfinished"></translation> |
||
2817 | </message> |
||
2818 | <message> |
||
2819 | <source>&Selected Guide:</source> |
||
2820 | <translation type="unfinished"></translation> |
||
2821 | </message> |
||
2822 | <message> |
||
2823 | <source>Distribute</source> |
||
2824 | <translation type="unfinished"></translation> |
||
2825 | </message> |
||
2826 | <message> |
||
2827 | <source>Make horizontal gaps between objects equal</source> |
||
2828 | <translation type="unfinished"></translation> |
||
2829 | </message> |
||
2830 | <message> |
||
2831 | <source>Make horizontal gaps between objects equal to the value specified</source> |
||
2832 | <translation type="unfinished"></translation> |
||
2833 | </message> |
||
2834 | <message> |
||
2835 | <source>Distribute right sides equidistantly</source> |
||
2836 | <translation type="unfinished"></translation> |
||
2837 | </message> |
||
2838 | <message> |
||
2839 | <source>Distribute bottoms equidistantly</source> |
||
2840 | <translation type="unfinished"></translation> |
||
2841 | </message> |
||
2842 | <message> |
||
2843 | <source>Distribute centers equidistantly horizontally</source> |
||
2844 | <translation type="unfinished"></translation> |
||
2845 | </message> |
||
2846 | <message> |
||
2847 | <source>Make vertical gaps between objects equal</source> |
||
2848 | <translation type="unfinished"></translation> |
||
2849 | </message> |
||
2850 | <message> |
||
2851 | <source>Make vertical gaps between objects equal to the value specified</source> |
||
2852 | <translation type="unfinished"></translation> |
||
2853 | </message> |
||
2854 | <message> |
||
2855 | <source>Distribute left sides equidistantly</source> |
||
2856 | <translation type="unfinished"></translation> |
||
2857 | </message> |
||
2858 | <message> |
||
2859 | <source>Distribute centers equidistantly vertically</source> |
||
2860 | <translation type="unfinished"></translation> |
||
2861 | </message> |
||
2862 | <message> |
||
2863 | <source>Distribute tops equidistantly</source> |
||
2864 | <translation type="unfinished"></translation> |
||
2865 | </message> |
||
2866 | <message> |
||
2867 | <source>&Distance:</source> |
||
2868 | <translation type="unfinished"></translation> |
||
2869 | </message> |
||
2870 | <message> |
||
2871 | <source>Distribute the items with the distance specified</source> |
||
2872 | <translation type="unfinished"></translation> |
||
2873 | </message> |
||
2874 | <message> |
||
2875 | <source>None Selected</source> |
||
2876 | <translation type="unfinished"></translation> |
||
2877 | </message> |
||
2878 | <message> |
||
2879 | <source>Warning</source> |
||
2880 | <translation type="unfinished">Warning</translation> |
||
2881 | </message> |
||
2882 | <message> |
||
2883 | <source>Some objects are locked.</source> |
||
2884 | <translation type="unfinished"></translation> |
||
2885 | </message> |
||
2886 | <message> |
||
2887 | <source>&Unlock All</source> |
||
2888 | <translation type="unfinished"></translation> |
||
2889 | </message> |
||
2890 | <message> |
||
2891 | <source>Y: %1%2</source> |
||
2892 | <translation type="unfinished"></translation> |
||
2893 | </message> |
||
2894 | <message> |
||
2895 | <source>X: %1%2</source> |
||
2896 | <translation type="unfinished"></translation> |
||
2897 | </message> |
||
2898 | </context> |
||
2899 | <context> |
||
890 | cbradney | 2900 | <name>AlignSelect</name> |
2901 | <message> |
||
1135 | cbradney | 2902 | <source>Align Text Left</source> |
2903 | <translation>Align Text Left</translation> |
||
890 | cbradney | 2904 | </message> |
2905 | <message> |
||
1135 | cbradney | 2906 | <source>Align Text Right</source> |
2907 | <translation>Align Text Right</translation> |
||
890 | cbradney | 2908 | </message> |
2909 | <message> |
||
1135 | cbradney | 2910 | <source>Align Text Center</source> |
2911 | <translation>Align Text Centre</translation> |
||
890 | cbradney | 2912 | </message> |
2913 | <message> |
||
1135 | cbradney | 2914 | <source>Align Text Justified</source> |
2915 | <translation>Align Text Justified</translation> |
||
890 | cbradney | 2916 | </message> |
2917 | <message> |
||
1135 | cbradney | 2918 | <source>Align Text Forced Justified</source> |
2919 | <translation>Align Text Forced Justified</translation> |
||
890 | cbradney | 2920 | </message> |
1135 | cbradney | 2921 | </context> |
2922 | <context> |
||
890 | cbradney | 2923 | <name>Annot</name> |
2924 | <message> |
||
1135 | cbradney | 2925 | <source>Field Properties</source> |
2926 | <translation>Field Properties</translation> |
||
890 | cbradney | 2927 | </message> |
2928 | <message> |
||
1135 | cbradney | 2929 | <source>Type:</source> |
2930 | <translation>Type:</translation> |
||
890 | cbradney | 2931 | </message> |
2932 | <message> |
||
1135 | cbradney | 2933 | <source>Button</source> |
2934 | <translation>Button</translation> |
||
890 | cbradney | 2935 | </message> |
2936 | <message> |
||
1135 | cbradney | 2937 | <source>Text Field</source> |
2938 | <translation>Text Field</translation> |
||
890 | cbradney | 2939 | </message> |
2940 | <message> |
||
1135 | cbradney | 2941 | <source>Check Box</source> |
2942 | <translation>Check Box</translation> |
||
890 | cbradney | 2943 | </message> |
2944 | <message> |
||
1135 | cbradney | 2945 | <source>Combo Box</source> |
2946 | <translation>Combo Box</translation> |
||
890 | cbradney | 2947 | </message> |
2948 | <message> |
||
1135 | cbradney | 2949 | <source>List Box</source> |
2950 | <translation>List Box</translation> |
||
890 | cbradney | 2951 | </message> |
2952 | <message> |
||
1135 | cbradney | 2953 | <source>Properties</source> |
2954 | <translation>Properties</translation> |
||
890 | cbradney | 2955 | </message> |
2956 | <message> |
||
1135 | cbradney | 2957 | <source>Name:</source> |
2958 | <translation>Name:</translation> |
||
890 | cbradney | 2959 | </message> |
2960 | <message> |
||
1135 | cbradney | 2961 | <source>Tool-Tip:</source> |
2962 | <translation>Tool-Tip:</translation> |
||
890 | cbradney | 2963 | </message> |
2964 | <message> |
||
1135 | cbradney | 2965 | <source>Text</source> |
2966 | <translation>Text</translation> |
||
890 | cbradney | 2967 | </message> |
2968 | <message> |
||
1135 | cbradney | 2969 | <source>Border</source> |
2970 | <translation>Border</translation> |
||
890 | cbradney | 2971 | </message> |
2972 | <message> |
||
1135 | cbradney | 2973 | <source>Color:</source> |
2974 | <translation>Colour:</translation> |
||
890 | cbradney | 2975 | </message> |
2976 | <message> |
||
1135 | cbradney | 2977 | <source>None</source> |
2978 | <translation>None</translation> |
||
890 | cbradney | 2979 | </message> |
2980 | <message> |
||
1135 | cbradney | 2981 | <source>Width:</source> |
2982 | <translation>Width:</translation> |
||
890 | cbradney | 2983 | </message> |
2984 | <message> |
||
1135 | cbradney | 2985 | <source>Thin</source> |
2986 | <translation>Thin</translation> |
||
890 | cbradney | 2987 | </message> |
2988 | <message> |
||
1135 | cbradney | 2989 | <source>Normal</source> |
2990 | <translation>Normal</translation> |
||
890 | cbradney | 2991 | </message> |
2992 | <message> |
||
1135 | cbradney | 2993 | <source>Wide</source> |
2994 | <translation>Wide</translation> |
||
890 | cbradney | 2995 | </message> |
2996 | <message> |
||
1135 | cbradney | 2997 | <source>Style:</source> |
2998 | <translation>Style:</translation> |
||
890 | cbradney | 2999 | </message> |
3000 | <message> |
||
1135 | cbradney | 3001 | <source>Solid</source> |
3002 | <translation>Solid</translation> |
||
890 | cbradney | 3003 | </message> |
3004 | <message> |
||
1135 | cbradney | 3005 | <source>Dashed</source> |
3006 | <translation>Dashed</translation> |
||
890 | cbradney | 3007 | </message> |
3008 | <message> |
||
1135 | cbradney | 3009 | <source>Underline</source> |
3010 | <translation>Underline</translation> |
||
890 | cbradney | 3011 | </message> |
3012 | <message> |
||
1135 | cbradney | 3013 | <source>Beveled</source> |
3014 | <translation>Beveled</translation> |
||
890 | cbradney | 3015 | </message> |
3016 | <message> |
||
1135 | cbradney | 3017 | <source>Inset</source> |
3018 | <translation>Inset</translation> |
||
890 | cbradney | 3019 | </message> |
3020 | <message> |
||
1135 | cbradney | 3021 | <source>Other</source> |
3022 | <translation>Other</translation> |
||
890 | cbradney | 3023 | </message> |
3024 | <message> |
||
1135 | cbradney | 3025 | <source>Read Only</source> |
3026 | <translation>Read Only</translation> |
||
890 | cbradney | 3027 | </message> |
3028 | <message> |
||
1135 | cbradney | 3029 | <source>Required</source> |
3030 | <translation>Required</translation> |
||
890 | cbradney | 3031 | </message> |
3032 | <message> |
||
1135 | cbradney | 3033 | <source>Don't Export Value</source> |
3034 | <translation>Don't Export Value</translation> |
||
890 | cbradney | 3035 | </message> |
3036 | <message> |
||
1135 | cbradney | 3037 | <source>Visibility:</source> |
3038 | <translation>Visibility:</translation> |
||
890 | cbradney | 3039 | </message> |
3040 | <message> |
||
1135 | cbradney | 3041 | <source>Visible</source> |
3042 | <translation>Visible</translation> |
||
890 | cbradney | 3043 | </message> |
3044 | <message> |
||
1135 | cbradney | 3045 | <source>Hidden</source> |
3046 | <translation>Hidden</translation> |
||
890 | cbradney | 3047 | </message> |
3048 | <message> |
||
1135 | cbradney | 3049 | <source>No Print</source> |
3050 | <translation>No Print</translation> |
||
890 | cbradney | 3051 | </message> |
3052 | <message> |
||
1135 | cbradney | 3053 | <source>No View</source> |
3054 | <translation>No View</translation> |
||
890 | cbradney | 3055 | </message> |
3056 | <message> |
||
1135 | cbradney | 3057 | <source>Appearance</source> |
3058 | <translation>Appearance</translation> |
||
890 | cbradney | 3059 | </message> |
3060 | <message> |
||
1135 | cbradney | 3061 | <source>Text for Button Down</source> |
3062 | <translation>Text for Button Down</translation> |
||
890 | cbradney | 3063 | </message> |
3064 | <message> |
||
1135 | cbradney | 3065 | <source>Text for Roll Over</source> |
3066 | <translation>Text for Roll Over</translation> |
||
890 | cbradney | 3067 | </message> |
3068 | <message> |
||
1135 | cbradney | 3069 | <source>Icons</source> |
3070 | <translation>Icons</translation> |
||
890 | cbradney | 3071 | </message> |
3072 | <message> |
||
1135 | cbradney | 3073 | <source>Use Icons</source> |
3074 | <translation>Use Icons</translation> |
||
890 | cbradney | 3075 | </message> |
3076 | <message> |
||
1135 | cbradney | 3077 | <source>Remove</source> |
3078 | <translation>Remove</translation> |
||
890 | cbradney | 3079 | </message> |
3080 | <message> |
||
1135 | cbradney | 3081 | <source>Pressed</source> |
3082 | <translation>Pressed</translation> |
||
890 | cbradney | 3083 | </message> |
3084 | <message> |
||
1135 | cbradney | 3085 | <source>Roll Over</source> |
3086 | <translation>Roll Over</translation> |
||
890 | cbradney | 3087 | </message> |
3088 | <message> |
||
1135 | cbradney | 3089 | <source>Icon Placement...</source> |
3090 | <translation>Icon Placement...</translation> |
||
890 | cbradney | 3091 | </message> |
3092 | <message> |
||
1135 | cbradney | 3093 | <source>Highlight</source> |
3094 | <translation>Highlight</translation> |
||
890 | cbradney | 3095 | </message> |
3096 | <message> |
||
1135 | cbradney | 3097 | <source>Invert</source> |
3098 | <translation>Invert</translation> |
||
890 | cbradney | 3099 | </message> |
3100 | <message> |
||
1135 | cbradney | 3101 | <source>Outlined</source> |
3102 | <translation>Outlined</translation> |
||
890 | cbradney | 3103 | </message> |
3104 | <message> |
||
1135 | cbradney | 3105 | <source>Push</source> |
3106 | <translation>Push</translation> |
||
890 | cbradney | 3107 | </message> |
3108 | <message> |
||
1135 | cbradney | 3109 | <source>Multi-Line</source> |
3110 | <translation>Multi-Line</translation> |
||
890 | cbradney | 3111 | </message> |
3112 | <message> |
||
1135 | cbradney | 3113 | <source>Password</source> |
3114 | <translation>Password</translation> |
||
890 | cbradney | 3115 | </message> |
3116 | <message> |
||
1135 | cbradney | 3117 | <source>Limit of</source> |
3118 | <translation>Limit of</translation> |
||
890 | cbradney | 3119 | </message> |
3120 | <message> |
||
1135 | cbradney | 3121 | <source>Characters</source> |
3122 | <translation>Characters</translation> |
||
890 | cbradney | 3123 | </message> |
3124 | <message> |
||
1135 | cbradney | 3125 | <source>Do Not Scroll</source> |
3126 | <translation>Do Not Scroll</translation> |
||
890 | cbradney | 3127 | </message> |
3128 | <message> |
||
1135 | cbradney | 3129 | <source>Do Not Spell Check</source> |
3130 | <translation>Do Not Spell Check</translation> |
||
890 | cbradney | 3131 | </message> |
3132 | <message> |
||
1135 | cbradney | 3133 | <source>Check Style:</source> |
3134 | <translation>Check Style:</translation> |
||
890 | cbradney | 3135 | </message> |
3136 | <message> |
||
1135 | cbradney | 3137 | <source>Check</source> |
3138 | <translation>Check</translation> |
||
890 | cbradney | 3139 | </message> |
3140 | <message> |
||
1135 | cbradney | 3141 | <source>Cross</source> |
3142 | <translation>Cross</translation> |
||
890 | cbradney | 3143 | </message> |
3144 | <message> |
||
1135 | cbradney | 3145 | <source>Diamond</source> |
3146 | <translation>Diamond</translation> |
||
890 | cbradney | 3147 | </message> |
3148 | <message> |
||
1135 | cbradney | 3149 | <source>Circle</source> |
3150 | <translation>Circle</translation> |
||
890 | cbradney | 3151 | </message> |
3152 | <message> |
||
1135 | cbradney | 3153 | <source>Star</source> |
3154 | <translation>Star</translation> |
||
890 | cbradney | 3155 | </message> |
3156 | <message> |
||
1135 | cbradney | 3157 | <source>Square</source> |
3158 | <translation>Square</translation> |
||
890 | cbradney | 3159 | </message> |
3160 | <message> |
||
1135 | cbradney | 3161 | <source>Default is Checked</source> |
3162 | <translation>Default is Checked</translation> |
||
890 | cbradney | 3163 | </message> |
3164 | <message> |
||
1135 | cbradney | 3165 | <source>Editable</source> |
3166 | <translation>Editable</translation> |
||
890 | cbradney | 3167 | </message> |
3168 | <message> |
||
1135 | cbradney | 3169 | <source>Options</source> |
3170 | <translation>Options</translation> |
||
890 | cbradney | 3171 | </message> |
3172 | <message> |
||
1135 | cbradney | 3173 | <source>Java Script</source> |
3174 | <translation>Java Script</translation> |
||
890 | cbradney | 3175 | </message> |
3176 | <message> |
||
1135 | cbradney | 3177 | <source>Go To</source> |
3178 | <translation>Go To</translation> |
||
890 | cbradney | 3179 | </message> |
3180 | <message> |
||
1135 | cbradney | 3181 | <source>Submit Form</source> |
3182 | <translation>Submit Form</translation> |
||
890 | cbradney | 3183 | </message> |
3184 | <message> |
||
1135 | cbradney | 3185 | <source>Reset Form</source> |
3186 | <translation>Reset Form</translation> |
||
890 | cbradney | 3187 | </message> |
3188 | <message> |
||
1135 | cbradney | 3189 | <source>Import Data</source> |
3190 | <translation>Import Data</translation> |
||
890 | cbradney | 3191 | </message> |
3192 | <message> |
||
1135 | cbradney | 3193 | <source>Event:</source> |
3194 | <translation>Event:</translation> |
||
890 | cbradney | 3195 | </message> |
3196 | <message> |
||
1135 | cbradney | 3197 | <source>Mouse Up</source> |
3198 | <translation>Mouse Up</translation> |
||
890 | cbradney | 3199 | </message> |
3200 | <message> |
||
1135 | cbradney | 3201 | <source>Mouse Down</source> |
3202 | <translation>Mouse Down</translation> |
||
890 | cbradney | 3203 | </message> |
3204 | <message> |
||
1135 | cbradney | 3205 | <source>Mouse Enter</source> |
3206 | <translation>Mouse Enter</translation> |
||
890 | cbradney | 3207 | </message> |
3208 | <message> |
||
1135 | cbradney | 3209 | <source>Mouse Exit</source> |
3210 | <translation>Mouse Exit</translation> |
||
890 | cbradney | 3211 | </message> |
3212 | <message> |
||
1135 | cbradney | 3213 | <source>On Focus</source> |
3214 | <translation>On Focus</translation> |
||
890 | cbradney | 3215 | </message> |
3216 | <message> |
||
1135 | cbradney | 3217 | <source>On Blur</source> |
3218 | <translation>On Blur</translation> |
||
890 | cbradney | 3219 | </message> |
3220 | <message> |
||
1135 | cbradney | 3221 | <source>Script:</source> |
3222 | <translation>Script:</translation> |
||
890 | cbradney | 3223 | </message> |
3224 | <message> |
||
1135 | cbradney | 3225 | <source>Edit...</source> |
3226 | <translation>Edit...</translation> |
||
890 | cbradney | 3227 | </message> |
3228 | <message> |
||
1135 | cbradney | 3229 | <source>Submit to URL:</source> |
3230 | <translation>Submit to URL:</translation> |
||
890 | cbradney | 3231 | </message> |
3232 | <message> |
||
1135 | cbradney | 3233 | <source>Submit Data as HTML</source> |
3234 | <translation>Submit Data as HTML</translation> |
||
890 | cbradney | 3235 | </message> |
3236 | <message> |
||
1135 | cbradney | 3237 | <source>Import Data from:</source> |
3238 | <translation>Import Data from:</translation> |
||
890 | cbradney | 3239 | </message> |
3240 | <message> |
||
1135 | cbradney | 3241 | <source>Destination</source> |
3242 | <translation>Destination</translation> |
||
890 | cbradney | 3243 | </message> |
3244 | <message> |
||
1135 | cbradney | 3245 | <source>To File:</source> |
3246 | <translation>To File:</translation> |
||
890 | cbradney | 3247 | </message> |
3248 | <message> |
||
1135 | cbradney | 3249 | <source>Change...</source> |
3250 | <translation>Change...</translation> |
||
890 | cbradney | 3251 | </message> |
3252 | <message> |
||
1135 | cbradney | 3253 | <source>Page:</source> |
3254 | <translation>Page:</translation> |
||
890 | cbradney | 3255 | </message> |
3256 | <message> |
||
1135 | cbradney | 3257 | <source>X-Pos:</source> |
3258 | <translation>X-Pos:</translation> |
||
890 | cbradney | 3259 | </message> |
3260 | <message> |
||
1135 | cbradney | 3261 | <source> pt</source> |
3262 | <translation> pt</translation> |
||
890 | cbradney | 3263 | </message> |
3264 | <message> |
||
1135 | cbradney | 3265 | <source>Y-Pos:</source> |
3266 | <translation>Y-Pos:</translation> |
||
890 | cbradney | 3267 | </message> |
3268 | <message> |
||
1135 | cbradney | 3269 | <source>Action</source> |
3270 | <translation>Action</translation> |
||
890 | cbradney | 3271 | </message> |
3272 | <message> |
||
1135 | cbradney | 3273 | <source>Field is formatted as:</source> |
3274 | <translation>Field is formatted as:</translation> |
||
890 | cbradney | 3275 | </message> |
3276 | <message> |
||
1135 | cbradney | 3277 | <source>Plain</source> |
3278 | <translation>Plain</translation> |
||
890 | cbradney | 3279 | </message> |
3280 | <message> |
||
1135 | cbradney | 3281 | <source>Number</source> |
3282 | <translation>Number</translation> |
||
890 | cbradney | 3283 | </message> |
3284 | <message> |
||
1135 | cbradney | 3285 | <source>Percentage</source> |
3286 | <translation>Percentage</translation> |
||
890 | cbradney | 3287 | </message> |
3288 | <message> |
||
1135 | cbradney | 3289 | <source>Date</source> |
3290 | <translation>Date</translation> |
||
890 | cbradney | 3291 | </message> |
3292 | <message> |
||
1135 | cbradney | 3293 | <source>Time</source> |
3294 | <translation>Time</translation> |
||
890 | cbradney | 3295 | </message> |
3296 | <message> |
||
1135 | cbradney | 3297 | <source>Custom</source> |
3298 | <translation>Custom</translation> |
||
890 | cbradney | 3299 | </message> |
3300 | <message> |
||
1135 | cbradney | 3301 | <source>Number Format</source> |
3302 | <translation>Number Format</translation> |
||
890 | cbradney | 3303 | </message> |
3304 | <message> |
||
1135 | cbradney | 3305 | <source>Decimals:</source> |
3306 | <translation>Decimals:</translation> |
||
890 | cbradney | 3307 | </message> |
3308 | <message> |
||
1135 | cbradney | 3309 | <source>Use Currency Symbol</source> |
3310 | <translation>Use Currency Symbol</translation> |
||
890 | cbradney | 3311 | </message> |
3312 | <message> |
||
1135 | cbradney | 3313 | <source>Prepend Currency Symbol</source> |
3314 | <translation>Prepend Currency Symbol</translation> |
||
890 | cbradney | 3315 | </message> |
3316 | <message> |
||
1135 | cbradney | 3317 | <source>Formatting</source> |
3318 | <translation>Formatting</translation> |
||
890 | cbradney | 3319 | </message> |
3320 | <message> |
||
1135 | cbradney | 3321 | <source>Percent Format</source> |
3322 | <translation>Percent Format</translation> |
||
890 | cbradney | 3323 | </message> |
3324 | <message> |
||
1135 | cbradney | 3325 | <source>Date Format</source> |
3326 | <translation>Date Format</translation> |
||
890 | cbradney | 3327 | </message> |
3328 | <message> |
||
1135 | cbradney | 3329 | <source>Time Format</source> |
3330 | <translation>Time Format</translation> |
||
890 | cbradney | 3331 | </message> |
3332 | <message> |
||
1135 | cbradney | 3333 | <source>Custom Scripts</source> |
3334 | <translation>Custom Scripts</translation> |
||
890 | cbradney | 3335 | </message> |
3336 | <message> |
||
1135 | cbradney | 3337 | <source>Format:</source> |
3338 | <translation>Format:</translation> |
||
890 | cbradney | 3339 | </message> |
3340 | <message> |
||
1135 | cbradney | 3341 | <source>Keystroke:</source> |
3342 | <translation>Keystroke:</translation> |
||
890 | cbradney | 3343 | </message> |
3344 | <message> |
||
1135 | cbradney | 3345 | <source>Format</source> |
3346 | <translation>Format</translation> |
||
890 | cbradney | 3347 | </message> |
3348 | <message> |
||
1135 | cbradney | 3349 | <source>Value is not validated</source> |
3350 | <translation>Value is not validated</translation> |
||
890 | cbradney | 3351 | </message> |
3352 | <message> |
||
1135 | cbradney | 3353 | <source>Value must be greater than or equal to:</source> |
3354 | <translation>Value must be greater than or equal to:</translation> |
||
890 | cbradney | 3355 | </message> |
3356 | <message> |
||
1135 | cbradney | 3357 | <source>and less or equal to:</source> |
3358 | <translation>and less or equal to:</translation> |
||
890 | cbradney | 3359 | </message> |
3360 | <message> |
||
1135 | cbradney | 3361 | <source>Custom validate script:</source> |
3362 | <translation>Custom validate script:</translation> |
||
890 | cbradney | 3363 | </message> |
3364 | <message> |
||
1135 | cbradney | 3365 | <source>Validate</source> |
3366 | <translation>Validate</translation> |
||
890 | cbradney | 3367 | </message> |
3368 | <message> |
||
1135 | cbradney | 3369 | <source>Value is not calculated</source> |
3370 | <translation>Value is not calculated</translation> |
||
890 | cbradney | 3371 | </message> |
3372 | <message> |
||
1135 | cbradney | 3373 | <source>Value is the</source> |
3374 | <translation>Value is the</translation> |
||
890 | cbradney | 3375 | </message> |
3376 | <message> |
||
1135 | cbradney | 3377 | <source>sum</source> |
3378 | <translation>sum</translation> |
||
890 | cbradney | 3379 | </message> |
3380 | <message> |
||
1135 | cbradney | 3381 | <source>product</source> |
3382 | <translation>product</translation> |
||
890 | cbradney | 3383 | </message> |
3384 | <message> |
||
1135 | cbradney | 3385 | <source>average</source> |
3386 | <translation>average</translation> |
||
890 | cbradney | 3387 | </message> |
3388 | <message> |
||
1135 | cbradney | 3389 | <source>minimum</source> |
3390 | <translation>minimum</translation> |
||
890 | cbradney | 3391 | </message> |
3392 | <message> |
||
1135 | cbradney | 3393 | <source>maximum</source> |
3394 | <translation>maximum</translation> |
||
890 | cbradney | 3395 | </message> |
3396 | <message> |
||
1135 | cbradney | 3397 | <source>of the following fields:</source> |
3398 | <translation>of the following fields:</translation> |
||
890 | cbradney | 3399 | </message> |
3400 | <message> |
||
1135 | cbradney | 3401 | <source>Pick...</source> |
3402 | <translation>Pick...</translation> |
||
890 | cbradney | 3403 | </message> |
3404 | <message> |
||
1135 | cbradney | 3405 | <source>Custom calculation script:</source> |
3406 | <translation>Custom calculation script:</translation> |
||
890 | cbradney | 3407 | </message> |
3408 | <message> |
||
1135 | cbradney | 3409 | <source>Calculate</source> |
3410 | <translation>Calculate</translation> |
||
890 | cbradney | 3411 | </message> |
3412 | <message> |
||
1135 | cbradney | 3413 | <source>OK</source> |
3414 | <translation>OK</translation> |
||
890 | cbradney | 3415 | </message> |
3416 | <message> |
||
1135 | cbradney | 3417 | <source>Cancel</source> |
3418 | <translation>Cancel</translation> |
||
890 | cbradney | 3419 | </message> |
3420 | <message> |
||
1135 | cbradney | 3421 | <source>Enter a comma separated list of fields here</source> |
3422 | <translation>Enter a comma separated list of fields here</translation> |
||
890 | cbradney | 3423 | </message> |
3424 | <message> |
||
1135 | cbradney | 3425 | <source>You need at least the Icon for Normal to use Icons for Buttons</source> |
3426 | <translation>You need at least the Icon for Normal to use Icons for Buttons</translation> |
||
890 | cbradney | 3427 | </message> |
3428 | <message> |
||
1135 | cbradney | 3429 | <source>Open</source> |
3430 | <translation>Open</translation> |
||
890 | cbradney | 3431 | </message> |
3432 | <message> |
||
1135 | cbradney | 3433 | <source>Images (*.tif *.png *.jpg *.xpm);;Postscript (*.eps);;All Files (*)</source> |
3434 | <translation>Images (*.tif *.png *.jpg *.xpm);;Postscript (*.eps);;All Files (*)</translation> |
||
890 | cbradney | 3435 | </message> |
3436 | <message> |
||
1135 | cbradney | 3437 | <source>Example:</source> |
3438 | <translation>Example:</translation> |
||
890 | cbradney | 3439 | </message> |
3440 | <message> |
||
1135 | cbradney | 3441 | <source>Selection Change</source> |
3442 | <translation>Selection Change</translation> |
||
890 | cbradney | 3443 | </message> |
3444 | <message> |
||
1135 | cbradney | 3445 | <source>Font for use with PDF 1.3:</source> |
3446 | <translation>Font for use with PDF 1.3:</translation> |
||
890 | cbradney | 3447 | </message> |
3448 | <message> |
||
1135 | cbradney | 3449 | <source>Flag is ignored for PDF 1.3</source> |
3450 | <translation>Flag is ignored for PDF 1.3</translation> |
||
890 | cbradney | 3451 | </message> |
3452 | <message> |
||
1135 | cbradney | 3453 | <source>PDF Files (*.pdf);;All Files (*)</source> |
3454 | <translation>PDF Files (*.pdf);;All Files (*)</translation> |
||
890 | cbradney | 3455 | </message> |
1135 | cbradney | 3456 | </context> |
3457 | <context> |
||
890 | cbradney | 3458 | <name>Annota</name> |
3459 | <message> |
||
1135 | cbradney | 3460 | <source>Annotation Properties</source> |
3461 | <translation>Annotation Properties</translation> |
||
890 | cbradney | 3462 | </message> |
3463 | <message> |
||
1135 | cbradney | 3464 | <source>Text</source> |
3465 | <translation>Text</translation> |
||
890 | cbradney | 3466 | </message> |
3467 | <message> |
||
1135 | cbradney | 3468 | <source>Link</source> |
3469 | <translation>Link</translation> |
||
890 | cbradney | 3470 | </message> |
3471 | <message> |
||
1135 | cbradney | 3472 | <source>External Link</source> |
3473 | <translation>External Link</translation> |
||
890 | cbradney | 3474 | </message> |
3475 | <message> |
||
1135 | cbradney | 3476 | <source>External Web-Link</source> |
3477 | <translation>External Web-Link</translation> |
||
890 | cbradney | 3478 | </message> |
3479 | <message> |
||
1135 | cbradney | 3480 | <source>Destination</source> |
3481 | <translation>Destination</translation> |
||
890 | cbradney | 3482 | </message> |
3483 | <message> |
||
1135 | cbradney | 3484 | <source> pt</source> |
3485 | <translation> pt</translation> |
||
890 | cbradney | 3486 | </message> |
3487 | <message> |
||
1135 | cbradney | 3488 | <source>Open</source> |
3489 | <translation>Open</translation> |
||
890 | cbradney | 3490 | </message> |
3491 | <message> |
||
1135 | cbradney | 3492 | <source>PDF-Documents (*.pdf);;All Files (*)</source> |
3493 | <translation>PDF-Documents (*.pdf);;All Files (*)</translation> |
||
890 | cbradney | 3494 | </message> |
3495 | <message> |
||
1135 | cbradney | 3496 | <source>&Type:</source> |
3497 | <translation>&Type:</translation> |
||
890 | cbradney | 3498 | </message> |
3499 | <message> |
||
1135 | cbradney | 3500 | <source>C&hange...</source> |
3501 | <translation>C&hange...</translation> |
||
890 | cbradney | 3502 | </message> |
3503 | <message> |
||
1135 | cbradney | 3504 | <source>&Page:</source> |
3505 | <translation>&Page:</translation> |
||
890 | cbradney | 3506 | </message> |
3507 | <message> |
||
1135 | cbradney | 3508 | <source>&X-Pos</source> |
3509 | <translation>&X-Pos</translation> |
||
890 | cbradney | 3510 | </message> |
3511 | <message> |
||
1135 | cbradney | 3512 | <source>&Y-Pos:</source> |
3513 | <translation>&Y-Pos:</translation> |
||
890 | cbradney | 3514 | </message> |
1135 | cbradney | 3515 | <message> |
3516 | <source>&OK</source> |
||
3064 | cbradney | 3517 | <translation type="obsolete">&OK</translation> |
1135 | cbradney | 3518 | </message> |
3519 | <message> |
||
3520 | <source>&Cancel</source> |
||
3064 | cbradney | 3521 | <translation type="obsolete">&Cancel</translation> |
1135 | cbradney | 3522 | </message> |
3523 | </context> |
||
3524 | <context> |
||
3064 | cbradney | 3525 | <name>ApplyMasterPageDialog</name> |
3526 | <message> |
||
3527 | <source>Normal</source> |
||
3528 | <translation type="unfinished"></translation> |
||
3529 | </message> |
||
3530 | <message> |
||
3531 | <source>Apply Master Page</source> |
||
3532 | <translation type="unfinished"></translation> |
||
3533 | </message> |
||
3534 | <message> |
||
3535 | <source>&Master Page:</source> |
||
3536 | <translation type="unfinished"></translation> |
||
3537 | </message> |
||
3538 | <message> |
||
3539 | <source>Apply To</source> |
||
3540 | <translation type="unfinished"></translation> |
||
3541 | </message> |
||
3542 | <message> |
||
3543 | <source>Current &page</source> |
||
3544 | <translation type="unfinished"></translation> |
||
3545 | </message> |
||
3546 | <message> |
||
3547 | <source>Alt+P</source> |
||
3548 | <translation type="unfinished"></translation> |
||
3549 | </message> |
||
3550 | <message> |
||
3551 | <source>&Even pages</source> |
||
3552 | <translation type="unfinished"></translation> |
||
3553 | </message> |
||
3554 | <message> |
||
3555 | <source>Alt+E</source> |
||
3556 | <translation type="unfinished"></translation> |
||
3557 | </message> |
||
3558 | <message> |
||
3559 | <source>O&dd pages</source> |
||
3560 | <translation type="unfinished"></translation> |
||
3561 | </message> |
||
3562 | <message> |
||
3563 | <source>Alt+D</source> |
||
3564 | <translation type="unfinished"></translation> |
||
3565 | </message> |
||
3566 | <message> |
||
3567 | <source>&All pages</source> |
||
3568 | <translation type="unfinished">&All pages</translation> |
||
3569 | </message> |
||
3570 | <message> |
||
3571 | <source>Alt+A</source> |
||
3572 | <translation type="unfinished"></translation> |
||
3573 | </message> |
||
3574 | <message> |
||
3575 | <source>&Within range</source> |
||
3576 | <translation type="unfinished"></translation> |
||
3577 | </message> |
||
3578 | <message> |
||
3579 | <source>Alt+W</source> |
||
3580 | <translation type="unfinished"></translation> |
||
3581 | </message> |
||
3582 | <message> |
||
3583 | <source><qt>Apply the selected template to even, odd or all pages within the following range</qt></source> |
||
3584 | <translation type="unfinished"></translation> |
||
3585 | </message> |
||
3586 | <message> |
||
3587 | <source>to</source> |
||
3588 | <translation type="unfinished">到</translation> |
||
3589 | </message> |
||
3590 | <message> |
||
3591 | <source>Alt+O</source> |
||
3592 | <translation type="unfinished">Alt+O</translation> |
||
3593 | </message> |
||
3594 | <message> |
||
3595 | <source>Alt+C</source> |
||
3596 | <translation type="unfinished">Alt+C</translation> |
||
3597 | </message> |
||
3598 | </context> |
||
3599 | <context> |
||
890 | cbradney | 3600 | <name>ApplyT</name> |
3601 | <message> |
||
1135 | cbradney | 3602 | <source>Apply Template</source> |
3064 | cbradney | 3603 | <translation type="obsolete">Apply Template</translation> |
890 | cbradney | 3604 | </message> |
3605 | <message> |
||
1135 | cbradney | 3606 | <source>Normal</source> |
3064 | cbradney | 3607 | <translation type="obsolete">普遍的</translation> |
890 | cbradney | 3608 | </message> |
3609 | <message> |
||
1135 | cbradney | 3610 | <source>&Template:</source> |
3064 | cbradney | 3611 | <translation type="obsolete">&Template:</translation> |
890 | cbradney | 3612 | </message> |
3613 | <message> |
||
1135 | cbradney | 3614 | <source>Apply to &Current Page</source> |
3064 | cbradney | 3615 | <translation type="obsolete">Apply to &Current Page</translation> |
890 | cbradney | 3616 | </message> |
3617 | <message> |
||
1135 | cbradney | 3618 | <source>Apply from &Page:</source> |
3064 | cbradney | 3619 | <translation type="obsolete">Apply from &Page:</translation> |
890 | cbradney | 3620 | </message> |
3621 | <message> |
||
1135 | cbradney | 3622 | <source>To:</source> |
3064 | cbradney | 3623 | <translation type="obsolete">To:</translation> |
890 | cbradney | 3624 | </message> |
3625 | <message> |
||
1135 | cbradney | 3626 | <source>&OK</source> |
3064 | cbradney | 3627 | <translation type="obsolete">&OK</translation> |
890 | cbradney | 3628 | </message> |
3629 | <message> |
||
1135 | cbradney | 3630 | <source>&Cancel</source> |
3064 | cbradney | 3631 | <translation type="obsolete">&Cancel</translation> |
890 | cbradney | 3632 | </message> |
3633 | <message> |
||
1135 | cbradney | 3634 | <source>Apply to all &even Pages</source> |
3064 | cbradney | 3635 | <translation type="obsolete">Apply to all &even Pages</translation> |
890 | cbradney | 3636 | </message> |
3637 | <message> |
||
1135 | cbradney | 3638 | <source>Apply to all &odd Pages</source> |
3064 | cbradney | 3639 | <translation type="obsolete">Apply to all &odd Pages</translation> |
890 | cbradney | 3640 | </message> |
1135 | cbradney | 3641 | </context> |
3642 | <context> |
||
1525 | cbradney | 3643 | <name>ArrowChooser</name> |
3644 | <message> |
||
3645 | <source>None</source> |
||
3646 | <translation type="unfinished">None</translation> |
||
3647 | </message> |
||
3648 | </context> |
||
3649 | <context> |
||
890 | cbradney | 3650 | <name>Biblio</name> |
3651 | <message> |
||
1135 | cbradney | 3652 | <source>Scrapbook</source> |
3653 | <translation>Scrapbook</translation> |
||
890 | cbradney | 3654 | </message> |
3655 | <message> |
||
1135 | cbradney | 3656 | <source>Scrapbooks (*.scs);;All Files (*)</source> |
3657 | <translation>Scrapbooks (*.scs);;All Files (*)</translation> |
||
890 | cbradney | 3658 | </message> |
3659 | <message> |
||
1135 | cbradney | 3660 | <source>Delete</source> |
3661 | <translation>删除</translation> |
||
890 | cbradney | 3662 | </message> |
3663 | <message> |
||
1135 | cbradney | 3664 | <source>Object</source> |
3665 | <translation>对象</translation> |
||
890 | cbradney | 3666 | </message> |
3667 | <message> |
||
1135 | cbradney | 3668 | <source>New Entry</source> |
3669 | <translation>New Entry</translation> |
||
890 | cbradney | 3670 | </message> |
3671 | <message> |
||
1135 | cbradney | 3672 | <source>Rename</source> |
3673 | <translation>Rename</translation> |
||
890 | cbradney | 3674 | </message> |
3675 | <message> |
||
1135 | cbradney | 3676 | <source>Warning</source> |
3677 | <translation>Warning</translation> |
||
890 | cbradney | 3678 | </message> |
3679 | <message> |
||
1135 | cbradney | 3680 | <source>Name "%1" isn't unique. |
890 | cbradney | 3681 | Please choose another.</source> |
1135 | cbradney | 3682 | <translation>Name "%1" isn't unique. |
890 | cbradney | 3683 | Please choose another.</translation> |
3684 | </message> |
||
3685 | <message> |
||
1135 | cbradney | 3686 | <source>OK</source> |
3064 | cbradney | 3687 | <translation type="obsolete">OK</translation> |
890 | cbradney | 3688 | </message> |
3689 | <message> |
||
1135 | cbradney | 3690 | <source>&New</source> |
3691 | <translation>&New</translation> |
||
890 | cbradney | 3692 | </message> |
3693 | <message> |
||
1135 | cbradney | 3694 | <source>&Load...</source> |
3695 | <translation>&Load...</translation> |
||
890 | cbradney | 3696 | </message> |
3697 | <message> |
||
1135 | cbradney | 3698 | <source>&Save</source> |
3699 | <translation>&Save</translation> |
||
890 | cbradney | 3700 | </message> |
3701 | <message> |
||
1135 | cbradney | 3702 | <source>Save &As...</source> |
3703 | <translation>Save &As...</translation> |
||
890 | cbradney | 3704 | </message> |
3705 | <message> |
||
1135 | cbradney | 3706 | <source>&Close</source> |
3707 | <translation>&Close</translation> |
||
890 | cbradney | 3708 | </message> |
3709 | <message> |
||
1135 | cbradney | 3710 | <source>&Small</source> |
3711 | <translation>&Small</translation> |
||
890 | cbradney | 3712 | </message> |
3713 | <message> |
||
1135 | cbradney | 3714 | <source>&Medium</source> |
3715 | <translation>&Medium</translation> |
||
890 | cbradney | 3716 | </message> |
3717 | <message> |
||
1135 | cbradney | 3718 | <source>&Large</source> |
3719 | <translation>&Large</translation> |
||
890 | cbradney | 3720 | </message> |
3721 | <message> |
||
1135 | cbradney | 3722 | <source>&File</source> |
3723 | <translation>&File</translation> |
||
890 | cbradney | 3724 | </message> |
3725 | <message> |
||
1135 | cbradney | 3726 | <source>&Preview</source> |
3727 | <translation>&Preview</translation> |
||
890 | cbradney | 3728 | </message> |
3729 | <message> |
||
1135 | cbradney | 3730 | <source>&Name:</source> |
3731 | <translation>&Name:</translation> |
||
890 | cbradney | 3732 | </message> |
1135 | cbradney | 3733 | </context> |
3734 | <context> |
||
890 | cbradney | 3735 | <name>BookMView</name> |
3736 | <message> |
||
1135 | cbradney | 3737 | <source>Bookmarks</source> |
3738 | <translation>Bookmarks</translation> |
||
890 | cbradney | 3739 | </message> |
3740 | <message> |
||
1135 | cbradney | 3741 | <source>Move Bookmark</source> |
3742 | <translation>Move Bookmark</translation> |
||
890 | cbradney | 3743 | </message> |
3744 | <message> |
||
1135 | cbradney | 3745 | <source>Insert Bookmark</source> |
3746 | <translation>Insert Bookmark</translation> |
||
890 | cbradney | 3747 | </message> |
3748 | <message> |
||
1135 | cbradney | 3749 | <source>Cancel</source> |
3750 | <translation>Cancel</translation> |
||
890 | cbradney | 3751 | </message> |
1135 | cbradney | 3752 | </context> |
3753 | <context> |
||
890 | cbradney | 3754 | <name>BookPalette</name> |
3755 | <message> |
||
1135 | cbradney | 3756 | <source>Bookmarks</source> |
3757 | <translation>Bookmarks</translation> |
||
890 | cbradney | 3758 | </message> |
1135 | cbradney | 3759 | </context> |
3760 | <context> |
||
890 | cbradney | 3761 | <name>ButtonIcon</name> |
3762 | <message> |
||
1135 | cbradney | 3763 | <source>Icon Placement</source> |
3764 | <translation>Icon Placement</translation> |
||
890 | cbradney | 3765 | </message> |
3766 | <message> |
||
1135 | cbradney | 3767 | <source>Layout:</source> |
3768 | <translation>Layout:</translation> |
||
890 | cbradney | 3769 | </message> |
3770 | <message> |
||
1135 | cbradney | 3771 | <source>Caption only</source> |
3772 | <translation>Caption only</translation> |
||
890 | cbradney | 3773 | </message> |
3774 | <message> |
||
1135 | cbradney | 3775 | <source>Icon only</source> |
3776 | <translation>Icon only</translation> |
||
890 | cbradney | 3777 | </message> |
3778 | <message> |
||
1135 | cbradney | 3779 | <source>Caption below Icon</source> |
3780 | <translation>Caption below Icon</translation> |
||
890 | cbradney | 3781 | </message> |
3782 | <message> |
||
1135 | cbradney | 3783 | <source>Caption above Icon</source> |
3784 | <translation>Caption above Icon</translation> |
||
890 | cbradney | 3785 | </message> |
3786 | <message> |
||
1135 | cbradney | 3787 | <source>Caption right to Icon</source> |
3788 | <translation>Caption right to Icon</translation> |
||
890 | cbradney | 3789 | </message> |
3790 | <message> |
||
1135 | cbradney | 3791 | <source>Caption left to Icon</source> |
3792 | <translation>Caption left to Icon</translation> |
||
890 | cbradney | 3793 | </message> |
3794 | <message> |
||
1135 | cbradney | 3795 | <source>Caption overlays Icon</source> |
3796 | <translation>Caption overlays Icon</translation> |
||
890 | cbradney | 3797 | </message> |
3798 | <message> |
||
1135 | cbradney | 3799 | <source>Scale:</source> |
3800 | <translation>Scale:</translation> |
||
890 | cbradney | 3801 | </message> |
3802 | <message> |
||
1135 | cbradney | 3803 | <source>Always</source> |
3804 | <translation>Always</translation> |
||
890 | cbradney | 3805 | </message> |
3806 | <message> |
||
1135 | cbradney | 3807 | <source>When Icon is too big</source> |
3808 | <translation>When Icon is too big</translation> |
||
890 | cbradney | 3809 | </message> |
3810 | <message> |
||
1135 | cbradney | 3811 | <source>Never</source> |
3812 | <translation>Never</translation> |
||
890 | cbradney | 3813 | </message> |
3814 | <message> |
||
1135 | cbradney | 3815 | <source>Scale How:</source> |
3816 | <translation>Scale How:</translation> |
||
890 | cbradney | 3817 | </message> |
3818 | <message> |
||
1135 | cbradney | 3819 | <source>Proportional</source> |
3820 | <translation>Proportional</translation> |
||
890 | cbradney | 3821 | </message> |
3822 | <message> |
||
1135 | cbradney | 3823 | <source>Non Proportional</source> |
3824 | <translation>Non Proportional</translation> |
||
890 | cbradney | 3825 | </message> |
3826 | <message> |
||
1135 | cbradney | 3827 | <source>Icon</source> |
3828 | <translation>Icon</translation> |
||
890 | cbradney | 3829 | </message> |
3830 | <message> |
||
1135 | cbradney | 3831 | <source>OK</source> |
3832 | <translation>OK</translation> |
||
890 | cbradney | 3833 | </message> |
3834 | <message> |
||
1135 | cbradney | 3835 | <source>Cancel</source> |
3836 | <translation>Cancel</translation> |
||
890 | cbradney | 3837 | </message> |
3838 | <message> |
||
1135 | cbradney | 3839 | <source>Reset</source> |
3840 | <translation>Reset</translation> |
||
890 | cbradney | 3841 | </message> |
3842 | <message> |
||
1135 | cbradney | 3843 | <source>When Icon is too small</source> |
3844 | <translation>When Icon is too small</translation> |
||
890 | cbradney | 3845 | </message> |
1135 | cbradney | 3846 | </context> |
3847 | <context> |
||
890 | cbradney | 3848 | <name>CMSPrefs</name> |
3849 | <message> |
||
1135 | cbradney | 3850 | <source>Color Management Settings</source> |
1525 | cbradney | 3851 | <translation type="obsolete">Colour Management Settings</translation> |
890 | cbradney | 3852 | </message> |
3853 | <message> |
||
1135 | cbradney | 3854 | <source>System Profiles</source> |
3855 | <translation>System Profiles</translation> |
||
890 | cbradney | 3856 | </message> |
3857 | <message> |
||
1135 | cbradney | 3858 | <source>Rendering Intents</source> |
3859 | <translation>Rendering Intents</translation> |
||
890 | cbradney | 3860 | </message> |
3861 | <message> |
||
1135 | cbradney | 3862 | <source>Perceptual</source> |
3863 | <translation>Perceptual</translation> |
||
890 | cbradney | 3864 | </message> |
3865 | <message> |
||
1135 | cbradney | 3866 | <source>Relative Colorimetric</source> |
3867 | <translation>Relative Colourimetric</translation> |
||
890 | cbradney | 3868 | </message> |
3869 | <message> |
||
1135 | cbradney | 3870 | <source>Saturation</source> |
3871 | <translation>Saturation</translation> |
||
890 | cbradney | 3872 | </message> |
3873 | <message> |
||
1135 | cbradney | 3874 | <source>Absolute Colorimetric</source> |
3875 | <translation>Absolute Colourimetric</translation> |
||
890 | cbradney | 3876 | </message> |
3877 | <message> |
||
1135 | cbradney | 3878 | <source>Default color profile for imported images</source> |
3064 | cbradney | 3879 | <translation type="obsolete">Default colour profile for imported images</translation> |
890 | cbradney | 3880 | </message> |
3881 | <message> |
||
1135 | cbradney | 3882 | <source>Default color profile for solid colors on the page</source> |
3883 | <translation>Default colour profile for solid colours on the page</translation> |
||
890 | cbradney | 3884 | </message> |
3885 | <message> |
||
1135 | cbradney | 3886 | <source>Color profile that you have generated or received from the manufacturer. |
890 | cbradney | 3887 | This profile should be specific to your monitor and not a generic profile (i.e. sRGB).</source> |
1135 | cbradney | 3888 | <translation>Colour profile that you have generated or received from the manufacturer. |
890 | cbradney | 3889 | This profile should be specific to your monitor and not a generic profile (i.e. sRGB).</translation> |
3890 | </message> |
||
3891 | <message> |
||
1135 | cbradney | 3892 | <source>Color profile for your printer model from the manufacturer. |
890 | cbradney | 3893 | This profile should be specific to your printer and not a generic profile (i.e. sRGB).</source> |
1135 | cbradney | 3894 | <translation>Colour profile for your printer model from the manufacturer. |
890 | cbradney | 3895 | This profile should be specific to your printer and not a generic profile (i.e. sRGB).</translation> |
3896 | </message> |
||
3897 | <message> |
||
1135 | cbradney | 3898 | <source>Black Point Compensation is a method of improving contrast in photos. |
890 | cbradney | 3899 | It is recommended that you enable this if you have photos in your document.</source> |
1135 | cbradney | 3900 | <translation>Black Point Compensation is a method of improving contrast in photos. |
890 | cbradney | 3901 | It is recommended that you enable this if you have photos in your document.</translation> |
3902 | </message> |
||
3903 | <message> |
||
1135 | cbradney | 3904 | <source>Default rendering intent for your monitor. Unless you know why to change it, |
890 | cbradney | 3905 | Relative Colorimetric or Perceptual should be chosen.</source> |
1135 | cbradney | 3906 | <translation>Default rendering intent for your monitor. Unless you know why to change it, |
890 | cbradney | 3907 | Relative Colourimetric or Perceptual should be chosen.</translation> |
3908 | </message> |
||
3909 | <message> |
||
1135 | cbradney | 3910 | <source>Default rendering intent for your printer. Unless you know why to change it, |
890 | cbradney | 3911 | Relative Colorimetric or Perceptual should be chosen.</source> |
1135 | cbradney | 3912 | <translation>Default rendering intent for your printer. Unless you know why to change it, |
890 | cbradney | 3913 | Relative Colourimetric or Perceptual should be chosen.</translation> |
3914 | </message> |
||
3915 | <message> |
||
1135 | cbradney | 3916 | <source>Enable 'soft proofing' of how your document colors will print, |
890 | cbradney | 3917 | based on the chosen printer profile.</source> |
1135 | cbradney | 3918 | <translation>Enable 'soft proofing' of how your document colours will print, |
890 | cbradney | 3919 | based on the chosen printer profile.</translation> |
3920 | </message> |
||
3921 | <message> |
||
1135 | cbradney | 3922 | <source>Method of showing colors on the screen which may not print properly. |
890 | cbradney | 3923 | This requires very accurate profiles and serves only as a warning.</source> |
1135 | cbradney | 3924 | <translation>Method of showing colours on the screen which may not print properly. |
890 | cbradney | 3925 | This requires very accurate profiles and serves only as a warning.</translation> |
3926 | </message> |
||
3927 | <message> |
||
1135 | cbradney | 3928 | <source>&Activate Color Management</source> |
3929 | <translation>&Activate Colour Management</translation> |
||
890 | cbradney | 3930 | </message> |
3931 | <message> |
||
1135 | cbradney | 3932 | <source>&Pictures:</source> |
3064 | cbradney | 3933 | <translation type="obsolete">&Pictures:</translation> |
890 | cbradney | 3934 | </message> |
3935 | <message> |
||
1135 | cbradney | 3936 | <source>&Solid Colors:</source> |
3937 | <translation>&Solid Colours:</translation> |
||
890 | cbradney | 3938 | </message> |
3939 | <message> |
||
1135 | cbradney | 3940 | <source>&Monitor:</source> |
3941 | <translation>&Monitor:</translation> |
||
890 | cbradney | 3942 | </message> |
3943 | <message> |
||
1135 | cbradney | 3944 | <source>P&rinter:</source> |
3945 | <translation>P&rinter:</translation> |
||
890 | cbradney | 3946 | </message> |
3947 | <message> |
||
1135 | cbradney | 3948 | <source>M&onitor:</source> |
3949 | <translation>M&onitor:</translation> |
||
890 | cbradney | 3950 | </message> |
3951 | <message> |
||
1135 | cbradney | 3952 | <source>Pr&inter:</source> |
3953 | <translation>Pr&inter:</translation> |
||
890 | cbradney | 3954 | </message> |
3955 | <message> |
||
1135 | cbradney | 3956 | <source>Sim&ulate Printer on the Screen</source> |
3957 | <translation>Sim&ulate Printer on the Screen</translation> |
||
890 | cbradney | 3958 | </message> |
3959 | <message> |
||
1135 | cbradney | 3960 | <source>Mark Colors out of &Gamut</source> |
3961 | <translation>Mark Colours out of &Gamut</translation> |
||
890 | cbradney | 3962 | </message> |
3963 | <message> |
||
1135 | cbradney | 3964 | <source>Use &Blackpoint Compensation</source> |
3965 | <translation>Use &Blackpoint Compensation</translation> |
||
890 | cbradney | 3966 | </message> |
3967 | <message> |
||
1135 | cbradney | 3968 | <source>&OK</source> |
1525 | cbradney | 3969 | <translation type="obsolete">&OK</translation> |
890 | cbradney | 3970 | </message> |
3971 | <message> |
||
1135 | cbradney | 3972 | <source>&Cancel</source> |
1525 | cbradney | 3973 | <translation type="obsolete">&Cancel</translation> |
890 | cbradney | 3974 | </message> |
3064 | cbradney | 3975 | <message> |
3976 | <source>&RGB Pictures:</source> |
||
3977 | <translation type="unfinished"></translation> |
||
3978 | </message> |
||
3979 | <message> |
||
3980 | <source>&CMYK Pictures:</source> |
||
3981 | <translation type="unfinished"></translation> |
||
3982 | </message> |
||
3983 | <message> |
||
3984 | <source>Default color profile for imported cmyk images</source> |
||
3985 | <translation type="unfinished"></translation> |
||
3986 | </message> |
||
3987 | <message> |
||
3988 | <source>Default color profile for imported rgb images</source> |
||
3989 | <translation type="unfinished"></translation> |
||
3990 | </message> |
||
1135 | cbradney | 3991 | </context> |
3992 | <context> |
||
890 | cbradney | 3993 | <name>CMYKChoose</name> |
3994 | <message> |
||
1135 | cbradney | 3995 | <source>Edit Color</source> |
3996 | <translation>Edit Colour</translation> |
||
890 | cbradney | 3997 | </message> |
3998 | <message> |
||
1135 | cbradney | 3999 | <source>CMYK</source> |
4000 | <translation>CMYK</translation> |
||
890 | cbradney | 4001 | </message> |
4002 | <message> |
||
1135 | cbradney | 4003 | <source>RGB</source> |
4004 | <translation>RGB</translation> |
||
890 | cbradney | 4005 | </message> |
4006 | <message> |
||
1135 | cbradney | 4007 | <source>Web Safe RGB</source> |
4008 | <translation>Web Safe RGB</translation> |
||
890 | cbradney | 4009 | </message> |
4010 | <message> |
||
1135 | cbradney | 4011 | <source>New</source> |
4012 | <translation>New</translation> |
||
890 | cbradney | 4013 | </message> |
4014 | <message> |
||
1135 | cbradney | 4015 | <source>Old</source> |
4016 | <translation>Old</translation> |
||
890 | cbradney | 4017 | </message> |
4018 | <message> |
||
1135 | cbradney | 4019 | <source>OK</source> |
3064 | cbradney | 4020 | <translation type="obsolete">OK</translation> |
890 | cbradney | 4021 | </message> |
4022 | <message> |
||
1135 | cbradney | 4023 | <source>C:</source> |
4024 | <translation>C:</translation> |
||
890 | cbradney | 4025 | </message> |
4026 | <message> |
||
1135 | cbradney | 4027 | <source>M:</source> |
4028 | <translation>M:</translation> |
||
890 | cbradney | 4029 | </message> |
4030 | <message> |
||
1135 | cbradney | 4031 | <source>Y:</source> |
4032 | <translation>Y:</translation> |
||
890 | cbradney | 4033 | </message> |
4034 | <message> |
||
1135 | cbradney | 4035 | <source>K:</source> |
4036 | <translation>K:</translation> |
||
890 | cbradney | 4037 | </message> |
4038 | <message> |
||
1135 | cbradney | 4039 | <source>Dynamic Color Bars</source> |
4040 | <translation>Dynamic Colour Bars</translation> |
||
890 | cbradney | 4041 | </message> |
4042 | <message> |
||
1135 | cbradney | 4043 | <source>Static Color Bars</source> |
4044 | <translation>Static Colour Bars</translation> |
||
890 | cbradney | 4045 | </message> |
4046 | <message> |
||
1135 | cbradney | 4047 | <source>R:</source> |
4048 | <translation>R:</translation> |
||
890 | cbradney | 4049 | </message> |
4050 | <message> |
||
1135 | cbradney | 4051 | <source>G:</source> |