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