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