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