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