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