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