Rev 14485 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
9729 | cbradney | 1 | <?xml version="1.0" encoding="utf-8"?> |
14474 | cbradney | 2 | <!DOCTYPE TS> |
3 | <TS version="2.0"> |
||
8250 | cbradney | 4 | <context> |
12918 | cbradney | 5 | <name></name> |
6 | <message> |
||
14474 | cbradney | 7 | <location filename="../../../scribus/plugins/scriptplugin/cmdcolor.h" line="17"/> |
12918 | cbradney | 8 | <source>getColorNames() -> list |
9 | |||
10 | Returns a list containing the names of all defined colors in the document. |
||
11 | If no document is open, returns a list of the default document colors. |
||
12 | </source> |
||
13 | <translation type="unfinished"></translation> |
||
14 | </message> |
||
15 | <message> |
||
14474 | cbradney | 16 | <location filename="../../../scribus/plugins/scriptplugin/cmdcolor.h" line="27"/> |
12918 | cbradney | 17 | <source>getColor("name") -> tuple |
18 | |||
19 | Returns a tuple (C, M, Y, K) containing the four color components of the |
||
20 | color "name" from the current document. If no document is open, returns |
||
21 | the value of the named color from the default document colors. |
||
22 | |||
23 | May raise NotFoundError if the named color wasn't found. |
||
24 | May raise ValueError if an invalid color name is specified. |
||
25 | </source> |
||
26 | <translation type="unfinished"></translation> |
||
27 | </message> |
||
28 | <message> |
||
14474 | cbradney | 29 | <location filename="../../../scribus/plugins/scriptplugin/cmdcolor.h" line="41"/> |
12918 | cbradney | 30 | <source>getColorAsRGB("name") -> tuple |
31 | |||
32 | Returns a tuple (R,G,B) containing the three color components of the |
||
33 | color "name" from the current document, converted to the RGB color |
||
34 | space. If no document is open, returns the value of the named color |
||
35 | from the default document colors. |
||
36 | |||
37 | May raise NotFoundError if the named color wasn't found. |
||
38 | May raise ValueError if an invalid color name is specified. |
||
39 | </source> |
||
40 | <translation type="unfinished"></translation> |
||
41 | </message> |
||
42 | <message> |
||
14474 | cbradney | 43 | <location filename="../../../scribus/plugins/scriptplugin/cmdcolor.h" line="56"/> |
12918 | cbradney | 44 | <source>changeColor("name", c, m, y, k) |
45 | |||
46 | Changes the color "name" to the specified CMYK value. The color value is |
||
47 | defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black. |
||
48 | Color components should be in the range from 0 to 255. |
||
49 | |||
50 | May raise NotFoundError if the named color wasn't found. |
||
51 | May raise ValueError if an invalid color name is specified. |
||
52 | </source> |
||
53 | <translation type="unfinished"></translation> |
||
54 | </message> |
||
55 | <message> |
||
14474 | cbradney | 56 | <location filename="../../../scribus/plugins/scriptplugin/cmdcolor.h" line="70"/> |
12918 | cbradney | 57 | <source>defineColor("name", c, m, y, k) |
58 | |||
59 | Defines a new color "name". The color Value is defined via four components: |
||
60 | c = Cyan, m = Magenta, y = Yellow and k = Black. Color components should be in |
||
61 | the range from 0 to 255. |
||
62 | |||
63 | May raise ValueError if an invalid color name is specified. |
||
64 | </source> |
||
65 | <translation type="unfinished"></translation> |
||
66 | </message> |
||
67 | <message> |
||
14474 | cbradney | 68 | <location filename="../../../scribus/plugins/scriptplugin/cmdcolor.h" line="83"/> |
12918 | cbradney | 69 | <source>deleteColor("name", "replace") |
70 | |||
71 | Deletes the color "name". Every occurence of that color is replaced by the |
||
72 | color "replace". If not specified, "replace" defaults to the color |
||
73 | "None" - transparent. |
||
74 | |||
75 | deleteColor works on the default document colors if there is no document open. |
||
76 | In that case, "replace", if specified, has no effect. |
||
77 | |||
78 | May raise NotFoundError if a named color wasn't found. |
||
79 | May raise ValueError if an invalid color name is specified. |
||
80 | </source> |
||
81 | <translation type="unfinished"></translation> |
||
82 | </message> |
||
83 | <message> |
||
14474 | cbradney | 84 | <location filename="../../../scribus/plugins/scriptplugin/cmdcolor.h" line="100"/> |
12918 | cbradney | 85 | <source>replaceColor("name", "replace") |
86 | |||
87 | Every occurence of the color "name" is replaced by the color "replace". |
||
88 | |||
89 | May raise NotFoundError if a named color wasn't found. |
||
90 | May raise ValueError if an invalid color name is specified. |
||
91 | </source> |
||
92 | <translation type="unfinished"></translation> |
||
93 | </message> |
||
94 | <message> |
||
14474 | cbradney | 95 | <location filename="../../../scribus/plugins/scriptplugin/cmdcolor.h" line="113"/> |
96 | <source>isSpotColor("name") -> bool |
||
97 | |||
98 | Returns True if the color "name" is a spot color. |
||
99 | See also setSpotColor() |
||
100 | |||
101 | May raise NotFoundError if a named color wasn't found. |
||
102 | May raise ValueError if an invalid color name is specified. |
||
103 | </source> |
||
104 | <translation type="unfinished"></translation> |
||
105 | </message> |
||
106 | <message> |
||
107 | <location filename="../../../scribus/plugins/scriptplugin/cmdcolor.h" line="128"/> |
||
108 | <source>setSpotColor("name", spot) |
||
109 | |||
110 | Set the color "name" as a spot color if spot parameter is True. |
||
111 | See also isSpotColor() |
||
112 | |||
113 | May raise NotFoundError if a named color wasn't found. |
||
114 | May raise ValueError if an invalid color name is specified. |
||
115 | </source> |
||
116 | <translation type="unfinished"></translation> |
||
117 | </message> |
||
118 | <message> |
||
119 | <location filename="../../../scribus/plugins/scriptplugin/cmddialog.h" line="17"/> |
||
12918 | cbradney | 120 | <source>newDocDialog() -> bool |
121 | |||
122 | Displays the "New Document" dialog box. Creates a new document if the user |
||
123 | accepts the settings. Does not create a document if the user presses cancel. |
||
124 | Returns true if a new document was created. |
||
125 | </source> |
||
126 | <translation type="unfinished"></translation> |
||
127 | </message> |
||
128 | <message> |
||
14474 | cbradney | 129 | <location filename="../../../scribus/plugins/scriptplugin/cmddialog.h" line="28"/> |
12918 | cbradney | 130 | <source>fileDialog("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename |
131 | |||
132 | Shows a File Open dialog box with the caption "caption". Files are filtered |
||
133 | with the filter string "filter". A default filename or file path can also |
||
134 | supplied, leave this string empty when you don't want to use it. A value of |
||
135 | True for haspreview enables a small preview widget in the FileSelect box. When |
||
136 | the issave parameter is set to True the dialog acts like a "Save As" dialog |
||
137 | otherwise it acts like a "File Open Dialog". When the isdir parameter is True |
||
138 | the dialog shows and returns only directories. The default for all of the |
||
139 | optional parameters is False. |
||
140 | |||
141 | The filter, if specified, takes the form 'comment (*.type *.type2 ...)'. |
||
142 | For example 'Images (*.png *.xpm *.jpg)'. |
||
143 | |||
144 | Refer to the Qt-Documentation for QFileDialog for details on filters. |
||
145 | |||
146 | Example: fileDialog('Open input', 'CSV files (*.csv)') |
||
147 | Example: fileDialog('Save report', defaultname='report.txt', issave=True) |
||
148 | </source> |
||
149 | <translation type="unfinished"></translation> |
||
150 | </message> |
||
151 | <message> |
||
14474 | cbradney | 152 | <location filename="../../../scribus/plugins/scriptplugin/cmddialog.h" line="56"/> |
12918 | cbradney | 153 | <source>messageBox("caption", "message", |
154 | icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT, |
||
155 | button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer |
||
156 | |||
157 | Displays a message box with the title "caption", the message "message", and |
||
158 | an icon "icon" and up to 3 buttons. By default no icon is used and a single |
||
159 | button, OK, is displayed. Only the caption and message arguments are required, |
||
160 | though setting an icon and appropriate button(s) is strongly |
||
161 | recommended. The message text may contain simple HTML-like markup. |
||
162 | |||
163 | Returns the number of the button the user pressed. Button numbers start |
||
164 | at 1. |
||
165 | |||
166 | For the icon and the button parameters there are predefined constants available |
||
167 | with the same names as in the Qt Documentation. These are the BUTTON_* and |
||
168 | ICON_* constants defined in the module. There are also two extra constants that |
||
169 | can be binary-ORed with button constants: |
||
170 | BUTTONOPT_DEFAULT Pressing enter presses this button. |
||
171 | BUTTONOPT_ESCAPE Pressing escape presses this button. |
||
172 | |||
173 | Usage examples: |
||
174 | result = messageBox('Script failed', |
||
175 | 'This script only works when you have a text frame selected.', |
||
176 | ICON_ERROR) |
||
177 | result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>', |
||
178 | ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
||
179 | BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
||
180 | |||
181 | Defined button and icon constants: |
||
182 | BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO, |
||
183 | BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
||
184 | ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL. |
||
185 | </source> |
||
186 | <translation type="unfinished"></translation> |
||
187 | </message> |
||
188 | <message> |
||
14474 | cbradney | 189 | <location filename="../../../scribus/plugins/scriptplugin/cmddialog.h" line="95"/> |
12918 | cbradney | 190 | <source>valueDialog(caption, message [,defaultvalue]) -> string |
191 | |||
192 | Shows the common 'Ask for string' dialog and returns its value as a string |
||
193 | Parameters: window title, text in the window and optional 'default' value. |
||
194 | |||
195 | Example: valueDialog('title', 'text in the window', 'optional') |
||
196 | </source> |
||
197 | <translation type="unfinished"></translation> |
||
198 | </message> |
||
199 | <message> |
||
14474 | cbradney | 200 | <location filename="../../../scribus/plugins/scriptplugin/cmddialog.h" line="107"/> |
12918 | cbradney | 201 | <source>newStyleDialog() -> string |
202 | |||
203 | Shows 'Create new paragraph style' dialog. Function returns real |
||
204 | style name or None when user cancels the dialog. |
||
205 | </source> |
||
206 | <translation type="unfinished"></translation> |
||
207 | </message> |
||
208 | <message> |
||
14474 | cbradney | 209 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="16"/> |
12918 | cbradney | 210 | <source>newDocument(size, margins, orientation, firstPageNumber, |
211 | unit, pagesType, firstPageOrder, numPages) -> bool |
||
212 | |||
213 | Creates a new document and returns true if successful. The parameters have the |
||
214 | following meaning: |
||
215 | |||
216 | size = A tuple (width, height) describing the size of the document. You can |
||
217 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
||
218 | |||
219 | margins = A tuple (left, right, top, bottom) describing the document |
||
220 | margins |
||
221 | |||
222 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
223 | |||
224 | firstPageNumer = is the number of the first page in the document used for |
||
225 | pagenumbering. While you'll usually want 1, it's useful to have higher |
||
226 | numbers if you're creating a document in several parts. |
||
227 | |||
228 | unit: this value sets the measurement units used by the document. Use a |
||
229 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
230 | UNIT_PICAS, UNIT_POINTS. |
||
231 | |||
232 | pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page, |
||
233 | PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and |
||
234 | PAGE_4 is 4-fold. |
||
235 | |||
236 | firstPageOrder = What is position of first page in the document. |
||
237 | Indexed from 0 (0 = first). |
||
238 | |||
239 | numPage = Number of pages to be created. |
||
240 | |||
241 | The values for width, height and the margins are expressed in the given unit |
||
242 | for the document. PAPER_* constants are expressed in points. If your document |
||
243 | is not in points, make sure to account for this. |
||
244 | |||
245 | example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS, |
||
246 | PAGE_4, 3, 1) |
||
247 | |||
248 | May raise ScribusError if is firstPageOrder bigger than allowed by pagesType. |
||
249 | </source> |
||
250 | <translation type="unfinished"></translation> |
||
251 | </message> |
||
252 | <message> |
||
14474 | cbradney | 253 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="62"/> |
12918 | cbradney | 254 | <source>newDoc(size, margins, orientation, firstPageNumber, |
255 | unit, facingPages, firstSideLeft) -> bool |
||
256 | |||
257 | WARNING: Obsolete procedure! Use newDocument instead. |
||
258 | |||
259 | Creates a new document and returns true if successful. The parameters have the |
||
260 | following meaning: |
||
261 | |||
262 | size = A tuple (width, height) describing the size of the document. You can |
||
263 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
||
264 | |||
265 | margins = A tuple (left, right, top, bottom) describing the document |
||
266 | margins |
||
267 | |||
268 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
269 | |||
270 | firstPageNumer = is the number of the first page in the document used for |
||
271 | pagenumbering. While you'll usually want 1, it's useful to have higher |
||
272 | numbers if you're creating a document in several parts. |
||
273 | |||
274 | unit: this value sets the measurement units used by the document. Use a |
||
275 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
276 | UNIT_PICAS, UNIT_POINTS. |
||
277 | |||
278 | facingPages = FACINGPAGES, NOFACINGPAGES |
||
279 | |||
280 | firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT |
||
281 | |||
282 | The values for width, height and the margins are expressed in the given unit |
||
283 | for the document. PAPER_* constants are expressed in points. If your document |
||
284 | is not in points, make sure to account for this. |
||
285 | |||
286 | example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
||
287 | FACINGPAGES, FIRSTPAGERIGHT) |
||
288 | </source> |
||
289 | <translation type="unfinished"></translation> |
||
290 | </message> |
||
291 | <message> |
||
14474 | cbradney | 292 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="103"/> |
12918 | cbradney | 293 | <source>closeDoc() |
294 | |||
295 | Closes the current document without prompting to save. |
||
296 | |||
297 | May throw NoDocOpenError if there is no document to close |
||
298 | </source> |
||
299 | <translation type="unfinished"></translation> |
||
300 | </message> |
||
301 | <message> |
||
14474 | cbradney | 302 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="114"/> |
12918 | cbradney | 303 | <source>haveDoc() -> bool |
304 | |||
305 | Returns true if there is a document open. |
||
306 | </source> |
||
307 | <translation type="unfinished"></translation> |
||
308 | </message> |
||
309 | <message> |
||
14474 | cbradney | 310 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="123"/> |
12918 | cbradney | 311 | <source>openDoc("name") |
312 | |||
313 | Opens the document "name". |
||
314 | |||
315 | May raise ScribusError if the document could not be opened. |
||
316 | </source> |
||
317 | <translation type="unfinished"></translation> |
||
318 | </message> |
||
319 | <message> |
||
14474 | cbradney | 320 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="134"/> |
12918 | cbradney | 321 | <source>saveDoc() |
322 | |||
323 | Saves the current document with its current name, returns true if successful. |
||
324 | If the document has not already been saved, this may bring up an interactive |
||
325 | save file dialog. |
||
326 | |||
327 | If the save fails, there is currently no way to tell. |
||
328 | </source> |
||
329 | <translation type="unfinished"></translation> |
||
330 | </message> |
||
331 | <message> |
||
14474 | cbradney | 332 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="146"/> |
333 | <source>getDocName() -> string |
||
334 | |||
335 | Returns the name the document was saved under. |
||
336 | If the document was not saved before the name is empty. |
||
337 | </source> |
||
338 | <translation type="unfinished"></translation> |
||
339 | </message> |
||
340 | <message> |
||
341 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="156"/> |
||
12918 | cbradney | 342 | <source>saveDocAs("name") |
343 | |||
344 | Saves the current document under the new name "name" (which may be a full or |
||
345 | relative path). |
||
346 | |||
347 | May raise ScribusError if the save fails. |
||
348 | </source> |
||
349 | <translation type="unfinished"></translation> |
||
350 | </message> |
||
351 | <message> |
||
14474 | cbradney | 352 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="168"/> |
12918 | cbradney | 353 | <source>setInfo("author", "info", "description") -> bool |
354 | |||
355 | Sets the document information. "Author", "Info", "Description" are |
||
356 | strings. |
||
357 | </source> |
||
358 | <translation type="unfinished"></translation> |
||
359 | </message> |
||
360 | <message> |
||
14474 | cbradney | 361 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="178"/> |
12918 | cbradney | 362 | <source>setMargins(lr, rr, tr, br) |
363 | |||
14474 | cbradney | 364 | Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br) |
12918 | cbradney | 365 | margins are given in the measurement units of the document - see UNIT_<type> |
366 | constants. |
||
367 | </source> |
||
368 | <translation type="unfinished"></translation> |
||
369 | </message> |
||
370 | <message> |
||
14474 | cbradney | 371 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="189"/> |
372 | <source>setBaseLine(grid, offset) |
||
373 | |||
374 | Sets the base line settings of the document, grid spacing(grid), grid offset(offset). |
||
375 | Values are given in the measurement units of the document - see UNIT_<type> |
||
376 | constants. |
||
377 | </source> |
||
378 | <translation type="unfinished"></translation> |
||
379 | </message> |
||
380 | <message> |
||
381 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="200"/> |
||
12918 | cbradney | 382 | <source>setUnit(type) |
383 | |||
384 | Changes the measurement unit of the document. Possible values for "unit" are |
||
385 | defined as constants UNIT_<type>. |
||
386 | |||
387 | May raise ValueError if an invalid unit is passed. |
||
388 | </source> |
||
389 | <translation type="unfinished"></translation> |
||
390 | </message> |
||
391 | <message> |
||
14474 | cbradney | 392 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="212"/> |
12918 | cbradney | 393 | <source>getUnit() -> integer (Scribus unit constant) |
394 | |||
395 | Returns the measurement units of the document. The returned value will be one |
||
396 | of the UNIT_* constants: |
||
397 | UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS. |
||
398 | </source> |
||
399 | <translation type="unfinished"></translation> |
||
400 | </message> |
||
401 | <message> |
||
14474 | cbradney | 402 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="223"/> |
12918 | cbradney | 403 | <source>loadStylesFromFile("filename") |
404 | |||
405 | Loads paragraph styles from the Scribus document at "filename" into the |
||
406 | current document. |
||
407 | </source> |
||
408 | <translation type="unfinished"></translation> |
||
409 | </message> |
||
410 | <message> |
||
14474 | cbradney | 411 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="233"/> |
12918 | cbradney | 412 | <source>setDocType(facingPages, firstPageLeft) |
413 | |||
414 | Sets the document type. To get facing pages set the first parameter to |
||
415 | FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead. If you want |
||
416 | to be the first page a left side set the second parameter to FIRSTPAGELEFT, for |
||
417 | a right page use FIRSTPAGERIGHT. |
||
418 | </source> |
||
419 | <translation type="unfinished"></translation> |
||
420 | </message> |
||
421 | <message> |
||
14474 | cbradney | 422 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="243"/> |
12918 | cbradney | 423 | <source>closeMasterPage() |
424 | |||
425 | Closes the currently active master page, if any, and returns editing |
||
426 | to normal. Begin editing with editMasterPage(). |
||
427 | </source> |
||
428 | <translation type="unfinished"></translation> |
||
429 | </message> |
||
430 | <message> |
||
14474 | cbradney | 431 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="251"/> |
12918 | cbradney | 432 | <source>masterPageNames() |
433 | |||
434 | Returns a list of the names of all master pages in the document. |
||
435 | </source> |
||
436 | <translation type="unfinished"></translation> |
||
437 | </message> |
||
438 | <message> |
||
14474 | cbradney | 439 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="258"/> |
12918 | cbradney | 440 | <source>editMasterPage(pageName) |
441 | |||
442 | Enables master page editing and opens the named master page |
||
443 | for editing. Finish editing with closeMasterPage(). |
||
444 | </source> |
||
445 | <translation type="unfinished"></translation> |
||
446 | </message> |
||
447 | <message> |
||
14474 | cbradney | 448 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="266"/> |
12918 | cbradney | 449 | <source>createMasterPage(pageName) |
450 | |||
451 | Creates a new master page named pageName and opens it for |
||
452 | editing. |
||
453 | </source> |
||
454 | <translation type="unfinished"></translation> |
||
455 | </message> |
||
456 | <message> |
||
14474 | cbradney | 457 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="274"/> |
12918 | cbradney | 458 | <source>deleteMasterPage(pageName) |
459 | |||
460 | Delete the named master page. |
||
461 | </source> |
||
462 | <translation type="unfinished"></translation> |
||
463 | </message> |
||
464 | <message> |
||
14474 | cbradney | 465 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="17"/> |
12918 | cbradney | 466 | <source>getFillColor(["name"]) -> string |
467 | |||
468 | Returns the name of the fill color of the object "name". |
||
469 | If "name" is not given the currently selected item is used. |
||
470 | </source> |
||
471 | <translation type="unfinished"></translation> |
||
472 | </message> |
||
473 | <message> |
||
14474 | cbradney | 474 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="27"/> |
12918 | cbradney | 475 | <source>getFillTransparency(["name"]) -> float |
476 | |||
477 | Returns the fill transparency of the object "name". If "name" |
||
478 | is not given the currently selected Item is used. |
||
479 | </source> |
||
480 | <translation type="unfinished"></translation> |
||
481 | </message> |
||
482 | <message> |
||
14474 | cbradney | 483 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="37"/> |
12918 | cbradney | 484 | <source>getFillBlendmode(["name"]) -> integer |
485 | |||
486 | Returns the fill blendmode of the object "name". If "name" |
||
487 | is not given the currently selected Item is used. |
||
488 | </source> |
||
489 | <translation type="unfinished"></translation> |
||
490 | </message> |
||
491 | <message> |
||
14474 | cbradney | 492 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="47"/> |
12918 | cbradney | 493 | <source>getLineColor(["name"]) -> string |
494 | |||
495 | Returns the name of the line color of the object "name". |
||
496 | If "name" is not given the currently selected item is used. |
||
497 | </source> |
||
498 | <translation type="unfinished"></translation> |
||
499 | </message> |
||
500 | <message> |
||
14474 | cbradney | 501 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="57"/> |
12918 | cbradney | 502 | <source>getLineTransparency(["name"]) -> float |
503 | |||
504 | Returns the line transparency of the object "name". If "name" |
||
505 | is not given the currently selected Item is used. |
||
506 | </source> |
||
507 | <translation type="unfinished"></translation> |
||
508 | </message> |
||
509 | <message> |
||
14474 | cbradney | 510 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="67"/> |
12918 | cbradney | 511 | <source>getLineBlendmode(["name"]) -> integer |
512 | |||
513 | Returns the line blendmode of the object "name". If "name" |
||
514 | is not given the currently selected Item is used. |
||
515 | </source> |
||
516 | <translation type="unfinished"></translation> |
||
517 | </message> |
||
518 | <message> |
||
14474 | cbradney | 519 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="77"/> |
12918 | cbradney | 520 | <source>getLineWidth(["name"]) -> integer |
521 | |||
522 | Returns the line width of the object "name". If "name" |
||
523 | is not given the currently selected Item is used. |
||
524 | </source> |
||
525 | <translation type="unfinished"></translation> |
||
526 | </message> |
||
527 | <message> |
||
14474 | cbradney | 528 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="87"/> |
12918 | cbradney | 529 | <source>getLineShade(["name"]) -> integer |
530 | |||
531 | Returns the shading value of the line color of the object "name". |
||
532 | If "name" is not given the currently selected item is used. |
||
533 | </source> |
||
534 | <translation type="unfinished"></translation> |
||
535 | </message> |
||
536 | <message> |
||
14474 | cbradney | 537 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="97"/> |
12918 | cbradney | 538 | <source>getLineJoin(["name"]) -> integer (see constants) |
539 | |||
540 | Returns the line join style of the object "name". If "name" is not given |
||
541 | the currently selected item is used. The join types are: |
||
542 | JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND |
||
543 | </source> |
||
544 | <translation type="unfinished"></translation> |
||
545 | </message> |
||
546 | <message> |
||
14474 | cbradney | 547 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="108"/> |
12918 | cbradney | 548 | <source>getLineEnd(["name"]) -> integer (see constants) |
549 | |||
550 | Returns the line cap style of the object "name". If "name" is not given the |
||
551 | currently selected item is used. The cap types are: |
||
552 | CAP_FLAT, CAP_ROUND, CAP_SQUARE |
||
553 | </source> |
||
554 | <translation type="unfinished"></translation> |
||
555 | </message> |
||
556 | <message> |
||
14474 | cbradney | 557 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="119"/> |
12918 | cbradney | 558 | <source>getLineStyle(["name"]) -> integer (see constants) |
559 | |||
560 | Returns the line style of the object "name". If "name" is not given the |
||
561 | currently selected item is used. Line style constants are: |
||
562 | LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID |
||
563 | </source> |
||
564 | <translation type="unfinished"></translation> |
||
565 | </message> |
||
566 | <message> |
||
14474 | cbradney | 567 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="130"/> |
12918 | cbradney | 568 | <source>getFillShade(["name"]) -> integer |
569 | |||
570 | Returns the shading value of the fill color of the object "name". |
||
571 | If "name" is not given the currently selected item is used. |
||
572 | </source> |
||
573 | <translation type="unfinished"></translation> |
||
574 | </message> |
||
575 | <message> |
||
14474 | cbradney | 576 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="140"/> |
12918 | cbradney | 577 | <source>getCornerRadius(["name"]) -> integer |
578 | |||
579 | Returns the corner radius of the object "name". The radius is |
||
580 | expressed in points. If "name" is not given the currently |
||
581 | selected item is used. |
||
582 | </source> |
||
583 | <translation type="unfinished"></translation> |
||
584 | </message> |
||
585 | <message> |
||
14474 | cbradney | 586 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="151"/> |
12918 | cbradney | 587 | <source>getImageScale(["name"]) -> (x,y) |
588 | |||
589 | Returns a (x, y) tuple containing the scaling values of the image frame |
||
590 | "name". If "name" is not given the currently selected item is used. |
||
591 | </source> |
||
592 | <translation type="unfinished"></translation> |
||
593 | </message> |
||
594 | <message> |
||
14474 | cbradney | 595 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="161"/> |
12918 | cbradney | 596 | <source>getImageName(["name"]) -> string |
597 | |||
598 | Returns the filename for the image in the image frame. If "name" is not |
||
599 | given the currently selected item is used. |
||
600 | </source> |
||
601 | <translation type="unfinished"></translation> |
||
602 | </message> |
||
603 | <message> |
||
14474 | cbradney | 604 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="171"/> |
12918 | cbradney | 605 | <source>getPosition(["name"]) -> (x,y) |
606 | |||
607 | Returns a (x, y) tuple with the position of the object "name". |
||
608 | If "name" is not given the currently selected item is used. |
||
609 | The position is expressed in the actual measurement unit of the document |
||
610 | - see UNIT_<type> for reference. |
||
611 | </source> |
||
612 | <translation type="unfinished"></translation> |
||
613 | </message> |
||
614 | <message> |
||
14474 | cbradney | 615 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="183"/> |
12918 | cbradney | 616 | <source>getSize(["name"]) -> (width,height) |
617 | |||
618 | Returns a (width, height) tuple with the size of the object "name". |
||
619 | If "name" is not given the currently selected item is used. The size is |
||
620 | expressed in the current measurement unit of the document - see UNIT_<type> |
||
621 | for reference. |
||
622 | </source> |
||
623 | <translation type="unfinished"></translation> |
||
624 | </message> |
||
625 | <message> |
||
14474 | cbradney | 626 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="195"/> |
12918 | cbradney | 627 | <source>getRotation(["name"]) -> integer |
628 | |||
629 | Returns the rotation of the object "name". The value is expressed in degrees, |
||
630 | and clockwise is positive. If "name" is not given the currently selected item |
||
631 | is used. |
||
632 | </source> |
||
633 | <translation type="unfinished"></translation> |
||
634 | </message> |
||
635 | <message> |
||
14474 | cbradney | 636 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="206"/> |
12918 | cbradney | 637 | <source>getAllObjects() -> list |
638 | |||
639 | Returns a list containing the names of all objects on the current page. |
||
640 | </source> |
||
641 | <translation type="unfinished"></translation> |
||
642 | </message> |
||
643 | <message> |
||
14474 | cbradney | 644 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetsetprop.h" line="77"/> |
12918 | cbradney | 645 | <source>getPropertyCType(object, property, includesuper=True) |
646 | |||
647 | Returns the name of the C type of `property' of `object'. See getProperty() |
||
648 | for details of arguments. |
||
649 | |||
650 | If `includesuper' is true, search inherited properties too. |
||
651 | </source> |
||
652 | <translation type="unfinished"></translation> |
||
653 | </message> |
||
654 | <message> |
||
14474 | cbradney | 655 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetsetprop.h" line="96"/> |
12918 | cbradney | 656 | <source>getPropertyNames(object, includesuper=True) |
657 | |||
658 | Return a list of property names supported by `object'. |
||
659 | If `includesuper' is true, return properties supported |
||
660 | by parent classes as well. |
||
661 | </source> |
||
662 | <translation type="unfinished"></translation> |
||
663 | </message> |
||
664 | <message> |
||
14474 | cbradney | 665 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetsetprop.h" line="123"/> |
12918 | cbradney | 666 | <source>getProperty(object, property) |
667 | |||
668 | Return the value of the property `property' of the passed `object'. |
||
669 | |||
670 | The `object' argument may be a string, in which case the named PageItem |
||
671 | is searched for. It may also be a PyCObject, which may point to any |
||
672 | C++ QObject instance. |
||
673 | |||
674 | The `property' argument must be a string, and is the name of the property |
||
675 | to look up on `object'. |
||
676 | |||
677 | The return value varies depending on the type of the property. |
||
678 | </source> |
||
679 | <translation type="unfinished"></translation> |
||
680 | </message> |
||
681 | <message> |
||
14474 | cbradney | 682 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetsetprop.h" line="158"/> |
12918 | cbradney | 683 | <source>setProperty(object, property, value) |
684 | |||
685 | Set `property' of `object' to `value'. If `value' cannot be converted to a type |
||
686 | compatible with the type of `property', an exception is raised. An exception may |
||
687 | also be raised if the underlying setter fails. |
||
688 | |||
689 | See getProperty() for more information. |
||
690 | </source> |
||
691 | <translation type="unfinished"></translation> |
||
692 | </message> |
||
693 | <message> |
||
14474 | cbradney | 694 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="17"/> |
12918 | cbradney | 695 | <source>moveObject(dx, dy [, "name"]) |
696 | |||
697 | Moves the object "name" by dx and dy relative to its current position. The |
||
698 | distances are expressed in the current measurement unit of the document (see |
||
699 | UNIT constants). If "name" is not given the currently selected item is used. |
||
700 | If the object "name" belongs to a group, the whole group is moved. |
||
701 | </source> |
||
702 | <translation type="unfinished"></translation> |
||
703 | </message> |
||
704 | <message> |
||
14474 | cbradney | 705 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="29"/> |
12918 | cbradney | 706 | <source>moveObjectAbs(x, y [, "name"]) |
707 | |||
708 | Moves the object "name" to a new location. The coordinates are expressed in |
||
709 | the current measurement unit of the document (see UNIT constants). If "name" |
||
710 | is not given the currently selected item is used. If the object "name" |
||
711 | belongs to a group, the whole group is moved. |
||
712 | </source> |
||
713 | <translation type="unfinished"></translation> |
||
714 | </message> |
||
715 | <message> |
||
14474 | cbradney | 716 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="41"/> |
12918 | cbradney | 717 | <source>rotateObject(rot [, "name"]) |
718 | |||
719 | Rotates the object "name" by "rot" degrees relatively. The object is |
||
720 | rotated by the vertex that is currently selected as the rotation point - by |
||
721 | default, the top left vertex at zero rotation. Positive values mean counter |
||
722 | clockwise rotation when the default rotation point is used. If "name" is not |
||
723 | given the currently selected item is used. |
||
724 | </source> |
||
725 | <translation type="unfinished"></translation> |
||
726 | </message> |
||
727 | <message> |
||
14474 | cbradney | 728 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="54"/> |
12918 | cbradney | 729 | <source>rotateObjectAbs(rot [, "name"]) |
730 | |||
731 | Sets the rotation of the object "name" to "rot". Positive values |
||
732 | mean counter clockwise rotation. If "name" is not given the currently |
||
733 | selected item is used. |
||
734 | </source> |
||
735 | <translation type="unfinished"></translation> |
||
736 | </message> |
||
737 | <message> |
||
14474 | cbradney | 738 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="65"/> |
12918 | cbradney | 739 | <source>sizeObject(width, height [, "name"]) |
740 | |||
741 | Resizes the object "name" to the given width and height. If "name" |
||
742 | is not given the currently selected item is used. |
||
743 | </source> |
||
744 | <translation type="unfinished"></translation> |
||
745 | </message> |
||
746 | <message> |
||
14474 | cbradney | 747 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="75"/> |
12918 | cbradney | 748 | <source>getSelectedObject([nr]) -> string |
749 | |||
750 | Returns the name of the selected object. "nr" if given indicates the number |
||
751 | of the selected object, e.g. 0 means the first selected object, 1 means the |
||
752 | second selected Object and so on. |
||
753 | </source> |
||
754 | <translation type="unfinished"></translation> |
||
755 | </message> |
||
756 | <message> |
||
14474 | cbradney | 757 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="86"/> |
12918 | cbradney | 758 | <source>selectionCount() -> integer |
759 | |||
760 | Returns the number of selected objects. |
||
761 | </source> |
||
762 | <translation type="unfinished"></translation> |
||
763 | </message> |
||
764 | <message> |
||
14474 | cbradney | 765 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="95"/> |
12918 | cbradney | 766 | <source>selectObject("name") |
767 | |||
768 | Selects the object with the given "name". |
||
769 | </source> |
||
770 | <translation type="unfinished"></translation> |
||
771 | </message> |
||
772 | <message> |
||
14474 | cbradney | 773 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="104"/> |
12918 | cbradney | 774 | <source>deselectAll() |
775 | |||
776 | Deselects all objects in the whole document. |
||
777 | </source> |
||
778 | <translation type="unfinished"></translation> |
||
779 | </message> |
||
780 | <message> |
||
14474 | cbradney | 781 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="113"/> |
14747 | cbradney | 782 | <source>groupObjects(list) -> string |
12918 | cbradney | 783 | |
784 | Groups the objects named in "list" together. "list" must contain the names |
||
785 | of the objects to be grouped. If "list" is not given the currently selected |
||
14747 | cbradney | 786 | items are used. Returns the group name for further referencing. |
12918 | cbradney | 787 | </source> |
788 | <translation type="unfinished"></translation> |
||
789 | </message> |
||
790 | <message> |
||
14474 | cbradney | 791 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="124"/> |
12918 | cbradney | 792 | <source>unGroupObjects("name") |
793 | |||
794 | Destructs the group the object "name" belongs to.If "name" is not given the currently selected item is used.</source> |
||
795 | <translation type="unfinished"></translation> |
||
796 | </message> |
||
797 | <message> |
||
14474 | cbradney | 798 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="132"/> |
12918 | cbradney | 799 | <source>scaleGroup(factor [,"name"]) |
800 | |||
801 | Scales the group the object "name" belongs to. Values greater than 1 enlarge |
||
802 | the group, values smaller than 1 make the group smaller e.g a value of 0.5 |
||
803 | scales the group to 50 % of its original size, a value of 1.5 scales the group |
||
804 | to 150 % of its original size. The value for "factor" must be greater than |
||
805 | 0. If "name" is not given the currently selected item is used. |
||
806 | |||
807 | May raise ValueError if an invalid scale factor is passed. |
||
808 | </source> |
||
809 | <translation type="unfinished"></translation> |
||
810 | </message> |
||
811 | <message> |
||
14474 | cbradney | 812 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="147"/> |
12918 | cbradney | 813 | <source>loadImage("filename" [, "name"]) |
814 | |||
815 | Loads the picture "picture" into the image frame "name". If "name" is |
||
816 | not given the currently selected item is used. |
||
817 | |||
818 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
819 | </source> |
||
820 | <translation type="unfinished"></translation> |
||
821 | </message> |
||
822 | <message> |
||
14474 | cbradney | 823 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="159"/> |
824 | <source>scaleImage(x, y [, "name"]) |
||
825 | |||
826 | Sets the internal scaling factors of the picture in the image frame "name". |
||
827 | If "name" is not given the currently selected item is used. A number of 1 |
||
828 | means 100 %. Internal scaling factors are different from the values shown on |
||
829 | properties palette. Note : deprecated, use setImageScale() instead. |
||
830 | |||
831 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
832 | </source> |
||
833 | <translation type="unfinished"></translation> |
||
834 | </message> |
||
835 | <message> |
||
836 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="173"/> |
||
837 | <source>setImageScale(x, y [, "name"]) |
||
838 | |||
839 | Sets the scaling factors of the picture in the image frame "name". |
||
840 | If "name" is not given the currently selected item is used. A number of 1 |
||
841 | means 100 %. Scaling factors are equal to the values shown on properties palette. |
||
842 | |||
843 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
844 | </source> |
||
845 | <translation type="unfinished"></translation> |
||
846 | </message> |
||
847 | <message> |
||
848 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="186"/> |
||
12918 | cbradney | 849 | <source>lockObject(["name"]) -> bool |
850 | |||
851 | Locks the object "name" if it's unlocked or unlock it if it's locked. |
||
852 | If "name" is not given the currently selected item is used. Returns true |
||
853 | if locked. |
||
854 | </source> |
||
855 | <translation type="unfinished"></translation> |
||
856 | </message> |
||
857 | <message> |
||
14474 | cbradney | 858 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="197"/> |
12918 | cbradney | 859 | <source>isLocked(["name"]) -> bool |
860 | |||
861 | Returns true if is the object "name" locked. If "name" is not given the |
||
862 | currently selected item is used. |
||
863 | </source> |
||
864 | <translation type="unfinished"></translation> |
||
865 | </message> |
||
866 | <message> |
||
14474 | cbradney | 867 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="206"/> |
12918 | cbradney | 868 | <source>setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>) |
869 | |||
870 | Sets the scale to frame on the selected or specified image frame to `scaletoframe'. |
||
871 | If `proportional' is specified, set fixed aspect ratio scaling to `proportional'. |
||
872 | Both `scaletoframe' and `proportional' are boolean. |
||
873 | |||
874 | May raise WrongFrameTypeError. |
||
875 | </source> |
||
876 | <translation type="unfinished"></translation> |
||
877 | </message> |
||
878 | <message> |
||
14474 | cbradney | 879 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="19"/> |
12918 | cbradney | 880 | <source>setRedraw(bool) |
881 | |||
882 | Disables page redraw when bool = False, otherwise redrawing is enabled. |
||
883 | This change will persist even after the script exits, so make sure to call |
||
884 | setRedraw(True) in a finally: clause at the top level of your script. |
||
885 | </source> |
||
886 | <translation type="unfinished"></translation> |
||
887 | </message> |
||
888 | <message> |
||
14474 | cbradney | 889 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="30"/> |
12918 | cbradney | 890 | <source>getFontNames() -> list |
891 | |||
892 | Returns a list with the names of all available fonts. |
||
893 | </source> |
||
894 | <translation type="unfinished"></translation> |
||
895 | </message> |
||
896 | <message> |
||
14474 | cbradney | 897 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="39"/> |
12918 | cbradney | 898 | <source>getXFontNames() -> list of tuples |
899 | |||
900 | Returns a larger font info. It's a list of the tuples with: |
||
901 | [ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ] |
||
902 | </source> |
||
903 | <translation type="unfinished"></translation> |
||
904 | </message> |
||
905 | <message> |
||
14474 | cbradney | 906 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="52"/> |
12918 | cbradney | 907 | <source>renderFont("name", "filename", "sample", size, format="PPM") -> bool |
908 | |||
909 | Creates an image preview of font "name" with given text "sample" and size. |
||
910 | If "filename" is not "", image is saved into "filename". Otherwise |
||
911 | image data is returned as a string. The optional "format" argument |
||
912 | specifies the image format to generate, and supports any format allowed |
||
913 | by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM. |
||
914 | |||
915 | May raise NotFoundError if the specified font can't be found. |
||
916 | May raise ValueError if an empty sample or filename is passed. |
||
917 | </source> |
||
918 | <translation type="unfinished"></translation> |
||
919 | </message> |
||
920 | <message> |
||
14474 | cbradney | 921 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="68"/> |
12918 | cbradney | 922 | <source>getLayers() -> list |
923 | |||
924 | Returns a list with the names of all defined layers. |
||
925 | </source> |
||
926 | <translation type="unfinished"></translation> |
||
927 | </message> |
||
928 | <message> |
||
14474 | cbradney | 929 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="77"/> |
12918 | cbradney | 930 | <source>setActiveLayer("name") |
931 | |||
932 | Sets the active layer to the layer named "name". |
||
933 | |||
934 | May raise NotFoundError if the layer can't be found. |
||
935 | May raise ValueError if the layer name isn't acceptable. |
||
936 | </source> |
||
937 | <translation type="unfinished"></translation> |
||
938 | </message> |
||
939 | <message> |
||
14474 | cbradney | 940 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="89"/> |
12918 | cbradney | 941 | <source>getActiveLayer() -> string |
942 | |||
943 | Returns the name of the current active layer. |
||
944 | </source> |
||
945 | <translation type="unfinished"></translation> |
||
946 | </message> |
||
947 | <message> |
||
14474 | cbradney | 948 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="98"/> |
12918 | cbradney | 949 | <source>sentToLayer("layer" [, "name"]) |
950 | |||
951 | Sends the object "name" to the layer "layer". The layer must exist. |
||
952 | If "name" is not given the currently selected item is used. |
||
953 | |||
954 | May raise NotFoundError if the layer can't be found. |
||
955 | May raise ValueError if the layer name isn't acceptable. |
||
956 | </source> |
||
957 | <translation type="unfinished"></translation> |
||
958 | </message> |
||
959 | <message> |
||
14474 | cbradney | 960 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="111"/> |
12918 | cbradney | 961 | <source>setLayerVisible("layer", visible) |
962 | |||
963 | Sets the layer "layer" to be visible or not. If is the visible set to false |
||
964 | the layer is invisible. |
||
965 | |||
966 | May raise NotFoundError if the layer can't be found. |
||
967 | May raise ValueError if the layer name isn't acceptable. |
||
968 | </source> |
||
969 | <translation type="unfinished"></translation> |
||
970 | </message> |
||
971 | <message> |
||
14474 | cbradney | 972 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="124"/> |
12918 | cbradney | 973 | <source>setLayerPrintable("layer", printable) |
974 | |||
975 | Sets the layer "layer" to be printable or not. If is the |
||
976 | printable set to false the layer won't be printed. |
||
977 | |||
978 | May raise NotFoundError if the layer can't be found. |
||
979 | May raise ValueError if the layer name isn't acceptable. |
||
980 | </source> |
||
981 | <translation type="unfinished"></translation> |
||
982 | </message> |
||
983 | <message> |
||
14474 | cbradney | 984 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="137"/> |
12918 | cbradney | 985 | <source>setLayerLocked("layer", locked) |
986 | |||
987 | Sets the layer "layer" to be locked or not. If locked is set to |
||
988 | true the layer will be locked. |
||
989 | |||
990 | May raise NotFoundError if the layer can't be found. |
||
991 | May raise ValueError if the layer name isn't acceptable. |
||
992 | </source> |
||
993 | <translation type="unfinished"></translation> |
||
994 | </message> |
||
995 | <message> |
||
14474 | cbradney | 996 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="150"/> |
12918 | cbradney | 997 | <source>setLayerOutlined("layer", outline) |
998 | |||
999 | Sets the layer "layer" to be locked or not. If outline is set to |
||
1000 | true the layer will be displayed outlined. |
||
1001 | |||
1002 | May raise NotFoundError if the layer can't be found. |
||
1003 | May raise ValueError if the layer name isn't acceptable. |
||
1004 | </source> |
||
1005 | <translation type="unfinished"></translation> |
||
1006 | </message> |
||
1007 | <message> |
||
14474 | cbradney | 1008 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="163"/> |
12918 | cbradney | 1009 | <source>setLayerFlow("layer", flow) |
1010 | |||
1011 | Sets the layers "layer" flowcontrol to flow. If flow is set to |
||
1012 | true text in layers above this one will flow around objects on this layer. |
||
1013 | |||
1014 | May raise NotFoundError if the layer can't be found. |
||
1015 | May raise ValueError if the layer name isn't acceptable. |
||
1016 | </source> |
||
1017 | <translation type="unfinished"></translation> |
||
1018 | </message> |
||
1019 | <message> |
||
14474 | cbradney | 1020 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="176"/> |
12918 | cbradney | 1021 | <source>setLayerBlendmode("layer", blend) |
1022 | |||
1023 | Sets the layers "layer" blendmode to blend. |
||
1024 | |||
1025 | May raise NotFoundError if the layer can't be found. |
||
1026 | May raise ValueError if the layer name isn't acceptable. |
||
1027 | </source> |
||
1028 | <translation type="unfinished"></translation> |
||
1029 | </message> |
||
1030 | <message> |
||
14474 | cbradney | 1031 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="188"/> |
12918 | cbradney | 1032 | <source>setLayerTransparency("layer", trans) |
1033 | |||
1034 | Sets the layers "layer" transparency to trans. |
||
1035 | |||
1036 | May raise NotFoundError if the layer can't be found. |
||
1037 | May raise ValueError if the layer name isn't acceptable. |
||
1038 | </source> |
||
1039 | <translation type="unfinished"></translation> |
||
1040 | </message> |
||
1041 | <message> |
||
14474 | cbradney | 1042 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="200"/> |
12918 | cbradney | 1043 | <source>isLayerVisible("layer") -> bool |
1044 | |||
1045 | Returns whether the layer "layer" is visible or not, a value of True means |
||
1046 | that the layer "layer" is visible, a value of False means that the layer |
||
1047 | "layer" is invisible. |
||
1048 | |||
1049 | May raise NotFoundError if the layer can't be found. |
||
1050 | May raise ValueError if the layer name isn't acceptable. |
||
1051 | </source> |
||
1052 | <translation type="unfinished"></translation> |
||
1053 | </message> |
||
1054 | <message> |
||
14474 | cbradney | 1055 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="214"/> |
12918 | cbradney | 1056 | <source>isLayerPrintable("layer") -> bool |
1057 | |||
1058 | Returns whether the layer "layer" is printable or not, a value of True means |
||
1059 | that the layer "layer" can be printed, a value of False means that printing |
||
1060 | the layer "layer" is disabled. |
||
1061 | |||
1062 | May raise NotFoundError if the layer can't be found. |
||
1063 | May raise ValueError if the layer name isn't acceptable. |
||
1064 | </source> |
||
1065 | <translation type="unfinished"></translation> |
||
1066 | </message> |
||
1067 | <message> |
||
14474 | cbradney | 1068 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="228"/> |
12918 | cbradney | 1069 | <source>isLayerLocked("layer") -> bool |
1070 | |||
1071 | Returns whether the layer "layer" is locked or not, a value of True means |
||
1072 | that the layer "layer" is editable, a value of False means that the layer |
||
1073 | "layer" is locked. |
||
1074 | |||
1075 | May raise NotFoundError if the layer can't be found. |
||
1076 | May raise ValueError if the layer name isn't acceptable. |
||
1077 | </source> |
||
1078 | <translation type="unfinished"></translation> |
||
1079 | </message> |
||
1080 | <message> |
||
14474 | cbradney | 1081 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="242"/> |
12918 | cbradney | 1082 | <source>isLayerOutlined("layer") -> bool |
1083 | |||
1084 | Returns whether the layer "layer" is outlined or not, a value of True means |
||
1085 | that the layer "layer" is outlined, a value of False means that the layer |
||
1086 | "layer" is normal. |
||
1087 | |||
1088 | May raise NotFoundError if the layer can't be found. |
||
1089 | May raise ValueError if the layer name isn't acceptable. |
||
1090 | </source> |
||
1091 | <translation type="unfinished"></translation> |
||
1092 | </message> |
||
1093 | <message> |
||
14474 | cbradney | 1094 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="256"/> |
12918 | cbradney | 1095 | <source>isLayerFlow("layer") -> bool |
1096 | |||
1097 | Returns whether text flows around objects on layer "layer", a value of True means |
||
1098 | that text flows around, a value of False means that the text does not flow around. |
||
1099 | |||
1100 | May raise NotFoundError if the layer can't be found. |
||
1101 | May raise ValueError if the layer name isn't acceptable. |
||
1102 | </source> |
||
1103 | <translation type="unfinished"></translation> |
||
1104 | </message> |
||
1105 | <message> |
||
14474 | cbradney | 1106 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="269"/> |
12918 | cbradney | 1107 | <source>getLayerBlendmode("layer") -> int |
1108 | |||
1109 | Returns the "layer" layer blendmode, |
||
1110 | |||
1111 | May raise NotFoundError if the layer can't be found. |
||
1112 | May raise ValueError if the layer name isn't acceptable. |
||
1113 | </source> |
||
1114 | <translation type="unfinished"></translation> |
||
1115 | </message> |
||
1116 | <message> |
||
14474 | cbradney | 1117 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="281"/> |
12918 | cbradney | 1118 | <source>getLayerTransparency("layer") -> float |
1119 | |||
1120 | Returns the "layer" layer transparency, |
||
1121 | |||
1122 | May raise NotFoundError if the layer can't be found. |
||
1123 | May raise ValueError if the layer name isn't acceptable. |
||
1124 | </source> |
||
1125 | <translation type="unfinished"></translation> |
||
1126 | </message> |
||
1127 | <message> |
||
14474 | cbradney | 1128 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="293"/> |
12918 | cbradney | 1129 | <source>deleteLayer("layer") |
1130 | |||
1131 | Deletes the layer with the name "layer". Nothing happens if the layer doesn't |
||
1132 | exists or if it's the only layer in the document. |
||
1133 | |||
1134 | May raise NotFoundError if the layer can't be found. |
||
1135 | May raise ValueError if the layer name isn't acceptable. |
||
1136 | </source> |
||
1137 | <translation type="unfinished"></translation> |
||
1138 | </message> |
||
1139 | <message> |
||
14474 | cbradney | 1140 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="306"/> |
12918 | cbradney | 1141 | <source>createLayer(layer) |
1142 | |||
1143 | Creates a new layer with the name "name". |
||
1144 | |||
1145 | May raise ValueError if the layer name isn't acceptable. |
||
1146 | </source> |
||
1147 | <translation type="unfinished"></translation> |
||
1148 | </message> |
||
1149 | <message> |
||
14474 | cbradney | 1150 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="317"/> |
12918 | cbradney | 1151 | <source>getGuiLanguage() -> string |
1152 | |||
1153 | Returns a string with the -lang value. |
||
1154 | </source> |
||
1155 | <translation type="unfinished"></translation> |
||
1156 | </message> |
||
1157 | <message> |
||
14474 | cbradney | 1158 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="326"/> |
12918 | cbradney | 1159 | <source>moveSelectionToFront() |
1160 | |||
1161 | Moves current selection to front. |
||
1162 | </source> |
||
1163 | <translation type="unfinished"></translation> |
||
1164 | </message> |
||
1165 | <message> |
||
14474 | cbradney | 1166 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="335"/> |
12918 | cbradney | 1167 | <source>moveSelectionToFront() |
1168 | |||
1169 | Moves current selection to back. |
||
1170 | </source> |
||
1171 | <translation type="unfinished"></translation> |
||
1172 | </message> |
||
1173 | <message> |
||
14474 | cbradney | 1174 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="17"/> |
12918 | cbradney | 1175 | <source>createRect(x, y, width, height, ["name"]) -> string |
1176 | |||
1177 | Creates a new rectangle on the current page and returns its name. The |
||
1178 | coordinates are given in the current measurement units of the document |
||
1179 | (see UNIT constants). "name" should be a unique identifier for the object |
||
1180 | because you need this name to reference that object in future. If "name" |
||
1181 | is not given Scribus will create one for you. |
||
1182 | |||
1183 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1184 | </source> |
||
1185 | <translation type="unfinished"></translation> |
||
1186 | </message> |
||
1187 | <message> |
||
14474 | cbradney | 1188 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="34"/> |
12918 | cbradney | 1189 | <source>createEllipse(x, y, width, height, ["name"]) -> string |
1190 | |||
1191 | Creates a new ellipse on the current page and returns its name. |
||
1192 | The coordinates are given in the current measurement units of the document |
||
1193 | (see UNIT constants). "name" should be a unique identifier for the object |
||
1194 | because you need this name for further referencing of that object. If "name" |
||
1195 | is not given Scribus will create one for you. |
||
1196 | |||
1197 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1198 | </source> |
||
1199 | <translation type="unfinished"></translation> |
||
1200 | </message> |
||
1201 | <message> |
||
14474 | cbradney | 1202 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="51"/> |
12918 | cbradney | 1203 | <source>createImage(x, y, width, height, ["name"]) -> string |
1204 | |||
1205 | Creates a new picture frame on the current page and returns its name. The |
||
1206 | coordinates are given in the current measurement units of the document. |
||
1207 | "name" should be a unique identifier for the object because you need this |
||
1208 | name for further access to that object. If "name" is not given Scribus will |
||
1209 | create one for you. |
||
1210 | |||
1211 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1212 | </source> |
||
1213 | <translation type="unfinished"></translation> |
||
1214 | </message> |
||
1215 | <message> |
||
14474 | cbradney | 1216 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="66"/> |
12918 | cbradney | 1217 | <source>createText(x, y, width, height, ["name"]) -> string |
1218 | |||
1219 | Creates a new text frame on the actual page and returns its name. |
||
1220 | The coordinates are given in the actual measurement unit of the document (see |
||
1221 | UNIT constants). "name" should be a unique identifier for the object because |
||
1222 | you need this name for further referencing of that object. If "name" is not |
||
1223 | given Scribus will create one for you. |
||
1224 | |||
1225 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1226 | </source> |
||
1227 | <translation type="unfinished"></translation> |
||
1228 | </message> |
||
1229 | <message> |
||
14474 | cbradney | 1230 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="81"/> |
12918 | cbradney | 1231 | <source>createLine(x1, y1, x2, y2, ["name"]) -> string |
1232 | |||
1233 | Creates a new line from the point(x1, y1) to the point(x2, y2) and returns |
||
1234 | its name. The coordinates are given in the current measurement unit of the |
||
1235 | document (see UNIT constants). "name" should be a unique identifier for the |
||
1236 | object because you need this name for further access to that object. If |
||
1237 | "name" is not given Scribus will create one for you. |
||
1238 | |||
1239 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1240 | </source> |
||
1241 | <translation type="unfinished"></translation> |
||
1242 | </message> |
||
1243 | <message> |
||
14474 | cbradney | 1244 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="96"/> |
12918 | cbradney | 1245 | <source>createPolyLine(list, ["name"]) -> string |
1246 | |||
1247 | Creates a new polyline and returns its name. The points for the polyline are |
||
1248 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
1249 | The coordinates are given in the current measurement units of the document (see |
||
1250 | UNIT constants). "name" should be a unique identifier for the object because |
||
1251 | you need this name for further access to that object. If "name" is not given |
||
1252 | Scribus will create one for you. |
||
1253 | |||
1254 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1255 | May raise ValueError if an insufficient number of points is passed or if |
||
1256 | the number of values passed don't group into points without leftovers. |
||
1257 | </source> |
||
1258 | <translation type="unfinished"></translation> |
||
1259 | </message> |
||
1260 | <message> |
||
14474 | cbradney | 1261 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="114"/> |
12918 | cbradney | 1262 | <source>createPolygon(list, ["name"]) -> string |
1263 | |||
1264 | Creates a new polygon and returns its name. The points for the polygon are |
||
1265 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
1266 | At least three points are required. There is no need to repeat the first point |
||
1267 | to close the polygon. The polygon is automatically closed by connecting the |
||
1268 | first and the last point. The coordinates are given in the current measurement |
||
1269 | units of the document (see UNIT constants). "name" should be a unique |
||
1270 | identifier for the object because you need this name for further access to that |
||
1271 | object. If "name" is not given Scribus will create one for you. |
||
1272 | |||
1273 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1274 | May raise ValueError if an insufficient number of points is passed or if |
||
1275 | the number of values passed don't group into points without leftovers. |
||
1276 | </source> |
||
1277 | <translation type="unfinished"></translation> |
||
1278 | </message> |
||
1279 | <message> |
||
14474 | cbradney | 1280 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="134"/> |
12918 | cbradney | 1281 | <source>createBezierLine(list, ["name"]) -> string |
1282 | |||
1283 | Creates a new bezier curve and returns its name. The points for the bezier |
||
1284 | curve are stored in the list "list" in the following order: |
||
1285 | [x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn] |
||
1286 | In the points list, x and y mean the x and y coordinates of the point and kx |
||
1287 | and ky meaning the control point for the curve. The coordinates are given in |
||
1288 | the current measurement units of the document (see UNIT constants). "name" |
||
1289 | should be a unique identifier for the object because you need this name for |
||
1290 | further access to that object. If "name" is not given Scribus will create one |
||
1291 | for you. |
||
1292 | |||
1293 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1294 | May raise ValueError if an insufficient number of points is passed or if |
||
1295 | the number of values passed don't group into points without leftovers. |
||
1296 | </source> |
||
1297 | <translation type="unfinished"></translation> |
||
1298 | </message> |
||
1299 | <message> |
||
14474 | cbradney | 1300 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="155"/> |
12918 | cbradney | 1301 | <source>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string |
1302 | |||
1303 | Creates a new pathText by merging the two objects "textbox" and |
||
1304 | "beziercurve" and returns its name. The coordinates are given in the current |
||
1305 | measurement unit of the document (see UNIT constants). "name" should be a |
||
1306 | unique identifier for the object because you need this name for further access |
||
1307 | to that object. If "name" is not given Scribus will create one for you. |
||
1308 | |||
1309 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1310 | May raise NotFoundError if one or both of the named base object don't exist. |
||
1311 | </source> |
||
1312 | <translation type="unfinished"></translation> |
||
1313 | </message> |
||
1314 | <message> |
||
14474 | cbradney | 1315 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="173"/> |
12918 | cbradney | 1316 | <source>deleteObject(["name"]) |
1317 | |||
1318 | Deletes the item with the name "name". If "name" is not given the currently |
||
1319 | selected item is deleted. |
||
1320 | </source> |
||
1321 | <translation type="unfinished"></translation> |
||
1322 | </message> |
||
1323 | <message> |
||
14474 | cbradney | 1324 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="184"/> |
12918 | cbradney | 1325 | <source>textFlowMode("name" [, state]) |
1326 | |||
1327 | Enables/disables "Text Flows Around Frame" feature for object "name". |
||
1328 | Called with parameters string name and optional int "state" (0 <= state <= 3). |
||
1329 | Setting "state" to 0 will disable text flow. |
||
1330 | Setting "state" to 1 will make text flow around object frame. |
||
1331 | Setting "state" to 2 will make text flow around bounding box. |
||
1332 | Setting "state" to 3 will make text flow around contour line. |
||
1333 | If "state" is not passed, text flow is toggled. |
||
1334 | </source> |
||
1335 | <translation type="unfinished"></translation> |
||
1336 | </message> |
||
1337 | <message> |
||
14474 | cbradney | 1338 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="206"/> |
12918 | cbradney | 1339 | <source>objectExists(["name"]) -> bool |
1340 | |||
1341 | Test if an object with specified name really exists in the document. |
||
1342 | The optional parameter is the object name. When no object name is given, |
||
1343 | returns True if there is something selected. |
||
1344 | </source> |
||
1345 | <translation type="unfinished"></translation> |
||
1346 | </message> |
||
1347 | <message> |
||
14474 | cbradney | 1348 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="223"/> |
12918 | cbradney | 1349 | <source>setStyle("style" [, "name"]) |
1350 | |||
14474 | cbradney | 1351 | Apply the named "style" to the object named "name". If object name is |
1352 | given, style is applied to the current text selection in object "name". |
||
1353 | If no object name is given, style is applied on selected object. |
||
12918 | cbradney | 1354 | </source> |
1355 | <translation type="unfinished"></translation> |
||
1356 | </message> |
||
1357 | <message> |
||
14474 | cbradney | 1358 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="238"/> |
12918 | cbradney | 1359 | <source>getAllStyles() -> list |
1360 | |||
1361 | Return a list of the names of all paragraph styles in the current document. |
||
1362 | </source> |
||
1363 | <translation type="unfinished"></translation> |
||
1364 | </message> |
||
1365 | <message> |
||
14474 | cbradney | 1366 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="250"/> |
12918 | cbradney | 1367 | <source>duplicateObject(["name"]) -> string |
1368 | |||
1369 | creates a Duplicate of the selected Object (or Selection Group). |
||
1370 | </source> |
||
1371 | <translation type="unfinished"></translation> |
||
1372 | </message> |
||
1373 | <message> |
||
14474 | cbradney | 1374 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="17"/> |
12918 | cbradney | 1375 | <source>newPage(where [,"masterpage"]) |
1376 | |||
1377 | Creates a new page. If "where" is -1 the new Page is appended to the |
||
1378 | document, otherwise the new page is inserted before "where". Page numbers are |
||
1379 | counted from 1 upwards, no matter what the displayed first page number of your |
||
1380 | document is. The optional parameter "masterpage" specifies the name of the |
||
1381 | master page for the new page. |
||
1382 | |||
1383 | May raise IndexError if the page number is out of range |
||
1384 | </source> |
||
1385 | <translation type="unfinished"></translation> |
||
1386 | </message> |
||
1387 | <message> |
||
14474 | cbradney | 1388 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="32"/> |
12918 | cbradney | 1389 | <source>currentPage() -> integer |
1390 | |||
1391 | Returns the number of the current working page. Page numbers are counted from 1 |
||
1392 | upwards, no matter what the displayed first page number of your document is. |
||
1393 | </source> |
||
1394 | <translation type="unfinished"></translation> |
||
1395 | </message> |
||
1396 | <message> |
||
14474 | cbradney | 1397 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="42"/> |
12918 | cbradney | 1398 | <source>redrawAll() |
1399 | |||
1400 | Redraws all pages. |
||
1401 | </source> |
||
1402 | <translation type="unfinished"></translation> |
||
1403 | </message> |
||
1404 | <message> |
||
14474 | cbradney | 1405 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="51"/> |
12918 | cbradney | 1406 | <source>getPageType() -> integer |
1407 | |||
1408 | Returns the type of the Page, 0 means left Page, 1 is a middle Page and 2 is a right Page |
||
1409 | </source> |
||
1410 | <translation type="unfinished"></translation> |
||
1411 | </message> |
||
1412 | <message> |
||
14474 | cbradney | 1413 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="60"/> |
12918 | cbradney | 1414 | <source>savePageAsEPS("name") |
1415 | |||
1416 | Saves the current page as an EPS to the file "name". |
||
1417 | |||
1418 | May raise ScribusError if the save failed. |
||
1419 | </source> |
||
1420 | <translation type="unfinished"></translation> |
||
1421 | </message> |
||
1422 | <message> |
||
14474 | cbradney | 1423 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="71"/> |
12918 | cbradney | 1424 | <source>deletePage(nr) |
1425 | |||
1426 | Deletes the given page. Does nothing if the document contains only one page. |
||
1427 | Page numbers are counted from 1 upwards, no matter what the displayed first |
||
1428 | page number is. |
||
1429 | |||
1430 | May raise IndexError if the page number is out of range |
||
1431 | </source> |
||
1432 | <translation type="unfinished"></translation> |
||
1433 | </message> |
||
1434 | <message> |
||
14474 | cbradney | 1435 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="84"/> |
12918 | cbradney | 1436 | <source>gotoPage(nr) |
1437 | |||
1438 | Moves to the page "nr" (that is, makes the current page "nr"). Note that |
||
1439 | gotoPage doesn't (currently) change the page the user's view is displaying, it |
||
1440 | just sets the page that script commands will operates on. |
||
1441 | |||
1442 | May raise IndexError if the page number is out of range. |
||
1443 | </source> |
||
1444 | <translation type="unfinished"></translation> |
||
1445 | </message> |
||
1446 | <message> |
||
14474 | cbradney | 1447 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="97"/> |
12918 | cbradney | 1448 | <source>pageCount() -> integer |
1449 | |||
1450 | Returns the number of pages in the document. |
||
1451 | </source> |
||
1452 | <translation type="unfinished"></translation> |
||
1453 | </message> |
||
1454 | <message> |
||
14474 | cbradney | 1455 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="106"/> |
12918 | cbradney | 1456 | <source>getHGuides() -> list |
1457 | |||
1458 | Returns a list containing positions of the horizontal guides. Values are in the |
||
1459 | document's current units - see UNIT_<type> constants. |
||
1460 | </source> |
||
1461 | <translation type="unfinished"></translation> |
||
1462 | </message> |
||
1463 | <message> |
||
14474 | cbradney | 1464 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="116"/> |
12918 | cbradney | 1465 | <source>setHGuides(list) |
1466 | |||
1467 | Sets horizontal guides. Input parameter must be a list of guide positions |
||
1468 | measured in the current document units - see UNIT_<type> constants. |
||
1469 | |||
1470 | Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost |
||
1471 | setHGuides([90,250]) # replace current guides entirely |
||
1472 | </source> |
||
1473 | <translation type="unfinished"></translation> |
||
1474 | </message> |
||
1475 | <message> |
||
14474 | cbradney | 1476 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="129"/> |
12918 | cbradney | 1477 | <source>getVGuides() |
1478 | |||
1479 | See getHGuides. |
||
1480 | </source> |
||
1481 | <translation type="unfinished"></translation> |
||
1482 | </message> |
||
1483 | <message> |
||
14474 | cbradney | 1484 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="138"/> |
12918 | cbradney | 1485 | <source>setVGuides() |
1486 | |||
1487 | See setHGuides. |
||
1488 | </source> |
||
1489 | <translation type="unfinished"></translation> |
||
1490 | </message> |
||
1491 | <message> |
||
14474 | cbradney | 1492 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="147"/> |
12918 | cbradney | 1493 | <source>getPageSize() -> tuple |
1494 | |||
1495 | Returns a tuple with page dimensions measured in the document's current units. |
||
1496 | See UNIT_<type> constants and getPageMargins() |
||
1497 | </source> |
||
1498 | <translation type="unfinished"></translation> |
||
1499 | </message> |
||
1500 | <message> |
||
14474 | cbradney | 1501 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="161"/> |
1502 | <source>getPageNSize() -> tuple |
||
1503 | |||
1504 | Returns a tuple with a particular page's size measured in the document's current units. |
||
1505 | See UNIT_<type> constants and getPageMargins() |
||
1506 | </source> |
||
1507 | <translation type="unfinished"></translation> |
||
1508 | </message> |
||
1509 | <message> |
||
1510 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="174"/> |
||
1511 | <source>getPageNMargins() -> tuple |
||
1512 | |||
1513 | Returns a tuple with a particular page's margins measured in the document's current units. |
||
1514 | See UNIT_<type> constants and getPageMargins() |
||
1515 | </source> |
||
1516 | <translation type="unfinished"></translation> |
||
1517 | </message> |
||
1518 | <message> |
||
1519 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="187"/> |
||
12918 | cbradney | 1520 | <source>getPageItems() -> list |
1521 | |||
1522 | Returns a list of tuples with items on the current page. The tuple is: |
||
1523 | (name, objectType, order) E.g. [('Text1', 4, 0), ('Image1', 2, 1)] |
||
1524 | means that object named 'Text1' is a text frame (type 4) and is the first at |
||
1525 | the page... |
||
1526 | </source> |
||
1527 | <translation type="unfinished"></translation> |
||
1528 | </message> |
||
1529 | <message> |
||
14474 | cbradney | 1530 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="203"/> |
12918 | cbradney | 1531 | <source>getPageMargins() |
1532 | |||
1533 | Returns the page margins as a (top, left, right, bottom) tuple in the current |
||
1534 | units. See UNIT_<type> constants and getPageSize(). |
||
1535 | </source> |
||
1536 | <translation type="unfinished"></translation> |
||
1537 | </message> |
||
1538 | <message> |
||
14474 | cbradney | 1539 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="216"/> |
12918 | cbradney | 1540 | <source>importPage("fromDoc", (pageList), [create, imortwhere, importwherePage]) |
1541 | |||
1542 | Imports a set of pages (given as a tuple) from an existing document (the file name must be given). This functions maps the "Page->Import" dropdown menu function. |
||
1543 | fromDoc: string; the filename of the document to import pages from |
||
1544 | pageList: tuple with page numbers of pages to import |
||
1545 | create: number; 0 to replace existing pages, 1 (default) to insert new pages |
||
1546 | importWhere: number; the page number (of the current document) at which import the pages |
||
1547 | importWherePage: number; used if create==1; 0 to create pages before selected page; 1 to create pages after selected page; 2 (default) to create pages at the end of the document |
||
1548 | </source> |
||
1549 | <translation type="unfinished"></translation> |
||
1550 | </message> |
||
1551 | <message> |
||
14474 | cbradney | 1552 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="17"/> |
12918 | cbradney | 1553 | <source>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"]) |
1554 | |||
1555 | Sets the gradient fill of the object "name" to type. Color descriptions are |
||
1556 | the same as for setFillColor() and setFillShade(). See the constants for |
||
1557 | available types (FILL_<type>). |
||
1558 | </source> |
||
1559 | <translation type="unfinished"></translation> |
||
1560 | </message> |
||
1561 | <message> |
||
14474 | cbradney | 1562 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="28"/> |
1563 | <source>setGradientStop("color", shade, opacity, ramppoint, ["name"]) |
||
1564 | |||
1565 | Set or add a gradient stop to the gradient fill of the object "name" at position ramppoint. |
||
1566 | Color descriptions are the same as for setFillColor() and setFillShade(). setGradientFill() |
||
1567 | must have been called previously for the gradient fill to be visible. |
||
1568 | </source> |
||
1569 | <translation type="unfinished"></translation> |
||
1570 | </message> |
||
1571 | <message> |
||
1572 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="39"/> |
||
12918 | cbradney | 1573 | <source>setFillColor("color", ["name"]) |
1574 | |||
1575 | Sets the fill color of the object "name" to the color "color". "color" |
||
1576 | is the name of one of the defined colors. If "name" is not given the |
||
1577 | currently selected item is used. |
||
1578 | </source> |
||
1579 | <translation type="unfinished"></translation> |
||
1580 | </message> |
||
1581 | <message> |
||
14474 | cbradney | 1582 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="50"/> |
12918 | cbradney | 1583 | <source>setFillTransparency(transparency, ["name"]) |
1584 | |||
1585 | Sets the fill transparency of the object "name" to transparency |
||
1586 | If "name" is not given the currently selected item is used. |
||
1587 | </source> |
||
1588 | <translation type="unfinished"></translation> |
||
1589 | </message> |
||
1590 | <message> |
||
14474 | cbradney | 1591 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="60"/> |
12918 | cbradney | 1592 | <source>setFillBlendmode(blendmode, ["name"]) |
1593 | |||
1594 | Sets the fill blendmode of the object "name" to blendmode |
||
1595 | If "name" is not given the currently selected item is used. |
||
1596 | </source> |
||
1597 | <translation type="unfinished"></translation> |
||
1598 | </message> |
||
1599 | <message> |
||
14474 | cbradney | 1600 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="70"/> |
12918 | cbradney | 1601 | <source>setLineColor("color", ["name"]) |
1602 | |||
1603 | Sets the line color of the object "name" to the color "color". If "name" |
||
1604 | is not given the currently selected item is used. |
||
1605 | </source> |
||
1606 | <translation type="unfinished"></translation> |
||
1607 | </message> |
||
1608 | <message> |
||
14474 | cbradney | 1609 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="80"/> |
12918 | cbradney | 1610 | <source>setLineTransparency(transparency, ["name"]) |
1611 | |||
1612 | Sets the line transparency of the object "name" to transparency |
||
1613 | If "name" is not given the currently selected item is used. |
||
1614 | </source> |
||
1615 | <translation type="unfinished"></translation> |
||
1616 | </message> |
||
1617 | <message> |
||
14474 | cbradney | 1618 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="90"/> |
12918 | cbradney | 1619 | <source>setLineBlendmode(blendmode, ["name"]) |
1620 | |||
1621 | Sets the line blendmode of the object "name" to blendmode |
||
1622 | If "name" is not given the currently selected item is used. |
||
1623 | </source> |
||
1624 | <translation type="unfinished"></translation> |
||
1625 | </message> |
||
1626 | <message> |
||
14474 | cbradney | 1627 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="100"/> |
12918 | cbradney | 1628 | <source>setLineWidth(width, ["name"]) |
1629 | |||
1630 | Sets line width of the object "name" to "width". "width" must be in the |
||
1631 | range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not |
||
1632 | given the currently selected item is used. |
||
1633 | |||
1634 | May raise ValueError if the line width is out of bounds. |
||
1635 | </source> |
||
1636 | <translation type="unfinished"></translation> |
||
1637 | </message> |
||
1638 | <message> |
||
14474 | cbradney | 1639 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="113"/> |
12918 | cbradney | 1640 | <source>setLineShade(shade, ["name"]) |
1641 | |||
1642 | Sets the shading of the line color of the object "name" to "shade". |
||
1643 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
1644 | (full color intensity). If "name" is not given the currently selected item |
||
1645 | is used. |
||
1646 | |||
1647 | May raise ValueError if the line shade is out of bounds. |
||
1648 | </source> |
||
1649 | <translation type="unfinished"></translation> |
||
1650 | </message> |
||
1651 | <message> |
||
14474 | cbradney | 1652 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="127"/> |
12918 | cbradney | 1653 | <source>setLineJoin(join, ["name"]) |
1654 | |||
1655 | Sets the line join style of the object "name" to the style "join". |
||
1656 | If "name" is not given the currently selected item is used. There are |
||
1657 | predefined constants for join - JOIN_<type>. |
||
1658 | </source> |
||
1659 | <translation type="unfinished"></translation> |
||
1660 | </message> |
||
1661 | <message> |
||
14474 | cbradney | 1662 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="138"/> |
12918 | cbradney | 1663 | <source>setLineEnd(endtype, ["name"]) |
1664 | |||
1665 | Sets the line cap style of the object "name" to the style "cap". |
||
1666 | If "name" is not given the currently selected item is used. There are |
||
1667 | predefined constants for "cap" - CAP_<type>. |
||
1668 | </source> |
||
1669 | <translation type="unfinished"></translation> |
||
1670 | </message> |
||
1671 | <message> |
||
14474 | cbradney | 1672 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="149"/> |
12918 | cbradney | 1673 | <source>setLineStyle(style, ["name"]) |
1674 | |||
1675 | Sets the line style of the object "name" to the style "style". If "name" |
||
1676 | is not given the currently selected item is used. There are predefined |
||
1677 | constants for "style" - LINE_<style>. |
||
1678 | </source> |
||
1679 | <translation type="unfinished"></translation> |
||
1680 | </message> |
||
1681 | <message> |
||
14474 | cbradney | 1682 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="160"/> |
12918 | cbradney | 1683 | <source>setFillShade(shade, ["name"]) |
1684 | |||
1685 | Sets the shading of the fill color of the object "name" to "shade". |
||
1686 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
1687 | (full Color intensity). If "name" is not given the currently selected |
||
1688 | Item is used. |
||
1689 | |||
1690 | May raise ValueError if the fill shade is out of bounds. |
||
1691 | </source> |
||
1692 | <translation type="unfinished"></translation> |
||
1693 | </message> |
||
1694 | <message> |
||
14474 | cbradney | 1695 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="174"/> |
12918 | cbradney | 1696 | <source>setCornerRadius(radius, ["name"]) |
1697 | |||
1698 | Sets the corner radius of the object "name". The radius is expressed |
||
1699 | in points. If "name" is not given the currently selected item is used. |
||
1700 | |||
1701 | May raise ValueError if the corner radius is negative. |
||
1702 | </source> |
||
1703 | <translation type="unfinished"></translation> |
||
1704 | </message> |
||
1705 | <message> |
||
14474 | cbradney | 1706 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="186"/> |
12918 | cbradney | 1707 | <source>setMultiLine("namedStyle", ["name"]) |
1708 | |||
1709 | Sets the line style of the object "name" to the named style "namedStyle". |
||
1710 | If "name" is not given the currently selected item is used. |
||
1711 | |||
1712 | May raise NotFoundError if the line style doesn't exist. |
||
1713 | </source> |
||
1714 | <translation type="unfinished"></translation> |
||
1715 | </message> |
||
1716 | <message> |
||
14474 | cbradney | 1717 | <location filename="../../../scribus/plugins/scriptplugin/cmdstyle.h" line="22"/> |
12918 | cbradney | 1718 | <source>createParagraphStyle(...) |
1719 | |||
1720 | Creates a paragraph style. This function takes the following keyword parameters: |
||
1721 | |||
1722 | "name" [required] -> specifies the name of the paragraphstyle to create |
||
1723 | |||
1724 | linespacingmode [optional] -> specifies the linespacing mode; possible modes are: |
||
1725 | |||
1726 | fixed linespacing: 0 |
||
1727 | |||
1728 | automatic linespacing: 1 |
||
1729 | |||
1730 | baseline grid linespacing: 2 |
||
1731 | |||
1732 | linespacing [optional] -> specifies the linespacing if using fixed linespacing |
||
1733 | |||
1734 | alignment [optional] -> specifies the alignment of the paragraph |
||
1735 | |||
1736 | -> left: 0 |
||
1737 | |||
1738 | -> center: 1 |
||
1739 | |||
1740 | -> right: 2 |
||
1741 | |||
1742 | -> justify: 3 |
||
1743 | |||
1744 | -> extend: 4 |
||
1745 | |||
1746 | leftmargin [optional], rightmargin [optional] -> specify the margin |
||
1747 | |||
1748 | gapbefore [optional], gapafter [optional] -> specify the gaps to the heading and following paragraphs |
||
1749 | |||
1750 | firstindent [optional] -> the indent of the first line |
||
1751 | |||
1752 | hasdropcap [optional] -> specifies if there are caps (1 = yes, 0 = no) |
||
1753 | |||
1754 | dropcaplines [optional] -> height (in lines) of the caps if used |
||
1755 | |||
1756 | dropcapoffset [optional] -> offset of the caps if used |
||
1757 | |||
1758 | "charstyle" [optional] -> char style to use |
||
1759 | |||
1760 | </source> |
||
1761 | <translation type="unfinished"></translation> |
||
1762 | </message> |
||
1763 | <message> |
||
14474 | cbradney | 1764 | <location filename="../../../scribus/plugins/scriptplugin/cmdstyle.h" line="52"/> |
12918 | cbradney | 1765 | <source>createCharStyle(...) |
1766 | |||
1767 | Creates a character style. This function takes the following keyword parameters: |
||
1768 | |||
1769 | "name" [required] -> name of the char style to create |
||
1770 | |||
1771 | "font" [optional] -> name of the font to use |
||
1772 | |||
1773 | fontsize [optional] -> font size to set (double) |
||
1774 | |||
1775 | "features" [optional] -> nearer typographic details can be defined by a string that might contain the following phrases comma-seperated (without spaces!): |
||
1776 | |||
1777 | -> inherit |
||
1778 | |||
1779 | -> bold |
||
1780 | |||
1781 | -> italic |
||
1782 | |||
1783 | -> underline |
||
1784 | |||
1785 | -> underlinewords |
||
1786 | |||
1787 | -> strike |
||
1788 | |||
1789 | -> superscript |
||
1790 | |||
1791 | -> subscript |
||
1792 | |||
1793 | -> outline |
||
1794 | |||
1795 | -> shadowed |
||
1796 | |||
1797 | -> allcaps |
||
1798 | |||
1799 | -> smallcaps |
||
1800 | |||
1801 | "fillcolor" [optional], "fillshade" [optional] -> specify fill options |
||
1802 | |||
1803 | "strokecolor" [optional], "strokeshade" [optional] -> specify stroke options |
||
1804 | |||
1805 | baselineoffset [optional] -> offset of the baseline |
||
1806 | |||
1807 | shadowxoffset [optional], shadowyoffset [optional] -> offset of the shadow if used |
||
1808 | |||
1809 | outlinewidth [optional] -> width of the outline if used |
||
1810 | |||
1811 | underlineoffset [optional], underlinewidth [optional] -> underline options if used |
||
1812 | |||
1813 | strikethruoffset [optional], strikethruwidth [optional] -> strikethru options if used |
||
1814 | |||
1815 | scaleh [optional], scalev [optional] -> scale of the chars |
||
1816 | |||
1817 | tracking [optional] -> tracking of the text |
||
1818 | |||
1819 | "language" [optional] -> language code |
||
1820 | |||
1821 | </source> |
||
1822 | <translation type="unfinished"></translation> |
||
1823 | </message> |
||
1824 | <message> |
||
14474 | cbradney | 1825 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="17"/> |
12918 | cbradney | 1826 | <source>getFontSize(["name"]) -> float |
1827 | |||
1828 | Returns the font size in points for the text frame "name". If this text |
||
1829 | frame has some text selected the value assigned to the first character of |
||
1830 | the selection is returned. |
||
1831 | If "name" is not given the currently selected item is used. |
||
1832 | </source> |
||
1833 | <translation type="unfinished"></translation> |
||
1834 | </message> |
||
1835 | <message> |
||
14474 | cbradney | 1836 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="29"/> |
12918 | cbradney | 1837 | <source>getFont(["name"]) -> string |
1838 | |||
1839 | Returns the font name for the text frame "name". If this text frame |
||
1840 | has some text selected the value assigned to the first character |
||
1841 | of the selection is returned. If "name" is not given the currently |
||
1842 | selected item is used. |
||
1843 | </source> |
||
1844 | <translation type="unfinished"></translation> |
||
1845 | </message> |
||
1846 | <message> |
||
14474 | cbradney | 1847 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="41"/> |
12918 | cbradney | 1848 | <source>getTextLength(["name"]) -> integer |
1849 | |||
1850 | Returns the length of the text in the text frame "name". |
||
1851 | If "name" is not given the currently selected item is used. |
||
1852 | </source> |
||
1853 | <translation type="unfinished"></translation> |
||
1854 | </message> |
||
1855 | <message> |
||
14474 | cbradney | 1856 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="51"/> |
12918 | cbradney | 1857 | <source>getTextLines(["name"]) -> integer |
1858 | |||
1859 | Returns the number of lines of the text in the text frame "name". |
||
1860 | If "name" is not given the currently selected item is used. |
||
1861 | </source> |
||
1862 | <translation type="unfinished"></translation> |
||
1863 | </message> |
||
1864 | <message> |
||
14474 | cbradney | 1865 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="61"/> |
12918 | cbradney | 1866 | <source>getText(["name"]) -> string |
1867 | |||
1868 | Returns the text of the text frame "name". If this text frame has some text |
||
1869 | selected, the selected text is returned. All text in the frame, not just |
||
1870 | currently visible text, is returned. If "name" is not given the currently |
||
1871 | selected item is used. |
||
1872 | </source> |
||
1873 | <translation type="unfinished"></translation> |
||
1874 | </message> |
||
1875 | <message> |
||
14474 | cbradney | 1876 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="73"/> |
12918 | cbradney | 1877 | <source>getAllText(["name"]) -> string |
1878 | |||
1879 | Returns the text of the text frame "name" and of all text frames which are |
||
1880 | linked with this frame. If this textframe has some text selected, the selected |
||
1881 | text is returned. If "name" is not given the currently selected item is |
||
1882 | used. |
||
1883 | </source> |
||
1884 | <translation type="unfinished"></translation> |
||
1885 | </message> |
||
1886 | <message> |
||
14474 | cbradney | 1887 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="85"/> |
12918 | cbradney | 1888 | <source>getLineSpacing(["name"]) -> float |
1889 | |||
1890 | Returns the line spacing ("leading") of the text frame "name" expressed in |
||
1891 | points. If "name" is not given the currently selected item is used. |
||
1892 | </source> |
||
1893 | <translation type="unfinished"></translation> |
||
1894 | </message> |
||
1895 | <message> |
||
14474 | cbradney | 1896 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="95"/> |
12918 | cbradney | 1897 | <source>getTextDistances(["name"]) -> tuple |
1898 | |||
1899 | Returns the text distances of the text frame "name" expressed in points. The |
||
1900 | distances are returned as a tuple like (left, right, top, bottom). If "name" |
||
1901 | is not given the currently selected item is used. |
||
1902 | </source> |
||
1903 | <translation type="unfinished"></translation> |
||
1904 | </message> |
||
1905 | <message> |
||
14474 | cbradney | 1906 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="106"/> |
12918 | cbradney | 1907 | <source>getColumnGap(["name"]) -> float |
1908 | |||
1909 | Returns the column gap size of the text frame "name" expressed in points. If |
||
1910 | "name" is not given the currently selected item is used. |
||
1911 | </source> |
||
1912 | <translation type="unfinished"></translation> |
||
1913 | </message> |
||
1914 | <message> |
||
14474 | cbradney | 1915 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="116"/> |
12918 | cbradney | 1916 | <source>getColumns(["name"]) -> integer |
1917 | |||
1918 | Gets the number of columns of the text frame "name". If "name" is not |
||
1919 | given the currently selected item is used. |
||
1920 | </source> |
||
1921 | <translation type="unfinished"></translation> |
||
1922 | </message> |
||
1923 | <message> |
||
14474 | cbradney | 1924 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="126"/> |
12918 | cbradney | 1925 | <source>setText("text", ["name"]) |
1926 | |||
1927 | Sets the text of the text frame "name" to the text of the string "text". |
||
1928 | Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ |
||
1929 | for more details. If "name" is not given the currently selected item is |
||
1930 | used. |
||
1931 | </source> |
||
1932 | <translation type="unfinished"></translation> |
||
1933 | </message> |
||
1934 | <message> |
||
14474 | cbradney | 1935 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="138"/> |
12918 | cbradney | 1936 | <source>insertText("text", pos, ["name"]) |
1937 | |||
1938 | Inserts the text "text" at the position "pos" into the text frame "name". |
||
1939 | Text must be UTF encoded (see setText() as reference) The first character has an |
||
1940 | index of 0. Inserting text at position -1 appends it to the frame. If "name" is |
||
1941 | not given the currently selected Item is used. |
||
1942 | |||
1943 | May throw IndexError for an insertion out of bounds. |
||
1944 | </source> |
||
1945 | <translation type="unfinished"></translation> |
||
1946 | </message> |
||
1947 | <message> |
||
14474 | cbradney | 1948 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="152"/> |
12918 | cbradney | 1949 | <source>setFont("font", ["name"]) |
1950 | |||
1951 | Sets the font of the text frame "name" to "font". If there is some text |
||
1952 | selected only the selected text is changed. If "name" is not given the |
||
1953 | currently selected item is used. |
||
1954 | |||
1955 | May throw ValueError if the font cannot be found. |
||
1956 | </source> |
||
1957 | <translation type="unfinished"></translation> |
||
1958 | </message> |
||
1959 | <message> |
||
14474 | cbradney | 1960 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="165"/> |
12918 | cbradney | 1961 | <source>setFontSize(size, ["name"]) |
1962 | |||
1963 | Sets the font size of the text frame "name" to "size". "size" is treated |
||
1964 | as a value in points. If there is some text selected only the selected text is |
||
1965 | changed. "size" must be in the range 1 to 512. If "name" is not given the |
||
1966 | currently selected item is used. |
||
1967 | |||
1968 | May throw ValueError for a font size that's out of bounds. |
||
1969 | </source> |
||
1970 | <translation type="unfinished"></translation> |
||
1971 | </message> |
||
1972 | <message> |
||
14474 | cbradney | 1973 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="179"/> |
12918 | cbradney | 1974 | <source>setLineSpacing(size, ["name"]) |
1975 | |||
1976 | Sets the line spacing ("leading") of the text frame "name" to "size". |
||
1977 | "size" is a value in points. If "name" is not given the currently selected |
||
1978 | item is used. |
||
1979 | |||
1980 | May throw ValueError if the line spacing is out of bounds. |
||
1981 | </source> |
||
1982 | <translation type="unfinished"></translation> |
||
1983 | </message> |
||
1984 | <message> |
||
14474 | cbradney | 1985 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="192"/> |
1986 | <source>setLineSpacingMode(mode, ["name"]) |
||
1987 | |||
1988 | Sets the line spacing mode of the text frame "name" to "mode". |
||
1989 | If "name" is not given the currently selected |
||
1990 | item is used. |
||
1991 | Mode values are the same as in createParagraphStyle. |
||
1992 | |||
1993 | May throw ValueError if the mode is out of bounds. |
||
1994 | </source> |
||
1995 | <translation type="unfinished"></translation> |
||
1996 | </message> |
||
1997 | <message> |
||
1998 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="206"/> |
||
12918 | cbradney | 1999 | <source>setTextDistances(left, right, top, bottom, ["name"]) |
2000 | |||
2001 | Sets the text distances of the text frame "name" to the values "left" |
||
2002 | "right", "top" and "bottom". If "name" is not given the currently |
||
2003 | selected item is used. |
||
2004 | |||
2005 | May throw ValueError if any of the distances are out of bounds (must be positive). |
||
2006 | </source> |
||
2007 | <translation type="unfinished"></translation> |
||
2008 | </message> |
||
2009 | <message> |
||
14474 | cbradney | 2010 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="219"/> |
12918 | cbradney | 2011 | <source>setColumnGap(size, ["name"]) |
2012 | |||
2013 | Sets the column gap of the text frame "name" to the value "size". If |
||
2014 | "name" is not given the currently selected item is used. |
||
2015 | |||
2016 | May throw ValueError if the column gap is out of bounds (must be positive). |
||
2017 | </source> |
||
2018 | <translation type="unfinished"></translation> |
||
2019 | </message> |
||
2020 | <message> |
||
14474 | cbradney | 2021 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="231"/> |
12918 | cbradney | 2022 | <source>setColumns(nr, ["name"]) |
2023 | |||
2024 | Sets the number of columns of the text frame "name" to the integer "nr". |
||
2025 | If "name" is not given the currently selected item is used. |
||
2026 | |||
2027 | May throw ValueError if number of columns is not at least one. |
||
2028 | </source> |
||
2029 | <translation type="unfinished"></translation> |
||
2030 | </message> |
||
2031 | <message> |
||
14474 | cbradney | 2032 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="243"/> |
12918 | cbradney | 2033 | <source>setTextAlignment(align, ["name"]) |
2034 | |||
2035 | Sets the text alignment of the text frame "name" to the specified alignment. |
||
2036 | If "name" is not given the currently selected item is used. "align" should |
||
2037 | be one of the ALIGN_ constants defined in this module - see dir(scribus). |
||
2038 | |||
2039 | May throw ValueError for an invalid alignment constant. |
||
2040 | </source> |
||
2041 | <translation type="unfinished"></translation> |
||
2042 | </message> |
||
2043 | <message> |
||
14474 | cbradney | 2044 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="256"/> |
12918 | cbradney | 2045 | <source>selectText(start, count, ["name"]) |
2046 | |||
2047 | Selects "count" characters of text in the text frame "name" starting from the |
||
2048 | character "start". Character counting starts at 0. If "count" is zero, any |
||
2049 | text selection will be cleared. If "name" is not given the currently |
||
2050 | selected item is used. |
||
2051 | |||
2052 | May throw IndexError if the selection is outside the bounds of the text. |
||
2053 | </source> |
||
2054 | <translation type="unfinished"></translation> |
||
2055 | </message> |
||
2056 | <message> |
||
14474 | cbradney | 2057 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="270"/> |
12918 | cbradney | 2058 | <source>deleteText(["name"]) |
2059 | |||
2060 | Deletes any text in the text frame "name". If there is some text selected, |
||
2061 | only the selected text will be deleted. If "name" is not given the currently |
||
2062 | selected item is used. |
||
2063 | </source> |
||
2064 | <translation type="unfinished"></translation> |
||
2065 | </message> |
||
2066 | <message> |
||
14474 | cbradney | 2067 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="281"/> |
12918 | cbradney | 2068 | <source>setTextColor("color", ["name"]) |
2069 | |||
2070 | Sets the text color of the text frame "name" to the color "color". If there |
||
2071 | is some text selected only the selected text is changed. If "name" is not |
||
2072 | given the currently selected item is used. |
||
2073 | </source> |
||
2074 | <translation type="unfinished"></translation> |
||
2075 | </message> |
||
2076 | <message> |
||
14474 | cbradney | 2077 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="292"/> |
12918 | cbradney | 2078 | <source>setTextStroke("color", ["name"]) |
2079 | |||
2080 | Set "color" of the text stroke. If "name" is not given the currently |
||
2081 | selected item is used. |
||
2082 | </source> |
||
2083 | <translation type="unfinished"></translation> |
||
2084 | </message> |
||
2085 | <message> |
||
14474 | cbradney | 2086 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="302"/> |
2087 | <source>setTextScalingV(scale, ["name"]) |
||
2088 | |||
2089 | Sets the vertical character scaling of the object "name" to "scale" in percent. |
||
2090 | If "name" is not given the currently selected item is used. |
||
2091 | </source> |
||
2092 | <translation type="unfinished"></translation> |
||
2093 | </message> |
||
2094 | <message> |
||
2095 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="312"/> |
||
2096 | <source>setTextScalingH(scale, ["name"]) |
||
2097 | |||
2098 | Sets the horizontal character scaling of the object "name" to "scale" in percent. |
||
2099 | If "name" is not given the currently selected item is used. |
||
2100 | </source> |
||
2101 | <translation type="unfinished"></translation> |
||
2102 | </message> |
||
2103 | <message> |
||
2104 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="322"/> |
||
12918 | cbradney | 2105 | <source>setTextShade(shade, ["name"]) |
2106 | |||
2107 | Sets the shading of the text color of the object "name" to "shade". If |
||
2108 | there is some text selected only the selected text is changed. "shade" must |
||
2109 | be an integer value in the range from 0 (lightest) to 100 (full color |
||
2110 | intensity). If "name" is not given the currently selected item is |
||
2111 | used. |
||
2112 | </source> |
||
2113 | <translation type="unfinished"></translation> |
||
2114 | </message> |
||
2115 | <message> |
||
14474 | cbradney | 2116 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="335"/> |
12918 | cbradney | 2117 | <source>linkTextFrames("fromname", "toname") |
2118 | |||
2119 | Link two text frames. The frame named "fromname" is linked to the |
||
2120 | frame named "toname". The target frame must be an empty text frame |
||
2121 | and must not link to or be linked from any other frames already. |
||
2122 | |||
2123 | May throw ScribusException if linking rules are violated. |
||
2124 | </source> |
||
2125 | <translation type="unfinished"></translation> |
||
2126 | </message> |
||
2127 | <message> |
||
14474 | cbradney | 2128 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="352"/> |
12918 | cbradney | 2129 | <source>unlinkTextFrames("name") |
2130 | |||
2131 | Remove the specified (named) object from the text frame flow/linkage. If the |
||
2132 | frame was in the middle of a chain, the previous and next frames will be |
||
2133 | connected, eg 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)' |
||
2134 | |||
2135 | May throw ScribusException if linking rules are violated. |
||
2136 | </source> |
||
2137 | <translation type="unfinished"></translation> |
||
2138 | </message> |
||
2139 | <message> |
||
14474 | cbradney | 2140 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="369"/> |
12918 | cbradney | 2141 | <source>traceText(["name"]) |
2142 | |||
2143 | Convert the text frame "name" to outlines. If "name" is not given the |
||
2144 | currently selected item is used.</source> |
||
2145 | <translation type="unfinished"></translation> |
||
2146 | </message> |
||
2147 | <message> |
||
14474 | cbradney | 2148 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="380"/> |
12918 | cbradney | 2149 | <source>textOverflows(["name", nolinks]) -> integer |
2150 | |||
2151 | Returns the actual number of overflowing characters in text frame "name". |
||
2152 | If is nolinks set to non zero value it takes only one frame - it doesn't |
||
2153 | use text frame linking. Without this parameter it search all linking chain. |
||
2154 | |||
2155 | May raise WrongFrameTypeError if the target frame is not an text frame |
||
2156 | </source> |
||
2157 | <translation type="unfinished"></translation> |
||
2158 | </message> |
||
2159 | <message> |
||
14474 | cbradney | 2160 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="393"/> |
12918 | cbradney | 2161 | <source>hyphenateText(["name"]) -> bool |
2162 | |||
2163 | Does hyphenation on text frame "name". |
||
2164 | If "name" is not given the currently selected item is used. |
||
2165 | |||
2166 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
2167 | </source> |
||
2168 | <translation type="unfinished"></translation> |
||
2169 | </message> |
||
2170 | <message> |
||
14474 | cbradney | 2171 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="407"/> |
12918 | cbradney | 2172 | <source>dehyphenateText(["name"]) -> bool |
2173 | |||
2174 | Does dehyphenation on text frame "name". |
||
2175 | If "name" is not given the currently selected item is used. |
||
2176 | |||
2177 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
2178 | </source> |
||
2179 | <translation type="unfinished"></translation> |
||
2180 | </message> |
||
2181 | <message> |
||
14474 | cbradney | 2182 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="422"/> |
12918 | cbradney | 2183 | <source>setPDFBookmark("toggle", ["name"]) |
2184 | |||
2185 | Sets whether (toggle = 1) the text frame "name" is a bookmark nor not. |
||
2186 | If "name" is not given the currently selected item is used. |
||
2187 | |||
2188 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
2189 | </source> |
||
2190 | <translation type="unfinished"></translation> |
||
2191 | </message> |
||
2192 | <message> |
||
14474 | cbradney | 2193 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="434"/> |
12918 | cbradney | 2194 | <source>isPDFBookmark(["name"]) -> bool |
2195 | |||
2196 | Returns true if the text frame "name" is a PDF bookmark. |
||
2197 | If "name" is not given the currently selected item is used. |
||
2198 | |||
2199 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
2200 | </source> |
||
2201 | <translation type="unfinished"></translation> |
||
2202 | </message> |
||
2203 | <message> |
||
14474 | cbradney | 2204 | <location filename="../../../scribus/plugins/scriptplugin/guiapp.h" line="17"/> |
12918 | cbradney | 2205 | <source>messagebarText("string") |
2206 | |||
2207 | Writes the "string" into the Scribus message bar (status line). The text |
||
2208 | must be UTF8 encoded or 'unicode' string(recommended). |
||
2209 | </source> |
||
2210 | <translation type="unfinished"></translation> |
||
2211 | </message> |
||
2212 | <message> |
||
14474 | cbradney | 2213 | <location filename="../../../scribus/plugins/scriptplugin/guiapp.h" line="30"/> |
12918 | cbradney | 2214 | <source>progressReset() |
2215 | |||
2216 | Cleans up the Scribus progress bar previous settings. It is called before the |
||
2217 | new progress bar use. See progressSet. |
||
2218 | </source> |
||
2219 | <translation type="unfinished"></translation> |
||
2220 | </message> |
||
2221 | <message> |
||
14474 | cbradney | 2222 | <location filename="../../../scribus/plugins/scriptplugin/guiapp.h" line="43"/> |
12918 | cbradney | 2223 | <source>progressTotal(max) |
2224 | |||
2225 | Sets the progress bar's maximum steps value to the specified number. |
||
2226 | See progressSet. |
||
2227 | </source> |
||
2228 | <translation type="unfinished"></translation> |
||
2229 | </message> |
||
2230 | <message> |
||
14474 | cbradney | 2231 | <location filename="../../../scribus/plugins/scriptplugin/guiapp.h" line="52"/> |
12918 | cbradney | 2232 | <source>progressSet(nr) |
2233 | |||
2234 | Set the progress bar position to "nr", a value relative to the previously set |
||
2235 | progressTotal. The progress bar uses the concept of steps; you give it the |
||
2236 | total number of steps and the number of steps completed so far and it will |
||
2237 | display the percentage of steps that have been completed. You can specify the |
||
2238 | total number of steps with progressTotal(). The current number of steps is set |
||
2239 | with progressSet(). The progress bar can be rewound to the beginning with |
||
2240 | progressReset(). [based on info taken from Trolltech's Qt docs] |
||
2241 | </source> |
||
2242 | <translation type="unfinished"></translation> |
||
2243 | </message> |
||
2244 | <message> |
||
14474 | cbradney | 2245 | <location filename="../../../scribus/plugins/scriptplugin/guiapp.h" line="66"/> |
12918 | cbradney | 2246 | <source>setCursor() |
2247 | |||
2248 | [UNSUPPORTED!] This might break things, so steer clear for now. |
||
2249 | </source> |
||
2250 | <translation type="unfinished"></translation> |
||
2251 | </message> |
||
2252 | <message> |
||
14474 | cbradney | 2253 | <location filename="../../../scribus/plugins/scriptplugin/guiapp.h" line="78"/> |
12918 | cbradney | 2254 | <source>docChanged(bool) |
2255 | |||
2256 | Enable/disable save icon in the Scribus icon bar and the Save menu item. It's |
||
2257 | useful to call this procedure when you're changing the document, because Scribus |
||
2258 | won't automatically notice when you change the document using a script. |
||
2259 | </source> |
||
2260 | <translation type="unfinished"></translation> |
||
2261 | </message> |
||
2262 | <message> |
||
14474 | cbradney | 2263 | <location filename="../../../scribus/plugins/scriptplugin/guiapp.h" line="91"/> |
12918 | cbradney | 2264 | <source>zoomDocument(double) |
2265 | |||
2266 | Zoom the document in main GUI window. Actions have whole number |
||
2267 | values like 20.0, 100.0, etc. Zoom to Fit uses -100 as a marker. |
||
2268 | </source> |
||
2269 | <translation type="unfinished"></translation> |
||
2270 | </message> |
||
2271 | <message> |
||
14474 | cbradney | 2272 | <location filename="../../../scribus/plugins/scriptplugin/guiapp.h" line="103"/> |
12918 | cbradney | 2273 | <source>scrollDocument(x,y) |
2274 | |||
2275 | Scroll the document in main GUI window by x and y. |
||
2276 | </source> |
||
2277 | <translation type="unfinished"></translation> |
||
2278 | </message> |
||
2279 | <message> |
||
14474 | cbradney | 2280 | <location filename="../../../scribus/plugins/scriptplugin/svgimport.h" line="15"/> |
12918 | cbradney | 2281 | <source>placeSVG("filename", x, y) |
2282 | |||
2283 | Places the SVG "filename" onto the current page, |
||
2284 | x and y specify the coordinate of the topleft corner of the SVG placed on the page |
||
2285 | |||
2286 | If loading was successful, the selection contains the imported SVG |
||
2287 | </source> |
||
2288 | <translation type="unfinished"></translation> |
||
2289 | </message> |
||
2290 | <message> |
||
14474 | cbradney | 2291 | <location filename="../../../scribus/plugins/scriptplugin/svgimport.h" line="27"/> |
12918 | cbradney | 2292 | <source>placeEPS("filename", x, y) |
2293 | |||
2294 | Places the EPS "filename" onto the current page, |
||
2295 | x and y specify the coordinate of the topleft corner of the EPS placed on the page |
||
2296 | |||
2297 | If loading was successful, the selection contains the imported EPS |
||
2298 | </source> |
||
2299 | <translation type="unfinished"></translation> |
||
2300 | </message> |
||
2301 | <message> |
||
14474 | cbradney | 2302 | <location filename="../../../scribus/plugins/scriptplugin/svgimport.h" line="39"/> |
12918 | cbradney | 2303 | <source>placeSXD("filename", x, y) |
2304 | |||
2305 | Places the SXD "filename" onto the current page, |
||
2306 | x and y specify the coordinate of the topleft corner of the SXD placed on the page |
||
2307 | |||
2308 | If loading was successful, the selection contains the imported SXD |
||
2309 | </source> |
||
2310 | <translation type="unfinished"></translation> |
||
2311 | </message> |
||
2312 | <message> |
||
14474 | cbradney | 2313 | <location filename="../../../scribus/plugins/scriptplugin/svgimport.h" line="51"/> |
12918 | cbradney | 2314 | <source>placeODG("filename", x, y) |
2315 | |||
2316 | Places the ODG "filename" onto the current page, |
||
2317 | x and y specify the coordinate of the topleft corner of the ODG placed on the page |
||
2318 | |||
2319 | If loading was successful, the selection contains the imported ODG |
||
2320 | </source> |
||
2321 | <translation type="unfinished"></translation> |
||
2322 | </message> |
||
2323 | </context> |
||
2324 | <context> |
||
12281 | cbradney | 2325 | <name>@default</name> |
8250 | cbradney | 2326 | <message> |
2327 | <source>%</source> |
||
2328 | <translation type="obsolete">%</translation> |
||
2329 | </message> |
||
2330 | <message> |
||
2331 | <source>B</source> |
||
2332 | <translation type="obsolete">B</translation> |
||
2333 | </message> |
||
2334 | <message> |
||
2335 | <source>C</source> |
||
2336 | <translation type="obsolete">C</translation> |
||
2337 | </message> |
||
2338 | <message> |
||
2339 | <source>c</source> |
||
2340 | <translation type="obsolete">c</translation> |
||
2341 | </message> |
||
2342 | <message> |
||
2343 | <source>p</source> |
||
2344 | <translation type="obsolete">p</translation> |
||
2345 | </message> |
||
2346 | <message> |
||
2347 | <source> %</source> |
||
2348 | <translation type="obsolete"> %</translation> |
||
2349 | </message> |
||
2350 | <message> |
||
2351 | <source> c</source> |
||
2352 | <translation type="obsolete">c</translation> |
||
2353 | </message> |
||
2354 | <message> |
||
2355 | <source> p</source> |
||
2356 | <translation type="obsolete"> p</translation> |
||
2357 | </message> |
||
2358 | <message> |
||
2359 | <source>&C</source> |
||
2360 | <translation type="obsolete">&C</translation> |
||
2361 | </message> |
||
2362 | <message> |
||
2363 | <source>&K</source> |
||
2364 | <translation type="obsolete">&K</translation> |
||
2365 | </message> |
||
2366 | <message> |
||
2367 | <source>&M</source> |
||
2368 | <translation type="obsolete">&M</translation> |
||
2369 | </message> |
||
2370 | <message> |
||
2371 | <source>&Y</source> |
||
2372 | <translation type="obsolete">&Y</translation> |
||
2373 | </message> |
||
2374 | <message> |
||
2375 | <source><<</source> |
||
2376 | <translation type="obsolete"><<</translation> |
||
2377 | </message> |
||
2378 | <message> |
||
2379 | <source>>></source> |
||
2380 | <translation type="obsolete">>></translation> |
||
2381 | </message> |
||
2382 | <message> |
||
2383 | <source>B:</source> |
||
2384 | <translation type="obsolete">B:</translation> |
||
2385 | </message> |
||
2386 | <message> |
||
2387 | <source>C:</source> |
||
2388 | <translation type="obsolete">C:</translation> |
||
2389 | </message> |
||
2390 | <message> |
||
2391 | <source>G:</source> |
||
2392 | <translation type="obsolete">G:</translation> |
||
2393 | </message> |
||
2394 | <message> |
||
2395 | <source>H:</source> |
||
2396 | <translation type="obsolete">H:</translation> |
||
2397 | </message> |
||
2398 | <message> |
||
2399 | <source>K:</source> |
||
2400 | <translation type="obsolete">K:</translation> |
||
2401 | </message> |
||
2402 | <message> |
||
2403 | <source>M:</source> |
||
2404 | <translation type="obsolete">M:</translation> |
||
2405 | </message> |
||
2406 | <message> |
||
2407 | <source>OK</source> |
||
2408 | <translation type="obsolete">Ok</translation> |
||
2409 | </message> |
||
2410 | <message> |
||
2411 | <source>No</source> |
||
2412 | <translation type="obsolete">Não</translation> |
||
2413 | </message> |
||
2414 | <message> |
||
2415 | <source>R:</source> |
||
2416 | <translation type="obsolete">R:</translation> |
||
2417 | </message> |
||
2418 | <message> |
||
2419 | <source>S:</source> |
||
2420 | <translation type="obsolete">S:</translation> |
||
2421 | </message> |
||
2422 | <message> |
||
2423 | <source>V:</source> |
||
2424 | <translation type="obsolete">V:</translation> |
||
2425 | </message> |
||
2426 | <message> |
||
2427 | <source>To</source> |
||
2428 | <translation type="obsolete">Até</translation> |
||
2429 | </message> |
||
2430 | <message> |
||
2431 | <source>X:</source> |
||
2432 | <translation type="obsolete">X:</translation> |
||
2433 | </message> |
||
2434 | <message> |
||
2435 | <source>Y:</source> |
||
2436 | <translation type="obsolete">Y:</translation> |
||
2437 | </message> |
||
2438 | <message> |
||
2439 | <source>cm</source> |
||
2440 | <translation type="obsolete">cm</translation> |
||
2441 | </message> |
||
2442 | <message> |
||
2443 | <source>ff</source> |
||
2444 | <translation type="obsolete">ff</translation> |
||
2445 | </message> |
||
2446 | <message> |
||
2447 | <source>fi</source> |
||
2448 | <translation type="obsolete">fi</translation> |
||
2449 | </message> |
||
2450 | <message> |
||
2451 | <source>fl</source> |
||
2452 | <translation type="obsolete">fl</translation> |
||
2453 | </message> |
||
2454 | <message> |
||
2455 | <source>ft</source> |
||
2456 | <translation type="obsolete">ft</translation> |
||
2457 | </message> |
||
2458 | <message> |
||
2459 | <source>in</source> |
||
2460 | <translation type="obsolete">pol</translation> |
||
2461 | </message> |
||
2462 | <message> |
||
2463 | <source>mm</source> |
||
2464 | <translation type="obsolete">mm</translation> |
||
2465 | </message> |
||
2466 | <message> |
||
2467 | <source>pt</source> |
||
2468 | <translation type="obsolete">pt</translation> |
||
2469 | </message> |
||
2470 | <message> |
||
2471 | <source>st</source> |
||
2472 | <translation type="obsolete">st</translation> |
||
2473 | </message> |
||
2474 | <message> |
||
2475 | <source>to</source> |
||
2476 | <translation type="obsolete">para</translation> |
||
2477 | </message> |
||
2478 | <message> |
||
2479 | <source> cm</source> |
||
2480 | <translation type="obsolete"> cm</translation> |
||
2481 | </message> |
||
2482 | <message> |
||
2483 | <source> in</source> |
||
2484 | <translation type="obsolete"> pol</translation> |
||
2485 | </message> |
||
2486 | <message> |
||
2487 | <source> mm</source> |
||
2488 | <translation type="obsolete"> mm</translation> |
||
2489 | </message> |
||
2490 | <message> |
||
2491 | <source> ms</source> |
||
2492 | <translation type="obsolete"> cm</translation> |
||
2493 | </message> |
||
2494 | <message> |
||
2495 | <source> pt</source> |
||
2496 | <translation type="obsolete"> pt</translation> |
||
2497 | </message> |
||
2498 | <message> |
||
2499 | <source> px</source> |
||
2500 | <translation type="obsolete"> px </translation> |
||
2501 | </message> |
||
2502 | <message> |
||
2503 | <source>&<<</source> |
||
2504 | <translation type="obsolete">&<<</translation> |
||
2505 | </message> |
||
2506 | <message> |
||
2507 | <source>&>></source> |
||
2508 | <translation type="obsolete">&>></translation> |
||
2509 | </message> |
||
2510 | <message> |
||
2511 | <source>&OK</source> |
||
2512 | <translation type="obsolete">&Ok</translation> |
||
2513 | </message> |
||
2514 | <message> |
||
2515 | <source>&No</source> |
||
2516 | <translation type="obsolete">&Não</translation> |
||
2517 | </message> |
||
2518 | <message> |
||
2519 | <source>...</source> |
||
2520 | <translation type="obsolete">...</translation> |
||
2521 | </message> |
||
2522 | <message> |
||
2523 | <source>2A0</source> |
||
2524 | <translation type="obsolete">2A0</translation> |
||
2525 | </message> |
||
2526 | <message> |
||
2527 | <source>4A0</source> |
||
2528 | <translation type="obsolete">4A0</translation> |
||
2529 | </message> |
||
2530 | <message> |
||
2531 | <source>All</source> |
||
2532 | <translation type="obsolete">Todos</translation> |
||
2533 | </message> |
||
2534 | <message> |
||
2535 | <source>Alt</source> |
||
2536 | <translation type="obsolete">Alt</translation> |
||
2537 | </message> |
||
2538 | <message> |
||
2539 | <source>DLE</source> |
||
2540 | <translation type="obsolete">DLE</translation> |
||
2541 | </message> |
||
2542 | <message> |
||
2543 | <source>DPI</source> |
||
2544 | <translation type="obsolete">DPI</translation> |
||
2545 | </message> |
||
2546 | <message> |
||
2547 | <source>Box</source> |
||
2548 | <translation type="obsolete">Caixa</translation> |
||
2549 | </message> |
||
2550 | <message> |
||
2551 | <source>DX:</source> |
||
2552 | <translation type="obsolete">DX:</translation> |
||
2553 | </message> |
||
2554 | <message> |
||
2555 | <source>DY:</source> |
||
2556 | <translation type="obsolete">DY:</translation> |
||
2557 | </message> |
||
2558 | <message> |
||
2559 | <source>Cut</source> |
||
2560 | <translation type="obsolete">Cortar</translation> |
||
2561 | </message> |
||
2562 | <message> |
||
2563 | <source>Dir</source> |
||
2564 | <translation type="obsolete">Dir</translation> |
||
2565 | </message> |
||
2566 | <message> |
||
2567 | <source>Doc</source> |
||
2568 | <translation type="obsolete">Doc</translation> |
||
2569 | </message> |
||
2570 | <message> |
||
2571 | <source>Dot</source> |
||
2572 | <translation type="obsolete">Ponto</translation> |
||
2573 | </message> |
||
2574 | <message> |
||
2575 | <source>HSV</source> |
||
2576 | <translation type="obsolete">HSV</translation> |
||
2577 | </message> |
||
2578 | <message> |
||
2579 | <source>Hex</source> |
||
2580 | <translation type="obsolete">Hex</translation> |
||
2581 | </message> |
||
2582 | <message> |
||
2583 | <source>Hue</source> |
||
2584 | <translation type="obsolete">Matiz</translation> |
||
2585 | </message> |
||
2586 | <message> |
||
2587 | <source>Low</source> |
||
2588 | <translation type="obsolete">Baixa</translation> |
||
2589 | </message> |
||
2590 | <message> |
||
2591 | <source>May</source> |
||
2592 | <translation type="obsolete">Maio</translation> |
||
2593 | </message> |
||
2594 | <message> |
||
2595 | <source>PDF</source> |
||
2596 | <translation type="obsolete">PDF</translation> |
||
2597 | </message> |
||
2598 | <message> |
||
2599 | <source>New</source> |
||
2600 | <translation type="obsolete">Novo</translation> |
||
2601 | </message> |
||
2602 | <message> |
||
2603 | <source>Old</source> |
||
2604 | <translation type="obsolete">Antigo</translation> |
||
2605 | </message> |
||
2606 | <message> |
||
2607 | <source>RGB</source> |
||
2608 | <translation type="obsolete">RGB</translation> |
||
2609 | </message> |
||
2610 | <message> |
||
2611 | <source>To:</source> |
||
2612 | <translation type="obsolete">para:</translation> |
||
2613 | </message> |
||
2614 | <message> |
||
2615 | <source>Apply unbreakable space on:</source> |
||
2616 | <translation type="obsolete">Aplicar espaço não separável em:</translation> |
||
2617 | </message> |
||
2618 | <message> |
||
2619 | <source>X1:</source> |
||
2620 | <translation type="obsolete">X1:</translation> |
||
2621 | </message> |
||
2622 | <message> |
||
2623 | <source>X2:</source> |
||
2624 | <translation type="obsolete">X2:</translation> |
||
2625 | </message> |
||
2626 | <message> |
||
2627 | <source>Top</source> |
||
2628 | <translation type="obsolete">Topo</translation> |
||
2629 | </message> |
||
2630 | <message> |
||
2631 | <source>Y1:</source> |
||
2632 | <translation type="obsolete">Y1:</translation> |
||
2633 | </message> |
||
2634 | <message> |
||
2635 | <source>Y2:</source> |
||
2636 | <translation type="obsolete">Y2:</translation> |
||
2637 | </message> |
||
2638 | <message> |
||
2639 | <source>Use</source> |
||
2640 | <translation type="obsolete">Usar</translation> |
||
2641 | </message> |
||
2642 | <message> |
||
2643 | <source>Yes</source> |
||
2644 | <translation type="obsolete">Sim</translation> |
||
2645 | </message> |
||
2646 | <message> |
||
2647 | <source>and</source> |
||
2648 | <translation type="obsolete">e</translation> |
||
2649 | </message> |
||
2650 | <message> |
||
2651 | <source>ffi</source> |
||
2652 | <translation type="obsolete">ffi</translation> |
||
2653 | </message> |
||
2654 | <message> |
||
2655 | <source>ffl</source> |
||
2656 | <translation type="obsolete">ffl</translation> |
||
2657 | </message> |
||
2658 | <message> |
||
2659 | <source>min</source> |
||
2660 | <translation type="obsolete">min</translation> |
||
2661 | </message> |
||
2662 | <message> |
||
2663 | <source>sum</source> |
||
2664 | <translation type="obsolete">a soma</translation> |
||
2665 | </message> |
||
2666 | <message> |
||
2667 | <source>to:</source> |
||
2668 | <translation type="obsolete">a:</translation> |
||
2669 | </message> |
||
2670 | <message> |
||
2671 | <source>Destination</source> |
||
2672 | <translation type="obsolete">Destino</translation> |
||
2673 | </message> |
||
2674 | <message> |
||
2675 | <source> dpi</source> |
||
2676 | <translation type="obsolete"> dpi</translation> |
||
2677 | </message> |
||
2678 | <message> |
||
2679 | <source> pt </source> |
||
2680 | <translation type="obsolete"> pt </translation> |
||
2681 | </message> |
||
2682 | <message> |
||
2683 | <source> sec</source> |
||
2684 | <translation type="obsolete"> sec</translation> |
||
2685 | </message> |
||
2686 | <message> |
||
2687 | <source>&50%</source> |
||
2688 | <translation type="obsolete">&50%</translation> |
||
2689 | </message> |
||
2690 | <message> |
||
2691 | <source>&75%</source> |
||
2692 | <translation type="obsolete">&75%</translation> |
||
2693 | </message> |
||
2694 | <message> |
||
2695 | <source>&Add</source> |
||
2696 | <translation type="obsolete">&Adicionar</translation> |
||
2697 | </message> |
||
2698 | <message> |
||
2699 | <source>&New</source> |
||
2700 | <translation type="obsolete">&Novo</translation> |
||
2701 | </message> |
||
2702 | <message> |
||
2703 | <source>&Run</source> |
||
2704 | <translation type="obsolete">Executa&r</translation> |
||
2705 | </message> |
||
2706 | <message> |
||
2707 | <source>&X1:</source> |
||
2708 | <translation type="obsolete">&X1:</translation> |
||
2709 | </message> |
||
2710 | <message> |
||
2711 | <source>&Y2:</source> |
||
2712 | <translation type="obsolete">&Y2:</translation> |
||
2713 | </message> |
||
2714 | <message> |
||
2715 | <source>&Yes</source> |
||
2716 | <translation type="obsolete">&Sim</translation> |
||
2717 | </message> |
||
2718 | <message> |
||
2719 | <source>A&dd</source> |
||
2720 | <translation type="obsolete">A&dicionar</translation> |
||
2721 | </message> |
||
2722 | <message> |
||
2723 | <source>CMYK</source> |
||
2724 | <translation type="obsolete">CMYK</translation> |
||
2725 | </message> |
||
2726 | <message> |
||
2727 | <source>Alt+</source> |
||
2728 | <translation type="obsolete">Alt+</translation> |
||
2729 | </message> |
||
2730 | <message> |
||
2731 | <source>Back</source> |
||
2732 | <translation type="obsolete">Voltar</translation> |
||
2733 | </message> |
||
2734 | <message> |
||
2735 | <source>Auto</source> |
||
2736 | <translation type="obsolete">Automático</translation> |
||
2737 | </message> |
||
2738 | <message> |
||
2739 | <source>Blur</source> |
||
2740 | <translation type="obsolete">Desfoque</translation> |
||
2741 | </message> |
||
2742 | <message> |
||
2743 | <source>Cu&t</source> |
||
2744 | <translation type="obsolete">Cor&tar</translation> |
||
2745 | </message> |
||
2746 | <message> |
||
2747 | <source>Date</source> |
||
2748 | <translation type="obsolete">Data</translation> |
||
2749 | </message> |
||
2750 | <message> |
||
2751 | <source>Ctrl</source> |
||
2752 | <translation type="obsolete">Ctrl</translation> |
||
2753 | </message> |
||
2754 | <message> |
||
2755 | <source>Cyan</source> |
||
2756 | <translation type="obsolete">Ciano</translation> |
||
2757 | </message> |
||
2758 | <message> |
||
2759 | <source>Edit</source> |
||
2760 | <translation type="obsolete">Editar</translation> |
||
2761 | </message> |
||
2762 | <message> |
||
2763 | <source>End:</source> |
||
2764 | <translation type="obsolete">Fim:</translation> |
||
2765 | </message> |
||
2766 | <message> |
||
2767 | <source>File</source> |
||
2768 | <translation type="obsolete">Ficheiro</translation> |
||
2769 | </message> |
||
2770 | <message> |
||
2771 | <source>Find</source> |
||
2772 | <translation type="obsolete">Localizar</translation> |
||
2773 | </message> |
||
2774 | <message> |
||
2775 | <source>Font</source> |
||
2776 | <translation type="obsolete">Fonte</translation> |
||
2777 | </message> |
||
2778 | <message> |
||
2779 | <source>Gap:</source> |
||
2780 | <translation type="obsolete">&Espaço:</translation> |
||
2781 | </message> |
||
2782 | <message> |
||
2783 | <source>HSV:</source> |
||
2784 | <translation type="obsolete">HSV</translation> |
||
2785 | </message> |
||
2786 | <message> |
||
2787 | <source>From</source> |
||
2788 | <translation type="obsolete">De</translation> |
||
2789 | </message> |
||
2790 | <message> |
||
2791 | <source>Goto</source> |
||
2792 | <translation type="obsolete">Ir para</translation> |
||
2793 | </message> |
||
2794 | <message> |
||
2795 | <source>High</source> |
||
2796 | <translation type="obsolete">Alta</translation> |
||
2797 | </message> |
||
2798 | <message> |
||
2799 | <source>Icon</source> |
||
2800 | <translation type="obsolete">Ícone</translation> |
||
2801 | </message> |
||
2802 | <message> |
||
2803 | <source>July</source> |
||
2804 | <translation type="obsolete">Julho</translation> |
||
2805 | </message> |
||
2806 | <message> |
||
2807 | <source>June</source> |
||
2808 | <translation type="obsolete">Junho</translation> |
||
2809 | </message> |
||
2810 | <message> |
||
2811 | <source>Left</source> |
||
2812 | <translation type="obsolete">Esquerda</translation> |
||
2813 | </message> |
||
2814 | <message> |
||
2815 | <source>Line</source> |
||
2816 | <translation type="obsolete">Linha</translation> |
||
2817 | </message> |
||
2818 | <message> |
||
2819 | <source>Link</source> |
||
2820 | <translation type="obsolete">Ligação</translation> |
||
2821 | </message> |
||
2822 | <message> |
||
2823 | <source>Load</source> |
||
2824 | <translation type="obsolete">Carregar</translation> |
||
2825 | </message> |
||
2826 | <message> |
||
2827 | <source>Lock</source> |
||
2828 | <translation type="obsolete">Bloquear</translation> |
||
2829 | </message> |
||
2830 | <message> |
||
2831 | <source>Main</source> |
||
2832 | <translation type="obsolete">Principal</translation> |
||
2833 | </message> |
||
2834 | <message> |
||
2835 | <source>Meta</source> |
||
2836 | <translation type="obsolete">Meta</translation> |
||
2837 | </message> |
||
2838 | <message> |
||
2839 | <source>Move</source> |
||
2840 | <translation type="obsolete">Mover</translation> |
||
2841 | </message> |
||
2842 | <message> |
||
2843 | <source>Name</source> |
||
2844 | <translation type="obsolete">Nome</translation> |
||
2845 | </message> |
||
2846 | <message> |
||
2847 | <source>None</source> |
||
2848 | <translation type="obsolete">Nenhum</translation> |
||
2849 | </message> |
||
2850 | <message> |
||
2851 | <source>Open</source> |
||
2852 | <translation type="obsolete">Abrir</translation> |
||
2853 | </message> |
||
2854 | <message> |
||
2855 | <source>Page</source> |
||
2856 | <translation type="obsolete">Página</translation> |
||
2857 | </message> |
||
2858 | <message> |
||
2859 | <source>Path</source> |
||
2860 | <translation type="obsolete">Caminho</translation> |
||
2861 | </message> |
||
2862 | <message> |
||
2863 | <source>RGB:</source> |
||
2864 | <translation type="obsolete">RGB</translation> |
||
2865 | </message> |
||
2866 | <message> |
||
2867 | <source>Post</source> |
||
2868 | <translation type="obsolete">Posters</translation> |
||
2869 | </message> |
||
2870 | <message> |
||
2871 | <source>Push</source> |
||
2872 | <translation type="obsolete">Apertar</translation> |
||
2873 | </message> |
||
2874 | <message> |
||
2875 | <source>Se&t</source> |
||
2876 | <translation type="obsolete">Defin&ir</translation> |
||
2877 | </message> |
||
2878 | <message> |
||
2879 | <source>Save</source> |
||
2880 | <translation type="obsolete">Salvar</translation> |
||
2881 | </message> |
||
2882 | <message> |
||
2883 | <source>Size</source> |
||
2884 | <translation type="obsolete">Tamanho</translation> |
||
2885 | </message> |
||
2886 | <message> |
||
2887 | <source>Skip</source> |
||
2888 | <translation type="obsolete">Ignorar</translation> |
||
2889 | </message> |
||
2890 | <message> |
||
2891 | <source>Sort</source> |
||
2892 | <translation type="obsolete">Ordenar</translation> |
||
2893 | </message> |
||
2894 | <message> |
||
2895 | <source>X&2:</source> |
||
2896 | <translation type="obsolete">X&2:</translation> |
||
2897 | </message> |
||
2898 | <message> |
||
2899 | <source>Star</source> |
||
2900 | <translation type="obsolete">Estrela</translation> |
||
2901 | </message> |
||
2902 | <message> |
||
2903 | <source>Text</source> |
||
2904 | <translation type="obsolete">Texto</translation> |
||
2905 | </message> |
||
2906 | <message> |
||
2907 | <source>Thai</source> |
||
2908 | <translation type="obsolete">Tailandês</translation> |
||
2909 | </message> |
||
2910 | <message> |
||
2911 | <source>Thin</source> |
||
2912 | <translation type="obsolete">Estreito</translation> |
||
2913 | </message> |
||
2914 | <message> |
||
2915 | <source>Time</source> |
||
2916 | <translation type="obsolete">Hora</translation> |
||
2917 | </message> |
||
2918 | <message> |
||
2919 | <source>Top:</source> |
||
2920 | <translation type="obsolete">Cimo:</translation> |
||
2921 | </message> |
||
2922 | <message> |
||
2923 | <source>Y&1:</source> |
||
2924 | <translation type="obsolete">Y&1:</translation> |
||
2925 | </message> |
||
2926 | <message> |
||
2927 | <source>Type</source> |
||
2928 | <translation type="obsolete">Tipo</translation> |
||
2929 | </message> |
||
2930 | <message> |
||
2931 | <source>User</source> |
||
2932 | <translation type="obsolete">Usuário</translation> |
||
2933 | </message> |
||
2934 | <message> |
||
2935 | <source>Wide</source> |
||
2936 | <translation type="obsolete">Largo</translation> |
||
2937 | </message> |
||
2938 | <message> |
||
2939 | <source>Wiki</source> |
||
2940 | <translation type="obsolete">Wiki</translation> |
||
2941 | </message> |
||
2942 | <message> |
||
2943 | <source>Wipe</source> |
||
2944 | <translation type="obsolete">Apagar</translation> |
||
2945 | </message> |
||
2946 | <message> |
||
2947 | <source>Zoom</source> |
||
2948 | <translation type="obsolete">Ampliar</translation> |
||
2949 | </message> |
||
2950 | <message> |
||
2951 | <source>html</source> |
||
2952 | <translation type="obsolete">html</translation> |
||
2953 | </message> |
||
2954 | <message> |
||
2955 | <source>page</source> |
||
2956 | <translation type="obsolete">página</translation> |
||
2957 | </message> |
||
2958 | <message> |
||
2959 | <source>with</source> |
||
2960 | <translation type="obsolete">com</translation> |
||
2961 | </message> |
||
2962 | <message> |
||
2963 | <source>Cannot set style on a non-text frame.</source> |
||
2964 | <translation type="obsolete">Não é possível configurar um estilo em um quadro que não seja de texto.</translation> |
||
2965 | </message> |
||
2966 | <message> |
||
2967 | <source>Shortcut for Selected Action</source> |
||
2968 | <translation type="obsolete">Atalho para a acção seleccionada</translation> |
||
2969 | </message> |
||
2970 | <message> |
||
2971 | <source>Select for easier reading of light colored text styles</source> |
||
2972 | <translation type="obsolete">Seleccione para uma leitura mais fácil dos estilos de texto que usam cores claras</translation> |
||
2973 | </message> |
||
2974 | <message> |
||
2975 | <source>Importing: %1</source> |
||
2976 | <translation type="obsolete">Importando texto</translation> |
||
2977 | </message> |
||
2978 | <message> |
||
2979 | <source>Set start arrow</source> |
||
2980 | <translation type="obsolete">Define a seta de início</translation> |
||
2981 | </message> |
||
2982 | <message> |
||
2983 | <source>Moves to your Document Directory. |
||
2984 | This can be set in the Preferences.</source> |
||
2985 | <translation type="obsolete">Move para seu directório de documentos. |
||
2986 | Isto pode ser definido nas Preferências.</translation> |
||
2987 | </message> |
||
2988 | <message> |
||
2989 | <source>A&lternative Printer Command</source> |
||
2990 | <translation type="obsolete">Comando &alternativo para impressão</translation> |
||
2991 | </message> |
||
2992 | <message> |
||
2993 | <source>New Font found, checking...</source> |
||
2994 | <translation type="obsolete">Nova fonte encontrada, analisando...</translation> |
||
2995 | </message> |
||
2996 | <message> |
||
2997 | <source>Alternative Printer Command</source> |
||
2998 | <translation type="obsolete">Comando &alternativo para impressão</translation> |
||
2999 | </message> |
||
3000 | <message> |
||
3001 | <source>Strikethru</source> |
||
3002 | <translation type="obsolete">Riscado</translation> |
||
3003 | </message> |
||
3004 | <message> |
||
3005 | <source>&Get Field Names</source> |
||
3006 | <translation type="obsolete">&Obter os nomes dos campos</translation> |
||
3007 | </message> |
||
3008 | <message> |
||
3009 | <source>Range of Pages</source> |
||
3010 | <translation type="obsolete">Organizar as páginas</translation> |
||
3011 | </message> |
||
3012 | <message> |
||
3013 | <source>Print Preview</source> |
||
3014 | <translation type="obsolete">Visualizar impressão</translation> |
||
3015 | </message> |
||
3016 | <message> |
||
3017 | <source>Short &Words...</source> |
||
3018 | <translation type="obsolete">&Abreviaturas...</translation> |
||
3019 | </message> |
||
3020 | <message> |
||
3021 | <source>Offset to baseline of characters</source> |
||
3022 | <translation type="obsolete">Espaço entre a pauta e os caracteres</translation> |
||
3023 | </message> |
||
3024 | <message> |
||
3025 | <source>Start searching</source> |
||
3026 | <translation type="obsolete">Iniciar procura</translation> |
||
3027 | </message> |
||
3028 | <message> |
||
3029 | <source>Could not open output file %1</source> |
||
3030 | <translation type="obsolete">Não foi possível abrir o ficheiro de saída: %1</translation> |
||
3031 | </message> |
||
3032 | <message> |
||
3033 | <source>Cannot collect the file: |
||
3034 | %1</source> |
||
3035 | <translation type="obsolete">Não foi possível recolher o ficheiro: |
||
3036 | %1</translation> |
||
3037 | </message> |
||
3038 | <message> |
||
3039 | <source>Freetype2 library not available</source> |
||
3040 | <translation type="obsolete">A biblioteca Freetype2 não está disponível</translation> |
||
3041 | </message> |
||
3042 | <message> |
||
3043 | <source>Search Directory</source> |
||
3044 | <translation type="obsolete">Pesquise um directório</translation> |
||
3045 | </message> |
||
3046 | <message> |
||
3047 | <source>Build ID:</source> |
||
3048 | <translation type="obsolete">ID da versão:</translation> |
||
3049 | </message> |
||
3050 | <message> |
||
3051 | <source>User settings</source> |
||
3052 | <translation type="obsolete">Configurações de utilizador</translation> |
||
3053 | </message> |
||
3054 | <message> |
||
3055 | <source>%1 pt</source> |
||
3056 | <translation type="obsolete">%1 pt</translation> |
||
3057 | </message> |
||
3058 | <message> |
||
3059 | <source>&%1 %</source> |
||
3060 | <translation type="obsolete">&%1 %</translation> |
||
3061 | </message> |
||
3062 | <message> |
||
3063 | <source>S&tyles...</source> |
||
3064 | <translation type="obsolete">E&stilos...</translation> |
||
3065 | </message> |
||
3066 | <message> |
||
3067 | <source>F&ill Color:</source> |
||
3068 | <translation type="obsolete">Cor do preench&imento:</translation> |
||
3069 | </message> |
||
3070 | <message> |
||
3071 | <source>&100%</source> |
||
3072 | <translation type="obsolete">&100%</translation> |
||
3073 | </message> |
||
3074 | <message> |
||
3075 | <source>&200%</source> |
||
3076 | <translation type="obsolete">&200%</translation> |
||
3077 | </message> |
||
3078 | <message> |
||
3079 | <source>&Copy</source> |
||
3080 | <translation type="obsolete">&Copiar</translation> |
||
3081 | </message> |
||
3082 | <message> |
||
3083 | <source>&Done</source> |
||
3084 | <translation type="obsolete">&Feito</translation> |
||
3085 | </message> |
||
3086 | <message> |
||
3087 | <source>&Edit</source> |
||
3088 | <translation type="obsolete">&Editar</translation> |
||
3089 | </message> |
||
3090 | <message> |
||
3091 | <source>+strikeout </source> |
||
3092 | <translation type="obsolete">+riscado </translation> |
||
3093 | </message> |
||
3094 | <message> |
||
3095 | <source>&Exit</source> |
||
3096 | <translation type="obsolete">&Sair</translation> |
||
3097 | </message> |
||
3098 | <message> |
||
3099 | <source>&File</source> |
||
3100 | <translation type="obsolete">&Ficheiro</translation> |
||
3101 | </message> |
||
3102 | <message> |
||
3103 | <source>&Font</source> |
||
3104 | <translation type="obsolete">&Fonte</translation> |
||
3105 | </message> |
||
3106 | <message> |
||
3107 | <source>&Gap:</source> |
||
3108 | <translation type="obsolete">&Espaço:</translation> |
||
3109 | </message> |
||
3110 | <message> |
||
3111 | <source>&Help</source> |
||
3112 | <translation type="obsolete">&Ajuda</translation> |
||
3113 | </message> |
||
3114 | <message> |
||
3115 | <source>&Item</source> |
||
3116 | <translation type="obsolete">&Item</translation> |
||
3117 | </message> |
||
3118 | <message> |
||
3119 | <source>&Left</source> |
||
3120 | <translation type="obsolete">&Esquerda</translation> |
||
3121 | </message> |
||
3122 | <message> |
||
3123 | <source>&Line</source> |
||
3124 | <translation type="obsolete">&Linha</translation> |
||
3125 | </message> |
||
3126 | <message> |
||
3127 | <source>&Load</source> |
||
3128 | <translation type="obsolete">&Abrir</translation> |
||
3129 | </message> |
||
3130 | <message> |
||
3131 | <source>&Misc</source> |
||
3132 | <translation type="obsolete">&Misc</translation> |
||
3133 | </message> |
||
3134 | <message> |
||
3135 | <source>&Move</source> |
||
3136 | <translation type="obsolete">&Mover</translation> |
||
3137 | </message> |
||
3138 | <message> |
||
3139 | <source>&Open</source> |
||
3140 | <translation type="obsolete">&Abrir</translation> |
||
3141 | </message> |
||
3142 | <message> |
||
3143 | <source>&Page</source> |
||
3144 | <translation type="obsolete">&Página</translation> |
||
3145 | </message> |
||
3146 | <message> |
||
3147 | <source>&Red:</source> |
||
3148 | <translation type="obsolete">Ve&rmelho:</translation> |
||
3149 | </message> |
||
3150 | <message> |
||
3151 | <source>&Redo</source> |
||
3152 | <translation type="obsolete">&Refazer</translation> |
||
3153 | </message> |
||
3154 | <message> |
||
3155 | <source>&Quit</source> |
||
3156 | <translation type="obsolete">&Sair</translation> |
||
3157 | </message> |
||
3158 | <message> |
||
3159 | <source>&Sat:</source> |
||
3160 | <translation type="obsolete">&Sat:</translation> |
||
3161 | </message> |
||
3162 | <message> |
||
3163 | <source>&Save</source> |
||
3164 | <translation type="obsolete">&Salvar</translation> |
||
3165 | </message> |
||
3166 | <message> |
||
3167 | <source>&Size</source> |
||
3168 | <translation type="obsolete">&Tamanho</translation> |
||
3169 | </message> |
||
3170 | <message> |
||
3171 | <source>&Text</source> |
||
3172 | <translation type="obsolete">&Texto</translation> |
||
3173 | </message> |
||
3174 | <message> |
||
3175 | <source>&Tile</source> |
||
3176 | <translation type="obsolete">&Lado-a-lado</translation> |
||
3177 | </message> |
||
3178 | <message> |
||
3179 | <source>&Top:</source> |
||
3180 | <translation type="obsolete">&Superior:</translation> |
||
3181 | </message> |
||
3182 | <message> |
||
3183 | <source>&Undo</source> |
||
3184 | <translation type="obsolete">&Desfazer</translation> |
||
3185 | </message> |
||
3186 | <message> |
||
3187 | <source>&Val:</source> |
||
3188 | <translation type="obsolete">&Val:</translation> |
||
3189 | </message> |
||
3190 | <message> |
||
3191 | <source>&View</source> |
||
3192 | <translation type="obsolete">&Visualizar</translation> |
||
3193 | </message> |
||
3194 | <message> |
||
3195 | <source>filename</source> |
||
3196 | <translation type="obsolete">nome de ficheiro</translation> |
||
3197 | </message> |
||
3198 | <message> |
||
3199 | <source>(TAB)</source> |
||
3200 | <translation type="obsolete">(TAB)</translation> |
||
3201 | </message> |
||
3202 | <message> |
||
3203 | <source>Antialias text for EPS and PDF onscreen rendering</source> |
||
3204 | <translation type="obsolete">Suaviza o texto para a renderização no ecrã de EPS e PDF</translation> |
||
3205 | </message> |
||
3206 | <message> |
||
3207 | <source>&Compress File</source> |
||
3208 | <translation type="obsolete">&Compactar o ficheiro</translation> |
||
3209 | </message> |
||
3210 | <message> |
||
3211 | <source>-strikeout </source> |
||
3212 | <translation type="obsolete">-riscado </translation> |
||
3213 | </message> |
||
3214 | <message> |
||
3215 | <source>Load the selected shortcut set</source> |
||
3216 | <translation type="obsolete">Carrega o conjunto de teclas de atalho selecionado</translation> |
||
3217 | </message> |
||
3218 | <message> |
||
3219 | <source>Prepend Currency Symbol</source> |
||
3220 | <translation type="obsolete">Adicionar à frente do símbolo da moeda</translation> |
||
3221 | </message> |
||
3222 | <message> |
||
3223 | <source>Annotation P&roperties</source> |
||
3224 | <translation type="obsolete">P&ropriedades da anotação</translation> |
||
3225 | </message> |
||
3226 | <message> |
||
3227 | <source>Images:</source> |
||
3228 | <translation type="obsolete">Imagens:</translation> |
||
3229 | </message> |
||
3230 | <message> |
||
3231 | <source>Set fill color transparency</source> |
||
3232 | <translation type="obsolete">Define a cor de preenchimento da transparência</translation> |
||
3233 | </message> |
||
3234 | <message> |
||
3235 | <source>Font %1 has broken glyph %2 (charcode %3)</source> |
||
3236 | <translation type="obsolete">A fonte %1 possui caracteres %2 problemáticos (charcode%3)</translation> |
||
3237 | </message> |
||
3238 | <message> |
||
3239 | <source>&Add Bookmark</source> |
||
3240 | <translation type="obsolete">&Adicionar marcador</translation> |
||
3241 | </message> |
||
3242 | <message> |
||
3243 | <source>Loads a curve</source> |
||
3244 | <translation type="obsolete">Carrega uma curva</translation> |
||
3245 | </message> |
||
3246 | <message> |
||
3247 | <source>Page &Number</source> |
||
3248 | <translation type="obsolete">Página &número</translation> |
||
3249 | </message> |
||
3250 | <message> |
||
3251 | <source>Submit Form</source> |
||
3252 | <translation type="obsolete">Enviar formulário</translation> |
||
3253 | </message> |
||
3254 | <message> |
||
3255 | <source>&Update Text Frame and Exit</source> |
||
3256 | <translation type="obsolete">At&ualizar o quadro de texto e sair</translation> |
||
3257 | </message> |
||
3258 | <message> |
||
3259 | <source>Limit of</source> |
||
3260 | <translation type="obsolete">Limite de</translation> |
||
3261 | </message> |
||
3262 | <message> |
||
3263 | <source>Preview Settings</source> |
||
3264 | <translation type="obsolete">Configurações de visualização</translation> |
||
3265 | </message> |
||
3266 | <message> |
||
3267 | <source>Source and target are the same object.</source> |
||
3268 | <translation type="obsolete">A origem e o destino são os mesmos objetos.</translation> |
||
3269 | </message> |
||
3270 | <message> |
||
3271 | <source>Show Text Control Characters</source> |
||
3272 | <translation type="obsolete">Mostrar invisíveis de texto</translation> |
||
3273 | </message> |
||
3274 | <message> |
||
3275 | <source>Add a page numbering section to the document. The new section will be added after the currently selected section.</source> |
||
3276 | <translation type="obsolete">Adiciona uma seção numérica de página ao documento. A nova seção será adicionada após a atual seleção.</translation> |
||
3277 | </message> |
||
3278 | <message> |
||
3279 | <source>E&xit</source> |
||
3280 | <translation type="obsolete">Sai&r</translation> |
||
3281 | </message> |
||
3282 | <message> |
||
3283 | <source>CMYK:</source> |
||
3284 | <translation type="obsolete">CMYK</translation> |
||
3285 | </message> |
||
3286 | <message> |
||
3287 | <source>Align</source> |
||
3288 | <translation type="obsolete">Alinhar</translation> |
||
3289 | </message> |
||
3290 | <message> |
||
3291 | <source>Alt+A</source> |
||
3292 | <translation type="obsolete">Alt+T</translation> |
||
3293 | </message> |
||
3294 | <message> |
||
3295 | <source>Alt+B</source> |
||
3296 | <translation type="obsolete">Alt+B</translation> |
||
3297 | </message> |
||
3298 | <message> |
||
3299 | <source>Alt+C</source> |
||
3300 | <translation type="obsolete">Alt+C</translation> |
||
3301 | </message> |
||
3302 | <message> |
||
3303 | <source>Alt+D</source> |
||
3304 | <translation type="obsolete">Alt+X</translation> |
||
3305 | </message> |
||
3306 | <message> |
||
3307 | <source>Alt+E</source> |
||
3308 | <translation type="obsolete">Alt+E</translation> |
||
3309 | </message> |
||
3310 | <message> |
||
3311 | <source>Alt+G</source> |
||
3312 | <translation type="obsolete">Alt+G</translation> |
||
3313 | </message> |
||
3314 | <message> |
||
3315 | <source>Alt+H</source> |
||
3316 | <translation type="obsolete">Alt+H</translation> |
||
3317 | </message> |
||
3318 | <message> |
||
3319 | <source>Alt+I</source> |
||
3320 | <translation type="obsolete">Alt+I</translation> |
||
3321 | </message> |
||
3322 | <message> |
||
3323 | <source>Alt+K</source> |
||
3324 | <translation type="obsolete">Alt+K</translation> |
||
3325 | </message> |
||
3326 | <message> |
||
3327 | <source>Alt+L</source> |
||
3328 | <translation type="obsolete">Alt+L</translation> |
||
3329 | </message> |
||
3330 | <message> |
||
3331 | <source>Alt+M</source> |
||
3332 | <translation type="obsolete">Alt+</translation> |
||
3333 | </message> |
||
3334 | <message> |
||
3335 | <source>Alt+N</source> |
||
3336 | <translation type="obsolete">Alt+N</translation> |
||
3337 | </message> |
||
3338 | <message> |
||
3339 | <source>Alt+O</source> |
||
3340 | <translation type="obsolete">Alt+O</translation> |
||
3341 | </message> |
||
3342 | <message> |
||
3343 | <source>Alt+P</source> |
||
3344 | <translation type="obsolete">Alt+P</translation> |
||
3345 | </message> |
||
3346 | <message> |
||
3347 | <source>Alt+R</source> |
||
3348 | <translation type="obsolete">Alt+R</translation> |
||
3349 | </message> |
||
3350 | <message> |
||
3351 | <source>Alt+S</source> |
||
3352 | <translation type="obsolete">Alt+S</translation> |
||
3353 | </message> |
||
3354 | <message> |
||
3355 | <source>Alt+T</source> |
||
3356 | <translation type="obsolete">Alt+T</translation> |
||
3357 | </message> |
||
3358 | <message> |
||
3359 | <source>Alt+U</source> |
||
3360 | <translation type="obsolete">Alt+U</translation> |
||
3361 | </message> |
||
3362 | <message> |
||
3363 | <source>Alt+W</source> |
||
3364 | <translation type="obsolete">Alt+W</translation> |
||
3365 | </message> |
||
3366 | <message> |
||
3367 | <source>Alt+Y</source> |
||
3368 | <translation type="obsolete">Alt+Y</translation> |
||
3369 | </message> |
||
3370 | <message> |
||
3371 | <source>Angle</source> |
||
3372 | <translation type="obsolete">Ângulo</translation> |
||
3373 | </message> |
||
3374 | <message> |
||
3375 | <source>Apply</source> |
||
3376 | <translation type="obsolete">Aplicar</translation> |
||
3377 | </message> |
||
3378 | <message> |
||
3379 | <source>April</source> |
||
3380 | <translation type="obsolete">Abril</translation> |
||
3381 | </message> |
||
3382 | <message> |
||
3383 | <source>Black</source> |
||
3384 | <translation type="obsolete">Preto</translation> |
||
3385 | </message> |
||
3386 | <message> |
||
3387 | <source>Block</source> |
||
3388 | <translation type="obsolete">Bloco</translation> |
||
3389 | </message> |
||
3390 | <message> |
||
3391 | <source>Cards</source> |
||
3392 | <translation type="obsolete">Cartões</translation> |
||
3393 | </message> |
||
3394 | <message> |
||
3395 | <source>Check</source> |
||
3396 | <translation type="obsolete">X</translation> |
||
3397 | </message> |
||
3398 | <message> |
||
3399 | <source>Clear</source> |
||
3400 | <translation type="obsolete">Limpar</translation> |
||
3401 | </message> |
||
3402 | <message> |
||
3403 | <source>Clone</source> |
||
3404 | <translation type="obsolete">Clonar</translation> |
||
3405 | </message> |
||
3406 | <message> |
||
3407 | <source>Close</source> |
||
3408 | <translation type="obsolete">Fechar</translation> |
||
3409 | </message> |
||
3410 | <message> |
||
3411 | <source>Color</source> |
||
3412 | <translation type="obsolete">Cor</translation> |
||
3413 | </message> |
||
3414 | <message> |
||
3415 | <source>Comma</source> |
||
3416 | <translation type="obsolete">Vírgula</translation> |
||
3417 | </message> |
||
3418 | <message> |
||
3419 | <source>Date:</source> |
||
3420 | <translation type="obsolete">Data:</translation> |
||
3421 | </message> |
||
3422 | <message> |
||
3423 | <source>Cross</source> |
||
3424 | <translation type="obsolete">Cruz</translation> |
||
3425 | </message> |
||
3426 | <message> |
||
3427 | <source>Crown</source> |
||
3428 | <translation type="obsolete">Coroa</translation> |
||
3429 | </message> |
||
3430 | <message> |
||
3431 | <source>Ctrl+</source> |
||
3432 | <translation type="obsolete">Ctrl+</translation> |
||
3433 | </message> |
||
3434 | <message> |
||
3435 | <source>&Binding:</source> |
||
3436 | <translation type="obsolete">&Encadernação:</translation> |
||
3437 | </message> |
||
3438 | <message> |
||
3439 | <source>Czech</source> |
||
3440 | <translation type="obsolete">Tcheco</translation> |
||
3441 | </message> |
||
3442 | <message> |
||
3443 | <source>Dutch</source> |
||
3444 | <translation type="obsolete">Holandês</translation> |
||
3445 | </message> |
||
3446 | <message> |
||
3447 | <source>Reload the default Scribus shortcuts</source> |
||
3448 | <translation type="obsolete">Recarrega o padrão de teclas de atalhos do Scribus</translation> |
||
3449 | </message> |
||
3450 | <message> |
||
3451 | <source>Email</source> |
||
3452 | <translation type="obsolete">E-mail</translation> |
||
3453 | </message> |
||
3454 | <message> |
||
3455 | <source>Error</source> |
||
3456 | <translation type="obsolete">Erro</translation> |
||
3457 | </message> |
||
3458 | <message> |
||
3459 | <source>Saving PDF</source> |
||
3460 | <translation type="obsolete">Salvando PDF</translation> |
||
3461 | </message> |
||
3462 | <message> |
||
3463 | <source>On Focus</source> |
||
3464 | <translation type="obsolete">On focus</translation> |
||
3465 | </message> |
||
3466 | <message> |
||
3467 | <source>Folds</source> |
||
3468 | <translation type="obsolete">Dobras</translation> |
||
3469 | </message> |
||
3470 | <message> |
||
3471 | <source>Font:</source> |
||
3472 | <translation type="obsolete">Fonte:</translation> |
||
3473 | </message> |
||
3474 | <message> |
||
3475 | <source>Fonts</source> |
||
3476 | <translation type="obsolete">Fontes</translation> |
||
3477 | </message> |
||
3478 | <message> |
||
3479 | <source>Form1</source> |
||
3480 | <translation type="obsolete">Formulário1</translation> |
||
3481 | </message> |
||
3482 | <message> |
||
3483 | <source>Page Placement</source> |
||
3484 | <translation type="obsolete">Colocação da página</translation> |
||
3485 | </message> |
||
3486 | <message> |
||
3487 | <source>Dingbats</source> |
||
3488 | <translation type="obsolete">Bobeiras</translation> |
||
3489 | </message> |
||
3490 | <message> |
||
3491 | <source>From:</source> |
||
3492 | <translation type="obsolete">De:</translation> |
||
3493 | </message> |
||
3494 | <message> |
||
3495 | <source>Go To</source> |
||
3496 | <translation type="obsolete">Ir para</translation> |
||
3497 | </message> |
||
3498 | <message> |
||
3499 | <source>Greek</source> |
||
3500 | <translation type="obsolete">Grego</translation> |
||
3501 | </message> |
||
3502 | <message> |
||
3503 | <source>Group</source> |
||
3504 | <translation type="obsolete">Agrupar</translation> |
||
3505 | </message> |
||
3506 | <message> |
||
3507 | <source>Guide</source> |
||
3508 | <translation type="obsolete">Guias</translation> |
||
3509 | </message> |
||
3510 | <message> |
||
3511 | <source>Hu&e:</source> |
||
3512 | <translation type="obsolete">&Matiz:</translation> |
||
3513 | </message> |
||
3514 | <message> |
||
3515 | <source>Icons</source> |
||
3516 | <translation type="obsolete">Ícones</translation> |
||
3517 | </message> |
||
3518 | <message> |
||
3519 | <source>In&fo</source> |
||
3520 | <translation type="obsolete">In&formações</translation> |
||
3521 | </message> |
||
3522 | <message> |
||
3523 | <source>Image</source> |
||
3524 | <translation type="obsolete">Imagem</translation> |
||
3525 | </message> |
||
3526 | <message> |
||
3527 | <source>Move to back</source> |
||
3528 | <translation type="obsolete">Move para trás</translation> |
||
3529 | </message> |
||
3530 | <message> |
||
3531 | <source>Minimize</source> |
||
3532 | <translation type="obsolete">Minimizar</translation> |
||
3533 | </message> |
||
3534 | <message> |
||
3535 | <source>Inset</source> |
||
3536 | <translation type="obsolete">Recuada</translation> |
||
3537 | </message> |
||
3538 | <message> |
||
3539 | <source>Distribute left sides equidistantly</source> |
||
3540 | <translation type="obsolete">Distribuir os lados esquerdos uniformemente</translation> |
||
3541 | </message> |
||
3542 | <message> |
||
3543 | <source>Items</source> |
||
3544 | <translation type="obsolete">Ítems</translation> |
||
3545 | </message> |
||
3546 | <message> |
||
3547 | <source>R&ound |
||
3548 | Corners:</source> |
||
3549 | <translation type="obsolete">C&antos |
||
3550 | Arredondados:</translation> |
||
3551 | </message> |
||
3552 | <message> |
||
3553 | <source>Print Layer - Uncheck to disable printing. </source> |
||
3554 | <translation type="obsolete">Imprimir camada - desassinale para desactivar a impressão</translation> |
||
3555 | </message> |
||
3556 | <message> |
||
3557 | <source>An object with the requested name already exists.</source> |
||
3558 | <translation type="obsolete">Já existe um objeto com o nome requisitado.</translation> |
||
3559 | </message> |
||
3560 | <message> |
||
3561 | <source>Latin</source> |
||
3562 | <translation type="obsolete">Latim</translation> |
||
3563 | </message> |
||
3564 | <message> |
||
3565 | <source>Even Pages</source> |
||
3566 | <translation type="obsolete">Páginas pares</translation> |
||
3567 | </message> |
||
3568 | <message> |
||
3569 | <source>Left:</source> |
||
3570 | <translation type="obsolete">Esquerda:</translation> |
||
3571 | </message> |
||
3572 | <message> |
||
3573 | <source>Legal</source> |
||
3574 | <translation type="obsolete">Ofício</translation> |
||
3575 | </message> |
||
3576 | <message> |
||
3577 | <source>Level</source> |
||
3578 | <translation type="obsolete">Nível</translation> |
||
3579 | </message> |
||
3580 | <message> |
||
3581 | <source>Lines</source> |
||
3582 | <translation type="obsolete">Linhas</translation> |
||
3583 | </message> |
||
3584 | <message> |
||
3585 | <source>March</source> |
||
3586 | <translation type="obsolete">Março</translation> |
||
3587 | </message> |
||
3588 | <message> |
||
3589 | <source>Marks</source> |
||
3590 | <translation type="obsolete">Miras</translation> |
||
3591 | </message> |
||
3592 | <message> |
||
3593 | <source>Luminosity</source> |
||
3594 | <translation type="obsolete">Luminosidade</translation> |
||
3595 | </message> |
||
3596 | <message> |
||
3597 | <source>Menus</source> |
||
3598 | <translation type="obsolete">Menus</translation> |
||
3599 | </message> |
||
3600 | <message> |
||
3601 | <source>Meta+</source> |
||
3602 | <translation type="obsolete">Meta+</translation> |
||
3603 | </message> |
||
3604 | <message> |
||
3605 | <source>Name:</source> |
||
3606 | <translation type="obsolete">Nome:</translation> |
||
3607 | </message> |
||
3608 | <message> |
||
3609 | <source>Even Pages only</source> |
||
3610 | <translation type="obsolete">Somente páginas pares</translation> |
||
3611 | </message> |
||
3612 | <message> |
||
3613 | <source>Never</source> |
||
3614 | <translation type="obsolete">Nunca</translation> |
||
3615 | </message> |
||
3616 | <message> |
||
3617 | <source>Nodes</source> |
||
3618 | <translation type="obsolete">Nós</translation> |
||
3619 | </message> |
||
3620 | <message> |
||
3621 | <source>Page </source> |
||
3622 | <translation type="obsolete">Página </translation> |
||
3623 | </message> |
||
3624 | <message> |
||
3625 | <source>Page:</source> |
||
3626 | <translation type="obsolete">Página:</translation> |
||
3627 | </message> |
||
3628 | <message> |
||
3629 | <source>Paste</source> |
||
3630 | <translation type="obsolete">Colar</translation> |
||
3631 | </message> |
||
3632 | <message> |
||
3633 | <source>Paths</source> |
||
3634 | <translation type="obsolete">Caminhos</translation> |
||
3635 | </message> |
||
3636 | <message> |
||
3637 | <source>Other</source> |
||
3638 | <translation type="obsolete">Outro</translation> |
||
3639 | </message> |
||
3640 | <message> |
||
3641 | <source>T&ype</source> |
||
3642 | <translation type="obsolete">T&ipo</translation> |
||
3643 | </message> |
||
3644 | <message> |
||
3645 | <source>Plain</source> |
||
3646 | <translation type="obsolete">Texto simples</translation> |
||
3647 | </message> |
||
3648 | <message> |
||
3649 | <source>Print</source> |
||
3650 | <translation type="obsolete">Imprimir</translation> |
||
3651 | </message> |
||
3652 | <message> |
||
3653 | <source>File %1 is not in an acceptable format</source> |
||
3654 | <translation type="obsolete">O ficheiro %1 não está num formato aceitável</translation> |
||
3655 | </message> |
||
3656 | <message> |
||
3657 | <source>Insert PDF Push Button</source> |
||
3658 | <translation type="obsolete">Inserir um botão de acção PDF</translation> |
||
3659 | </message> |
||
3660 | <message> |
||
3661 | <source>Range</source> |
||
3662 | <translation type="obsolete">Intervalo</translation> |
||
3663 | </message> |
||
3664 | <message> |
||
3665 | <source>Color profile that you have generated or received from the manufacturer. |
||
3666 | This profile should be specific to your monitor and not a generic profile (i.e. sRGB).</source> |
||
3667 | <translation type="obsolete">O perfil de cores que gerou ou recebeu do fabricante. |
||
3668 | Este perfil deve ser específico para o seu monitor e não genérico (ex. sRGB).</translation> |
||
3669 | </message> |
||
3670 | <message> |
||
3671 | <source>Ready</source> |
||
3672 | <translation type="obsolete">Pronto</translation> |
||
3673 | </message> |
||
3674 | <message> |
||
3675 | <source>Quote</source> |
||
3676 | <translation type="obsolete">Citação</translation> |
||
3677 | </message> |
||
3678 | <message> |
||
3679 | <source>Reset</source> |
||
3680 | <translation type="obsolete">Reconfigurar</translation> |
||
3681 | </message> |
||
3682 | <message> |
||
3683 | <source>Right</source> |
||
3684 | <translation type="obsolete">Direita</translation> |
||
3685 | </message> |
||
3686 | <message> |
||
3687 | <source>Round</source> |
||
3688 | <translation type="obsolete">Arredondado</translation> |
||
3689 | </message> |
||
3690 | <message> |
||
3691 | <source>3rd. Split</source> |
||
3692 | <translation type="obsolete">3° Separação</translation> |
||
3693 | </message> |
||
3694 | <message> |
||
3695 | <source>Shade</source> |
||
3696 | <translation type="obsolete">Intensidade</translation> |
||
3697 | </message> |
||
3698 | <message> |
||
3699 | <source>Shape</source> |
||
3700 | <translation type="obsolete">Forma</translation> |
||
3701 | </message> |
||
3702 | <message> |
||
3703 | <source>4th. Split</source> |
||
3704 | <translation type="obsolete">4° Separação</translation> |
||
3705 | </message> |
||
3706 | <message> |
||
3707 | <source>Shift</source> |
||
3708 | <translation type="obsolete">Shift</translation> |
||
3709 | </message> |
||
3710 | <message> |
||
3711 | <source>Shown</source> |
||
3712 | <translation type="obsolete">Exibir</translation> |
||
3713 | </message> |
||
3714 | <message> |
||
3715 | <source>&Inside:</source> |
||
3716 | <translation type="obsolete">&Interna:</translation> |
||
3717 | </message> |
||
3718 | <message> |
||
3719 | <source>1st. Split</source> |
||
3720 | <translation type="obsolete">1° Separação</translation> |
||
3721 | </message> |
||
3722 | <message> |
||
3723 | <source>Inside:</source> |
||
3724 | <translation type="obsolete">Interna:</translation> |
||
3725 | </message> |
||
3726 | <message> |
||
3727 | <source>Signs</source> |
||
3728 | <translation type="obsolete">Letreiros</translation> |
||
3729 | </message> |
||
3730 | <message> |
||
3731 | <source>2nd. Split</source> |
||
3732 | <translation type="obsolete">2° Separação</translation> |
||
3733 | </message> |
||
3734 | <message> |
||
3735 | <source>Size:</source> |
||
3736 | <translation type="obsolete">Tamanho:</translation> |
||
3737 | </message> |
||
3738 | <message> |
||
3739 | <source>Exiting now.</source> |
||
3740 | <translation type="obsolete">Saindo agora.</translation> |
||
3741 | </message> |
||
3742 | <message> |
||
3743 | <source>Solid</source> |
||
3744 | <translation type="obsolete">Sólido</translation> |
||
3745 | </message> |
||
3746 | <message> |
||
3747 | <source>En Space</source> |
||
3748 | <translation type="obsolete">Espaço en</translation> |
||
3749 | </message> |
||
3750 | <message> |
||
3751 | <source>Space</source> |
||
3752 | <translation type="obsolete">Espaço</translation> |
||
3753 | </message> |
||
3754 | <message> |
||
3755 | <source>Split</source> |
||
3756 | <translation type="obsolete">Separação</translation> |
||
3757 | </message> |
||
3758 | <message> |
||
3759 | <source>Start</source> |
||
3760 | <translation type="obsolete">Início</translation> |
||
3761 | </message> |
||
3762 | <message> |
||
3763 | <source>instead</source> |
||
3764 | <translation type="obsolete">no lugar</translation> |
||
3765 | </message> |
||
3766 | <message> |
||
3767 | <source>Integer</source> |
||
3768 | <translation type="obsolete">Numérico</translation> |
||
3769 | </message> |
||
3770 | <message> |
||
3771 | <source>Style</source> |
||
3772 | <translation type="obsolete">Estilo</translation> |
||
3773 | </message> |
||
3774 | <message> |
||
3775 | <source>Text:</source> |
||
3776 | <translation type="obsolete">Texto:</translation> |
||
3777 | </message> |
||
3778 | <message> |
||
3779 | <source>To&p:</source> |
||
3780 | <translation type="obsolete">&Superior:</translation> |
||
3781 | </message> |
||
3782 | <message> |
||
3783 | <source>Tools</source> |
||
3784 | <translation type="obsolete">Ferramentas</translation> |
||
3785 | </message> |
||
3786 | <message> |
||
3787 | <source>Type:</source> |
||
3788 | <translation type="obsolete">Tipo:</translation> |
||
3789 | </message> |
||
3790 | <message> |
||
3791 | <source>Value</source> |
||
3792 | <translation type="obsolete">Valor</translation> |
||
3793 | </message> |
||
3794 | <message> |
||
3795 | <source>Usage</source> |
||
3796 | <translation type="obsolete">Uso</translation> |
||
3797 | </message> |
||
3798 | <message> |
||
3799 | <source>&Even pages</source> |
||
3800 | <translation type="obsolete">Páginas par&es</translation> |
||
3801 | </message> |
||
3802 | <message> |
||
3803 | <source>There are no fonts found on your system.</source> |
||
3804 | <translation type="obsolete">Não foram encontradas fontes no seu sistema.</translation> |
||
3805 | </message> |
||
3806 | <message> |
||
3807 | <source>Welsh</source> |
||
3808 | <translation type="obsolete">Galês</translation> |
||
3809 | </message> |
||
3810 | <message> |
||
3811 | <source>Clear All Text</source> |
||
3812 | <translation type="obsolete">Apagar todo o texto</translation> |
||
3813 | </message> |
||
3814 | <message> |
||
3815 | <source>Width</source> |
||
3816 | <translation type="obsolete">Largura</translation> |
||
3817 | </message> |
||
3818 | <message> |
||
3819 | <source>Draw arrows to be sure of space next the code</source> |
||
3820 | <translation type="obsolete">Desenha setas para reafirmar o espaço próximo ao código</translation> |
||
3821 | </message> |
||
3822 | <message> |
||
3823 | <source>Thin Space</source> |
||
3824 | <translation type="obsolete">Espaço fino</translation> |
||
3825 | </message> |
||
3826 | <message> |
||
3827 | <source>1, 2, 3, ...</source> |
||
3828 | <translation type="obsolete">1, 2, 3, ...</translation> |
||
3829 | </message> |
||
3830 | <message> |
||
3831 | <source>a, b, c, ...</source> |
||
3832 | <translation type="obsolete">a, b, c, ...</translation> |
||
3833 | </message> |
||
3834 | <message> |
||
3835 | <source>A, B, C, ...</source> |
||
3836 | <translation type="obsolete">A, B, C, ...</translation> |
||
3837 | </message> |
||
3838 | <message> |
||
3839 | <source>Some fonts used by this document have been substituted:</source> |
||
3840 | <translation type="obsolete">Algumas fonte utilizadas por este documento foram substituidas:</translation> |
||
3841 | </message> |
||
3842 | <message> |
||
3843 | <source>Variable number of hexadecimal characters</source> |
||
3844 | <translation type="obsolete">Número variável de caracteres hexadecimais</translation> |
||
3845 | </message> |
||
3846 | <message> |
||
3847 | <source>Importing failed</source> |
||
3848 | <translation type="obsolete">A importação falhou</translation> |
||
3849 | </message> |
||
3850 | <message> |
||
3851 | <source>&Name of Executable:</source> |
||
3852 | <translation type="obsolete">&Nome do executável:</translation> |
||
3853 | </message> |
||
3854 | <message> |
||
3855 | <source>&Line Styles...</source> |
||
3856 | <translation type="obsolete">Estilos de &linha...</translation> |
||
3857 | </message> |
||
3858 | <message> |
||
3859 | <source>Initializing...</source> |
||
3860 | <translation type="obsolete">Iniciando...</translation> |
||
3861 | </message> |
||
3862 | <message> |
||
3863 | <source>Page Display</source> |
||
3864 | <translation type="obsolete">Exibir página</translation> |
||
3865 | </message> |
||
3866 | <message> |
||
3867 | <source>Target frame links to another frame.</source> |
||
3868 | <translation type="obsolete">O quadro alvo associa-se a outro quadro.</translation> |
||
3869 | </message> |
||
3870 | <message> |
||
3871 | <source>Page Information</source> |
||
3872 | <translation type="obsolete">Informação de página</translation> |
||
3873 | </message> |
||
3874 | <message> |
||
3875 | <source>Choose a scrapbook file to import</source> |
||
3876 | <translation type="obsolete">Seleccione um ficheiro de Bloco de Rascunhos a importar</translation> |
||
3877 | </message> |
||
3878 | <message> |
||
3879 | <source>Double Left Guillemet</source> |
||
3880 | <translation type="obsolete">Guillemet dupla à esquerda</translation> |
||
3881 | </message> |
||
3882 | <message> |
||
3883 | <source>Scribus was not able to load its preferences:<br>%1<br>Default settings will be loaded.</source> |
||
3884 | <translation type="obsolete">O Scribus não conseguiu carregar estas preferências:<br>%1<br>As configurações padrões serão carregadas.</translation> |
||
3885 | </message> |
||
3886 | <message> |
||
3887 | <source>memcpy table: %1 %2 %3</source> |
||
3888 | <translation type="obsolete">tabela do memcpy : %1 %2 %3</translation> |
||
3889 | </message> |
||
3890 | <message> |
||
3891 | <source>words</source> |
||
3892 | <translation type="obsolete">palavras</translation> |
||
3893 | </message> |
||
3894 | <message> |
||
3895 | <source>Unable to find the requested color. You have probably selected black, gray or white. There is no way to process this color.</source> |
||
3896 | <translation type="obsolete">Não foi possível encontrar a cor requisitada. Você provavelmente selecionou a cor preta, cinza ou branca. Não há maneiras de processar essas cores.</translation> |
||
3897 | </message> |
||
3898 | <message> |
||
3899 | <source>Join style</source> |
||
3900 | <translation type="obsolete">Sem estilo</translation> |
||
3901 | </message> |
||
3902 | <message> |
||
3903 | <source>Shear the Path Vertically Down</source> |
||
3904 | <translation type="obsolete">Deforma o caminho verticalmente para baixo</translation> |
||
3905 | </message> |
||
3906 | <message> |
||
3907 | <source>Transparency used</source> |
||
3908 | <translation type="obsolete">Transparência utilizada</translation> |
||
3909 | </message> |
||
3910 | <message> |
||
3911 | <source>Align Text Left</source> |
||
3912 | <translation type="obsolete">Alinhar o texto à esquerda</translation> |
||
3913 | </message> |
||
3914 | <message> |
||
3915 | <source>Do not use custom line style</source> |
||
3916 | <translation type="obsolete">Não utiliza estilos de linhas personalizados</translation> |
||
3917 | </message> |
||
3918 | <message> |
||
3919 | <source>January</source> |
||
3920 | <translation type="obsolete">Janeiro</translation> |
||
3921 | </message> |
||
3922 | <message> |
||
3923 | <source>Set font height</source> |
||
3924 | <translation type="obsolete">Definir altura da fonte</translation> |
||
3925 | </message> |
||
3926 | <message> |
||
3927 | <source>Automatic &Line Spacing</source> |
||
3928 | <translation type="obsolete">Espaçamento automático de &linhas</translation> |
||
3929 | </message> |
||
3930 | <message> |
||
3931 | <source>Copyright:</source> |
||
3932 | <translation type="obsolete">Direitos de autor:</translation> |
||
3933 | </message> |
||
3934 | <message> |
||
3935 | <source>Send to Scrapbook</source> |
||
3936 | <translation type="obsolete">Enviar para o Bloco de Rascunhos</translation> |
||
3937 | </message> |
||
3938 | <message> |
||
3939 | <source>&Options...</source> |
||
3940 | <translation type="obsolete">&Opções...</translation> |
||
3941 | </message> |
||
3942 | <message> |
||
3943 | <source>Size of the selected font</source> |
||
3944 | <translation type="obsolete">Tamanho da fonte selecionada</translation> |
||
3945 | </message> |
||
3946 | <message> |
||
3947 | <source>Document page size, either a standard size or a custom size</source> |
||
3948 | <translation type="obsolete">Tamanho da página, pode ser um tamanho padrão ou personalizado</translation> |
||
3949 | </message> |
||
3950 | <message> |
||
3951 | <source>Cyrillic</source> |
||
3952 | <translation type="obsolete">Cirílico</translation> |
||
3953 | </message> |
||
3954 | <message> |
||
3955 | <source>Display Layers Tab</source> |
||
3956 | <translation type="obsolete">Exibir aba de camadas</translation> |
||
3957 | </message> |
||
3958 | <message> |
||
3959 | <source>Variable number of digits</source> |
||
3960 | <translation type="obsolete">Número de dígitos variáveis</translation> |
||
3961 | </message> |
||
3962 | <message> |
||
3963 | <source>Color not found.</source> |
||
3964 | <translation type="obsolete">Cor não encontrada.</translation> |
||
3965 | </message> |
||
3966 | <message> |
||
3967 | <source>Target frame is linked to by another frame.</source> |
||
3968 | <translation type="obsolete">O quadro alvo está associado a outro quadro.</translation> |
||
3969 | </message> |
||
3970 | <message> |
||
3971 | <source>&Save to File...</source> |
||
3972 | <translation type="obsolete">&Salvar para ficheiro...</translation> |
||
3973 | </message> |
||
3974 | <message> |
||
3975 | <source>Disabled</source> |
||
3976 | <translation type="obsolete">Desabilitado</translation> |
||
3977 | </message> |
||
3978 | <message> |
||
3979 | <source>Documents (*.sla *.sla.gz *.scd *.scd.gz);;All Files (*)</source> |
||
3980 | <translation type="obsolete">Documentos (*.sla *.sla.gz *.scd *.scd.gz);;Todos os ficheiros (*)</translation> |
||
3981 | </message> |
||
3982 | <message> |
||
3983 | <source>The following programs are missing:</source> |
||
3984 | <translation type="obsolete">Os seguintes programas estão faltando:</translation> |
||
3985 | </message> |
||
3986 | <message> |
||
3987 | <source>Insert Bezier Curve</source> |
||
3988 | <translation type="obsolete">Inserir uma curva de Bezier</translation> |
||
3989 | </message> |
||
3990 | <message> |
||
3991 | <source>Baseline offset</source> |
||
3992 | <translation type="obsolete">&Deslocamento da pauta:</translation> |
||
3993 | </message> |
||
3994 | <message> |
||
3995 | <source>Do not show this dialog again</source> |
||
3996 | <translation type="obsolete">Não exibir esta janela novamente</translation> |
||
3997 | </message> |
||
3998 | <message> |
||
3999 | <source>Output &Profile:</source> |
||
4000 | <translation type="obsolete">&Perfil de saída:</translation> |
||
4001 | </message> |
||
4002 | <message> |
||
4003 | <source>Choose a filename to open</source> |
||
4004 | <translation type="obsolete">Escolha um nome de ficheiro para abrir</translation> |
||
4005 | </message> |
||
4006 | <message> |
||
4007 | <source>Default Character Style</source> |
||
4008 | <translation type="obsolete">Estilo de caracter padrão</translation> |
||
4009 | </message> |
||
4010 | <message> |
||
4011 | <source>Color %1 appended.</source> |
||
4012 | <translation type="obsolete">A cor %1 foi adicionada.</translation> |
||
4013 | </message> |
||
4014 | <message> |
||
4015 | <source>Keep aspect ratio</source> |
||
4016 | <translation type="obsolete">Manter proporção</translation> |
||
4017 | </message> |
||
4018 | <message> |
||
4019 | <source>Keep the X and Y scaling the same</source> |
||
4020 | <translation type="obsolete">Mantém a mesma escala entre X e Y</translation> |
||
4021 | </message> |
||
4022 | <message> |
||
4023 | <source>List Box</source> |
||
4024 | <translation type="obsolete">Caixa de listagem</translation> |
||
4025 | </message> |
||
4026 | <message> |
||
4027 | <source>Edit the text with the Story Editor</source> |
||
4028 | <translation type="obsolete">Editar o texto com o Editor de História</translation> |
||
4029 | </message> |
||
4030 | <message> |
||
4031 | <source>Collecting...</source> |
||
4032 | <translation type="obsolete">Recolhendo...</translation> |
||
4033 | </message> |
||
4034 | <message> |
||
4035 | <source>Italian</source> |
||
4036 | <translation type="obsolete">Italiano</translation> |
||
4037 | </message> |
||
4038 | <message> |
||
4039 | <source>Write: %1</source> |
||
4040 | <translation type="obsolete">Escrever: %1</translation> |
||
4041 | </message> |
||
4042 | <message> |
||
4043 | <source>Do you really want to lose all your changes?</source> |
||
4044 | <translation type="obsolete">Você realmente deseja perder todas as suas alterações?</translation> |
||
4045 | </message> |
||
4046 | <message> |
||
4047 | <source>Imports SVG Files</source> |
||
4048 | <translation type="obsolete">Importa ficheiros SVG</translation> |
||
4049 | </message> |
||
4050 | <message> |
||
4051 | <source>Dissolve</source> |
||
4052 | <translation type="obsolete">Dissolução</translation> |
||
4053 | </message> |
||
4054 | <message> |
||
4055 | <source>Top Left of Page</source> |
||
4056 | <translation type="obsolete">Página esquerda</translation> |
||
4057 | </message> |
||
4058 | <message> |
||
4059 | <source>The item %1 is currently being edited by Story Editor. The convert to outlines operation for this item will be skipped</source> |
||
4060 | <translation type="obsolete">O item %1 está atualmente sendo editado pelo Editor de História. A operação de conversão para traços será ignorada para este item</translation> |
||
4061 | </message> |
||
4062 | <message> |
||
4063 | <source>Starting position for the box and split effects.</source> |
||
4064 | <translation type="obsolete">Posição inicial dos efeitos Caixa e Separação.</translation> |
||
4065 | </message> |
||
4066 | <message> |
||
4067 | <source>Use Currency Symbol</source> |
||
4068 | <translation type="obsolete">Usar símbolo de moeda</translation> |
||
4069 | </message> |
||
4070 | <message> |
||
4071 | <source>This document does not seem to be an OpenOffice Draw file.</source> |
||
4072 | <translation type="obsolete">Este documento não parece ser um ficheiro do OpenOffice Draw.</translation> |
||
4073 | </message> |
||
4074 | <message> |
||
4075 | <source>Exports SVG Files</source> |
||
4076 | <translation type="obsolete">Exporta ficheiros SVG</translation> |
||
4077 | </message> |
||
4078 | <message> |
||
4079 | <source>Selected Page Border:</source> |
||
4080 | <translation type="obsolete">Borda de página seleccionada</translation> |
||
4081 | </message> |
||
4082 | <message> |
||
4083 | <source>Style Settings</source> |
||
4084 | <translation type="obsolete">Configurações do estilo</translation> |
||
4085 | </message> |
||
4086 | <message> |
||
4087 | <source>Normal Vision</source> |
||
4088 | <translation type="obsolete">Visão normal</translation> |
||
4089 | </message> |
||
4090 | <message> |
||
4091 | <source>Mirror the Path Horizontally</source> |
||
4092 | <translation type="obsolete">Espelha o caminho horizontalmente</translation> |
||
4093 | </message> |
||
4094 | <message> |
||
4095 | <source>&Import Page(s):</source> |
||
4096 | <translation type="obsolete">&Importar página(s):</translation> |
||
4097 | </message> |
||
4098 | <message> |
||
4099 | <source>Enable/disable the M (Magenta) ink plate</source> |
||
4100 | <translation type="obsolete">Activa/Desabilita a visualização da tinta M (Magenta)</translation> |
||
4101 | </message> |
||
4102 | <message> |
||
4103 | <source>Horizontal displacement of page items</source> |
||
4104 | <translation type="obsolete">Deslocação horizontal dos itens de página</translation> |
||
4105 | </message> |
||
4106 | <message> |
||
4107 | <source>First line indent</source> |
||
4108 | <translation type="obsolete">Indentação da primeira linha</translation> |
||
4109 | </message> |
||
4110 | <message> |
||
4111 | <source>Font search paths can only be set in File > Preferences, and only when there is no document currently open. Close any open documents, then use File > Preferences > Fonts to change the font search path.</source> |
||
4112 | <translation type="obsolete">O caminho de busca das fontes só pode ser configurado pelas Preferências e apenas quando não há documentos abertos. |
||
4113 | Feche todos os documentos e então use o menu Ficheiro->Preferências->Fontes para alterar o caminho de busca das fontes.</translation> |
||
4114 | </message> |
||
4115 | <message> |
||
4116 | <source>The filename should not be empty string.</source> |
||
4117 | <translation type="obsolete">O nome do ficheiro não deve ser nulo.</translation> |
||
4118 | </message> |
||
4119 | <message> |
||
4120 | <source>Portuguese (BR)</source> |
||
4121 | <translation type="obsolete">Português (BR)</translation> |
||
4122 | </message> |
||
4123 | <message> |
||
4124 | <source>Chan&ge...</source> |
||
4125 | <translation type="obsolete">&Alterar...</translation> |
||
4126 | </message> |
||
4127 | <message> |
||
4128 | <source>Select bottom left for basepoint</source> |
||
4129 | <translation type="obsolete">Seleciona o ponto-base abaixo e à esquerda</translation> |
||
4130 | </message> |
||
4131 | <message> |
||
4132 | <source>Using Ghostscript version %1</source> |
||
4133 | <translation type="obsolete">Usando a versão %1 do GhostScript</translation> |
||
4134 | </message> |
||
4135 | <message> |
||
4136 | <source>User configuration exists elready. Do you really want to overwrite it?</source> |
||
4137 | <translation type="obsolete">Já existe uma configuração do utilizador. Você realmente deseja sobrescrevê-la?</translation> |
||
4138 | </message> |
||
4139 | <message> |
||
4140 | <source>Text &Flow Around Frame</source> |
||
4141 | <translation type="obsolete">O texto &flui à volta da caixa</translation> |
||
4142 | </message> |
||
4143 | <message> |
||
4144 | <source>The filename must be a string.</source> |
||
4145 | <translation type="obsolete">O nome do ficheiro deve ser uma sequência de caracteres.</translation> |
||
4146 | </message> |
||
4147 | <message> |
||
4148 | <source>Set font effect</source> |
||
4149 | <translation type="obsolete">Definir efeito de fonte</translation> |
||
4150 | </message> |
||
4151 | <message> |
||
4152 | <source>Line style not found.</source> |
||
4153 | <translation type="obsolete">Estilo de linha não encontrado.</translation> |
||
4154 | </message> |
||
4155 | <message> |
||
4156 | <source>&User Defined Key</source> |
||
4157 | <translation type="obsolete">Tecla definida pelo &utilizador</translation> |
||
4158 | </message> |
||
4159 | <message> |
||
4160 | <source>Failed to save document.</source> |
||
4161 | <translation type="obsolete">Não foi possível salvar o documento.</translation> |
||
4162 | </message> |
||
4163 | <message> |
||
4164 | <source>Field P&roperties</source> |
||
4165 | <translation type="obsolete">Propriedades do &campo</translation> |
||
4166 | </message> |
||
4167 | <message> |
||
4168 | <source>Types matched, but setting property failed.</source> |
||
4169 | <translation type="obsolete">Os tipos se casam, mas a configuração de propriedade falhou.</translation> |
||
4170 | </message> |
||
4171 | <message> |
||
4172 | <source>Use ICC Profile</source> |
||
4173 | <translation type="obsolete">Usar perfil ICC</translation> |
||
4174 | </message> |
||
4175 | <message> |
||
4176 | <source>Smart &Hyphen</source> |
||
4177 | <translation type="obsolete">&Hifenização inteligente</translation> |
||
4178 | </message> |
||
4179 | <message> |
||
4180 | <source>Plugin Manager</source> |
||
4181 | <translation type="obsolete">Gestão de plugin</translation> |
||
4182 | </message> |
||
4183 | <message> |
||
4184 | <source>Polygon Drawing Properties</source> |
||
4185 | <translation type="obsolete">Propriedades do desenho de polígonos</translation> |
||
4186 | </message> |
||
4187 | <message> |
||
4188 | <source>An account of the content of the document. This field is for a brief description or abstract of the document. It is embedded in the PDF on export</source> |
||
4189 | <translation type="obsolete">Um resumo do conteúdo do documento.Esse campo é usado para uma descrição breve ou um resumo do documento. Ele é Incorporado ao PDF durante a exportação</translation> |
||
4190 | </message> |
||
4191 | <message> |
||
4192 | <source>Hide Viewers Menubar</source> |
||
4193 | <translation type="obsolete">Ocultar visualização da barra do menu</translation> |
||
4194 | </message> |
||
4195 | <message> |
||
4196 | <source>Allow &Changing the Document</source> |
||
4197 | <translation type="obsolete">Permite a &alteração no documento</translation> |
||
4198 | </message> |
||
4199 | <message> |
||
4200 | <source>Importing text</source> |
||
4201 | <translation type="obsolete">Importando texto</translation> |
||
4202 | </message> |
||
4203 | <message> |
||
4204 | <source>Profile Name:</source> |
||
4205 | <translation type="obsolete">Nome do perfil:</translation> |
||
4206 | </message> |
||
4207 | <message> |
||
4208 | <source>Export successful</source> |
||
4209 | <translation type="obsolete">A exportação foi bem-sucedida.</translation> |
||
4210 | </message> |
||
4211 | <message> |
||
4212 | <source>Output profile for printing. If possible, get some guidance from your printer on profile selection.</source> |
||
4213 | <translation type="obsolete">Perfil de saída para impressão. Se possível, obtenha alguma referência da sua impressora na seleção do perfil.</translation> |
||
4214 | </message> |
||
4215 | <message> |
||
4216 | <source>Paste Recent</source> |
||
4217 | <translation type="obsolete">Colar &recente</translation> |
||
4218 | </message> |
||
4219 | <message> |
||
4220 | <source>&Keywords:</source> |
||
4221 | <translation type="obsolete">&Palavras-chave:</translation> |
||
4222 | </message> |
||
4223 | <message> |
||
4224 | <source>Generate PDF Articles, which is useful for navigating linked articles in a PDF.</source> |
||
4225 | <translation type="obsolete">Gera Artigos PDF, que são úteis para navegar por artigos associados em um PDF.</translation> |
||
4226 | </message> |
||
4227 | <message> |
||
4228 | <source>Keywords:</source> |
||
4229 | <translation type="obsolete">Palavras-chave:</translation> |
||
4230 | </message> |
||
4231 | <message> |
||
4232 | <source>Bezier curve</source> |
||
4233 | <translation type="obsolete">Curva de Bezier</translation> |
||
4234 | </message> |
||
4235 | <message> |
||
4236 | <source>&Define Custom Colors >></source> |
||
4237 | <translation type="obsolete">&Definir cores personalizadas >></translation> |
||
4238 | </message> |
||
4239 | <message> |
||
4240 | <source>New Document</source> |
||
4241 | <translation type="obsolete">Novo documento</translation> |
||
4242 | </message> |
||
4243 | <message> |
||
4244 | <source>Color profile for solid colors</source> |
||
4245 | <translation type="obsolete">Perfil de cores para cores sólidas</translation> |
||
4246 | </message> |
||
4247 | <message> |
||
4248 | <source>&Select File...</source> |
||
4249 | <translation type="obsolete">&Seleccione ficheiro...</translation> |
||
4250 | </message> |
||
4251 | <message> |
||
4252 | <source>Tab Fill Character:</source> |
||
4253 | <translation type="obsolete">Preenchimento de caracter:</translation> |
||
4254 | </message> |
||
4255 | <message> |
||
4256 | <source>Color profile for your printer model from the manufacturer. |
||
4257 | This profile should be specific to your printer and not a generic profile (i.e. sRGB).</source> |
||
4258 | <translation type="obsolete">O perfil de cores do fabricante para o seu modelo de impressora. |
||
4259 | Este perfil deve ser específico para a sua impressora e não genérico (ex. sRGB).</translation> |
||
4260 | </message> |
||
4261 | <message> |
||
4262 | <source>Line S&tyle:</source> |
||
4263 | <translation type="obsolete">Es&tilos de linha:</translation> |
||
4264 | </message> |
||
4265 | <message> |
||
4266 | <source>Difference between the selected value and the counted ones. Refer to documentation for more information.</source> |
||
4267 | <translation type="obsolete">Diferença entre o valor selecionado e o contado. Veja a documentação para maiores detalhes.</translation> |
||
4268 | </message> |
||
4269 | <message> |
||
4270 | <source>Guides are visible above all objects on the page</source> |
||
4271 | <translation type="obsolete">AS guias são visíveis através de objetos na página</translation> |
||
4272 | </message> |
||
4273 | <message> |
||
4274 | <source>Select a file to import</source> |
||
4275 | <translation type="obsolete">Seleccione um ficheiro para importar</translation> |
||
4276 | </message> |
||
4277 | <message> |
||
4278 | <source>remove match</source> |
||
4279 | <translation type="obsolete">remover correspondência</translation> |
||
4280 | </message> |
||
4281 | <message> |
||
4282 | <source>Enabling this will overwrite existing styles in the current Scribus document</source> |
||
4283 | <translation type="obsolete">Activar isso irá sobrescrever os estilos existentes no documento atual</translation> |
||
4284 | </message> |
||
4285 | <message> |
||
4286 | <source>Full Color Blindness</source> |
||
4287 | <translation type="obsolete">Perda de total da perc. de cores</translation> |
||
4288 | </message> |
||
4289 | <message> |
||
4290 | <source>Path Text Properties</source> |
||
4291 | <translation type="obsolete">Propriedades do caminho do texto</translation> |
||
4292 | </message> |
||
4293 | <message> |
||
4294 | <source>&Quick Search:</source> |
||
4295 | <translation type="obsolete">Busca &rápida:</translation> |
||
4296 | </message> |
||
4297 | <message> |
||
4298 | <source>size %1 </source> |
||
4299 | <translation type="obsolete">tamanho %1 </translation> |
||
4300 | </message> |
||
4301 | <message> |
||
4302 | <source>&Deselect All</source> |
||
4303 | <translation type="obsolete">&Deselecionar tudo</translation> |
||
4304 | </message> |
||
4305 | <message> |
||
4306 | <source>Shear the Path Horizontally to the Right</source> |
||
4307 | <translation type="obsolete">Deforma o caminho horizontalmente para a direita</translation> |
||
4308 | </message> |
||
4309 | <message> |
||
4310 | <source>&Tabulators...</source> |
||
4311 | <translation type="obsolete">&Tabulações...</translation> |
||
4312 | </message> |
||
4313 | <message> |
||
4314 | <source>Number Forms</source> |
||
4315 | <translation type="obsolete">Formulários numéricos</translation> |
||
4316 | </message> |
||
4317 | <message> |
||
4318 | <source>Line: %1 Column: %2</source> |
||
4319 | <translation type="obsolete">Linhas: %1, Colunas: %2</translation> |
||
4320 | </message> |
||
4321 | <message> |
||
4322 | <source>Story Editor</source> |
||
4323 | <translation type="obsolete">Editor de História</translation> |
||
4324 | </message> |
||
4325 | <message> |
||
4326 | <source>&Import Master Page</source> |
||
4327 | <translation type="obsolete">&Importar Página Mestre</translation> |
||
4328 | </message> |
||
4329 | <message> |