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