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