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