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