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