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