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