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