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