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