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