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