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