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