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