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