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