Rev 3824 | Rev 4141 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2952 | cbradney | 1 | <!DOCTYPE TS><TS> |
2 | <context> |
||
2949 | cbradney | 3 | <name></name> |
196 | Franz | 4 | <message> |
2952 | cbradney | 5 | <source>getColorNames() -> list |
2949 | cbradney | 6 | |
7 | Returns a list containing the names of all defined colors in the document. |
||
8 | If no document is open, returns a list of the default document colors. |
||
9 | </source> |
||
2952 | cbradney | 10 | <translation>getColorNames() -> list |
2949 | cbradney | 11 | |
12 | Returns a list containing the names of all defined colours in the document. |
||
13 | If no document is open, returns a list of the default document colours. |
||
14 | </translation> |
||
196 | Franz | 15 | </message> |
16 | <message> |
||
2952 | cbradney | 17 | <source>newDocDialog() -> bool |
2949 | cbradney | 18 | |
19 | Displays the "New Document" dialog box. Creates a new document if the user |
||
20 | accepts the settings. Does not create a document if the user presses cancel. |
||
21 | Returns true if a new document was created. |
||
22 | </source> |
||
2952 | cbradney | 23 | <translation>newDocDialog() -> bool |
2949 | cbradney | 24 | |
25 | Displays the "New Document" dialog box. Creates a new document if the user |
||
26 | accepts the settings. Does not create a document if the user presses cancel. |
||
27 | Returns true if a new document was created. |
||
28 | </translation> |
||
29 | </message> |
||
30 | <message> |
||
2952 | cbradney | 31 | <source>getFillColor(["name"]) -> string |
2949 | cbradney | 32 | |
33 | Returns the name of the fill color of the object "name". |
||
34 | If "name" is not given the currently selected item is used. |
||
35 | </source> |
||
2952 | cbradney | 36 | <translation>getFillColor(["name"]) -> string |
2949 | cbradney | 37 | |
38 | Returns the name of the fill colour of the object "name". |
||
39 | If "name" is not given the currently selected item is used. |
||
40 | </translation> |
||
41 | </message> |
||
42 | <message> |
||
2952 | cbradney | 43 | <source>moveObject(dx, dy [, "name"]) |
2949 | cbradney | 44 | |
45 | Moves the object "name" by dx and dy relative to its current position. The |
||
46 | distances are expressed in the current measurement unit of the document (see |
||
47 | UNIT constants). If "name" is not given the currently selected item is used. |
||
48 | If the object "name" belongs to a group, the whole group is moved. |
||
49 | </source> |
||
2952 | cbradney | 50 | <translation>moveObject(dx, dy [, "name"]) |
2949 | cbradney | 51 | |
52 | Moves the object "name" by dx and dy relative to its current position. The |
||
53 | distances are expressed in the current measurement unit of the document (see |
||
54 | UNIT constants). If "name" is not given the currently selected item is used. |
||
55 | If the object "name" belongs to a group, the whole group is moved. |
||
56 | </translation> |
||
57 | </message> |
||
58 | <message> |
||
2952 | cbradney | 59 | <source>setRedraw(bool) |
2949 | cbradney | 60 | |
61 | Disables page redraw when bool = False, otherwise redrawing is enabled. |
||
62 | This change will persist even after the script exits, so make sure to call |
||
63 | setRedraw(True) in a finally: clause at the top level of your script. |
||
64 | </source> |
||
2952 | cbradney | 65 | <translation>setRedraw(bool) |
2949 | cbradney | 66 | |
67 | Disables page redraw when bool = False, otherwise redrawing is enabled. |
||
68 | This change will persist even after the script exits, so make sure to call |
||
69 | setRedraw(True) in a finally: clause at the top level of your script. |
||
70 | </translation> |
||
71 | </message> |
||
72 | <message> |
||
2952 | cbradney | 73 | <source>createRect(x, y, width, height, ["name"]) -> string |
2949 | cbradney | 74 | |
75 | Creates a new rectangle on the current page and returns its name. The |
||
76 | coordinates are given in the current measurement units of the document |
||
77 | (see UNIT constants). "name" should be a unique identifier for the object |
||
78 | because you need this name to reference that object in future. If "name" |
||
79 | is not given Scribus will create one for you. |
||
80 | |||
2952 | cbradney | 81 | May raise NameExistsError if you explicitly pass a name that's already used. |
2949 | cbradney | 82 | </source> |
2952 | cbradney | 83 | <translation>createRect(x, y, width, height, ["name"]) -> string |
2949 | cbradney | 84 | |
85 | Creates a new rectangle on the current page and returns its name. The |
||
86 | coordinates are given in the current measurement units of the document |
||
87 | (see UNIT constants). "name" should be a unique identifier for the object |
||
88 | because you need this name to reference that object in future. If "name" |
||
89 | is not given Scribus will create one for you. |
||
90 | |||
2952 | cbradney | 91 | May raise NameExistsError if you explicitly pass a name that's already used. |
2949 | cbradney | 92 | </translation> |
93 | </message> |
||
94 | <message> |
||
2952 | cbradney | 95 | <source>newPage(where [,"masterpage"]) |
2949 | cbradney | 96 | |
97 | Creates a new page. If "where" is -1 the new Page is appended to the |
||
98 | document, otherwise the new page is inserted before "where". Page numbers are |
||
99 | counted from 1 upwards, no matter what the displayed first page number of your |
||
100 | document is. The optional parameter "masterpage" specifies the name of the |
||
101 | master page for the new page. |
||
102 | |||
103 | May raise IndexError if the page number is out of range |
||
104 | </source> |
||
2952 | cbradney | 105 | <translation>newPage(where [,"masterpage"]) |
2949 | cbradney | 106 | |
107 | Creates a new page. If "where" is -1 the new Page is appended to the |
||
108 | document, otherwise the new page is inserted before "where". Page numbers are |
||
109 | counted from 1 upwards, no matter what the displayed first page number of your |
||
110 | document is. The optional parameter "masterpage" specifies the name of the |
||
111 | master page for the new page. |
||
112 | |||
113 | May raise IndexError if the page number is out of range |
||
114 | </translation> |
||
115 | </message> |
||
116 | <message> |
||
2952 | cbradney | 117 | <source>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"]) |
2949 | cbradney | 118 | |
119 | Sets the gradient fill of the object "name" to type. Color descriptions are |
||
120 | the same as for setFillColor() and setFillShade(). See the constants for |
||
2952 | cbradney | 121 | available types (FILL_<type>). |
2949 | cbradney | 122 | </source> |
2952 | cbradney | 123 | <translation>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"]) |
2949 | cbradney | 124 | |
125 | Sets the gradient fill of the object "name" to type. Colour descriptions are |
||
126 | the same as for setFillColor() and setFillShade(). See the constants for |
||
2952 | cbradney | 127 | available types (FILL_<type>). |
2949 | cbradney | 128 | </translation> |
129 | </message> |
||
130 | <message> |
||
2952 | cbradney | 131 | <source>getFontSize(["name"]) -> float |
2949 | cbradney | 132 | |
133 | Returns the font size in points for the text frame "name". If this text |
||
134 | frame has some text selected the value assigned to the first character of |
||
135 | the selection is returned. |
||
136 | If "name" is not given the currently selected item is used. |
||
137 | </source> |
||
2952 | cbradney | 138 | <translation>getFontSize(["name"]) -> float |
2949 | cbradney | 139 | |
140 | Returns the font size in points for the text frame "name". If this text |
||
141 | frame has some text selected the value assigned to the first character of |
||
142 | the selection is returned. |
||
143 | If "name" is not given the currently selected item is used. |
||
144 | </translation> |
||
145 | </message> |
||
146 | <message> |
||
2952 | cbradney | 147 | <source>messagebarText("string") |
2949 | cbradney | 148 | |
149 | Writes the "string" into the Scribus message bar (status line). The text |
||
2952 | cbradney | 150 | must be UTF8 encoded or 'unicode' string(recommended). |
2949 | cbradney | 151 | </source> |
2952 | cbradney | 152 | <translation>messagebarText("string") |
2949 | cbradney | 153 | |
154 | Writes the "string" into the Scribus message bar (status line). The text |
||
2952 | cbradney | 155 | must be UTF8 encoded or 'unicode' string(recommended). |
2949 | cbradney | 156 | </translation> |
157 | </message> |
||
158 | <message> |
||
2952 | cbradney | 159 | <source>importSVG("string") |
2949 | cbradney | 160 | |
161 | The "string" must be a valid filename for a SVG image. The text |
||
2952 | cbradney | 162 | must be UTF8 encoded or 'unicode' string(recommended). |
2949 | cbradney | 163 | </source> |
2952 | cbradney | 164 | <translation>importSVG("string") |
2949 | cbradney | 165 | |
166 | The "string" must be a valid filename for a SVG image. The text |
||
2952 | cbradney | 167 | must be UTF8 encoded or 'unicode' string(recommended). |
2949 | cbradney | 168 | </translation> |
169 | </message> |
||
3824 | cbradney | 170 | <message> |
171 | <source>newDocument(size, margins, orientation, firstPageNumber, |
||
172 | unit, pagesType, firstPageOrder) -> bool |
||
173 | |||
174 | Creates a new document and returns true if successful. The parameters have the |
||
175 | following meaning: |
||
176 | |||
177 | size = A tuple (width, height) describing the size of the document. You can |
||
178 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
||
179 | |||
180 | margins = A tuple (left, right, top, bottom) describing the document |
||
181 | margins |
||
182 | |||
183 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
184 | |||
185 | firstPageNumer = is the number of the first page in the document used for |
||
186 | pagenumbering. While you'll usually want 1, it's useful to have higher |
||
187 | numbers if you're creating a document in several parts. |
||
188 | |||
189 | unit: this value sets the measurement units used by the document. Use a |
||
190 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
191 | UNIT_PICAS, UNIT_POINTS. |
||
192 | |||
193 | pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page, |
||
194 | PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and |
||
195 | PAGE_4 is 4-fold. |
||
196 | |||
197 | firstPageOrder = What is position of first page in the document. |
||
198 | Indexed from 0 (0 = first). |
||
199 | |||
200 | The values for width, height and the margins are expressed in the given unit |
||
201 | for the document. PAPER_* constants are expressed in points. If your document |
||
202 | is not in points, make sure to account for this. |
||
203 | |||
204 | example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS, |
||
205 | PAGE_4, 3) |
||
206 | |||
207 | May raise ScribusError if is firstPageOrder bigger than allowed by pagesType. |
||
208 | </source> |
||
3828 | cbradney | 209 | <translation>newDocument(size, margins, orientation, firstPageNumber, |
210 | unit, pagesType, firstPageOrder) -> bool |
||
211 | |||
212 | Creates a new document and returns true if successful. The parameters have the |
||
213 | following meaning: |
||
214 | |||
215 | size = A tuple (width, height) describing the size of the document. You can |
||
216 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
||
217 | |||
218 | margins = A tuple (left, right, top, bottom) describing the document |
||
219 | margins |
||
220 | |||
221 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
222 | |||
223 | firstPageNumer = is the number of the first page in the document used for |
||
224 | pagenumbering. While you'll usually want 1, it's useful to have higher |
||
225 | numbers if you're creating a document in several parts. |
||
226 | |||
227 | unit: this value sets the measurement units used by the document. Use a |
||
228 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
229 | UNIT_PICAS, UNIT_POINTS. |
||
230 | |||
231 | pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page, |
||
232 | PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and |
||
233 | PAGE_4 is 4-fold. |
||
234 | |||
235 | firstPageOrder = What is position of first page in the document. |
||
236 | Indexed from 0 (0 = first). |
||
237 | |||
238 | The values for width, height and the margins are expressed in the given unit |
||
239 | for the document. PAPER_* constants are expressed in points. If your document |
||
240 | is not in points, make sure to account for this. |
||
241 | |||
242 | example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS, |
||
243 | PAGE_4, 3) |
||
244 | |||
245 | May raise ScribusError if is firstPageOrder bigger than allowed by pagesType. |
||
246 | </translation> |
||
3824 | cbradney | 247 | </message> |
2952 | cbradney | 248 | </context> |
249 | <context> |
||
2949 | cbradney | 250 | <name>@default</name> |
251 | <message> |
||
2952 | cbradney | 252 | <source>getColor("name") -> tuple |
2949 | cbradney | 253 | |
254 | Returns a tuple (C, M, Y, K) containing the four color components of the |
||
255 | color "name" from the current document. If no document is open, returns |
||
256 | the value of the named color from the default document colors. |
||
257 | |||
2952 | cbradney | 258 | May raise NotFoundError if the named color wasn't found. |
2949 | cbradney | 259 | May raise ValueError if an invalid color name is specified. |
260 | </source> |
||
2952 | cbradney | 261 | <translation>getColor("name") -> tuple |
2949 | cbradney | 262 | |
263 | Returns a tuple (C, M, Y, K) containing the four colour components of the |
||
264 | colour "name" from the current document. If no document is open, returns |
||
265 | the value of the named colour from the default document colours. |
||
266 | |||
2952 | cbradney | 267 | May raise NotFoundError if the named colour wasn't found. |
2949 | cbradney | 268 | May raise ValueError if an invalid colour name is specified. |
269 | </translation> |
||
270 | </message> |
||
271 | <message> |
||
2952 | cbradney | 272 | <source>getColorAsRGB("name") -> tuple |
2949 | cbradney | 273 | |
274 | Returns a tuple (R,G,B) containing the three color components of the |
||
275 | color "name" from the current document, converted to the RGB color |
||
276 | space. If no document is open, returns the value of the named color |
||
277 | from the default document colors. |
||
278 | |||
2952 | cbradney | 279 | May raise NotFoundError if the named color wasn't found. |
2949 | cbradney | 280 | May raise ValueError if an invalid color name is specified. |
281 | </source> |
||
2952 | cbradney | 282 | <translation>getColorAsRGB("name") -> tuple |
2949 | cbradney | 283 | |
284 | Returns a tuple (R,G,B) containing the three colour components of the |
||
285 | colour "name" from the current document, converted to the RGB colour |
||
286 | space. If no document is open, returns the value of the named colour |
||
287 | from the default document colours. |
||
288 | |||
2952 | cbradney | 289 | May raise NotFoundError if the named colour wasn't found. |
2949 | cbradney | 290 | May raise ValueError if an invalid colour name is specified. |
291 | </translation> |
||
292 | </message> |
||
293 | <message> |
||
2952 | cbradney | 294 | <source>changeColor("name", c, m, y, k) |
2949 | cbradney | 295 | |
296 | Changes the color "name" to the specified CMYK value. The color value is |
||
297 | defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black. |
||
298 | Color components should be in the range from 0 to 255. |
||
299 | |||
2952 | cbradney | 300 | May raise NotFoundError if the named color wasn't found. |
2949 | cbradney | 301 | May raise ValueError if an invalid color name is specified. |
302 | </source> |
||
2952 | cbradney | 303 | <translation>changeColour("name", c, m, y, k) |
2949 | cbradney | 304 | |
305 | Changes the colour "name" to the specified CMYK value. The colour value is |
||
306 | defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black. |
||
307 | Colour components should be in the range from 0 to 255. |
||
308 | |||
2952 | cbradney | 309 | May raise NotFoundError if the named colour wasn't found. |
2949 | cbradney | 310 | May raise ValueError if an invalid colour name is specified. |
311 | </translation> |
||
312 | </message> |
||
313 | <message> |
||
2952 | cbradney | 314 | <source>defineColor("name", c, m, y, k) |
2949 | cbradney | 315 | |
316 | Defines a new color "name". The color Value is defined via four components: |
||
317 | c = Cyan, m = Magenta, y = Yello and k = Black. Color components should be in |
||
318 | the range from 0 to 255. |
||
319 | |||
320 | May raise ValueError if an invalid color name is specified. |
||
321 | </source> |
||
2952 | cbradney | 322 | <translation>defineColor("name", c, m, y, k) |
2949 | cbradney | 323 | |
324 | Defines a new colour "name". The colour Value is defined via four components: |
||
325 | c = Cyan, m = Magenta, y = Yello and k = Black. Colour components should be in |
||
326 | the range from 0 to 255. |
||
327 | |||
328 | May raise ValueError if an invalid colour name is specified. |
||
329 | </translation> |
||
330 | </message> |
||
331 | <message> |
||
2952 | cbradney | 332 | <source>deleteColor("name", "replace") |
2949 | cbradney | 333 | |
334 | Deletes the color "name". Every occurence of that color is replaced by the |
||
335 | color "replace". If not specified, "replace" defaults to the color |
||
336 | "None" - transparent. |
||
337 | |||
338 | deleteColor works on the default document colors if there is no document open. |
||
339 | In that case, "replace", if specified, has no effect. |
||
340 | |||
2952 | cbradney | 341 | May raise NotFoundError if a named color wasn't found. |
2949 | cbradney | 342 | May raise ValueError if an invalid color name is specified. |
343 | </source> |
||
2952 | cbradney | 344 | <translation>deleteColor("name", "replace") |
2949 | cbradney | 345 | |
346 | Deletes the colour "name". Every occurence of that colour is replaced by the |
||
347 | colour "replace". If not specified, "replace" defaults to the colour |
||
348 | "None" - transparent. |
||
349 | |||
350 | deleteColor works on the default document colours if there is no document open. |
||
351 | In that case, "replace", if specified, has no effect. |
||
352 | |||
2952 | cbradney | 353 | May raise NotFoundError if a named colour wasn't found. |
2949 | cbradney | 354 | May raise ValueError if an invalid colour name is specified. |
355 | </translation> |
||
356 | </message> |
||
357 | <message> |
||
2952 | cbradney | 358 | <source>replaceColor("name", "replace") |
2949 | cbradney | 359 | |
360 | Every occurence of the color "name" is replaced by the color "replace". |
||
361 | |||
2952 | cbradney | 362 | May raise NotFoundError if a named color wasn't found. |
2949 | cbradney | 363 | May raise ValueError if an invalid color name is specified. |
364 | </source> |
||
2952 | cbradney | 365 | <translation>replaceColor("name", "replace") |
2949 | cbradney | 366 | |
367 | Every occurence of the colour "name" is replaced by the colour "replace". |
||
368 | |||
2952 | cbradney | 369 | May raise NotFoundError if a named colour wasn't found. |
2949 | cbradney | 370 | May raise ValueError if an invalid colour name is specified. |
371 | </translation> |
||
372 | </message> |
||
373 | <message> |
||
2952 | cbradney | 374 | <source>fileDialog("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename |
2949 | cbradney | 375 | |
376 | Shows a File Open dialog box with the caption "caption". Files are filtered |
||
377 | with the filter string "filter". A default filename or file path can also |
||
2952 | cbradney | 378 | supplied, leave this string empty when you don't want to use it. A value of |
2949 | cbradney | 379 | True for haspreview enables a small preview widget in the FileSelect box. When |
380 | the issave parameter is set to True the dialog acts like a "Save As" dialog |
||
381 | otherwise it acts like a "File Open Dialog". When the isdir parameter is True |
||
382 | the dialog shows and returns only directories. The default for all of the |
||
383 | opional parameters is False. |
||
384 | |||
2952 | cbradney | 385 | The filter, if specified, takes the form 'comment (*.type *.type2 ...)'. |
386 | For example 'Images (*.png *.xpm *.jpg)'. |
||
2949 | cbradney | 387 | |
388 | Refer to the Qt-Documentation for QFileDialog for details on filters. |
||
389 | |||
2952 | cbradney | 390 | Example: fileDialog('Open input', 'CSV files (*.csv)') |
391 | Example: fileDialog('Save report', defaultname='report.txt', issave=True) |
||
2949 | cbradney | 392 | </source> |
2952 | cbradney | 393 | <translation>fileDialog("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename |
2949 | cbradney | 394 | |
395 | Shows a File Open dialog box with the caption "caption". Files are filtered |
||
396 | with the filter string "filter". A default filename or file path can also |
||
2952 | cbradney | 397 | supplied, leave this string empty when you don't want to use it. A value of |
2949 | cbradney | 398 | True for haspreview enables a small preview widget in the FileSelect box. When |
399 | the issave parameter is set to True the dialog acts like a "Save As" dialog |
||
400 | otherwise it acts like a "File Open Dialog". When the isdir parameter is True |
||
401 | the dialog shows and returns only directories. The default for all of the |
||
402 | opional parameters is False. |
||
403 | |||
2952 | cbradney | 404 | The filter, if specified, takes the form 'comment (*.type *.type2 ...)'. |
405 | For example 'Images (*.png *.xpm *.jpg)'. |
||
2949 | cbradney | 406 | |
407 | Refer to the Qt-Documentation for QFileDialog for details on filters. |
||
408 | |||
2952 | cbradney | 409 | Example: fileDialog('Open input', 'CSV files (*.csv)') |
410 | Example: fileDialog('Save report', defaultname='report.txt', issave=True) |
||
2949 | cbradney | 411 | </translation> |
412 | </message> |
||
413 | <message> |
||
2952 | cbradney | 414 | <source>messageBox("caption", "message", |
2949 | cbradney | 415 | icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT, |
2952 | cbradney | 416 | button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer |
2949 | cbradney | 417 | |
418 | Displays a message box with the title "caption", the message "message", and |
||
419 | an icon "icon" and up to 3 buttons. By default no icon is used and a single |
||
420 | button, OK, is displayed. Only the caption and message arguments are required, |
||
421 | though setting an icon and appropriate button(s) is strongly |
||
422 | recommended. The message text may contain simple HTML-like markup. |
||
423 | |||
424 | Returns the number of the button the user pressed. Button numbers start |
||
425 | at 1. |
||
426 | |||
427 | For the icon and the button parameters there are predefined constants available |
||
428 | with the same names as in the Qt Documentation. These are the BUTTON_* and |
||
429 | ICON_* constants defined in the module. There are also two extra constants that |
||
430 | can be binary-ORed with button constants: |
||
431 | BUTTONOPT_DEFAULT Pressing enter presses this button. |
||
432 | BUTTONOPT_ESCAPE Pressing escape presses this button. |
||
433 | |||
434 | Usage examples: |
||
2952 | cbradney | 435 | result = messageBox('Script failed', |
436 | 'This script only works when you have a text frame selected.', |
||
2949 | cbradney | 437 | ICON_ERROR) |
2952 | cbradney | 438 | result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>', |
2949 | cbradney | 439 | ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
440 | BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
||
441 | |||
442 | Defined button and icon constants: |
||
443 | BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO, |
||
444 | BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
||
445 | ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL. |
||
446 | </source> |
||
2952 | cbradney | 447 | <translation>messageBox("caption", "message", |
2949 | cbradney | 448 | icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT, |
2952 | cbradney | 449 | button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer |
2949 | cbradney | 450 | |
451 | Displays a message box with the title "caption", the message "message", and |
||
452 | an icon "icon" and up to 3 buttons. By default no icon is used and a single |
||
453 | button, OK, is displayed. Only the caption and message arguments are required, |
||
454 | though setting an icon and appropriate button(s) is strongly |
||
455 | recommended. The message text may contain simple HTML-like markup. |
||
456 | |||
457 | Returns the number of the button the user pressed. Button numbers start |
||
458 | at 1. |
||
459 | |||
460 | For the icon and the button parameters there are predefined constants available |
||
461 | with the same names as in the Qt Documentation. These are the BUTTON_* and |
||
462 | ICON_* constants defined in the module. There are also two extra constants that |
||
463 | can be binary-ORed with button constants: |
||
464 | BUTTONOPT_DEFAULT Pressing enter presses this button. |
||
465 | BUTTONOPT_ESCAPE Pressing escape presses this button. |
||
466 | |||
467 | Usage examples: |
||
2952 | cbradney | 468 | result = messageBox('Script failed', |
469 | 'This script only works when you have a text frame selected.', |
||
2949 | cbradney | 470 | ICON_ERROR) |
2952 | cbradney | 471 | result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>', |
2949 | cbradney | 472 | ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
473 | BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
||
474 | |||
475 | Defined button and icon constants: |
||
476 | BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO, |
||
477 | BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
||
478 | ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL. |
||
479 | </translation> |
||
480 | </message> |
||
481 | <message> |
||
2952 | cbradney | 482 | <source>valueDialog(caption, message [,defaultvalue]) -> string |
2949 | cbradney | 483 | |
2952 | cbradney | 484 | Shows the common 'Ask for string' dialog and returns its value as a string |
485 | Parameters: window title, text in the window and optional 'default' value. |
||
2949 | cbradney | 486 | |
2952 | cbradney | 487 | Example: valueDialog('title', 'text in the window', 'optional') |
2949 | cbradney | 488 | </source> |
2952 | cbradney | 489 | <translation>valueDialog(caption, message [,defaultvalue]) -> string |
2949 | cbradney | 490 | |
2952 | cbradney | 491 | Shows the common 'Ask for string' dialog and returns its value as a string |
492 | Parameters: window title, text in the window and optional 'default' value. |
||
2949 | cbradney | 493 | |
2952 | cbradney | 494 | Example: valueDialog('title', 'text in the window', 'optional') |
2949 | cbradney | 495 | </translation> |
496 | </message> |
||
497 | <message> |
||
2952 | cbradney | 498 | <source>closeDoc() |
2949 | cbradney | 499 | |
500 | Closes the current document without prompting to save. |
||
501 | |||
502 | May throw NoDocOpenError if there is no document to close |
||
503 | </source> |
||
2952 | cbradney | 504 | <translation>closeDoc() |
2949 | cbradney | 505 | |
506 | Closes the current document without prompting to save. |
||
507 | |||
508 | May throw NoDocOpenError if there is no document to close |
||
509 | </translation> |
||
510 | </message> |
||
511 | <message> |
||
2952 | cbradney | 512 | <source>haveDoc() -> bool |
2949 | cbradney | 513 | |
514 | Returns true if there is a document open. |
||
515 | </source> |
||
2952 | cbradney | 516 | <translation>haveDoc() -> bool |
2949 | cbradney | 517 | |
518 | Returns true if there is a document open. |
||
519 | </translation> |
||
520 | </message> |
||
521 | <message> |
||
2952 | cbradney | 522 | <source>openDoc("name") |
2949 | cbradney | 523 | |
524 | Opens the document "name". |
||
525 | |||
526 | May raise ScribusError if the document could not be opened. |
||
527 | </source> |
||
2952 | cbradney | 528 | <translation>openDoc("name") |
2949 | cbradney | 529 | |
530 | Opens the document "name". |
||
531 | |||
532 | May raise ScribusError if the document could not be opened. |
||
533 | </translation> |
||
534 | </message> |
||
535 | <message> |
||
2952 | cbradney | 536 | <source>saveDoc() |
2949 | cbradney | 537 | |
538 | Saves the current document with its current name, returns true if successful. |
||
539 | If the document has not already been saved, this may bring up an interactive |
||
540 | save file dialog. |
||
541 | |||
542 | If the save fails, there is currently no way to tell. |
||
543 | </source> |
||
2952 | cbradney | 544 | <translation>saveDoc() |
2949 | cbradney | 545 | |
546 | Saves the current document with its current name, returns true if successful. |
||
547 | If the document has not already been saved, this may bring up an interactive |
||
548 | save file dialog. |
||
549 | |||
550 | If the save fails, there is currently no way to tell. |
||
551 | </translation> |
||
552 | </message> |
||
553 | <message> |
||
2952 | cbradney | 554 | <source>saveDocAs("name") |
2949 | cbradney | 555 | |
556 | Saves the current document under the new name "name" (which may be a full or |
||
557 | relative path). |
||
558 | |||
559 | May raise ScribusError if the save fails. |
||
560 | </source> |
||
2952 | cbradney | 561 | <translation>saveDocAs("name") |
2949 | cbradney | 562 | |
563 | Saves the current document under the new name "name" (which may be a full or |
||
564 | relative path). |
||
565 | |||
566 | May raise ScribusError if the save fails. |
||
567 | </translation> |
||
568 | </message> |
||
569 | <message> |
||
2952 | cbradney | 570 | <source>saveDocAs("author", "info", "description") -> bool |
2949 | cbradney | 571 | |
572 | Sets the document information. "Author", "Info", "Description" are |
||
573 | strings. |
||
574 | </source> |
||
2952 | cbradney | 575 | <translation>saveDocAs("author", "info", "description") -> bool |
2949 | cbradney | 576 | |
577 | Sets the document information. "Author", "Info", "Description" are |
||
578 | strings. |
||
579 | </translation> |
||
580 | </message> |
||
581 | <message> |
||
2952 | cbradney | 582 | <source>setMargins(lr, rr, tr, br) |
2949 | cbradney | 583 | |
584 | Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br) |
||
2952 | cbradney | 585 | margins are given in the measurement units of the document - see UNIT_<type> |
2949 | cbradney | 586 | constants. |
587 | </source> |
||
2952 | cbradney | 588 | <translation>setMargins(lr, rr, tr, br) |
2949 | cbradney | 589 | |
590 | Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br) |
||
2952 | cbradney | 591 | margins are given in the measurement units of the document - see UNIT_<type> |
2949 | cbradney | 592 | constants. |
593 | </translation> |
||
594 | </message> |
||
595 | <message> |
||
2952 | cbradney | 596 | <source>setUnit(type) |
2949 | cbradney | 597 | |
598 | Changes the measurement unit of the document. Possible values for "unit" are |
||
2952 | cbradney | 599 | defined as constants UNIT_<type>. |
2949 | cbradney | 600 | |
601 | May raise ValueError if an invalid unit is passed. |
||
602 | </source> |
||
2952 | cbradney | 603 | <translation>setUnit(type) |
2949 | cbradney | 604 | |
605 | Changes the measurement unit of the document. Possible values for "unit" are |
||
2952 | cbradney | 606 | defined as constants UNIT_<type>. |
2949 | cbradney | 607 | |
608 | May raise ValueError if an invalid unit is passed. |
||
609 | </translation> |
||
610 | </message> |
||
611 | <message> |
||
2952 | cbradney | 612 | <source>getUnit() -> integer (Scribus unit constant) |
2949 | cbradney | 613 | |
614 | Returns the measurement units of the document. The returned value will be one |
||
615 | of the UNIT_* constants: |
||
616 | UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS. |
||
617 | </source> |
||
2952 | cbradney | 618 | <translation>getUnit() -> integer (Scribus unit constant) |
2949 | cbradney | 619 | |
620 | Returns the measurement units of the document. The returned value will be one |
||
621 | of the UNIT_* constants: |
||
622 | UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS. |
||
623 | </translation> |
||
624 | </message> |
||
625 | <message> |
||
2952 | cbradney | 626 | <source>loadStylesFromFile("filename") |
2949 | cbradney | 627 | |
628 | Loads paragraph styles from the Scribus document at "filename" into the |
||
629 | current document. |
||
630 | </source> |
||
2952 | cbradney | 631 | <translation>loadStylesFromFile("filename") |
2949 | cbradney | 632 | |
633 | Loads paragraph styles from the Scribus document at "filename" into the |
||
634 | current document. |
||
635 | </translation> |
||
636 | </message> |
||
637 | <message> |
||
2952 | cbradney | 638 | <source>setDocType(facingPages, firstPageLeft) |
2949 | cbradney | 639 | |
640 | Sets the document type. To get facing pages set the first parameter to |
||
641 | FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead. If you want |
||
642 | to be the first page a left side set the second parameter to FIRSTPAGELEFT, for |
||
643 | a right page use FIRSTPAGERIGHT. |
||
644 | </source> |
||
2952 | cbradney | 645 | <translation>setDocType(facingPages, firstPageLeft) |
2949 | cbradney | 646 | |
647 | Sets the document type. To get facing pages set the first parameter to |
||
648 | FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead. If you want |
||
649 | to be the first page a left side set the second parameter to FIRSTPAGELEFT, for |
||
650 | a right page use FIRSTPAGERIGHT. |
||
651 | </translation> |
||
652 | </message> |
||
653 | <message> |
||
2952 | cbradney | 654 | <source>getLineColor(["name"]) -> string |
2949 | cbradney | 655 | |
656 | Returns the name of the line color of the object "name". |
||
657 | If "name" is not given the currently selected item is used. |
||
658 | </source> |
||
2952 | cbradney | 659 | <translation>getLineColor(["name"]) -> string |
2949 | cbradney | 660 | |
661 | Returns the name of the line colour of the object "name". |
||
662 | If "name" is not given the currently selected item is used. |
||
663 | </translation> |
||
664 | </message> |
||
665 | <message> |
||
2952 | cbradney | 666 | <source>getLineWidth(["name"]) -> integer |
2949 | cbradney | 667 | |
668 | Returns the line width of the object "name". If "name" |
||
669 | is not given the currently selected Item is used. |
||
670 | </source> |
||
2952 | cbradney | 671 | <translation>getLineWidth(["name"]) -> integer |
2949 | cbradney | 672 | |
673 | Returns the line width of the object "name". If "name" |
||
674 | is not given the currently selected Item is used. |
||
675 | </translation> |
||
676 | </message> |
||
677 | <message> |
||
2952 | cbradney | 678 | <source>getLineShade(["name"]) -> integer |
2949 | cbradney | 679 | |
680 | Returns the shading value of the line color of the object "name". |
||
681 | If "name" is not given the currently selected item is used. |
||
682 | </source> |
||
2952 | cbradney | 683 | <translation>getLineShade(["name"]) -> integer |
2949 | cbradney | 684 | |
685 | Returns the shading value of the line colour of the object "name". |
||
686 | If "name" is not given the currently selected item is used. |
||
687 | </translation> |
||
688 | </message> |
||
689 | <message> |
||
2952 | cbradney | 690 | <source>getLineJoin(["name"]) -> integer (see contants) |
2949 | cbradney | 691 | |
692 | Returns the line join style of the object "name". If "name" is not given |
||
693 | the currently selected item is used. The join types are: |
||
694 | JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND |
||
695 | </source> |
||
2952 | cbradney | 696 | <translation>getLineJoin(["name"]) -> integer (see contants) |
2949 | cbradney | 697 | |
698 | Returns the line join style of the object "name". If "name" is not given |
||
699 | the currently selected item is used. The join types are: |
||
700 | JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND |
||
701 | </translation> |
||
702 | </message> |
||
703 | <message> |
||
2952 | cbradney | 704 | <source>getLineEnd(["name"]) -> integer (see constants) |
2949 | cbradney | 705 | |
706 | Returns the line cap style of the object "name". If "name" is not given the |
||
707 | currently selected item is used. The cap types are: |
||
708 | CAP_FLAT, CAP_ROUND, CAP_SQUARE |
||
709 | </source> |
||
2952 | cbradney | 710 | <translation>getLineEnd(["name"]) -> integer (see constants) |
2949 | cbradney | 711 | |
712 | Returns the line cap style of the object "name". If "name" is not given the |
||
713 | currently selected item is used. The cap types are: |
||
714 | CAP_FLAT, CAP_ROUND, CAP_SQUARE |
||
715 | </translation> |
||
716 | </message> |
||
717 | <message> |
||
2952 | cbradney | 718 | <source>getLineStyle(["name"]) -> integer (see constants) |
2949 | cbradney | 719 | |
720 | Returns the line style of the object "name". If "name" is not given the |
||
721 | currently selected item is used. Line style constants are: |
||
722 | LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID |
||
723 | </source> |
||
2952 | cbradney | 724 | <translation>getLineStyle(["name"]) -> integer (see constants) |
2949 | cbradney | 725 | |
726 | Returns the line style of the object "name". If "name" is not given the |
||
727 | currently selected item is used. Line style constants are: |
||
728 | LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID |
||
729 | </translation> |
||
730 | </message> |
||
731 | <message> |
||
2952 | cbradney | 732 | <source>getFillShade(["name"]) -> integer |
2949 | cbradney | 733 | |
734 | Returns the shading value of the fill color of the object "name". |
||
735 | If "name" is not given the currently selected item is used. |
||
736 | </source> |
||
2952 | cbradney | 737 | <translation>getFillShade(["name"]) -> integer |
2949 | cbradney | 738 | |
739 | Returns the shading value of the fill colour of the object "name". |
||
740 | If "name" is not given the currently selected item is used. |
||
741 | </translation> |
||
742 | </message> |
||
743 | <message> |
||
2952 | cbradney | 744 | <source>getCornerRadius(["name"]) -> integer |
2949 | cbradney | 745 | |
746 | Returns the corner radius of the object "name". The radius isexpressed in points. If "name" is not given the currentlyselected item is used. |
||
747 | </source> |
||
2952 | cbradney | 748 | <translation>getCornerRadius(["name"]) -> integer |
2949 | cbradney | 749 | |
750 | Returns the corner radius of the object "name". The radius isexpressed in points. If "name" is not given the currentlyselected item is used. |
||
751 | </translation> |
||
752 | </message> |
||
753 | <message> |
||
2952 | cbradney | 754 | <source>getImageScale(["name"]) -> (x,y) |
2949 | cbradney | 755 | |
756 | Returns a (x, y) tuple containing the scaling values of the image frame |
||
757 | "name". If "name" is not given the currently selected item is used. |
||
758 | </source> |
||
2952 | cbradney | 759 | <translation>getImageScale(["name"]) -> (x,y) |
2949 | cbradney | 760 | |
761 | Returns a (x, y) tuple containing the scaling values of the image frame |
||
762 | "name". If "name" is not given the currently selected item is used. |
||
763 | </translation> |
||
764 | </message> |
||
765 | <message> |
||
2952 | cbradney | 766 | <source>getImageName(["name"]) -> string |
2949 | cbradney | 767 | |
768 | Returns the filename for the image in the image frame. If "name" is not |
||
769 | given the currently selected item is used. |
||
770 | </source> |
||
2952 | cbradney | 771 | <translation>getImageName(["name"]) -> string |
2949 | cbradney | 772 | |
773 | Returns the filename for the image in the image frame. If "name" is not |
||
774 | given the currently selected item is used. |
||
775 | </translation> |
||
776 | </message> |
||
777 | <message> |
||
2952 | cbradney | 778 | <source>getPosition(["name"]) -> (x,y) |
2949 | cbradney | 779 | |
780 | Returns a (x, y) tuple with the position of the object "name". |
||
781 | If "name" is not given the currently selected item is used.The position is expressed in the actual measurement unit of the document |
||
2952 | cbradney | 782 | - see UNIT_<type> for reference. |
2949 | cbradney | 783 | </source> |
2952 | cbradney | 784 | <translation>getPosition(["name"]) -> (x,y) |
2949 | cbradney | 785 | |
786 | Returns a (x, y) tuple with the position of the object "name". |
||
787 | If "name" is not given the currently selected item is used.The position is expressed in the actual measurement unit of the document |
||
2952 | cbradney | 788 | - see UNIT_<type> for reference. |
2949 | cbradney | 789 | </translation> |
790 | </message> |
||
791 | <message> |
||
2952 | cbradney | 792 | <source>getSize(["name"]) -> (width,height) |
2949 | cbradney | 793 | |
794 | Returns a (width, height) tuple with the size of the object "name". |
||
795 | If "name" is not given the currently selected item is used. The size is |
||
2952 | cbradney | 796 | expressed in the current measurement unit of the document - see UNIT_<type> |
2949 | cbradney | 797 | for reference. |
798 | </source> |
||
2952 | cbradney | 799 | <translation>getSize(["name"]) -> (width,height) |
2949 | cbradney | 800 | |
801 | Returns a (width, height) tuple with the size of the object "name". |
||
802 | If "name" is not given the currently selected item is used. The size is |
||
2952 | cbradney | 803 | expressed in the current measurement unit of the document - see UNIT_<type> |
2949 | cbradney | 804 | for reference. |
805 | </translation> |
||
806 | </message> |
||
807 | <message> |
||
2952 | cbradney | 808 | <source>getRotation(["name"]) -> integer |
2949 | cbradney | 809 | |
810 | Returns the rotation of the object "name". The value is expressed in degrees, |
||
811 | and clockwise is positive. If "name" is not given the currently selected item |
||
812 | is used. |
||
813 | </source> |
||
2952 | cbradney | 814 | <translation>getRotation(["name"]) -> integer |
2949 | cbradney | 815 | |
816 | Returns the rotation of the object "name". The value is expressed in degrees, |
||
817 | and clockwise is positive. If "name" is not given the currently selected item |
||
818 | is used. |
||
819 | </translation> |
||
820 | </message> |
||
821 | <message> |
||
2952 | cbradney | 822 | <source>getAllObjects() -> list |
2949 | cbradney | 823 | |
824 | Returns a list containing the names of all objects on the current page. |
||
825 | </source> |
||
2952 | cbradney | 826 | <translation>getAllObjects() -> list |
2949 | cbradney | 827 | |
828 | Returns a list containing the names of all objects on the current page. |
||
829 | </translation> |
||
830 | </message> |
||
831 | <message> |
||
2952 | cbradney | 832 | <source>getPropertyCType(object, property, includesuper=True) |
2949 | cbradney | 833 | |
2952 | cbradney | 834 | Returns the name of the C type of `property' of `object'. See getProperty() |
2949 | cbradney | 835 | for details of arguments. |
836 | |||
2952 | cbradney | 837 | If `includesuper' is true, search inherited properties too. |
2949 | cbradney | 838 | </source> |
2952 | cbradney | 839 | <translation>getPropertyCType(object, property, includesuper=True) |
2949 | cbradney | 840 | |
2952 | cbradney | 841 | Returns the name of the C type of `property' of `object'. See getProperty() |
2949 | cbradney | 842 | for details of arguments. |
843 | |||
2952 | cbradney | 844 | If `includesuper' is true, search inherited properties too. |
2949 | cbradney | 845 | </translation> |
846 | </message> |
||
847 | <message> |
||
2952 | cbradney | 848 | <source>getPropertyNames(object, includesuper=True) |
2949 | cbradney | 849 | |
2952 | cbradney | 850 | Return a list of property names supported by `object'. |
851 | If `includesuper' is true, return properties supported |
||
2949 | cbradney | 852 | by parent classes as well. |
853 | </source> |
||
2952 | cbradney | 854 | <translation>getPropertyNames(object, includesuper=True) |
2949 | cbradney | 855 | |
2952 | cbradney | 856 | Return a list of property names supported by `object'. |
857 | If `includesuper' is true, return properties supported |
||
2949 | cbradney | 858 | by parent classes as well. |
859 | </translation> |
||
860 | </message> |
||
861 | <message> |
||
2952 | cbradney | 862 | <source>getProperty(object, property) |
2949 | cbradney | 863 | |
2952 | cbradney | 864 | Return the value of the property `property' of the passed `object'. |
2949 | cbradney | 865 | |
2952 | cbradney | 866 | The `object' argument may be a string, in which case the named PageItem |
2949 | cbradney | 867 | is searched for. It may also be a PyCObject, which may point to any |
868 | C++ QObject instance. |
||
869 | |||
2952 | cbradney | 870 | The `property' argument must be a string, and is the name of the property |
871 | to look up on `object'. |
||
2949 | cbradney | 872 | |
873 | The return value varies depending on the type of the property. |
||
874 | </source> |
||
2952 | cbradney | 875 | <translation>getProperty(object, property) |
2949 | cbradney | 876 | |
2952 | cbradney | 877 | Return the value of the property `property' of the passed `object'. |
2949 | cbradney | 878 | |
2952 | cbradney | 879 | The `object' argument may be a string, in which case the named PageItem |
2949 | cbradney | 880 | is searched for. It may also be a PyCObject, which may point to any |
881 | C++ QObject instance. |
||
882 | |||
2952 | cbradney | 883 | The `property' argument must be a string, and is the name of the property |
884 | to look up on `object'. |
||
2949 | cbradney | 885 | |
886 | The return value varies depending on the type of the property. |
||
887 | </translation> |
||
888 | </message> |
||
889 | <message> |
||
2952 | cbradney | 890 | <source>setProperty(object, property, value) |
2949 | cbradney | 891 | |
2952 | cbradney | 892 | Set `property' of `object' to `value'. If `value' cannot be converted to a type |
893 | compatible with the type of `property', an exception is raised. An exception may |
||
2949 | cbradney | 894 | also be raised if the underlying setter fails. |
895 | |||
896 | See getProperty() for more information. |
||
897 | </source> |
||
2952 | cbradney | 898 | <translation>setProperty(object, property, value) |
2949 | cbradney | 899 | |
2952 | cbradney | 900 | Set `property' of `object' to `value'. If `value' cannot be converted to a type |
901 | compatible with the type of `property', an exception is raised. An exception may |
||
2949 | cbradney | 902 | also be raised if the underlying setter fails. |
903 | |||
904 | See getProperty() for more information. |
||
905 | </translation> |
||
906 | </message> |
||
907 | <message> |
||
2952 | cbradney | 908 | <source>getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True) |
2949 | cbradney | 909 | |
2952 | cbradney | 910 | Return a list of children of `object', possibly restricted to children |
911 | of class named `ofclass' or children named `ofname'. If `recursive' is true, |
||
2949 | cbradney | 912 | search recursively through children, grandchildren, etc. |
913 | |||
914 | See QObject::children() in the Qt docs for more information. |
||
915 | </source> |
||
2952 | cbradney | 916 | <translation>getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True) |
2949 | cbradney | 917 | |
2952 | cbradney | 918 | Return a list of children of `object', possibly restricted to children |
919 | of class named `ofclass' or children named `ofname'. If `recursive' is true, |
||
2949 | cbradney | 920 | search recursively through children, grandchildren, etc. |
921 | |||
922 | See QObject::children() in the Qt docs for more information. |
||
923 | </translation> |
||
924 | </message> |
||
925 | <message> |
||
2952 | cbradney | 926 | <source>getChild(object, childname, ofclass=None, recursive=True) |
2949 | cbradney | 927 | |
2952 | cbradney | 928 | Return the first child of `object' named `childname', possibly restricting |
929 | the search to children of type name `ofclass'. If `recursive' is true, |
||
2949 | cbradney | 930 | search recursively through children, grandchildren, etc. |
931 | </source> |
||
2952 | cbradney | 932 | <translation>getChild(object, childname, ofclass=None, recursive=True) |
2949 | cbradney | 933 | |
2952 | cbradney | 934 | Return the first child of `object' named `childname', possibly restricting |
935 | the search to children of type name `ofclass'. If `recursive' is true, |
||
2949 | cbradney | 936 | search recursively through children, grandchildren, etc. |
937 | </translation> |
||
938 | </message> |
||
939 | <message> |
||
2952 | cbradney | 940 | <source>moveObjectAbs(x, y [, "name"]) |
2949 | cbradney | 941 | |
942 | Moves the object "name" to a new location. The coordinates are expressed in |
||
943 | the current measurement unit of the document (see UNIT constants). If "name" |
||
944 | is not given the currently selected item is used. If the object "name" |
||
945 | belongs to a group, the whole group is moved. |
||
946 | </source> |
||
2952 | cbradney | 947 | <translation>moveObjectAbs(x, y [, "name"]) |
2949 | cbradney | 948 | |
949 | Moves the object "name" to a new location. The coordinates are expressed in |
||
950 | the current measurement unit of the document (see UNIT constants). If "name" |
||
951 | is not given the currently selected item is used. If the object "name" |
||
952 | belongs to a group, the whole group is moved. |
||
953 | </translation> |
||
954 | </message> |
||
955 | <message> |
||
2952 | cbradney | 956 | <source>rotateObject(rot [, "name"]) |
2949 | cbradney | 957 | |
958 | Rotates the object "name" by "rot" degrees relatively. The object is |
||
959 | rotated by the vertex that is currently selected as the rotation point - by |
||
960 | default, the top left vertext at zero rotation. Positive values mean counter |
||
961 | clockwise rotation when the default rotation point is used. If "name" is not |
||
962 | given the currently selected item is used. |
||
963 | </source> |
||
2952 | cbradney | 964 | <translation>rotateObject(rot [, "name"]) |
2949 | cbradney | 965 | |
966 | Rotates the object "name" by "rot" degrees relatively. The object is |
||
967 | rotated by the vertex that is currently selected as the rotation point - by |
||
968 | default, the top left vertext at zero rotation. Positive values mean counter |
||
969 | clockwise rotation when the default rotation point is used. If "name" is not |
||
970 | given the currently selected item is used. |
||
971 | </translation> |
||
972 | </message> |
||
973 | <message> |
||
2952 | cbradney | 974 | <source>rotateObjectAbs(rot [, "name"]) |
2949 | cbradney | 975 | |
976 | Sets the rotation of the object "name" to "rot". Positve values |
||
977 | mean counter clockwise rotation. If "name" is not given the currently |
||
978 | selected item is used. |
||
979 | </source> |
||
2952 | cbradney | 980 | <translation>rotateObjectAbs(rot [, "name"]) |
2949 | cbradney | 981 | |
982 | Sets the rotation of the object "name" to "rot". Positve values |
||
983 | mean counter clockwise rotation. If "name" is not given the currently |
||
984 | selected item is used. |
||
985 | </translation> |
||
986 | </message> |
||
987 | <message> |
||
2952 | cbradney | 988 | <source>sizeObject(width, height [, "name"]) |
2949 | cbradney | 989 | |
990 | Resizes the object "name" to the given width and height. If "name" |
||
991 | is not given the currently selected item is used. |
||
992 | </source> |
||
2952 | cbradney | 993 | <translation>sizeObject(width, height [, "name"]) |
2949 | cbradney | 994 | |
995 | Resizes the object "name" to the given width and height. If "name" |
||
996 | is not given the currently selected item is used. |
||
997 | </translation> |
||
998 | </message> |
||
999 | <message> |
||
2952 | cbradney | 1000 | <source>getSelectedObject([nr]) -> string |
2949 | cbradney | 1001 | |
1002 | Returns the name of the selected object. "nr" if given indicates the number |
||
1003 | of the selected object, e.g. 0 means the first selected object, 1 means the |
||
1004 | second selected Object and so on. |
||
1005 | </source> |
||
2952 | cbradney | 1006 | <translation>getSelectedObject([nr]) -> string |
2949 | cbradney | 1007 | |
1008 | Returns the name of the selected object. "nr" if given indicates the number |
||
1009 | of the selected object, e.g. 0 means the first selected object, 1 means the |
||
1010 | second selected Object and so on. |
||
1011 | </translation> |
||
1012 | </message> |
||
1013 | <message> |
||
2952 | cbradney | 1014 | <source>selectionCount() -> integer |
2949 | cbradney | 1015 | |
1016 | Returns the number of selected objects. |
||
1017 | </source> |
||
2952 | cbradney | 1018 | <translation>selectionCount() -> integer |
2949 | cbradney | 1019 | |
1020 | Returns the number of selected objects. |
||
1021 | </translation> |
||
1022 | </message> |
||
1023 | <message> |
||
2952 | cbradney | 1024 | <source>selectObject("name") |
2949 | cbradney | 1025 | |
1026 | Selects the object with the given "name". |
||
1027 | </source> |
||
2952 | cbradney | 1028 | <translation>selectObject("name") |
2949 | cbradney | 1029 | |
1030 | Selects the object with the given "name". |
||
1031 | </translation> |
||
1032 | </message> |
||
1033 | <message> |
||
2952 | cbradney | 1034 | <source>deselectAll() |
2949 | cbradney | 1035 | |
1036 | Deselects all objects in the whole document. |
||
1037 | </source> |
||
2952 | cbradney | 1038 | <translation>deselectAll() |
2949 | cbradney | 1039 | |
1040 | Deselects all objects in the whole document. |
||
1041 | </translation> |
||
1042 | </message> |
||
1043 | <message> |
||
2952 | cbradney | 1044 | <source>groupObjects(list) |
2949 | cbradney | 1045 | |
1046 | Groups the objects named in "list" together. "list" must contain the names |
||
1047 | of the objects to be grouped. If "list" is not given the currently selected |
||
1048 | items are used. |
||
1049 | </source> |
||
2952 | cbradney | 1050 | <translation>groupObjects(list) |
2949 | cbradney | 1051 | |
1052 | Groups the objects named in "list" together. "list" must contain the names |
||
1053 | of the objects to be grouped. If "list" is not given the currently selected |
||
1054 | items are used. |
||
1055 | </translation> |
||
1056 | </message> |
||
1057 | <message> |
||
2952 | cbradney | 1058 | <source>unGroupObjects("name") |
2949 | cbradney | 1059 | |
1060 | Destructs the group the object "name" belongs to.If "name" is not given the currently selected item is used.</source> |
||
2952 | cbradney | 1061 | <translation>unGroupObjects("name") |
2949 | cbradney | 1062 | |
1063 | Destructs the group the object "name" belongs to.If "name" is not given the currently selected item is used.</translation> |
||
1064 | </message> |
||
1065 | <message> |
||
2952 | cbradney | 1066 | <source>scaleGroup(factor [,"name"]) |
2949 | cbradney | 1067 | |
1068 | Scales the group the object "name" belongs to. Values greater than 1 enlarge |
||
1069 | the group, values smaller than 1 make the group smaller e.g a value of 0.5 |
||
1070 | scales the group to 50 % of its original size, a value of 1.5 scales the group |
||
1071 | to 150 % of its original size. The value for "factor" must be greater than |
||
1072 | 0. If "name" is not given the currently selected item is used. |
||
1073 | |||
1074 | May raise ValueError if an invalid scale factor is passed. |
||
1075 | </source> |
||
2952 | cbradney | 1076 | <translation>scaleGroup(factor [,"name"]) |
2949 | cbradney | 1077 | |
1078 | Scales the group the object "name" belongs to. Values greater than 1 enlarge |
||
1079 | the group, values smaller than 1 make the group smaller e.g a value of 0.5 |
||
1080 | scales the group to 50 % of its original size, a value of 1.5 scales the group |
||
1081 | to 150 % of its original size. The value for "factor" must be greater than |
||
1082 | 0. If "name" is not given the currently selected item is used. |
||
1083 | |||
1084 | May raise ValueError if an invalid scale factor is passed. |
||
1085 | </translation> |
||
1086 | </message> |
||
1087 | <message> |
||
2952 | cbradney | 1088 | <source>loadImage("filename" [, "name"]) |
2949 | cbradney | 1089 | |
1090 | Loads the picture "picture" into the image frame "name". If "name" is |
||
1091 | not given the currently selected item is used. |
||
1092 | |||
1093 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
1094 | </source> |
||
2952 | cbradney | 1095 | <translation>loadImage("filename" [, "name"]) |
2949 | cbradney | 1096 | |
1097 | Loads the picture "picture" into the image frame "name". If "name" is |
||
1098 | not given the currently selected item is used. |
||
1099 | |||
1100 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
1101 | </translation> |
||
1102 | </message> |
||
1103 | <message> |
||
2952 | cbradney | 1104 | <source>scaleImage(x, y [, "name"]) |
2949 | cbradney | 1105 | |
1106 | Sets the scaling factors of the picture in the image frame "name". |
||
1107 | If "name" is not given the currently selected item is used. A number of 1 |
||
1108 | means 100 %. |
||
1109 | |||
1110 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
1111 | </source> |
||
2952 | cbradney | 1112 | <translation>scaleImage(x, y [, "name"]) |
2949 | cbradney | 1113 | |
1114 | Sets the scaling factors of the picture in the image frame "name". |
||
1115 | If "name" is not given the currently selected item is used. A number of 1 |
||
1116 | means 100 %. |
||
1117 | |||
1118 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
1119 | </translation> |
||
1120 | </message> |
||
1121 | <message> |
||
2952 | cbradney | 1122 | <source>lockObject(["name"]) -> bool |
2949 | cbradney | 1123 | |
2952 | cbradney | 1124 | Locks the object "name" if it's unlocked or unlock it if it's locked. |
2949 | cbradney | 1125 | If "name" is not given the currently selected item is used. Returns true |
1126 | if locked. |
||
1127 | </source> |
||
2952 | cbradney | 1128 | <translation>lockObject(["name"]) -> bool |
2949 | cbradney | 1129 | |
2952 | cbradney | 1130 | Locks the object "name" if it's unlocked or unlock it if it's locked. |
2949 | cbradney | 1131 | If "name" is not given the currently selected item is used. Returns true |
1132 | if locked. |
||
1133 | </translation> |
||
1134 | </message> |
||
1135 | <message> |
||
2952 | cbradney | 1136 | <source>isLocked(["name"]) -> bool |
2949 | cbradney | 1137 | |
1138 | Returns true if is the object "name" locked. If "name" is not given the |
||
1139 | currently selected item is used. |
||
1140 | </source> |
||
2952 | cbradney | 1141 | <translation>isLocked(["name"]) -> bool |
2949 | cbradney | 1142 | |
1143 | Returns true if is the object "name" locked. If "name" is not given the |
||
1144 | currently selected item is used. |
||
1145 | </translation> |
||
1146 | </message> |
||
1147 | <message> |
||
2952 | cbradney | 1148 | <source>setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>) |
2949 | cbradney | 1149 | |
2952 | cbradney | 1150 | Sets the scale to frame on the selected or specified image frame to `scaletoframe'. |
1151 | If `proportional' is specified, set fixed aspect ratio scaling to `proportional'. |
||
1152 | Both `scaletoframe' and `proportional' are boolean. |
||
2949 | cbradney | 1153 | |
1154 | May raise WrongFrameTypeError. |
||
1155 | </source> |
||
2952 | cbradney | 1156 | <translation>setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>) |
2949 | cbradney | 1157 | |
2952 | cbradney | 1158 | Sets the scale to frame on the selected or specified image frame to `scaletoframe'. |
1159 | If `proportional' is specified, set fixed aspect ratio scaling to `proportional'. |
||
1160 | Both `scaletoframe' and `proportional' are boolean. |
||
2949 | cbradney | 1161 | |
1162 | May raise WrongFrameTypeError. |
||
1163 | </translation> |
||
1164 | </message> |
||
1165 | <message> |
||
2952 | cbradney | 1166 | <source>getFontNames() -> list |
2949 | cbradney | 1167 | |
1168 | Returns a list with the names of all available fonts. |
||
1169 | </source> |
||
2952 | cbradney | 1170 | <translation>getFontNames() -> list |
2949 | cbradney | 1171 | |
1172 | Returns a list with the names of all available fonts. |
||
1173 | </translation> |
||
1174 | </message> |
||
1175 | <message> |
||
2952 | cbradney | 1176 | <source>getXFontNames() -> list of tuples |
2949 | cbradney | 1177 | |
2952 | cbradney | 1178 | Returns a larger font info. It's a list of the tuples with: |
2949 | cbradney | 1179 | [ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ] |
1180 | </source> |
||
2952 | cbradney | 1181 | <translation>getXFontNames() -> list of tuples |
2949 | cbradney | 1182 | |
2952 | cbradney | 1183 | Returns a larger font info. It's a list of the tuples with: |
2949 | cbradney | 1184 | [ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ] |
1185 | </translation> |
||
1186 | </message> |
||
1187 | <message> |
||
2952 | cbradney | 1188 | <source>renderFont("name", "filename", "sample", size, format="PPM") -> bool |
2949 | cbradney | 1189 | |
1190 | Creates an image preview of font "name" with given text "sample" and size. |
||
1191 | If "filename" is not "", image is saved into "filename". Otherwise |
||
1192 | image data is returned as a string. The optional "format" argument |
||
1193 | specifies the image format to generate, and supports any format allowed |
||
1194 | by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM. |
||
1195 | |||
2952 | cbradney | 1196 | May raise NotFoundError if the specified font can't be found. |
2949 | cbradney | 1197 | May raise ValueError if an empty sample or filename is passed. |
1198 | </source> |
||
2952 | cbradney | 1199 | <translation>renderFont("name", "filename", "sample", size, format="PPM") -> bool |
2949 | cbradney | 1200 | |
1201 | Creates an image preview of font "name" with given text "sample" and size. |
||
1202 | If "filename" is not "", image is saved into "filename". Otherwise |
||
1203 | image data is returned as a string. The optional "format" argument |
||
1204 | specifies the image format to generate, and supports any format allowed |
||
1205 | by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM. |
||
1206 | |||
2952 | cbradney | 1207 | May raise NotFoundError if the specified font can't be found. |
2949 | cbradney | 1208 | May raise ValueError if an empty sample or filename is passed. |
1209 | </translation> |
||
1210 | </message> |
||
1211 | <message> |
||
2952 | cbradney | 1212 | <source>getLayers() -> list |
2949 | cbradney | 1213 | |
1214 | Returns a list with the names of all defined layers. |
||
1215 | </source> |
||
2952 | cbradney | 1216 | <translation>getLayers() -> list |
2949 | cbradney | 1217 | |
1218 | Returns a list with the names of all defined layers. |
||
1219 | </translation> |
||
1220 | </message> |
||
1221 | <message> |
||
2952 | cbradney | 1222 | <source>setActiveLayer("name") |
2949 | cbradney | 1223 | |
1224 | Sets the active layer to the layer named "name". |
||
1225 | |||
2952 | cbradney | 1226 | May raise NotFoundError if the layer can't be found. |
1227 | May raise ValueError if the layer name isn't acceptable. |
||
2949 | cbradney | 1228 | </source> |
2952 | cbradney | 1229 | <translation>setActiveLayer("name") |
2949 | cbradney | 1230 | |
1231 | Sets the active layer to the layer named "name". |
||
1232 | |||
2952 | cbradney | 1233 | May raise NotFoundError if the layer can't be found. |
1234 | May raise ValueError if the layer name isn't acceptable. |
||
2949 | cbradney | 1235 | </translation> |
1236 | </message> |
||
1237 | <message> |
||
2952 | cbradney | 1238 | <source>getActiveLayer() -> string |
2949 | cbradney | 1239 | |
1240 | Returns the name of the current active layer. |
||
1241 | </source> |
||
2952 | cbradney | 1242 | <translation>getActiveLayer() -> string |
2949 | cbradney | 1243 | |
1244 | Returns the name of the current active layer. |
||
1245 | </translation> |
||
1246 | </message> |
||
1247 | <message> |
||
2952 | cbradney | 1248 | <source>sentToLayer("layer" [, "name"]) |
2949 | cbradney | 1249 | |
1250 | Sends the object "name" to the layer "layer". The layer must exist. |
||
1251 | If "name" is not given the currently selected item is used. |
||
1252 | |||
2952 | cbradney | 1253 | May raise NotFoundError if the layer can't be found. |
1254 | May raise ValueError if the layer name isn't acceptable. |
||
2949 | cbradney | 1255 | </source> |
2952 | cbradney | 1256 | <translation>sentToLayer("layer" [, "name"]) |
2949 | cbradney | 1257 | |
1258 | Sends the object "name" to the layer "layer". The layer must exist. |
||
1259 | If "name" is not given the currently selected item is used. |
||
1260 | |||
2952 | cbradney | 1261 | May raise NotFoundError if the layer can't be found. |
1262 | May raise ValueError if the layer name isn't acceptable. |
||
2949 | cbradney | 1263 | </translation> |
1264 | </message> |
||
1265 | <message> |
||
2952 | cbradney | 1266 | <source>setLayerVisible("layer", visible) |
2949 | cbradney | 1267 | |
1268 | Sets the layer "layer" to be visible or not. If is the visible set to false |
||
1269 | the layer is invisible. |
||
1270 | |||
2952 | cbradney | 1271 | May raise NotFoundError if the layer can't be found. |
1272 | May raise ValueError if the layer name isn't acceptable. |
||
2949 | cbradney | 1273 | </source> |
2952 | cbradney | 1274 | <translation>setLayerVisible("layer", visible) |
2949 | cbradney | 1275 | |
1276 | Sets the layer "layer" to be visible or not. If is the visible set to false |
||
1277 | the layer is invisible. |
||
1278 | |||
2952 | cbradney | 1279 | May raise NotFoundError if the layer can't be found. |
1280 | May raise ValueError if the layer name isn't acceptable. |
||
2949 | cbradney | 1281 | </translation> |
1282 | </message> |
||
1283 | <message> |
||
2952 | cbradney | 1284 | <source>setLayerPrintable("layer", printable) |
2949 | cbradney | 1285 | |
1286 | Sets the layer "layer" to be printable or not. If is the printable set to |
||
2952 | cbradney | 1287 | false the layer won't be printed. |
2949 | cbradney | 1288 | |
2952 | cbradney | 1289 | May raise NotFoundError if the layer can't be found. |
1290 | May raise ValueError if the layer name isn't acceptable. |
||
2949 | cbradney | 1291 | </source> |
2952 | cbradney | 1292 | <translation>setLayerPrintable("layer", printable) |
2949 | cbradney | 1293 | |
1294 | Sets the layer "layer" to be printable or not. If is the printable set to |
||
2952 | cbradney | 1295 | false the layer won't be printed. |
2949 | cbradney | 1296 | |
2952 | cbradney | 1297 | May raise NotFoundError if the layer can't be found. |
1298 | May raise ValueError if the layer name isn't acceptable. |
||
2949 | cbradney | 1299 | </translation> |
1300 | </message> |
||
1301 | <message> |
||
2952 | cbradney | 1302 | <source>isLayerPrintable("layer") -> bool |
2949 | cbradney | 1303 | |
1304 | Returns whether the layer "layer" is visible or not, a value of True means |
||
1305 | that the layer "layer" is visible, a value of False means that the layer |
||
1306 | "layer" is invisible. |
||
1307 | |||
2952 | cbradney | 1308 | May raise NotFoundError if the layer can't be found. |
1309 | May raise ValueError if the layer name isn't acceptable. |
||
2949 | cbradney | 1310 | </source> |
2952 | cbradney | 1311 | <translation>isLayerPrintable("layer") -> bool |
2949 | cbradney | 1312 | |
1313 | Returns whether the layer "layer" is visible or not, a value of True means |
||
1314 | that the layer "layer" is visible, a value of False means that the layer |
||
1315 | "layer" is invisible. |
||
1316 | |||
2952 | cbradney | 1317 | May raise NotFoundError if the layer can't be found. |
1318 | May raise ValueError if the layer name isn't acceptable. |
||
2949 | cbradney | 1319 | </translation> |
1320 | </message> |
||
1321 | <message> |
||
2952 | cbradney | 1322 | <source>isLayerPrintable("layer") -> bool |
2949 | cbradney | 1323 | |
1324 | Returns whether the layer "layer" is printable or not, a value of True means |
||
1325 | that the layer "layer" can be printed, a value of False means that printing |
||
1326 | the layer "layer" is disabled. |
||
1327 | |||
2952 | cbradney | 1328 | May raise NotFoundError if the layer can't be found. |
1329 | May raise ValueError if the layer name isn't acceptable. |
||
2949 | cbradney | 1330 | </source> |
2952 | cbradney | 1331 | <translation>isLayerPrintable("layer") -> bool |
2949 | cbradney | 1332 | |
1333 | Returns whether the layer "layer" is printable or not, a value of True means |
||
1334 | that the layer "layer" can be printed, a value of False means that printing |
||
1335 | the layer "layer" is disabled. |
||
1336 | |||
2952 | cbradney | 1337 | May raise NotFoundError if the layer can't be found. |
1338 | May raise ValueError if the layer name isn't acceptable. |
||
2949 | cbradney | 1339 | </translation> |
1340 | </message> |
||
1341 | <message> |
||
2952 | cbradney | 1342 | <source>deleteLayer("layer") |
2949 | cbradney | 1343 | |
2952 | cbradney | 1344 | Deletes the layer with the name "layer". Nothing happens if the layer doesn't |
1345 | exists or if it's the only layer in the document. |
||
2949 | cbradney | 1346 | |
2952 | cbradney | 1347 | May raise NotFoundError if the layer can't be found. |
1348 | May raise ValueError if the layer name isn't acceptable. |
||
2949 | cbradney | 1349 | </source> |
2952 | cbradney | 1350 | <translation>deleteLayer("layer") |
2949 | cbradney | 1351 | |
2952 | cbradney | 1352 | Deletes the layer with the name "layer". Nothing happens if the layer doesn't |
1353 | exists or if it's the only layer in the document. |
||
2949 | cbradney | 1354 | |
2952 | cbradney | 1355 | May raise NotFoundError if the layer can't be found. |
1356 | May raise ValueError if the layer name isn't acceptable. |
||
2949 | cbradney | 1357 | </translation> |
1358 | </message> |
||
1359 | <message> |
||
2952 | cbradney | 1360 | <source>createLayer(layer) |
2949 | cbradney | 1361 | |
1362 | Creates a new layer with the name "name". |
||
1363 | |||
2952 | cbradney | 1364 | May raise ValueError if the layer name isn't acceptable. |
2949 | cbradney | 1365 | </source> |
2952 | cbradney | 1366 | <translation>createLayer(layer) |
2949 | cbradney | 1367 | |
1368 | Creates a new layer with the name "name". |
||
1369 | |||
2952 | cbradney | 1370 | May raise ValueError if the layer name isn't acceptable. |
2949 | cbradney | 1371 | </translation> |
1372 | </message> |
||
1373 | <message> |
||
2952 | cbradney | 1374 | <source>getGuiLanguage() -> string |
2949 | cbradney | 1375 | |
1376 | Returns a string with the -lang value. |
||
1377 | </source> |
||
2952 | cbradney | 1378 | <translation>getGuiLanguage() -> string |
2949 | cbradney | 1379 | |
1380 | Returns a string with the -lang value. |
||
1381 | </translation> |
||
1382 | </message> |
||
1383 | <message> |
||
2952 | cbradney | 1384 | <source>createEllipse(x, y, width, height, ["name"]) -> string |
2949 | cbradney | 1385 | |
1386 | Creates a new ellipse on the current page and returns its name. |
||
1387 | The coordinates are given in the current measurement units of the document |
||
1388 | (see UNIT constants). "name" should be a unique identifier for the object |
||
1389 | because you need this name for further referencing of that object. If "name" |
||
1390 | is not given Scribus will create one for you. |
||
1391 | |||
2952 | cbradney | 1392 | May raise NameExistsError if you explicitly pass a name that's already used. |
2949 | cbradney | 1393 | </source> |
2952 | cbradney | 1394 | <translation>createEllipse(x, y, width, height, ["name"]) -> string |
2949 | cbradney | 1395 | |
1396 | Creates a new ellipse on the current page and returns its name. |
||
1397 | The coordinates are given in the current measurement units of the document |
||
1398 | (see UNIT constants). "name" should be a unique identifier for the object |
||
1399 | because you need this name for further referencing of that object. If "name" |
||
1400 | is not given Scribus will create one for you. |
||
1401 | |||
2952 | cbradney | 1402 | May raise NameExistsError if you explicitly pass a name that's already used. |
2949 | cbradney | 1403 | </translation> |
1404 | </message> |
||
1405 | <message> |
||
2952 | cbradney | 1406 | <source>createImage(x, y, width, height, ["name"]) -> string |
2949 | cbradney | 1407 | |
1408 | Creates a new picture frame on the current page and returns its name. The |
||
1409 | coordinates are given in the current measurement units of the document. |
||
1410 | "name" should be a unique identifier for the object because you need this |
||
1411 | name for further access to that object. If "name" is not given Scribus will |
||
1412 | create one for you. |
||
1413 | |||
2952 | cbradney | 1414 | May raise NameExistsError if you explicitly pass a name that's already used. |
2949 | cbradney | 1415 | </source> |
2952 | cbradney | 1416 | <translation>createImage(x, y, width, height, ["name"]) -> string |
2949 | cbradney | 1417 | |
1418 | Creates a new picture frame on the current page and returns its name. The |
||
1419 | coordinates are given in the current measurement units of the document. |
||
1420 | "name" should be a unique identifier for the object because you need this |
||
1421 | name for further access to that object. If "name" is not given Scribus will |
||
1422 | create one for you. |
||
1423 | |||
2952 | cbradney | 1424 | May raise NameExistsError if you explicitly pass a name that's already used. |
2949 | cbradney | 1425 | </translation> |
1426 | </message> |
||
1427 | <message> |
||
2952 | cbradney | 1428 | <source>createText(x, y, width, height, ["name"]) -> string |
2949 | cbradney | 1429 | |
1430 | Creates a new text frame on the actual page and returns its name. |
||
1431 | The coordinates are given in the actual measurement unit of the document (see |
||
1432 | UNIT constants). "name" should be a unique identifier for the object because |
||
1433 | you need this name for further referencing of that object. If "name" is not |
||
1434 | given Scribus will create one for you. |
||
1435 | |||
2952 | cbradney | 1436 | May raise NameExistsError if you explicitly pass a name that's already used. |
2949 | cbradney | 1437 | </source> |
2952 | cbradney | 1438 | <translation>createText(x, y, width, height, ["name"]) -> string |
2949 | cbradney | 1439 | |
1440 | Creates a new text frame on the actual page and returns its name. |
||
1441 | The coordinates are given in the actual measurement unit of the document (see |
||
1442 | UNIT constants). "name" should be a unique identifier for the object because |
||
1443 | you need this name for further referencing of that object. If "name" is not |
||
1444 | given Scribus will create one for you. |
||
1445 | |||
2952 | cbradney | 1446 | May raise NameExistsError if you explicitly pass a name that's already used. |
2949 | cbradney | 1447 | </translation> |
1448 | </message> |
||
1449 | <message> |
||
2952 | cbradney | 1450 | <source>createLine(x1, y1, x2, y2, ["name"]) -> string |
2949 | cbradney | 1451 | |
1452 | Creates a new line from the point(x1, y1) to the point(x2, y2) and returns |
||
1453 | its name. The coordinates are given in the current measurement unit of the |
||
1454 | document (see UNIT constants). "name" should be a unique identifier for the |
||
1455 | object because you need this name for further access to that object. If |
||
1456 | "name" is not given Scribus will create one for you. |
||
1457 | |||
2952 | cbradney | 1458 | May raise NameExistsError if you explicitly pass a name that's already used. |
2949 | cbradney | 1459 | </source> |
2952 | cbradney | 1460 | <translation>createLine(x1, y1, x2, y2, ["name"]) -> string |
2949 | cbradney | 1461 | |
1462 | Creates a new line from the point(x1, y1) to the point(x2, y2) and returns |
||
1463 | its name. The coordinates are given in the current measurement unit of the |
||
1464 | document (see UNIT constants). "name" should be a unique identifier for the |
||
1465 | object because you need this name for further access to that object. If |
||
1466 | "name" is not given Scribus will create one for you. |
||
1467 | |||
2952 | cbradney | 1468 | May raise NameExistsError if you explicitly pass a name that's already used. |
2949 | cbradney | 1469 | </translation> |
1470 | </message> |
||
1471 | <message> |
||
2952 | cbradney | 1472 | <source>createPolyLine(list, ["name"]) -> string |
2949 | cbradney | 1473 | |
1474 | Creates a new polyline and returns its name. The points for the polyline are |
||
1475 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
1476 | The coordinates are given in the current measurement units of the document (see |
||
1477 | UNIT constants). "name" should be a unique identifier for the object because |
||
1478 | you need this name for further access to that object. If "name" is not given |
||
1479 | Scribus will create one for you. |
||
1480 | |||
2952 | cbradney | 1481 | May raise NameExistsError if you explicitly pass a name that's already used. |
2949 | cbradney | 1482 | May raise ValueError if an insufficient number of points is passed or if |
2952 | cbradney | 1483 | the number of values passed don't group into points without leftovers. |
2949 | cbradney | 1484 | </source> |
2952 | cbradney | 1485 | <translation>createPolyLine(list, ["name"]) -> string |
2949 | cbradney | 1486 | |
1487 | Creates a new polyline and returns its name. The points for the polyline are |
||
1488 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
1489 | The coordinates are given in the current measurement units of the document (see |
||
1490 | UNIT constants). "name" should be a unique identifier for the object because |
||
1491 | you need this name for further access to that object. If "name" is not given |
||
1492 | Scribus will create one for you. |
||
1493 | |||
2952 | cbradney | 1494 | May raise NameExistsError if you explicitly pass a name that's already used. |
2949 | cbradney | 1495 | May raise ValueError if an insufficient number of points is passed or if |
2952 | cbradney | 1496 | the number of values passed don't group into points without leftovers. |
2949 | cbradney | 1497 | </translation> |
1498 | </message> |
||
1499 | <message> |
||
2952 | cbradney | 1500 | <source>createPolygon(list, ["name"]) -> string |
2949 | cbradney | 1501 | |
1502 | Creates a new polygon and returns its name. The points for the polygon are |
||
1503 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
1504 | At least three points are required. There is no need to repeat the first point |
||
1505 | to close the polygon. The polygon is automatically closed by connecting the |
||
1506 | first and the last point. The coordinates are given in the current measurement |
||
1507 | units of the document (see UNIT constants). "name" should be a unique |
||
1508 | identifier for the object because you need this name for further access to that |
||
1509 | object. If "name" is not given Scribus will create one for you. |
||
1510 | |||
2952 | cbradney | 1511 | May raise NameExistsError if you explicitly pass a name that's already used. |
2949 | cbradney | 1512 | May raise ValueError if an insufficient number of points is passed or if |
2952 | cbradney | 1513 | the number of values passed don't group into points without leftovers. |
2949 | cbradney | 1514 | </source> |
2952 | cbradney | 1515 | <translation>createPolygon(list, ["name"]) -> string |
2949 | cbradney | 1516 | |
1517 | Creates a new polygon and returns its name. The points for the polygon are |
||
1518 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
1519 | At least three points are required. There is no need to repeat the first point |
||
1520 | to close the polygon. The polygon is automatically closed by connecting the |
||
1521 | first and the last point. The coordinates are given in the current measurement |
||
1522 | units of the document (see UNIT constants). "name" should be a unique |
||
1523 | identifier for the object because you need this name for further access to that |
||
1524 | object. If "name" is not given Scribus will create one for you. |
||
1525 | |||
2952 | cbradney | 1526 | May raise NameExistsError if you explicitly pass a name that's already used. |
2949 | cbradney | 1527 | May raise ValueError if an insufficient number of points is passed or if |
2952 | cbradney | 1528 | the number of values passed don't group into points without leftovers. |
2949 | cbradney | 1529 | </translation> |
1530 | </message> |
||
1531 | <message> |
||
2952 | cbradney | 1532 | <source>createBezierLine(list, ["name"]) -> string |
2949 | cbradney | 1533 | |
1534 | Creates a new bezier curve and returns its name. The points for the bezier |
||
1535 | curve are stored in the list "list" in the following order: |
||
1536 | [x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn] |
||
1537 | In the points list, x and y mean the x and y coordinates of the point and kx |
||
1538 | and ky meaning the control point for the curve. The coordinates are given in |
||
1539 | the current measurement units of the document (see UNIT constants). "name" |
||
1540 | should be a unique identifier for the object because you need this name for |
||
1541 | further access to that object. If "name" is not given Scribus will create one |
||
1542 | for you. |
||
1543 | |||
2952 | cbradney | 1544 | May raise NameExistsError if you explicitly pass a name that's already used. |
2949 | cbradney | 1545 | May raise ValueError if an insufficient number of points is passed or if |
2952 | cbradney | 1546 | the number of values passed don't group into points without leftovers. |
2949 | cbradney | 1547 | </source> |
2952 | cbradney | 1548 | <translation>createBezierLine(list, ["name"]) -> string |
2949 | cbradney | 1549 | |
1550 | Creates a new bezier curve and returns its name. The points for the bezier |
||
1551 | curve are stored in the list "list" in the following order: |
||
1552 | [x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn] |
||
1553 | In the points list, x and y mean the x and y coordinates of the point and kx |
||
1554 | and ky meaning the control point for the curve. The coordinates are given in |
||
1555 | the current measurement units of the document (see UNIT constants). "name" |
||
1556 | should be a unique identifier for the object because you need this name for |
||
1557 | further access to that object. If "name" is not given Scribus will create one |
||
1558 | for you. |
||
1559 | |||
2952 | cbradney | 1560 | May raise NameExistsError if you explicitly pass a name that's already used. |
2949 | cbradney | 1561 | May raise ValueError if an insufficient number of points is passed or if |
2952 | cbradney | 1562 | the number of values passed don't group into points without leftovers. |
2949 | cbradney | 1563 | </translation> |
1564 | </message> |
||
1565 | <message> |
||
2952 | cbradney | 1566 | <source>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string |
2949 | cbradney | 1567 | |
1568 | Creates a new pathText by merging the two objects "textbox" and |
||
1569 | "beziercurve" and returns its name. The coordinates are given in the current |
||
1570 | measurement unit of the document (see UNIT constants). "name" should be a |
||
1571 | unique identifier for the object because you need this name for further access |
||
1572 | to that object. If "name" is not given Scribus will create one for you. |
||
1573 | |||
2952 | cbradney | 1574 | May raise NameExistsError if you explicitly pass a name that's already used. |
1575 | May raise NotFoundError if one or both of the named base object don't exist. |
||
2949 | cbradney | 1576 | </source> |
2952 | cbradney | 1577 | <translation>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string |
2949 | cbradney | 1578 | |
1579 | Creates a new pathText by merging the two objects "textbox" and |
||
1580 | "beziercurve" and returns its name. The coordinates are given in the current |
||
1581 | measurement unit of the document (see UNIT constants). "name" should be a |
||
1582 | unique identifier for the object because you need this name for further access |
||
1583 | to that object. If "name" is not given Scribus will create one for you. |
||
1584 | |||
2952 | cbradney | 1585 | May raise NameExistsError if you explicitly pass a name that's already used. |
1586 | May raise NotFoundError if one or both of the named base object don't exist. |
||
2949 | cbradney | 1587 | </translation> |
1588 | </message> |
||
1589 | <message> |
||
2952 | cbradney | 1590 | <source>deleteObject(["name"]) |
2949 | cbradney | 1591 | |
1592 | Deletes the item with the name "name". If "name" is not given the currently |
||
1593 | selected item is deleted. |
||
1594 | </source> |
||
2952 | cbradney | 1595 | <translation>deleteObject(["name"]) |
2949 | cbradney | 1596 | |
1597 | Deletes the item with the name "name". If "name" is not given the currently |
||
1598 | selected item is deleted. |
||
1599 | </translation> |
||
1600 | </message> |
||
1601 | <message> |
||
2952 | cbradney | 1602 | <source>textFlowsAroundFrame("name" [, state]) |
2949 | cbradney | 1603 | |
1604 | Enables/disables "Text Flows Around Frame" feature for object "name". |
||
1605 | Called with parameters string name and optional boolean "state". If "state" |
||
1606 | is not passed, text flow is toggled. |
||
1607 | </source> |
||
2952 | cbradney | 1608 | <translation>textFlowsAroundFrame("name" [, state]) |
2949 | cbradney | 1609 | |
1610 | Enables/disables "Text Flows Around Frame" feature for object "name". |
||
1611 | Called with parameters string name and optional boolean "state". If "state" |
||
1612 | is not passed, text flow is toggled. |
||
1613 | </translation> |
||
1614 | </message> |
||
1615 | <message> |
||
2952 | cbradney | 1616 | <source>objectExists(["name"]) -> bool |
2949 | cbradney | 1617 | |
1618 | Test if an object with specified name really exists in the document. |
||
1619 | The optional parameter is the object name. When no object name is given, |
||
1620 | returns True if there is something selected. |
||
1621 | </source> |
||
2952 | cbradney | 1622 | <translation>objectExists(["name"]) -> bool |
2949 | cbradney | 1623 | |
1624 | Test if an object with specified name really exists in the document. |
||
1625 | The optional parameter is the object name. When no object name is given, |
||
1626 | returns True if there is something selected. |
||
1627 | </translation> |
||
1628 | </message> |
||
1629 | <message> |
||
2952 | cbradney | 1630 | <source>setStyle("style" [, "name"]) |
2949 | cbradney | 1631 | |
1632 | Apply the named "style" to the object named "name". If is no object name |
||
2952 | cbradney | 1633 | given, it's applied on the selected object. |
2949 | cbradney | 1634 | </source> |
2952 | cbradney | 1635 | <translation>setStyle("style" [, "name"]) |
2949 | cbradney | 1636 | |
1637 | Apply the named "style" to the object named "name". If is no object name |
||
2952 | cbradney | 1638 | given, it's applied on the selected object. |
2949 | cbradney | 1639 | </translation> |
1640 | </message> |
||
1641 | <message> |
||
2952 | cbradney | 1642 | <source>getAllStyles() -> list |
2949 | cbradney | 1643 | |
1644 | Return a list of the names of all paragraph styles in the current document. |
||
1645 | </source> |
||
2952 | cbradney | 1646 | <translation>getAllStyles() -> list |
2949 | cbradney | 1647 | |
1648 | Return a list of the names of all paragraph styles in the current document. |
||
1649 | </translation> |
||
1650 | </message> |
||
1651 | <message> |
||
2952 | cbradney | 1652 | <source>currentPage() -> integer |
2949 | cbradney | 1653 | |
1654 | Returns the number of the current working page. Page numbers are counted from 1 |
||
1655 | upwards, no matter what the displayed first page number of your document is. |
||
1656 | </source> |
||
2952 | cbradney | 1657 | <translation>currentPage() -> integer |
2949 | cbradney | 1658 | |
1659 | Returns the number of the current working page. Page numbers are counted from 1 |
||
1660 | upwards, no matter what the displayed first page number of your document is. |
||
1661 | </translation> |
||
1662 | </message> |
||
1663 | <message> |
||
2952 | cbradney | 1664 | <source>redrawAll() |
2949 | cbradney | 1665 | |
1666 | Redraws all pages. |
||
1667 | </source> |
||
2952 | cbradney | 1668 | <translation>redrawAll() |
2949 | cbradney | 1669 | |
1670 | Redraws all pages. |
||
1671 | </translation> |
||
1672 | </message> |
||
1673 | <message> |
||
2952 | cbradney | 1674 | <source>savePageAsEPS("name") |
2949 | cbradney | 1675 | |
1676 | Saves the current page as an EPS to the file "name". |
||
1677 | |||
1678 | May raise ScribusError if the save failed. |
||
1679 | </source> |
||
2952 | cbradney | 1680 | <translation>savePageAsEPS("name") |
2949 | cbradney | 1681 | |
1682 | Saves the current page as an EPS to the file "name". |
||
1683 | |||
1684 | May raise ScribusError if the save failed. |
||
1685 | </translation> |
||
1686 | </message> |
||
1687 | <message> |
||
2952 | cbradney | 1688 | <source>deletePage(nr) |
2949 | cbradney | 1689 | |
1690 | Deletes the given page. Does nothing if the document contains only one page. |
||
1691 | Page numbers are counted from 1 upwards, no matter what the displayed first |
||
1692 | page number is. |
||
1693 | |||
1694 | May raise IndexError if the page number is out of range |
||
1695 | </source> |
||
2952 | cbradney | 1696 | <translation>deletePage(nr) |
2949 | cbradney | 1697 | |
1698 | Deletes the given page. Does nothing if the document contains only one page. |
||
1699 | Page numbers are counted from 1 upwards, no matter what the displayed first |
||
1700 | page number is. |
||
1701 | |||
1702 | May raise IndexError if the page number is out of range |
||
1703 | </translation> |
||
1704 | </message> |
||
1705 | <message> |
||
2952 | cbradney | 1706 | <source>gotoPage(nr) |
2949 | cbradney | 1707 | |
1708 | Moves to the page "nr" (that is, makes the current page "nr"). Note that |
||
2952 | cbradney | 1709 | gotoPage doesn't (curently) change the page the user's view is displaying, it |
2949 | cbradney | 1710 | just sets the page that script commands will operates on. |
1711 | |||
1712 | May raise IndexError if the page number is out of range. |
||
1713 | </source> |
||
2952 | cbradney | 1714 | <translation>gotoPage(nr) |
2949 | cbradney | 1715 | |
1716 | Moves to the page "nr" (that is, makes the current page "nr"). Note that |
||
2952 | cbradney | 1717 | gotoPage doesn't (curently) change the page the user's view is displaying, it |
2949 | cbradney | 1718 | just sets the page that script commands will operates on. |
1719 | |||
1720 | May raise IndexError if the page number is out of range. |
||
1721 | </translation> |
||
1722 | </message> |
||
1723 | <message> |
||
2952 | cbradney | 1724 | <source>pageCount() -> integer |
2949 | cbradney | 1725 | |
1726 | Returns the number of pages in the document. |
||
1727 | </source> |
||
2952 | cbradney | 1728 | <translation>pageCount() -> integer |
2949 | cbradney | 1729 | |
1730 | Returns the number of pages in the document. |
||
1731 | </translation> |
||
1732 | </message> |
||
1733 | <message> |
||
2952 | cbradney | 1734 | <source>getHGuides() -> list |
2949 | cbradney | 1735 | |
1736 | Returns a list containing positions of the horizontal guides. Values are in the |
||
2952 | cbradney | 1737 | document's current units - see UNIT_<type> constants. |
2949 | cbradney | 1738 | </source> |
2952 | cbradney | 1739 | <translation>getHGuides() -> list |
2949 | cbradney | 1740 | |
1741 | Returns a list containing positions of the horizontal guides. Values are in the |
||
2952 | cbradney | 1742 | document's current units - see UNIT_<type> constants. |
2949 | cbradney | 1743 | </translation> |
1744 | </message> |
||
1745 | <message> |
||
2952 | cbradney | 1746 | <source>setHGuides(list) |
2949 | cbradney | 1747 | |
1748 | Sets horizontal guides. Input parameter must be a list of guide positions |
||
2952 | cbradney | 1749 | measured in the current document units - see UNIT_<type> constants. |
2949 | cbradney | 1750 | |
1751 | Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost |
||
1752 | setHGuides([90,250]) # replace current guides entirely |
||
1753 | </source> |
||
2952 | cbradney | 1754 | <translation>setHGuides(list) |
2949 | cbradney | 1755 | |
1756 | Sets horizontal guides. Input parameter must be a list of guide positions |
||
2952 | cbradney | 1757 | measured in the current document units - see UNIT_<type> constants. |
2949 | cbradney | 1758 | |
1759 | Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost |
||
1760 | setHGuides([90,250]) # replace current guides entirely |
||
1761 | </translation> |
||
1762 | </message> |
||
1763 | <message> |
||
2952 | cbradney | 1764 | <source>getVGuides() |
2949 | cbradney | 1765 | |
1766 | See getHGuides. |
||
1767 | </source> |
||
2952 | cbradney | 1768 | <translation>getVGuides() |
2949 | cbradney | 1769 | |
1770 | See getHGuides. |
||
1771 | </translation> |
||
1772 | </message> |
||
1773 | <message> |
||
2952 | cbradney | 1774 | <source>setVGuides() |
2949 | cbradney | 1775 | |
1776 | See setHGuides. |
||
1777 | </source> |
||
2952 | cbradney | 1778 | <translation>setVGuides() |
2949 | cbradney | 1779 | |
1780 | See setHGuides. |
||
1781 | </translation> |
||
1782 | </message> |
||
1783 | <message> |
||
2952 | cbradney | 1784 | <source>getPageSize() -> tuple |
2949 | cbradney | 1785 | |
2952 | cbradney | 1786 | Returns a tuple with page dimensions measured in the document's current units. |
1787 | See UNIT_<type> constants and getPageMargins() |
||
2949 | cbradney | 1788 | </source> |
2952 | cbradney | 1789 | <translation>getPageSize() -> tuple |
2949 | cbradney | 1790 | |
2952 | cbradney | 1791 | Returns a tuple with page dimensions measured in the document's current units. |
1792 | See UNIT_<type> constants and getPageMargins() |
||
2949 | cbradney | 1793 | </translation> |
1794 | </message> |
||
1795 | <message> |
||
2952 | cbradney | 1796 | <source>getPageItems() -> list |
2949 | cbradney | 1797 | |
1798 | Returns a list of tuples with items on the current page. The tuple is: |
||
2952 | cbradney | 1799 | (name, objectType, order) E.g. [('Text1', 4, 0), ('Image1', 2, 1)] |
1800 | means that object named 'Text1' is a text frame (type 4) and is the first at |
||
2949 | cbradney | 1801 | the page... |
1802 | </source> |
||
2952 | cbradney | 1803 | <translation>getPageItems() -> list |
2949 | cbradney | 1804 | |
1805 | Returns a list of tuples with items on the current page. The tuple is: |
||
2952 | cbradney | 1806 | (name, objectType, order) E.g. [('Text1', 4, 0), ('Image1', 2, 1)] |
1807 | means that object named 'Text1' is a text frame (type 4) and is the first at |
||
2949 | cbradney | 1808 | the page... |
1809 | </translation> |
||
1810 | </message> |
||
1811 | <message> |
||
2952 | cbradney | 1812 | <source>getPageMargins() |
2949 | cbradney | 1813 | |
1814 | Returns the page margins as a (top, left, right, bottom) tuple in the current |
||
2952 | cbradney | 1815 | units. See UNIT_<type> constants and getPageSize(). |
2949 | cbradney | 1816 | </source> |
2952 | cbradney | 1817 | <translation>getPageMargins() |
2949 | cbradney | 1818 | |
1819 | Returns the page margins as a (top, left, right, bottom) tuple in the current |
||
2952 | cbradney | 1820 | units. See UNIT_<type> constants and getPageSize(). |
2949 | cbradney | 1821 | </translation> |
1822 | </message> |
||
1823 | <message> |
||
2952 | cbradney | 1824 | <source>setFillColor("color", ["name"]) |
2949 | cbradney | 1825 | |
1826 | Sets the fill color of the object "name" to the color "color". "color" |
||
1827 | is the name of one of the defined colors. If "name" is not given the |
||
1828 | currently selected item is used. |
||
1829 | </source> |
||
2952 | cbradney | 1830 | <translation>setFillColor("color", ["name"]) |
2949 | cbradney | 1831 | |
1832 | Sets the fill colour of the object "name" to the colour "color". "color" |
||
1833 | is the name of one of the defined colours. If "name" is not given the |
||
1834 | currently selected item is used. |
||
1835 | </translation> |
||
1836 | </message> |
||
1837 | <message> |
||
2952 | cbradney | 1838 | <source>setLineColor("color", ["name"]) |
2949 | cbradney | 1839 | |
1840 | Sets the line color of the object "name" to the color "color". If "name" |
||
1841 | is not given the currently selected item is used. |
||
1842 | </source> |
||
2952 | cbradney | 1843 | <translation>setLineColor("color", ["name"]) |
2949 | cbradney | 1844 | |
1845 | Sets the line colour of the object "name" to the colour "color". If "name" |
||
1846 | is not given the currently selected item is used. |
||
1847 | </translation> |
||
1848 | </message> |
||
1849 | <message> |
||
2952 | cbradney | 1850 | <source>setLineWidth(width, ["name"]) |
2949 | cbradney | 1851 | |
1852 | Sets line width of the object "name" to "width". "width" must be in the |
||
1853 | range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not |
||
1854 | given the currently selected item is used. |
||
1855 | |||
1856 | May raise ValueError if the line width is out of bounds. |
||
1857 | </source> |
||
2952 | cbradney | 1858 | <translation>setLineWidth(width, ["name"]) |
2949 | cbradney | 1859 | |
1860 | Sets line width of the object "name" to "width". "width" must be in the |
||
1861 | range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not |
||
1862 | given the currently selected item is used. |
||
1863 | |||
1864 | May raise ValueError if the line width is out of bounds. |
||
1865 | </translation> |
||
1866 | </message> |
||
1867 | <message> |
||
2952 | cbradney | 1868 | <source>setLineShade(shade, ["name"]) |
2949 | cbradney | 1869 | |
1870 | Sets the shading of the line color of the object "name" to "shade". |
||
1871 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
1872 | (full color intensity). If "name" is not given the currently selected item |
||
1873 | is used. |
||
1874 | |||
1875 | May raise ValueError if the line shade is out of bounds. |
||
1876 | </source> |
||
2952 | cbradney | 1877 | <translation>setLineShade(shade, ["name"]) |
2949 | cbradney | 1878 | |
1879 | Sets the shading of the line colour of the object "name" to "shade". |
||
1880 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
1881 | (full colour intensity). If "name" is not given the currently selected item |
||
1882 | is used. |
||
1883 | |||
1884 | May raise ValueError if the line shade is out of bounds. |
||
1885 | </translation> |
||
1886 | </message> |
||
1887 | <message> |
||
2952 | cbradney | 1888 | <source>setLineJoin(join, ["name"]) |
2949 | cbradney | 1889 | |
1890 | Sets the line join style of the object "name" to the style "join". |
||
1891 | If "name" is not given the currently selected item is used. There are |
||
2952 | cbradney | 1892 | predefined constants for join - JOIN_<type>. |
2949 | cbradney | 1893 | </source> |
2952 | cbradney | 1894 | <translation>setLineJoin(join, ["name"]) |
2949 | cbradney | 1895 | |
1896 | Sets the line join style of the object "name" to the style "join". |
||
1897 | If "name" is not given the currently selected item is used. There are |
||
2952 | cbradney | 1898 | predefined constants for join - JOIN_<type>. |
2949 | cbradney | 1899 | </translation> |
1900 | </message> |
||
1901 | <message> |
||
2952 | cbradney | 1902 | <source>setLineEnd(endtype, ["name"]) |
2949 | cbradney | 1903 | |
1904 | Sets the line cap style of the object "name" to the style "cap". |
||
1905 | If "name" is not given the currently selected item is used. There are |
||
2952 | cbradney | 1906 | predefined constants for "cap" - CAP_<type>. |
2949 | cbradney | 1907 | </source> |
2952 | cbradney | 1908 | <translation>setLineEnd(endtype, ["name"]) |
2949 | cbradney | 1909 | |
1910 | Sets the line cap style of the object "name" to the style "cap". |
||
1911 | If "name" is not given the currently selected item is used. There are |
||
2952 | cbradney | 1912 | predefined constants for "cap" - CAP_<type>. |
2949 | cbradney | 1913 | </translation> |
1914 | </message> |
||
1915 | <message> |
||
2952 | cbradney | 1916 | <source>setLineStyle(style, ["name"]) |
2949 | cbradney | 1917 | |
1918 | Sets the line style of the object "name" to the style "style". If "name" |
||
1919 | is not given the currently selected item is used. There are predefined |
||
2952 | cbradney | 1920 | constants for "style" - LINE_<style>. |
2949 | cbradney | 1921 | </source> |
2952 | cbradney | 1922 | <translation>setLineStyle(style, ["name"]) |
2949 | cbradney | 1923 | |
1924 | Sets the line style of the object "name" to the style "style". If "name" |
||
1925 | is not given the currently selected item is used. There are predefined |
||
2952 | cbradney | 1926 | constants for "style" - LINE_<style>. |
2949 | cbradney | 1927 | </translation> |
1928 | </message> |
||
1929 | <message> |
||
2952 | cbradney | 1930 | <source>setFillShade(shade, ["name"]) |
2949 | cbradney | 1931 | |
1932 | Sets the shading of the fill color of the object "name" to "shade". |
||
1933 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
1934 | (full Color intensity). If "name" is not given the currently selected |
||
1935 | Item is used. |
||
1936 | |||
1937 | May raise ValueError if the fill shade is out of bounds. |
||
1938 | </source> |
||
2952 | cbradney | 1939 | <translation>setFillShade(shade, ["name"]) |
2949 | cbradney | 1940 | |
1941 | Sets the shading of the fill colour of the object "name" to "shade". |
||
1942 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
1943 | (full Colour intensity). If "name" is not given the currently selected |
||
1944 | Item is used. |
||
1945 | |||
1946 | May raise ValueError if the fill shade is out of bounds. |
||
1947 | </translation> |
||
1948 | </message> |
||
1949 | <message> |
||
2952 | cbradney | 1950 | <source>setCornerRadius(radius, ["name"]) |
2949 | cbradney | 1951 | |
1952 | Sets the corner radius of the object "name". The radius is expressed |
||
1953 | in points. If "name" is not given the currently selected item is used. |
||
1954 | |||
1955 | May raise ValueError if the corner radius is negative. |
||
1956 | </source> |
||
2952 | cbradney | 1957 | <translation>setCornerRadius(radius, ["name"]) |
2949 | cbradney | 1958 | |
1959 | Sets the corner radius of the object "name". The radius is expressed |
||
1960 | in points. If "name" is not given the currently selected item is used. |
||
1961 | |||
1962 | May raise ValueError if the corner radius is negative. |
||
1963 | </translation> |
||
1964 | </message> |
||
1965 | <message> |
||
2952 | cbradney | 1966 | <source>setMultiLine("namedStyle", ["name"]) |
2949 | cbradney | 1967 | |
1968 | Sets the line style of the object "name" to the named style "namedStyle". |
||
1969 | If "name" is not given the currently selected item is used. |
||
1970 | |||
2952 | cbradney | 1971 | May raise NotFoundError if the line style doesn't exist. |
2949 | cbradney | 1972 | </source> |
2952 | cbradney | 1973 | <translation>setMultiLine("namedStyle", ["name"]) |
2949 | cbradney | 1974 | |
1975 | Sets the line style of the object "name" to the named style "namedStyle". |
||
1976 | If "name" is not given the currently selected item is used. |
||
1977 | |||
2952 | cbradney | 1978 | May raise NotFoundError if the line style doesn't exist. |
2949 | cbradney | 1979 | </translation> |
1980 | </message> |
||
1981 | <message> |
||
2952 | cbradney | 1982 | <source>getFont(["name"]) -> string |
2949 | cbradney | 1983 | |
1984 | Returns the font name for the text frame "name". If this text frame |
||
1985 | has some text selected the value assigned to the first character |
||
1986 | of the selection is returned. If "name" is not given the currently |
||
1987 | selected item is used. |
||
1988 | </source> |
||
2952 | cbradney | 1989 | <translation>getFont(["name"]) -> string |
2949 | cbradney | 1990 | |
1991 | Returns the font name for the text frame "name". If this text frame |
||
1992 | has some text selected the value assigned to the first character |
||
1993 | of the selection is returned. If "name" is not given the currently |
||
1994 | selected item is used. |
||
1995 | </translation> |
||
1996 | </message> |
||
1997 | <message> |
||
2952 | cbradney | 1998 | <source>getTextLength(["name"]) -> integer |
2949 | cbradney | 1999 | |
2000 | Returns the length of the text in the text frame "name". |
||
2001 | If "name" is not given the currently selected item is used. |
||
2002 | </source> |
||
2952 | cbradney | 2003 | <translation>getTextLength(["name"]) -> integer |
2949 | cbradney | 2004 | |
2005 | Returns the length of the text in the text frame "name". |
||
2006 | If "name" is not given the currently selected item is used. |
||
2007 | </translation> |
||
2008 | </message> |
||
2009 | <message> |
||
2952 | cbradney | 2010 | <source>getText(["name"]) -> string |
2949 | cbradney | 2011 | |
2012 | Returns the text of the text frame "name". If this text frame has some text |
||
2013 | selected, the selected text is returned. All text in the frame, not just |
||
2014 | currently visible text, is returned. If "name" is not given the currently |
||
2015 | selected item is used. |
||
2016 | </source> |
||
2952 | cbradney | 2017 | <translation>getText(["name"]) -> string |
2949 | cbradney | 2018 | |
2019 | Returns the text of the text frame "name". If this text frame has some text |
||
2020 | selected, the selected text is returned. All text in the frame, not just |
||
2021 | currently visible text, is returned. If "name" is not given the currently |
||
2022 | selected item is used. |
||
2023 | </translation> |
||
2024 | </message> |
||
2025 | <message> |
||
2952 | cbradney | 2026 | <source>getAllText(["name"]) -> string |
2949 | cbradney | 2027 | |
2028 | Returns the text of the text frame "name" and of all text frames which are |
||
2029 | linked with this frame. If this textframe has some text selected, the selected |
||
2030 | text is returned. If "name" is not given the currently selected item is |
||
2031 | used. |
||
2032 | </source> |
||
2952 | cbradney | 2033 | <translation>getAllText(["name"]) -> string |
2949 | cbradney | 2034 | |
2035 | Returns the text of the text frame "name" and of all text frames which are |
||
2036 | linked with this frame. If this textframe has some text selected, the selected |
||
2037 | text is returned. If "name" is not given the currently selected item is |
||
2038 | used. |
||
2039 | </translation> |
||
2040 | </message> |
||
2041 | <message> |
||
2952 | cbradney | 2042 | <source>getLineSpacing(["name"]) -> float |
2949 | cbradney | 2043 | |
2044 | Returns the line spacing ("leading") of the text frame "name" expressed in |
||
2045 | points. If "name" is not given the currently selected item is used. |
||
2046 | </source> |
||
2952 | cbradney | 2047 | <translation>getLineSpacing(["name"]) -> float |
2949 | cbradney | 2048 | |
2049 | Returns the line spacing ("leading") of the text frame "name" expressed in |
||
2050 | points. If "name" is not given the currently selected item is used. |
||
2051 | </translation> |
||
2052 | </message> |
||
2053 | <message> |
||
2952 | cbradney | 2054 | <source>getColumnGap(["name"]) -> float |
2949 | cbradney | 2055 | |
2056 | Returns the column gap size of the text frame "name" expressed in points. If |
||
2057 | "name" is not given the currently selected item is used. |
||
2058 | </source> |
||
2952 | cbradney | 2059 | <translation>getColumnGap(["name"]) -> float |
2949 | cbradney | 2060 | |
2061 | Returns the column gap size of the text frame "name" expressed in points. If |
||
2062 | "name" is not given the currently selected item is used. |
||
2063 | </translation> |
||
2064 | </message> |
||
2065 | <message> |
||
2952 | cbradney | 2066 | <source>getColumns(["name"]) -> integer |
2949 | cbradney | 2067 | |
2068 | Gets the number of columns of the text frame "name". If "name" is not |
||
2069 | given the currently selected item is used. |
||
2070 | </source> |
||
2952 | cbradney | 2071 | <translation>getColumns(["name"]) -> integer |
2949 | cbradney | 2072 | |
2073 | Gets the number of columns of the text frame "name". If "name" is not |
||
2074 | given the currently selected item is used. |
||
2075 | </translation> |
||
2076 | </message> |
||
2077 | <message> |
||
2952 | cbradney | 2078 | <source>setText("text", ["name"]) |
2949 | cbradney | 2079 | |
2080 | Sets the text of the text frame "name" to the text of the string "text". |
||
2952 | cbradney | 2081 | Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ |
2949 | cbradney | 2082 | for more details. If "name" is not given the currently selected item is |
2083 | used. |
||
2084 | </source> |
||
2952 | cbradney | 2085 | <translation>setText("text", ["name"]) |
2949 | cbradney | 2086 | |
2087 | Sets the text of the text frame "name" to the text of the string "text". |
||
2952 | cbradney | 2088 | Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ |
2949 | cbradney | 2089 | for more details. If "name" is not given the currently selected item is |
2090 | used. |
||
2091 | </translation> |
||
2092 | </message> |
||
2093 | <message> |
||
2952 | cbradney | 2094 | <source>insertText("text", pos, ["name"]) |
2949 | cbradney | 2095 | |
2096 | Inserts the text "text" at the position "pos" into the text frame "name". |
||
2097 | Text must be UTF encoded (see setText() as reference) The first character has an |
||
2098 | index of 0. Inserting at position -1 appends text to the frame. If "name" is |
||
2099 | not given the currently selected Item is used. |
||
2100 | |||
2101 | May throw IndexError for an insertion out of bounds. |
||
2102 | </source> |
||
2952 | cbradney | 2103 | <translation>insertText("text", pos, ["name"]) |
2949 | cbradney | 2104 | |
2105 | Inserts the text "text" at the position "pos" into the text frame "name". |
||
2106 | Text must be UTF encoded (see setText() as reference) The first character has an |
||
2107 | index of 0. Inserting at position -1 appends text to the frame. If "name" is |
||
2108 | not given the currently selected Item is used. |
||
2109 | |||
2110 | May throw IndexError for an insertion out of bounds. |
||
2111 | </translation> |
||
2112 | </message> |
||
2113 | <message> |
||
2952 | cbradney | 2114 | <source>setFont("font", ["name"]) |
2949 | cbradney | 2115 | |
2116 | Sets the font of the text frame "name" to "font". If there is some text |
||
2117 | selected only the selected text is changed. If "name" is not given the |
||
2118 | currently selected item is used. |
||
2119 | |||
2120 | May throw ValueError if the font cannot be found. |
||
2121 | </source> |
||
2952 | cbradney | 2122 | <translation>setFont("font", ["name"]) |
2949 | cbradney | 2123 | |
2124 | Sets the font of the text frame "name" to "font". If there is some text |
||
2125 | selected only the selected text is changed. If "name" is not given the |
||
2126 | currently selected item is used. |
||
2127 | |||
2128 | May throw ValueError if the font cannot be found. |
||
2129 | </translation> |
||
2130 | </message> |
||
2131 | <message> |
||
2952 | cbradney | 2132 | <source>setFontSize(size, ["name"]) |
2949 | cbradney | 2133 | |
2134 | Sets the font size of the text frame "name" to "size". "size" is treated |
||
2135 | as a value in points. If there is some text selected only the selected text is |
||
2136 | changed. "size" must be in the range 1 to 512. If "name" is not given the |
||
2137 | currently selected item is used. |
||
2138 | |||
2952 | cbradney | 2139 | May throw ValueError for a font size that's out of bounds. |
2949 | cbradney | 2140 | </source> |
2952 | cbradney | 2141 | <translation>setFontSize(size, ["name"]) |
2949 | cbradney | 2142 | |
2143 | Sets the font size of the text frame "name" to "size". "size" is treated |
||
2144 | as a value in points. If there is some text selected only the selected text is |
||
2145 | changed. "size" must be in the range 1 to 512. If "name" is not given the |
||
2146 | currently selected item is used. |
||
2147 | |||
2952 | cbradney | 2148 | May throw ValueError for a font size that's out of bounds. |
2949 | cbradney | 2149 | </translation> |
2150 | </message> |
||
2151 | <message> |
||
2952 | cbradney | 2152 | <source>setLineSpacing(size, ["name"]) |
2949 | cbradney | 2153 | |
2154 | Sets the line spacing ("leading") of the text frame "name" to "size". |
||
2155 | "size" is a value in points. If "name" is not given the currently selected |
||
2156 | item is used. |
||
2157 | |||
2158 | May throw ValueError if the line spacing is out of bounds. |
||
2159 | </source> |
||
2952 | cbradney | 2160 | <translation>setLineSpacing(size, ["name"]) |
2949 | cbradney | 2161 | |
2162 | Sets the line spacing ("leading") of the text frame "name" to "size". |
||
2163 | "size" is a value in points. If "name" is not given the currently selected |
||
2164 | item is used. |
||
2165 | |||
2166 | May throw ValueError if the line spacing is out of bounds. |
||
2167 | </translation> |
||
2168 | </message> |
||
2169 | <message> |
||
2952 | cbradney | 2170 | <source>setColumnGap(size, ["name"]) |
2949 | cbradney | 2171 | |
2172 | Sets the column gap of the text frame "name" to the value "size". If |
||
2173 | "name" is not given the currently selected item is used. |
||
2174 | |||
2175 | May throw ValueError if the column gap is out of bounds (must be positive). |
||
2176 | </source> |
||
2952 | cbradney | 2177 | <translation>setColumnGap(size, ["name"]) |
2949 | cbradney | 2178 | |
2179 | Sets the column gap of the text frame "name" to the value "size". If |
||
2180 | "name" is not given the currently selected item is used. |
||
2181 | |||
2182 | May throw ValueError if the column gap is out of bounds (must be positive). |
||
2183 | </translation> |
||
2184 | </message> |
||
2185 | <message> |
||
2952 | cbradney | 2186 | <source>setColumns(nr, ["name"]) |
2949 | cbradney | 2187 | |
2188 | Sets the number of columns of the text frame "name" to the integer "nr". |
||
2189 | If "name" is not given the currently selected item is used. |
||
2190 | |||
2191 | May throw ValueError if number of columns is not at least one. |
||
2192 | </source> |
||
2952 | cbradney | 2193 | <translation>setColumns(nr, ["name"]) |
2949 | cbradney | 2194 | |
2195 | Sets the number of columns of the text frame "name" to the integer "nr". |
||
2196 | If "name" is not given the currently selected item is used. |
||
2197 | |||
2198 | May throw ValueError if number of columns is not at least one. |
||
2199 | </translation> |
||
2200 | </message> |
||
2201 | <message> |
||
2952 | cbradney | 2202 | <source>setTextAlignment(align, ["name"]) |
2949 | cbradney | 2203 | |
2204 | Sets the text alignment of the text frame "name" to the specified alignment. |
||
2205 | If "name" is not given the currently selected item is used. "align" should |
||
2206 | be one of the ALIGN_ constants defined in this module - see dir(scribus). |
||
2207 | |||
2208 | May throw ValueError for an invalid alignment constant. |
||
2209 | </source> |
||
2952 | cbradney | 2210 | <translation>setTextAlignment(align, ["name"]) |
2949 | cbradney | 2211 | |
2212 | Sets the text alignment of the text frame "name" to the specified alignment. |
||
2213 | If "name" is not given the currently selected item is used. "align" should |
||
2214 | be one of the ALIGN_ constants defined in this module - see dir(scribus). |
||
2215 | |||
2216 | May throw ValueError for an invalid alignment constant. |
||
2217 | </translation> |
||
2218 | </message> |
||
2219 | <message> |
||
2952 | cbradney | 2220 | <source>selectText(start, count, ["name"]) |
2949 | cbradney | 2221 | |
2222 | Selects "count" characters of text in the text frame "name" starting from the |
||
2223 | character "start". Character counting starts at 0. If "count" is zero, any |
||
2224 | text selection will be cleared. If "name" is not given the currently |
||
2225 | selected item is used. |
||
2226 | |||
2227 | May throw IndexError if the selection is outside the bounds of the text. |
||
2228 | </source> |
||
2952 | cbradney | 2229 | <translation>selectText(start, count, ["name"]) |
2949 | cbradney | 2230 | |
2231 | Selects "count" characters of text in the text frame "name" starting from the |
||
2232 | character "start". Character counting starts at 0. If "count" is zero, any |
||
2233 | text selection will be cleared. If "name" is not given the currently |
||
2234 | selected item is used. |
||
2235 | |||
2236 | May throw IndexError if the selection is outside the bounds of the text. |
||
2237 | </translation> |
||
2238 | </message> |
||
2239 | <message> |
||
2952 | cbradney | 2240 | <source>deleteText(["name"]) |
2949 | cbradney | 2241 | |
2242 | Deletes any text in the text frame "name". If there is some text selected, |
||
2243 | only the selected text will be deleted. If "name" is not given the currently |
||
2244 | selected item is used. |
||
2245 | </source> |
||
2952 | cbradney | 2246 | <translation>deleteText(["name"]) |
2949 | cbradney | 2247 | |
2248 | Deletes any text in the text frame "name". If there is some text selected, |
||
2249 | only the selected text will be deleted. If "name" is not given the currently |
||
2250 | selected item is used. |
||
2251 | </translation> |
||
2252 | </message> |
||
2253 | <message> |
||
2952 | cbradney | 2254 | <source>setTextColor("color", ["name"]) |
2949 | cbradney | 2255 | |
2256 | Sets the text color of the text frame "name" to the color "color". If there |
||
2257 | is some text selected only the selected text is changed. If "name" is not |
||
2258 | given the currently selected item is used. |
||
2259 | </source> |
||
2952 | cbradney | 2260 | <translation>setTextColor("color", ["name"]) |
2949 | cbradney | 2261 | |
2262 | Sets the text colour of the text frame "name" to the colour "color". If there |
||
2263 | is some text selected only the selected text is changed. If "name" is not |
||
2264 | given the currently selected item is used. |
||
2265 | </translation> |
||
2266 | </message> |
||
2267 | <message> |
||
2952 | cbradney | 2268 | <source>setTextStroke("color", ["name"]) |
2949 | cbradney | 2269 | |
2270 | Set "color" of the text stroke. If "name" is not given the currently |
||
2271 | selected item is used. |
||
2272 | </source> |
||
2952 | cbradney | 2273 | <translation>setTextStroke("color", ["name"]) |
2949 | cbradney | 2274 | |
2275 | Set "color" of the text stroke. If "name" is not given the currently |
||
2276 | selected item is used. |
||
2277 | </translation> |
||
2278 | </message> |
||
2279 | <message> |
||
2952 | cbradney | 2280 | <source>setTextShade(shade, ["name"]) |
2949 | cbradney | 2281 | |
2282 | Sets the shading of the text color of the object "name" to "shade". If |
||
2283 | there is some text selected only the selected text is changed. "shade" must |
||
2284 | be an integer value in the range from 0 (lightest) to 100 (full color |
||
2285 | intensity). If "name" is not given the currently selected item is |
||
2286 | used. |
||
2287 | </source> |
||
2952 | cbradney | 2288 | <translation>setTextShade(shade, ["name"]) |
2949 | cbradney | 2289 | |
2290 | Sets the shading of the text colour of the object "name" to "shade". If |
||
2291 | there is some text selected only the selected text is changed. "shade" must |
||
2292 | be an integer value in the range from 0 (lightest) to 100 (full colour |
||
2293 | intensity). If "name" is not given the currently selected item is |
||
2294 | used. |
||
2295 | </translation> |
||
2296 | </message> |
||
2297 | <message> |
||
2952 | cbradney | 2298 | <source>linkTextFrames("fromname", "toname") |
2949 | cbradney | 2299 | |
2300 | Link two text frames. The frame named "fromname" is linked to the |
||
2301 | frame named "toname". The target frame must be an empty text frame |
||
2302 | and must not link to or be linked from any other frames already. |
||
2303 | |||
2304 | May throw ScribusException if linking rules are violated. |
||
2305 | </source> |
||
2952 | cbradney | 2306 | <translation>linkTextFrames("fromname", "toname") |
2949 | cbradney | 2307 | |
2308 | Link two text frames. The frame named "fromname" is linked to the |
||
2309 | frame named "toname". The target frame must be an empty text frame |
||
2310 | and must not link to or be linked from any other frames already. |
||
2311 | |||
2312 | May throw ScribusException if linking rules are violated. |
||
2313 | </translation> |
||
2314 | </message> |
||
2315 | <message> |
||
2952 | cbradney | 2316 | <source>unlinkTextFrames("name") |
2949 | cbradney | 2317 | |
2318 | Remove the specified (named) object from the text frame flow/linkage. If the |
||
2319 | frame was in the middle of a chain, the previous and next frames will be |
||
2952 | cbradney | 2320 | connected, eg 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)' |
2949 | cbradney | 2321 | |
2322 | May throw ScribusException if linking rules are violated. |
||
2323 | </source> |
||
2952 | cbradney | 2324 | <translation>unlinkTextFrames("name") |
2949 | cbradney | 2325 | |
2326 | Remove the specified (named) object from the text frame flow/linkage. If the |
||
2327 | frame was in the middle of a chain, the previous and next frames will be |
||
2952 | cbradney | 2328 | connected, eg 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)' |
2949 | cbradney | 2329 | |
2330 | May throw ScribusException if linking rules are violated. |
||
2331 | </translation> |
||
2332 | </message> |
||
2333 | <message> |
||
2952 | cbradney | 2334 | <source>traceText(["name"]) |
2949 | cbradney | 2335 | |
2336 | Convert the text frame "name" to outlines. If "name" is not given the |
||
2337 | currently selected item is used.</source> |
||
2952 | cbradney | 2338 | <translation>traceText(["name"]) |
2949 | cbradney | 2339 | |
2340 | Convert the text frame "name" to outlines. If "name" is not given the |
||
2341 | currently selected item is used.</translation> |
||
2342 | </message> |
||
2343 | <message> |
||
2952 | cbradney | 2344 | <source>textOverflows(["name", nolinks]) -> integer |
2949 | cbradney | 2345 | |
2346 | Returns the actual number of overflowing characters in text frame "name". |
||
2952 | cbradney | 2347 | If is nolinks set to non zero value it takes only one frame - it doesn't |
2949 | cbradney | 2348 | use text frame linking. Without this parameter it search all linking chain. |
2349 | |||
2350 | May raise WrongFrameTypeError if the target frame is not an text frame |
||
2351 | </source> |
||
2952 | cbradney | 2352 | <translation>textOverflows(["name", nolinks]) -> integer |
2949 | cbradney | 2353 | |
2354 | Returns the actual number of overflowing characters in text frame "name". |
||
2952 | cbradney | 2355 | If is nolinks set to non zero value it takes only one frame - it doesn't |
2949 | cbradney | 2356 | use text frame linking. Without this parameter it search all linking chain. |
2357 | |||
2358 | May raise WrongFrameTypeError if the target frame is not an text frame |
||
2359 | </translation> |
||
2360 | </message> |
||
2361 | <message> |
||
2952 | cbradney | 2362 | <source>setPDFBookmark("toggle", ["name"]) |
2949 | cbradney | 2363 | |
2364 | Sets wether (toggle = 1) the text frame "name" is a bookmark nor not. |
||
2365 | If "name" is not given the currently selected item is used. |
||
2366 | |||
2367 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
2368 | </source> |
||
2952 | cbradney | 2369 | <translation>setPDFBookmark("toggle", ["name"]) |
2949 | cbradney | 2370 | |
2371 | Sets wether (toggle = 1) the text frame "name" is a bookmark nor not. |
||
2372 | If "name" is not given the currently selected item is used. |
||
2373 | |||
2374 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
2375 | </translation> |
||
2376 | </message> |
||
2377 | <message> |
||
2952 | cbradney | 2378 | <source>isPDFBookmark(["name"]) -> bool |
2949 | cbradney | 2379 | |
2380 | Returns true if the text frame "name" is a PDF bookmark. |
||
2381 | If "name" is not given the currently selected item is used. |
||
2382 | |||
2383 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
2384 | </source> |
||
2952 | cbradney | 2385 | <translation>isPDFBookmark(["name"]) -> bool |
2949 | cbradney | 2386 | |
2387 | Returns true if the text frame "name" is a PDF bookmark. |
||
2388 | If "name" is not given the currently selected item is used. |
||
2389 | |||
2390 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
2391 | </translation> |
||
2392 | </message> |
||
2393 | <message> |
||
2952 | cbradney | 2394 | <source>progressReset() |
2949 | cbradney | 2395 | |
2396 | Cleans up the Scribus progress bar previous settings. It is called before the |
||
2397 | new progress bar use. See progressSet. |
||
2398 | </source> |
||
2952 | cbradney | 2399 | <translation>progressReset() |
2949 | cbradney | 2400 | |
2401 | Cleans up the Scribus progress bar previous settings. It is called before the |
||
2402 | new progress bar use. See progressSet. |
||
2403 | </translation> |
||
2404 | </message> |
||
2405 | <message> |
||
2952 | cbradney | 2406 | <source>progressTotal(max) |
2949 | cbradney | 2407 | |
2952 | cbradney | 2408 | Sets the progress bar's maximum steps value to the specified number. |
2949 | cbradney | 2409 | See progressSet. |
2410 | </source> |
||
2952 | cbradney | 2411 | <translation>progressTotal(max) |
2949 | cbradney | 2412 | |
2952 | cbradney | 2413 | Sets the progress bar's maximum steps value to the specified number. |
2949 | cbradney | 2414 | See progressSet. |
2415 | </translation> |
||
2416 | </message> |
||
2417 | <message> |
||
2952 | cbradney | 2418 | <source>progressSet(nr) |
2949 | cbradney | 2419 | |
2420 | Set the progress bar position to "nr", a value relative to the previously set |
||
2421 | progressTotal. The progress bar uses the concept of steps; you give it the |
||
2422 | total number of steps and the number of steps completed so far and it will |
||
2423 | display the percentage of steps that have been completed. You can specify the |
||
2424 | total number of steps with progressTotal(). The current number of steps is set |
||
2425 | with progressSet(). The progress bar can be rewound to the beginning with |
||
2952 | cbradney | 2426 | progressReset(). [based on info taken from Trolltech's Qt docs] |
2949 | cbradney | 2427 | </source> |
2952 | cbradney | 2428 | <translation>progressSet(nr) |
2949 | cbradney | 2429 | |
2430 | Set the progress bar position to "nr", a value relative to the previously set |
||
2431 | progressTotal. The progress bar uses the concept of steps; you give it the |
||
2432 | total number of steps and the number of steps completed so far and it will |
||
2433 | display the percentage of steps that have been completed. You can specify the |
||
2434 | total number of steps with progressTotal(). The current number of steps is set |
||
2435 | with progressSet(). The progress bar can be rewound to the beginning with |
||
2952 | cbradney | 2436 | progressReset(). [based on info taken from Trolltech's Qt docs] |
2949 | cbradney | 2437 | </translation> |
2438 | </message> |
||
2439 | <message> |
||
2952 | cbradney | 2440 | <source>setCursor() |
2949 | cbradney | 2441 | |
2442 | [UNSUPPORTED!] This might break things, so steer clear for now. |
||
2443 | </source> |
||
2952 | cbradney | 2444 | <translation>setCursor() |
2949 | cbradney | 2445 | |
2446 | [UNSUPPORTED!] This might break things, so steer clear for now. |
||
2447 | </translation> |
||
2448 | </message> |
||
2449 | <message> |
||
2952 | cbradney | 2450 | <source>docChanged(bool) |
2949 | cbradney | 2451 | |
2952 | cbradney | 2452 | Enable/disable save icon in the Scribus icon bar and the Save menu item. It's |
2453 | useful to call this procedure when you're changing the document, because Scribus |
||
2454 | won't automatically notice when you change the document using a script. |
||
2949 | cbradney | 2455 | </source> |
2952 | cbradney | 2456 | <translation>docChanged(bool) |
2949 | cbradney | 2457 | |
2952 | cbradney | 2458 | Enable/disable save icon in the Scribus icon bar and the Save menu item. It's |
2459 | useful to call this procedure when you're changing the document, because Scribus |
||
2460 | won't automatically notice when you change the document using a script. |
||
2949 | cbradney | 2461 | </translation> |
2462 | </message> |
||
3064 | cbradney | 2463 | <message> |
2464 | <source>newStyleDialog() -> string |
||
2465 | |||
2466 | Shows 'Create new paragraph style' dialog. Function returns real |
||
2467 | style name or None when user cancels the dialog. |
||
2468 | </source> |
||
3278 | cbradney | 2469 | <translation>newStyleDialog() -> string |
2470 | |||
2471 | Shows 'Create new paragraph style' dialog. Function returns real |
||
2472 | style name or None when user cancels the dialog. |
||
2473 | </translation> |
||
3064 | cbradney | 2474 | </message> |
3824 | cbradney | 2475 | <message> |
2476 | <source>newDoc(size, margins, orientation, firstPageNumber, |
||
2477 | unit, facingPages, firstSideLeft) -> bool |
||
2478 | |||
2479 | WARNING: Obsolete procedure! Use newDocument instead. |
||
2480 | |||
2481 | Creates a new document and returns true if successful. The parameters have the |
||
2482 | following meaning: |
||
2483 | |||
2484 | size = A tuple (width, height) describing the size of the document. You can |
||
2485 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
||
2486 | |||
2487 | margins = A tuple (left, right, top, bottom) describing the document |
||
2488 | margins |
||
2489 | |||
2490 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
2491 | |||
2492 | firstPageNumer = is the number of the first page in the document used for |
||
2493 | pagenumbering. While you'll usually want 1, it's useful to have higher |
||
2494 | numbers if you're creating a document in several parts. |
||
2495 | |||
2496 | unit: this value sets the measurement units used by the document. Use a |
||
2497 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
2498 | UNIT_PICAS, UNIT_POINTS. |
||
2499 | |||
2500 | facingPages = FACINGPAGES, NOFACINGPAGES |
||
2501 | |||
2502 | firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT |
||
2503 | |||
2504 | The values for width, height and the margins are expressed in the given unit |
||
2505 | for the document. PAPER_* constants are expressed in points. If your document |
||
2506 | is not in points, make sure to account for this. |
||
2507 | |||
2508 | example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
||
2509 | FACINGPAGES, FIRSTPAGERIGHT) |
||
2510 | </source> |
||
3828 | cbradney | 2511 | <translation>newDoc(size, margins, orientation, firstPageNumber, |
2512 | unit, facingPages, firstSideLeft) -> bool |
||
2513 | |||
2514 | WARNING: Obsolete procedure! Use newDocument instead. |
||
2515 | |||
2516 | Creates a new document and returns true if successful. The parameters have the |
||
2517 | following meaning: |
||
2518 | |||
2519 | size = A tuple (width, height) describing the size of the document. You can |
||
2520 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
||
2521 | |||
2522 | margins = A tuple (left, right, top, bottom) describing the document |
||
2523 | margins |
||
2524 | |||
2525 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
2526 | |||
2527 | firstPageNumer = is the number of the first page in the document used for |
||
2528 | pagenumbering. While you'll usually want 1, it's useful to have higher |
||
2529 | numbers if you're creating a document in several parts. |
||
2530 | |||
2531 | unit: this value sets the measurement units used by the document. Use a |
||
2532 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
2533 | UNIT_PICAS, UNIT_POINTS. |
||
2534 | |||
2535 | facingPages = FACINGPAGES, NOFACINGPAGES |
||
2536 | |||
2537 | firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT |
||
2538 | |||
2539 | The values for width, height and the margins are expressed in the given unit |
||
2540 | for the document. PAPER_* constants are expressed in points. If your document |
||
2541 | is not in points, make sure to account for this. |
||
2542 | |||
2543 | example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
||
2544 | FACINGPAGES, FIRSTPAGERIGHT) |
||
2545 | </translation> |
||
3824 | cbradney | 2546 | </message> |
2952 | cbradney | 2547 | </context> |
2548 | <context> |
||
2949 | cbradney | 2549 | <name>About</name> |
2550 | <message> |
||
2952 | cbradney | 2551 | <source>Contributions from:</source> |
2552 | <translation>Contributions from:</translation> |
||
196 | Franz | 2553 | </message> |
2554 | <message> |
||
2952 | cbradney | 2555 | <source>&About</source> |
2556 | <translation>&About</translation> |
||
196 | Franz | 2557 | </message> |
2558 | <message> |
||
2952 | cbradney | 2559 | <source>A&uthors</source> |
2560 | <translation>A&uthors</translation> |
||
196 | Franz | 2561 | </message> |
2562 | <message> |
||
2952 | cbradney | 2563 | <source>&Translations</source> |
2564 | <translation>&Translations</translation> |
||
196 | Franz | 2565 | </message> |
2566 | <message> |
||
2952 | cbradney | 2567 | <source>&Online</source> |
2568 | <translation>&Online</translation> |
||
196 | Franz | 2569 | </message> |
2570 | <message> |
||
2952 | cbradney | 2571 | <source>&Close</source> |
2572 | <translation>&Close</translation> |
||
196 | Franz | 2573 | </message> |
2574 | <message> |
||
2952 | cbradney | 2575 | <source>Development Team:</source> |
2576 | <translation>Development Team:</translation> |
||
196 | Franz | 2577 | </message> |
2578 | <message> |
||
2952 | cbradney | 2579 | <source>Official Documentation:</source> |
2580 | <translation>Official Documentation:</translation> |
||
196 | Franz | 2581 | </message> |
2582 | <message> |
||
2952 | cbradney | 2583 | <source>Other Documentation:</source> |
2584 | <translation>Other Documentation:</translation> |
||
196 | Franz | 2585 | </message> |
2586 | <message> |
||
2952 | cbradney | 2587 | <source>Homepage</source> |
2588 | <translation>Homepage</translation> |
||
196 | Franz | 2589 | </message> |
2590 | <message> |
||
2952 | cbradney | 2591 | <source>Online Reference</source> |
2592 | <translation>Online Reference</translation> |
||
196 | Franz | 2593 | </message> |
2594 | <message> |
||
2952 | cbradney | 2595 | <source>Bugs and Feature Requests</source> |
2596 | <translation>Bugs and Feature Requests</translation> |
||
196 | Franz | 2597 | </message> |
2598 | <message> |
||
2952 | cbradney | 2599 | <source>Mailing List</source> |
2600 | <translation>Mailing List</translation> |
||
196 | Franz | 2601 | </message> |
2602 | <message> |
||
2952 | cbradney | 2603 | <source>Official Translations and Translators:</source> |
2604 | <translation>Official Translations and Translators:</translation> |
||
196 | Franz | 2605 | </message> |
2606 | <message> |
||
2952 | cbradney | 2607 | <source>Previous Translation Contributors:</source> |
2608 | <translation>Previous Translation Contributors:</translation> |
||
196 | Franz | 2609 | </message> |
2610 | <message> |
||
2952 | cbradney | 2611 | <source>About Scribus %1</source> |
2612 | <translation>About Scribus %1</translation> |
||
196 | Franz | 2613 | </message> |
2614 | <message> |
||
2952 | cbradney | 2615 | <source>Windows Port:</source> |
2616 | <translation>Windows Port:</translation> |
||
196 | Franz | 2617 | </message> |
2618 | <message> |
||
2952 | cbradney | 2619 | <source>Mac OSX Aqua Port:</source> |
2620 | <translation>Mac OSX Aqua Port:</translation> |
||
196 | Franz | 2621 | </message> |
2792 | cbradney | 2622 | <message> |
2952 | cbradney | 2623 | <source>Wiki</source> |
2624 | <translation>Wiki</translation> |
||
2792 | cbradney | 2625 | </message> |
2626 | <message> |
||
3824 | cbradney | 2627 | <source>November</source> |
3828 | cbradney | 2628 | <translation>November</translation> |
3824 | cbradney | 2629 | </message> |
2630 | <message> |
||
2631 | <source>%1 %2 %3</source> |
||
3828 | cbradney | 2632 | <translation>%1 %2 %3</translation> |
3824 | cbradney | 2633 | </message> |
2634 | <message> |
||
2635 | <source>%3-%2-%1 %4 %5</source> |
||
3828 | cbradney | 2636 | <translation>%3-%2-%1 %4 %5</translation> |
3824 | cbradney | 2637 | </message> |
2638 | <message> |
||
2639 | <source>Using Ghostscript version %1</source> |
||
3828 | cbradney | 2640 | <translation>Using Ghostscript version %1</translation> |
3824 | cbradney | 2641 | </message> |
2642 | <message> |
||
2643 | <source>No Ghostscript version available</source> |
||
3828 | cbradney | 2644 | <translation>No Ghostscript version available</translation> |
3824 | cbradney | 2645 | </message> |
2646 | <message> |
||
2647 | <source><b>Scribus Version %1</b><p>%2<br/>%3 %4<br/>%5</p></source> |
||
3828 | cbradney | 2648 | <translation><b>Scribus Version %1</b><p>%2<br/>%3 %4<br/>%5</p></translation> |
3824 | cbradney | 2649 | </message> |
2650 | <message> |
||
2651 | <source>Build ID:</source> |
||
3828 | cbradney | 2652 | <translation>Build ID:</translation> |
3824 | cbradney | 2653 | </message> |
2654 | <message> |
||
2655 | <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.</source> |
||
3828 | cbradney | 2656 | <translation>This panel shows the version, build date and compiled in library support in Scribus. The C-C-T-F equates to C=littlecms C=CUPS T=TIFF support F=Fontconfig support. Last Letter is the renderer C=cairo or A=libart Missing library support is indicated by a *. This also indicates the version of Ghostscript which Scribus has detected.</translation> |
3824 | cbradney | 2657 | </message> |
2952 | cbradney | 2658 | </context> |
2659 | <context> |
||
3278 | cbradney | 2660 | <name>AboutPlugins</name> |
2661 | <message> |
||
2662 | <source>Yes</source> |
||
2663 | <translation>Yes</translation> |
||
2664 | </message> |
||
2665 | <message> |
||
2666 | <source>No</source> |
||
2667 | <translation>No</translation> |
||
2668 | </message> |
||
2669 | </context> |
||
2670 | <context> |
||
2671 | <name>AboutPluginsBase</name> |
||
2672 | <message> |
||
2673 | <source>Scribus: About Plug-ins</source> |
||
2674 | <translation>Scribus: About Plug-ins</translation> |
||
2675 | </message> |
||
2676 | <message> |
||
2677 | <source>File Name:</source> |
||
2678 | <translation>File Name:</translation> |
||
2679 | </message> |
||
2680 | <message> |
||
2681 | <source>Version:</source> |
||
2682 | <translation>Version:</translation> |
||
2683 | </message> |
||
2684 | <message> |
||
2685 | <source>Enabled:</source> |
||
2686 | <translation>Enabled:</translation> |
||
2687 | </message> |
||
2688 | <message> |
||
2689 | <source>Release Date:</source> |
||
2690 | <translation>Release Date:</translation> |
||
2691 | </message> |
||
2692 | <message> |
||
2693 | <source>Copyright:</source> |
||
2694 | <translation>Copyright:</translation> |
||
2695 | </message> |
||
2696 | <message> |
||
2697 | <source>Author(s):</source> |
||
2698 | <translation>Author(s):</translation> |
||
2699 | </message> |
||
2700 | <message> |
||
2701 | <source>Description:</source> |
||
2702 | <translation>Description:</translation> |
||
2703 | </message> |
||
2704 | <message> |
||
2705 | <source>License:</source> |
||
2706 | <translation>License:</translation> |
||
2707 | </message> |
||
2708 | <message> |
||
2709 | <source>&Close</source> |
||
2710 | <translation>&Close</translation> |
||
2711 | </message> |
||
2712 | <message> |
||
2713 | <source>Alt+C</source> |
||
2714 | <translation>Alt+C</translation> |
||
2715 | </message> |
||
2716 | </context> |
||
2717 | <context> |
||
2217 | cbradney | 2718 | <name>ActionManager</name> |
196 | Franz | 2719 | <message> |
2952 | cbradney | 2720 | <source>&Image Effects</source> |
2721 | <translation>&Image Effects</translation> |
||
196 | Franz | 2722 | </message> |
2723 | <message> |
||
2952 | cbradney | 2724 | <source>&Tabulators...</source> |
2725 | <translation>&Tabulators...</translation> |
||
196 | Franz | 2726 | </message> |
2727 | <message> |
||
2952 | cbradney | 2728 | <source>&New</source> |
2729 | <translation>&New</translation> |
||
196 | Franz | 2730 | </message> |
2731 | <message> |
||
2952 | cbradney | 2732 | <source>&Open...</source> |
2733 | <translation>&Open...</translation> |
||
341 | Franz | 2734 | </message> |
2735 | <message> |
||
2952 | cbradney | 2736 | <source>&Close</source> |
2737 | <translation>&Close</translation> |
||
341 | Franz | 2738 | </message> |
2739 | <message> |
||
2952 | cbradney | 2740 | <source>&Save</source> |
2741 | <translation>&Save</translation> |
||
341 | Franz | 2742 | </message> |
2743 | <message> |
||
2952 | cbradney | 2744 | <source>Save &As...</source> |
2745 | <translation>Save &As...</translation> |
||
341 | Franz | 2746 | </message> |
2747 | <message> |
||
2952 | cbradney | 2748 | <source>Re&vert to Saved</source> |
2749 | <translation>Re&vert to Saved</translation> |
||
341 | Franz | 2750 | </message> |
418 | Franz | 2751 | <message> |
2952 | cbradney | 2752 | <source>Collect for O&utput...</source> |
2753 | <translation>Collect for O&utput...</translation> |
||
418 | Franz | 2754 | </message> |
2755 | <message> |
||
2952 | cbradney | 2756 | <source>Get Text...</source> |
2757 | <translation>Get Text...</translation> |
||
418 | Franz | 2758 | </message> |
2759 | <message> |
||
2952 | cbradney | 2760 | <source>Append &Text...</source> |
2761 | <translation>Append &Text...</translation> |
||
418 | Franz | 2762 | </message> |
2763 | <message> |
||
2952 | cbradney | 2764 | <source>Get Image...</source> |
2765 | <translation>Get Image...</translation> |
||
418 | Franz | 2766 | </message> |
2767 | <message> |
||
2952 | cbradney | 2768 | <source>Save &Text...</source> |
2769 | <translation>Save &Text...</translation> |
||
418 | Franz | 2770 | </message> |
2771 | <message> |
||
2952 | cbradney | 2772 | <source>Save Page as &EPS...</source> |
2773 | <translation>Save Page as &EPS...</translation> |
||
418 | Franz | 2774 | </message> |
2775 | <message> |
||
2952 | cbradney | 2776 | <source>Save as P&DF...</source> |
2777 | <translation>Save as P&DF...</translation> |
||
418 | Franz | 2778 | </message> |
2779 | <message> |
||
2952 | cbradney | 2780 | <source>Document &Setup...</source> |
2781 | <translation>Document &Setup...</translation> |
||
418 | Franz | 2782 | </message> |
454 | fschmid | 2783 | <message> |
2952 | cbradney | 2784 | <source>&Print...</source> |
2785 | <translation>&Print...</translation> |
||
454 | fschmid | 2786 | </message> |
2787 | <message> |
||
2952 | cbradney | 2788 | <source>&Quit</source> |
2789 | <translation>&Quit</translation> |
||
454 | fschmid | 2790 | </message> |
2791 | <message> |
||
2952 | cbradney | 2792 | <source>&Undo</source> |
2793 | <translation>&Undo</translation> |
||
454 | fschmid | 2794 | </message> |
2795 | <message> |
||
2952 | cbradney | 2796 | <source>&Redo</source> |
2797 | <translation>&Redo</translation> |
||
454 | fschmid | 2798 | </message> |
2799 | <message> |
||
2952 | cbradney | 2800 | <source>&Item Action Mode</source> |
2801 | <translation>&Item Action Mode</translation> |
||
454 | fschmid | 2802 | </message> |
2803 | <message> |
||
2952 | cbradney | 2804 | <source>Cu&t</source> |
2805 | <translation>Cu&t</translation> |
||
454 | fschmid | 2806 | </message> |
2807 | <message> |
||
2952 | cbradney | 2808 | <source>&Copy</source> |
2809 | <translation>&Copy</translation> |
||
454 | fschmid | 2810 | </message> |
769 | cbradney | 2811 | <message> |
2952 | cbradney | 2812 | <source>&Paste</source> |
2813 | <translation>&Paste</translation> |
||
769 | cbradney | 2814 | </message> |
776 | fschmid | 2815 | <message> |
2952 | cbradney | 2816 | <source>C&lear Contents</source> |
2817 | <translation>C&lear Contents</translation> |
||
776 | fschmid | 2818 | </message> |
1525 | cbradney | 2819 | <message> |
2952 | cbradney | 2820 | <source>Select &All</source> |
2821 | <translation>Select &All</translation> |
||
1525 | cbradney | 2822 | </message> |
2823 | <message> |
||
2952 | cbradney | 2824 | <source>&Deselect All</source> |
2825 | <translation>&Deselect All</translation> |
||
1525 | cbradney | 2826 | </message> |
2827 | <message> |
||
2952 | cbradney | 2828 | <source>&Search/Replace...</source> |
2829 | <translation>&Search/Replace...</translation> |
||
1525 | cbradney | 2830 | </message> |
2217 | cbradney | 2831 | <message> |
2952 | cbradney | 2832 | <source>C&olors...</source> |
2833 | <translation>C&olours...</translation> |
||
2217 | cbradney | 2834 | </message> |
2835 | <message> |
||
2952 | cbradney | 2836 | <source>&Paragraph Styles...</source> |
2837 | <translation>&Paragraph Styles...</translation> |
||
2217 | cbradney | 2838 | </message> |
2839 | <message> |
||
2952 | cbradney | 2840 | <source>&Line Styles...</source> |
2841 | <translation>&Line Styles...</translation> |
||
2217 | cbradney | 2842 | </message> |
2843 | <message> |
||
2952 | cbradney | 2844 | <source>&Master Pages...</source> |
2845 | <translation>&Master Pages...</translation> |
||
2217 | cbradney | 2846 | </message> |
2847 | <message> |
||
2952 | cbradney | 2848 | <source>P&references...</source> |
2849 | <translation>P&references...</translation> |
||
2217 | cbradney | 2850 | </message> |
2851 | <message> |
||
2952 | cbradney | 2852 | <source>%1 pt</source> |
2853 | <translation>%1 pt</translation> |
||
2217 | cbradney | 2854 | </message> |
2855 | <message> |
||
2952 | cbradney | 2856 | <source>&Other...</source> |
2857 | <translation>&Other...</translation> |
||
2217 | cbradney | 2858 | </message> |
2859 | <message> |
||
2952 | cbradney | 2860 | <source>&Left</source> |
2861 | <translation>&Left</translation> |
||
2217 | cbradney | 2862 | </message> |
2863 | <message> |
||
2952 | cbradney | 2864 | <source>&Center</source> |
2865 | <translation>&Centre</translation> |
||
2217 | cbradney | 2866 | </message> |
2867 | <message> |
||
2952 | cbradney | 2868 | <source>&Right</source> |
2869 | <translation>&Right</translation> |
||
2217 | cbradney | 2870 | </message> |
2871 | <message> |
||
2952 | cbradney | 2872 | <source>&Block</source> |
2873 | <translation>&Block</translation> |
||
2217 | cbradney | 2874 | </message> |
2875 | <message> |
||
2952 | cbradney | 2876 | <source>&Forced</source> |
2877 | <translation>&Forced</translation> |
||
2217 | cbradney | 2878 | </message> |
2879 | <message> |
||
2952 | cbradney | 2880 | <source>&%1 %</source> |
2881 | <translation>&%1 %</translation> |
||
2217 | cbradney | 2882 | </message> |
2883 | <message> |
||
2952 | cbradney | 2884 | <source>&Normal</source> |
2885 | <translation>&Normal</translation> |
||
2217 | cbradney | 2886 | </message> |
2887 | <message> |
||
2952 | cbradney | 2888 | <source>&Underline</source> |
2889 | <translation>&Underline</translation> |
||
2217 | cbradney | 2890 | </message> |
2891 | <message> |
||
2952 | cbradney | 2892 | <source>Underline &Words</source> |
2893 | <translation>Underline &Words</translation> |
||
2217 | cbradney | 2894 | </message> |
2895 | <message> |
||
2952 | cbradney | 2896 | <source>&Strike Through</source> |
2897 | <translation>&Strike Through</translation> |
||
2217 | cbradney | 2898 | </message> |
2899 | <message> |
||
2952 | cbradney | 2900 | <source>&All Caps</source> |
2901 | <translation>&All Caps</translation> |
||
2217 | cbradney | 2902 | </message> |
2903 | <message> |
||
2952 | cbradney | 2904 | <source>Small &Caps</source> |
2905 | <translation>Small &Caps</translation> |
||
2217 | cbradney | 2906 | </message> |
2907 | <message> |
||
2952 | cbradney | 2908 | <source>Su&perscript</source> |
2909 | <translation>Su&perscript</translation> |
||
2217 | cbradney | 2910 | </message> |
2911 | <message> |
||
2952 | cbradney | 2912 | <source>Su&bscript</source> |
2913 | <translation>Su&bscript</translation> |
||
2217 | cbradney | 2914 | </message> |
2915 | <message> |
||
2952 | cbradney | 2916 | <source>&Outline</source> |
2917 | <translation>&Outline</translation> |
||
2217 | cbradney | 2918 | </message> |
2919 | <message> |
||
2952 | cbradney | 2920 | <source>D&uplicate</source> |
2921 | <translation>D&uplicate</translation> |
||
2217 | cbradney | 2922 | </message> |
2923 | <message> |
||
2952 | cbradney | 2924 | <source>&Multiple Duplicate</source> |
2925 | <translation>&Multiple Duplicate</translation> |
||
2217 | cbradney | 2926 | </message> |
2927 | <message> |
||
2952 | cbradney | 2928 | <source>&Delete</source> |
2929 | <translation>&Delete</translation> |
||
2217 | cbradney | 2930 | </message> |
2931 | <message> |
||
2952 | cbradney | 2932 | <source>&Group</source> |
2933 | <translation>&Group</translation> |
||
2217 | cbradney | 2934 | </message> |
2935 | <message> |
||
2952 | cbradney | 2936 | <source>&Ungroup</source> |
2937 | <translation>&Ungroup</translation> |
||
2217 | cbradney | 2938 | </message> |
2939 | <message> |
||
2952 | cbradney | 2940 | <source>Is &Locked</source> |
2941 | <translation>Is &Locked</translation> |
||
2217 | cbradney | 2942 | </message> |
2943 | <message> |
||
2952 | cbradney | 2944 | <source>Si&ze is Locked</source> |
2945 | <translation>Si&ze is Locked</translation> |
||
2217 | cbradney | 2946 | </message> |
2947 | <message> |
||
2952 | cbradney | 2948 | <source>Lower to &Bottom</source> |
2949 | <translation>Lower to &Bottom</translation> |
||
2217 | cbradney | 2950 | </message> |
2951 | <message> |
||
2952 | cbradney | 2952 | <source>Raise to &Top</source> |
2953 | <translation>Raise to &Top</translation> |
||
2217 | cbradney | 2954 | </message> |
2955 | <message> |
||
2952 | cbradney | 2956 | <source>&Lower</source> |
2957 | <translation>&Lower</translation> |
||
2217 | cbradney | 2958 | </message> |
2959 | <message> |
||
2952 | cbradney | 2960 | <source>&Raise</source> |
2961 | <translation>&Raise</translation> |
||
2217 | cbradney | 2962 | </message> |
2963 | <message> |
||
2952 | cbradney | 2964 | <source>Send to S&crapbook</source> |
2965 | <translation>Send to S&crapbook</translation> |
||
2217 | cbradney | 2966 | </message> |
2967 | <message> |
||
2952 | cbradney | 2968 | <source>&Attributes...</source> |
2969 | <translation>&Attributes...</translation> |
||
2217 | cbradney | 2970 | </message> |
2971 | <message> |
||
2952 | cbradney | 2972 | <source>I&mage Visible</source> |
2973 | <translation>I&mage Visible</translation> |
||
2217 | cbradney | 2974 | </message> |
2975 | <message> |
||
2952 | cbradney | 2976 | <source>Is PDF &Bookmark</source> |
2977 | <translation>Is PDF &Bookmark</translation> |
||
2217 | cbradney | 2978 | </message> |
2979 | <message> |
||
2952 | cbradney | 2980 | <source>Is PDF A&nnotation</source> |
2981 | <translation>Is PDF A&nnotation</translation> |
||
2217 | cbradney | 2982 | </message> |
2983 | <message> |
||
2952 | cbradney | 2984 | <source>Annotation P&roperties</source> |
2985 | <translation>Annotation P&roperties</translation> |
||
2217 | cbradney | 2986 | </message> |
2987 | <message> |
||
2952 | cbradney | 2988 | <source>Field P&roperties</source> |
2989 | <translation>Field P&roperties</translation> |
||
2217 | cbradney | 2990 | </message> |
2991 | <message> |
||
2952 | cbradney | 2992 | <source>&Edit Shape...</source> |
2993 | <translation>&Edit Shape...</translation> |
||
2217 | cbradney | 2994 | </message> |
2995 | <message> |
||
2952 | cbradney | 2996 | <source>&Attach Text to Path</source> |
2997 | <translation>&Attach Text to Path</translation> |
||
2217 | cbradney | 2998 | </message> |
2999 | <message> |
||
2952 | cbradney | 3000 | <source>&Detach Text from Path</source> |
3001 | <translation>&Detach Text from Path</translation> |
||
2217 | cbradney | 3002 | </message> |
3003 | <message> |
||
2952 | cbradney | 3004 | <source>&Combine Polygons</source> |
3005 | <translation>&Combine Polygons</translation> |
||
2217 | cbradney | 3006 | </message> |
3007 | <message> |
||
2952 | cbradney | 3008 | <source>Split &Polygons</source> |
3009 | <translation>Split &Polygons</translation> |
||
2217 | cbradney | 3010 | </message> |
3011 | <message> |
||
2952 | cbradney | 3012 | <source>&Bezier Curve</source> |
3013 | <translation>&Bezier Curve</translation> |
||
2217 | cbradney | 3014 | </message> |
3015 | <message> |
||
2952 | cbradney | 3016 | <source>&Image Frame</source> |
3017 | <translation>&Image Frame</translation> |
||
2217 | cbradney | 3018 | </message> |
3019 | <message> |
||
2952 | cbradney | 3020 | <source>&Outlines</source> |
3021 | <translation>&Outlines</translation> |
||
2217 | cbradney | 3022 | </message> |
3023 | <message> |
||
2952 | cbradney | 3024 | <source>&Polygon</source> |
3025 | <translation>&Polygon</translation> |
||
2217 | cbradney | 3026 | </message> |
3027 | <message> |
||
2952 | cbradney | 3028 | <source>&Text Frame</source> |
3029 | <translation>&Text Frame</translation> |
||
2217 | cbradney | 3030 | </message> |
3031 | <message> |
||
2952 | cbradney | 3032 | <source>&Glyph...</source> |
3033 | <translation>&Glyph...</translation> |
||
2217 | cbradney | 3034 | </message> |
3035 | <message> |
||
2952 | cbradney | 3036 | <source>Sample Text</source> |
3037 | <translation>Sample Text</translation> |
||
2217 | cbradney | 3038 | </message> |
3039 | <message> |
||
2952 | cbradney | 3040 | <source>&Insert...</source> |
3041 | <translation>&Insert...</translation> |
||
2217 | cbradney | 3042 | </message> |
3043 | <message> |
||
2952 | cbradney | 3044 | <source>Im&port...</source> |
3045 | <translation>Im&port...</translation> |
||
2217 | cbradney | 3046 | </message> |
3047 | <message> |
||
2952 | cbradney | 3048 | <source>&Delete...</source> |
3049 | <translation>&Delete...</translation> |
||
2217 | cbradney | 3050 | </message> |
3051 | <message> |
||
2952 | cbradney | 3052 | <source>&Copy...</source> |
3053 | <translation>&Copy...</translation> |
||
2217 | cbradney | 3054 | </message> |
3055 | <message> |
||
2952 | cbradney | 3056 | <source>&Move...</source> |
3057 | <translation>&Move...</translation> |
||
2217 | cbradney | 3058 | </message> |
3059 | <message> |
||
2952 | cbradney | 3060 | <source>&Apply Master Page...</source> |
3061 | <translation>&Apply Master Page...</translation> |
||
2217 | cbradney | 3062 | </message> |
3063 | <message> |
||
2952 | cbradney | 3064 | <source>Manage &Guides...</source> |
3065 | <translation>Manage &Guides...</translation> |
||
2217 | cbradney | 3066 | </message> |
3067 | <message> |
||
2952 | cbradney | 3068 | <source>&Fit in window</source> |
3069 | <translation>&Fit in window</translation> |
||
2217 | cbradney | 3070 | </message> |
3071 | <message> |
||
2952 | cbradney | 3072 | <source>&50%</source> |
3073 | <translation>&50%</translation> |
||
2217 | cbradney | 3074 | </message> |
3075 | <message> |
||
2952 | cbradney | 3076 | <source>&75%</source> |
3077 | <translation>&75%</translation> |
||
2217 | cbradney | 3078 | </message> |
3079 | <message> |
||
2952 | cbradney | 3080 | <source>&100%</source> |
3081 | <translation>&100%</translation> |
||
2217 | cbradney | 3082 | </message> |
3083 | <message> |
||
2952 | cbradney | 3084 | <source>&200%</source> |
3085 | <translation>&200%</translation> |
||
2217 | cbradney | 3086 | </message> |
3087 | <message> |
||
2952 | cbradney | 3088 | <source>&Thumbnails</source> |
3089 | <translation>&Thumbnails</translation> |
||
2217 | cbradney | 3090 | </message> |
3091 | <message> |
||
2952 | cbradney | 3092 | <source>Show &Margins</source> |
3093 | <translation>Show &Margins</translation> |
||
2217 | cbradney | 3094 | </message> |
3095 | <message> |
||
2952 | cbradney | 3096 | <source>Show &Frames</source> |
3097 | <translation>Show &Frames</translation> |
||
2217 | cbradney | 3098 | </message> |
3099 | <message> |
||
2952 | cbradney | 3100 | <source>Show &Images</source> |
3101 | <translation>Show &Images</translation> |
||
2217 | cbradney | 3102 | </message> |
3103 | <message> |
||
2952 | cbradney | 3104 | <source>Show &Grid</source> |
3105 | <translation>Show &Grid</translation> |
||
2217 | cbradney | 3106 | </message> |
3107 | <message> |
||
2952 | cbradney | 3108 | <source>Show G&uides</source> |
3109 | <translation>Show G&uides</translation> |
||
2217 | cbradney | 3110 | </message> |
3111 | <message> |
||
2952 | cbradney | 3112 | <source>Show &Baseline Grid</source> |
3113 | <translation>Show &Baseline Grid</translation> |
||
2217 | cbradney | 3114 | </message> |
3115 | <message> |
||
2952 | cbradney | 3116 | <source>Show &Text Chain</source> |
3117 | <translation>Show &Text Chain</translation> |
||
2217 | cbradney | 3118 | </message> |
3119 | <message> |
||
2952 | cbradney | 3120 | <source>Sn&ap to Grid</source> |
3121 | <translation>Sn&ap to Grid</translation> |
||
2217 | cbradney | 3122 | </message> |
3123 | <message> |
||
2952 | cbradney | 3124 | <source>Sna&p to Guides</source> |
3125 | <translation>Sna&p to Guides</translation> |
||
2217 | cbradney | 3126 | </message> |
3127 | <message> |
||
2952 | cbradney | 3128 | <source>&Properties</source> |
3129 | <translation>&Properties</translation> |
||
2217 | cbradney | 3130 | </message> |
3131 | <message> |
||
2952 | cbradney | 3132 | <source>&Scrapbook</source> |
3133 | <translation>&Scrapbook</translation> |
||
2217 | cbradney | 3134 | </message> |
3135 | <message> |
||
2952 | cbradney | 3136 | <source>&Layers</source> |
3137 | <translation>&Layers</translation> |
||
2217 | cbradney | 3138 | </message> |
3139 | <message> |
||
2952 | cbradney | 3140 | <source>&Bookmarks</source> |
3141 | <translation>&Bookmarks</translation> |
||
2217 | cbradney | 3142 | </message> |
3143 | <message> |
||
2952 | cbradney | 3144 | <source>&Measurements</source> |
3145 | <translation>&Measurements</translation> |
||
2217 | cbradney | 3146 | </message> |
3147 | <message> |
||
2952 | cbradney | 3148 | <source>Action &History</source> |
3149 | <translation>Action &History</translation> |
||
2217 | cbradney | 3150 | </message> |
3151 | <message> |
||
2952 | cbradney | 3152 | <source>Preflight &Verifier</source> |
3153 | <translation>Preflight &Verifier</translation> |
||
2217 | cbradney | 3154 | </message> |
3155 | <message> |
||
2952 | cbradney | 3156 | <source>&Tools</source> |
3157 | <translation>&Tools</translation> |
||
2217 | cbradney | 3158 | </message> |
3159 | <message> |
||
2952 | cbradney | 3160 | <source>P&DF Tools</source> |
3161 | <translation>P&DF Tools</translation> |
||
2217 | cbradney | 3162 | </message> |
3163 | <message> |
||
2952 | cbradney | 3164 | <source>Select Item</source> |
3165 | <translation>Select Item</translation> |
||
2217 | cbradney | 3166 | </message> |
3167 | <message> |
||
2952 | cbradney | 3168 | <source>T&able</source> |
3169 | <translation>T&able</translation> |
||
2217 | cbradney | 3170 | </message> |
3171 | <message> |
||
2952 | cbradney | 3172 | <source>&Shape</source> |
3173 | <translation>&Shape</translation> |
||
2217 | cbradney | 3174 | </message> |
3175 | <message> |
||
2952 | cbradney | 3176 | <source>&Line</source> |
3177 | <translation>&Line</translation> |
||
2217 | cbradney | 3178 | </message> |
3179 | <message> |
||
2952 | cbradney | 3180 | <source>&Freehand Line</source> |
3181 | <translation>&Freehand Line</translation> |
||
2217 | cbradney | 3182 | </message> |
3183 | <message> |
||
2952 | cbradney | 3184 | <source>Rotate Item</source> |
3185 | <translation>Rotate Item</translation> |
||
2217 | cbradney | 3186 | </message> |
3187 | <message> |
||
2952 | cbradney | 3188 | <source>Zoom in or out</source> |
3189 | <translation>Zoom in or out</translation> |
||
2217 | cbradney | 3190 | </message> |
3191 | <message> |
||
2952 | cbradney | 3192 | <source>Zoom in</source> |
3193 | <translation>Zoom in</translation> |
||
2217 | cbradney | 3194 | </message> |
3195 | <message> |
||
2952 | cbradney | 3196 | <source>Zoom out</source> |
3197 | <translation>Zoom out</translation> |
||
2217 | cbradney | 3198 | </message> |
3199 | <message> |
||
2952 | cbradney | 3200 | <source>Edit Contents of Frame</source> |
3201 | <translation>Edit Contents of Frame</translation> |
||
2217 | cbradney | 3202 | </message> |
3203 | <message> |
||
2952 | cbradney | 3204 | <source>Link Text Frames</source> |
3205 | <translation>Link Text Frames</translation> |
||
2217 | cbradney | 3206 | </message> |
3207 | <message> |
||
2952 | cbradney | 3208 | <source>Unlink Text Frames</source> |
3209 | <translation>Unlink Text Frames</translation> |
||
2217 | cbradney | 3210 | </message> |
3211 | <message> |
||
2952 | cbradney | 3212 | <source>&Eye Dropper</source> |
3213 | <translation>&Eye Dropper</translation> |
||
2217 | cbradney | 3214 | </message> |
3215 | <message> |
||
2952 | cbradney | 3216 | <source>Copy Item Properties</source> |
3217 | <translation>Copy Item Properties</translation> |
||
2217 | cbradney | 3218 | </message> |
3219 | <message> |
||
2952 | cbradney | 3220 | <source>Edit the text with the Story Editor</source> |
3221 | <translation>Edit the text with the Story Editor</translation> |
||
2217 | cbradney | 3222 | </message> |
3223 | <message> |
||
2952 | cbradney | 3224 | <source>Insert Text Frame</source> |
3225 | <translation>Insert Text Frame</translation> |
||
2217 | cbradney | 3226 | </message> |
3227 | <message> |
||
2952 | cbradney | 3228 | <source>Insert Image Frame</source> |
3229 | <translation>Insert Image Frame</translation> |
||
2217 | cbradney | 3230 | </message> |
3231 | <message> |
||
2952 | cbradney | 3232 | <source>Insert Table</source> |
3233 | <translation>Insert Table</translation> |
||
2217 | cbradney | 3234 | </message> |
3235 | <message> |
||
2952 | cbradney | 3236 | <source>Insert Shape</source> |
3237 | <translation>Insert Shape</translation> |
||
2217 | cbradney | 3238 | </message> |
3239 | <message> |
||
2952 | cbradney | 3240 | <source>Insert Polygon</source> |
3241 | <translation>Insert Polygon</translation> |
||
2217 | cbradney | 3242 | </message> |
3243 | <message> |
||
2952 | cbradney | 3244 | <source>Insert Line</source> |
3245 | <translation>Insert Line</translation> |
||
2217 | cbradney | 3246 | </message> |
3247 | <message> |
||
2952 | cbradney | 3248 | <source>Insert Bezier Curve</source> |
3249 | <translation>Insert Bezier Curve</translation> |
||
2217 | cbradney | 3250 | </message> |
3251 | <message> |
||
2952 | cbradney | 3252 | <source>Insert Freehand Line</source> |
3253 | <translation>Insert Freehand Line</translation> |
||
2217 | cbradney | 3254 | </message> |
3255 | <message> |
||
2952 | cbradney | 3256 | <source>&Manage Pictures</source> |
3257 | <translation>&Manage Pictures</translation> |
||
2217 | cbradney | 3258 | </message> |
3259 | <message> |
||
2952 | cbradney | 3260 | <source>&Hyphenate Text</source> |
3261 | <translation>&Hyphenate Text</translation> |
||
2217 | cbradney | 3262 | </message> |
3263 | <message> |
||
2952 | cbradney | 3264 | <source>&Generate Table Of Contents</source> |
3265 | <translation>&Generate Table Of Contents</translation> |
||
2217 | cbradney | 3266 | </message> |
3267 | <message> |
||
2952 | cbradney | 3268 | <source>&About Scribus</source> |
3269 | <translation>&About Scribus</translation> |
||
2217 | cbradney | 3270 | </message> |
3271 | <message> |
||
2952 | cbradney | 3272 | <source>About &Qt</source> |
3273 | <translation>About &Qt</translation> |
||
2217 | cbradney | 3274 | </message> |
3275 | <message> |
||
2952 | cbradney | 3276 | <source>Toolti&ps</source> |
3277 | <translation>Toolti&ps</translation> |
||
2217 | cbradney | 3278 | </message> |
3279 | <message> |
||
2952 | cbradney | 3280 | <source>Scribus &Manual...</source> |
3281 | <translation>Scribus &Manual...</translation> |
||
2217 | cbradney | 3282 | </message> |
3283 | <message> |
||
2952 | cbradney | 3284 | <source>Smart &Hyphen</source> |
3285 | <translation>Smart &Hyphen</translation> |
||
2217 | cbradney | 3286 | </message> |
3287 | <message> |
||
2952 | cbradney | 3288 | <source>Non Breaking &Space</source> |
3289 | <translation>Non Breaking &Space</translation> |
||
2217 | cbradney | 3290 | </message> |
3291 | <message> |
||
2952 | cbradney | 3292 | <source>Page &Number</source> |
3293 | <translation>Page &Number</translation> |
||
2217 | cbradney | 3294 | </message> |
3295 | <message> |
||
2952 | cbradney | 3296 | <source>Copyright</source> |
3297 | <translation>Copyright</translation> |
||
2217 | cbradney | 3298 | </message> |
3299 | <message> |
||
2952 | cbradney | 3300 | <source>Registered Trademark</source> |
3301 | <translation>Registered Trademark</translation> |
||
2217 | cbradney | 3302 | </message> |
3303 | <message> |
||
2952 | cbradney | 3304 | <source>Trademark</source> |
3305 | <translation>Trademark</translation> |
||
2217 | cbradney | 3306 | </message> |
3307 | <message> |
||
2952 | cbradney | 3308 | <source>Bullet</source> |
3309 | <translation>Bullet</translation> |
||
2217 | cbradney | 3310 | </message> |
3311 | <message> |
||
2952 | cbradney | 3312 | <source>Em Dash</source> |
3313 | <translation>Em Dash</translation> |
||
2217 | cbradney | 3314 | </message> |
3315 | <message> |
||
2952 | cbradney | 3316 | <source>En Dash</source> |
3317 | <translation>En Dash</translation> |
||
2217 | cbradney | 3318 | </message> |
3319 | <message> |
||
2952 | cbradney | 3320 | <source>Figure Dash</source> |
3321 | <translation>Figure Dash</translation> |
||
2217 | cbradney | 3322 | </message> |
3323 | <message> |
||
2952 | cbradney | 3324 | <source>Quotation Dash</source> |
3325 | <translation>Quotation Dash</translation> |
||
2217 | cbradney | 3326 | </message> |
3327 | <message> |
||
2952 | cbradney | 3328 | <source>Apostrophe</source> |
3329 | <translation>Apostrophe</translation> |
||
2217 | cbradney | 3330 | </message> |
3331 | <message> |
||
2952 | cbradney | 3332 | <source>Straight Double</source> |
3333 | <translation>Straight Double</translation> |
||
2217 | cbradney | 3334 | </message> |
3335 | <message> |
||
2952 | cbradney | 3336 | <source>Single Left</source> |
3337 | <translation>Single Left</translation> |
||
2217 | cbradney | 3338 | </message> |
3339 | <message> |
||
2952 | cbradney | 3340 | <source>Single Right</source> |
3341 | <translation>Single Right</translation> |
||
2217 | cbradney | 3342 | </message> |
3343 | <message> |
||
2952 | cbradney | 3344 | <source>Double Left</source> |
3345 | <translation>Double Left</translation> |
||
2217 | cbradney | 3346 | </message> |
3347 | <message> |
||
2952 | cbradney | 3348 | <source>Double Right</source> |
3349 | <translation>Double Right</translation> |
||
2217 | cbradney | 3350 | </message> |
3351 | <message> |
||
2952 | cbradney | 3352 | <source>Single Reversed</source> |
3353 | <translation>Single Reversed</translation> |
||
2217 | cbradney | 3354 | </message> |
3355 | <message> |
||
2952 | cbradney | 3356 | <source>Double Reversed</source> |
3357 | <translation>Double Reversed</translation> |
||
2217 | cbradney | 3358 | </message> |
3359 | <message> |
||
2952 | cbradney | 3360 | <source>Single Left Guillemet</source> |
3361 | <translation>Single Left Guillemet</translation> |
||
2217 | cbradney | 3362 | </message> |
3363 | <message> |
||
2952 | cbradney | 3364 | <source>Single Right Guillemet</source> |
3365 | <translation>Single Right Guillemet</translation> |
||
2217 | cbradney | 3366 | </message> |
3367 | <message> |
||
2952 | cbradney | 3368 | <source>Double Left Guillemet</source> |
3369 | <translation>Double Left Guillemet</translation> |
||
2217 | cbradney | 3370 | </message> |
3371 | <message> |
||
2952 | cbradney | 3372 | <source>Double Right Guillemet</source> |
3373 | <translation>Double Right Guillemet</translation> |
||
2217 | cbradney | 3374 | </message> |
3375 | <message> |
||
2952 | cbradney | 3376 | <source>Low Single Comma</source> |
3377 | <translation>Low Single Comma</translation> |
||
2217 | cbradney | 3378 | </message> |
3379 | <message> |
||
2952 | cbradney | 3380 | <source>Low Double Comma</source> |
3381 | <translation>Low Double Comma</translation> |
||
2217 | cbradney | 3382 | </message> |
3383 | <message> |
||
2952 | cbradney | 3384 | <source>CJK Single Left</source> |
3385 | <translation>CJK Single Left</translation> |
||
2217 | cbradney | 3386 | </message> |
3387 | <message> |
||
2952 | cbradney | 3388 | <source>CJK Single Right</source> |
3389 | <translation>CJK Single Right</translation> |
||
2217 | cbradney | 3390 | </message> |
3391 | <message> |
||
2952 | cbradney | 3392 | <source>CJK Double Left</source> |
3393 | <translation>CJK Double Left</translation> |
||
2217 | cbradney | 3394 | </message> |
3395 | <message> |
||
2952 | cbradney | 3396 | <source>CJK Double Right</source> |
3397 | <translation>CJK Double Right</translation> |
||
2217 | cbradney | 3398 | </message> |
3399 | <message> |
||
2952 | cbradney | 3400 | <source>Toggle Palettes</source> |
3401 | <translation>Toggle Palettes</translation> |
||
2217 | cbradney | 3402 | </message> |
3403 | <message> |
||
2952 | cbradney | 3404 | <source>S&hadow</source> |
3405 | <translation>S&hadow</translation> |
||
2562 | cbradney | 3406 | </message> |
3407 | <message> |
||
2952 | cbradney | 3408 | <source>&Low Resolution</source> |
3409 | <translation>&Low Resolution</translation> |
||
2562 | cbradney | 3410 | </message> |
3411 | <message> |
||
2952 | cbradney | 3412 | <source>&Normal Resolution</source> |
3413 | <translation>&Normal Resolution</translation> |
||
2562 | cbradney | 3414 | </message> |
3415 | <message> |
||
2952 | cbradney | 3416 | <source>&Full Resolution</source> |
3417 | <translation>&Full Resolution</translation> |
||
2562 | cbradney | 3418 | </message> |
3419 | <message> |
||
2952 | cbradney | 3420 | <source>Edit Image...</source> |
3421 | <translation>Edit Image...</translation> |
||
2562 | cbradney | 3422 | </message> |
3423 | <message> |
||
2952 | cbradney | 3424 | <source>&Update Image</source> |
3425 | <translation>&Update Image</translation> |
||
2562 | cbradney | 3426 | </message> |
3427 | <message> |
||
2952 | cbradney | 3428 | <source>Adjust Frame to Image</source> |
3429 | <translation>Adjust Frame to Image</translation> |
||
2562 | cbradney | 3430 | </message> |
3431 | <message> |
||
2952 | cbradney | 3432 | <source>Extended Image Properties</source> |
3433 | <translation>Extended Image Properties</translation> |
||
2562 | cbradney | 3434 | </message> |
3435 | <message> |
||
2952 | cbradney | 3436 | <source>Show Control Characters</source> |
3437 | <translation>Show Control Characters</translation> |
||
2562 | cbradney | 3438 | </message> |
3439 | <message> |
||
2952 | cbradney | 3440 | <source>&Align and Distribute</source> |
3441 | <translation>&Align and Distribute</translation> |
||
2562 | cbradney | 3442 | </message> |
3443 | <message> |
||
2952 | cbradney | 3444 | <source>Edit Text...</source> |
3445 | <translation>Edit Text...</translation> |
||
2562 | cbradney | 3446 | </message> |
3447 | <message> |
||
2952 | cbradney | 3448 | <source>New Line</source> |
3449 | <translation>New Line</translation> |
||
2562 | cbradney | 3450 | </message> |
3451 | <message> |
||
2952 | cbradney | 3452 | <source>Frame Break</source> |
3453 | <translation>Frame Break</translation> |
||
2562 | cbradney | 3454 | </message> |
3455 | <message> |
||
2952 | cbradney | 3456 | <source>Column Break</source> |
3457 | <translation>Column Break</translation> |
||