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