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