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