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