Rev 7716 | Rev 9467 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
769 | cbradney | 1 | <!DOCTYPE TS><TS> |
2 | <context> |
||
1135 | cbradney | 3 | <name></name> |
4 | <message> |
||
5 | <source>getFontSize(["name"]) -> float |
||
6 | |||
7 | Returns the font size in points for the text frame "name". If this text |
||
8 | frame has some text selected the value assigned to the first character of |
||
9 | the selection is returned. |
||
10 | If "name" is not given the currently selected item is used. |
||
11 | </source> |
||
12 | <translation type="unfinished"></translation> |
||
13 | </message> |
||
14 | <message> |
||
15 | <source>getColorNames() -> list |
||
16 | |||
17 | Returns a list containing the names of all defined colors in the document. |
||
18 | If no document is open, returns a list of the default document colors. |
||
19 | </source> |
||
20 | <translation type="unfinished"></translation> |
||
21 | </message> |
||
22 | <message> |
||
23 | <source>newDocDialog() -> bool |
||
24 | |||
25 | Displays the "New Document" dialog box. Creates a new document if the user |
||
26 | accepts the settings. Does not create a document if the user presses cancel. |
||
27 | Returns true if a new document was created. |
||
28 | </source> |
||
29 | <translation type="unfinished"></translation> |
||
30 | </message> |
||
31 | <message> |
||
32 | <source>getFillColor(["name"]) -> string |
||
33 | |||
34 | Returns the name of the fill color of the object "name". |
||
35 | If "name" is not given the currently selected item is used. |
||
36 | </source> |
||
37 | <translation type="unfinished"></translation> |
||
38 | </message> |
||
39 | <message> |
||
40 | <source>moveObject(dx, dy [, "name"]) |
||
41 | |||
42 | Moves the object "name" by dx and dy relative to its current position. The |
||
43 | distances are expressed in the current measurement unit of the document (see |
||
44 | UNIT constants). If "name" is not given the currently selected item is used. |
||
45 | If the object "name" belongs to a group, the whole group is moved. |
||
46 | </source> |
||
47 | <translation type="unfinished"></translation> |
||
48 | </message> |
||
49 | <message> |
||
50 | <source>setRedraw(bool) |
||
51 | |||
52 | Disables page redraw when bool = False, otherwise redrawing is enabled. |
||
53 | This change will persist even after the script exits, so make sure to call |
||
54 | setRedraw(True) in a finally: clause at the top level of your script. |
||
55 | </source> |
||
56 | <translation type="unfinished"></translation> |
||
57 | </message> |
||
58 | <message> |
||
59 | <source>createRect(x, y, width, height, ["name"]) -> string |
||
60 | |||
61 | Creates a new rectangle on the current page and returns its name. The |
||
62 | coordinates are given in the current measurement units of the document |
||
63 | (see UNIT constants). "name" should be a unique identifier for the object |
||
64 | because you need this name to reference that object in future. If "name" |
||
65 | is not given Scribus will create one for you. |
||
66 | |||
67 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
68 | </source> |
||
69 | <translation type="unfinished"></translation> |
||
70 | </message> |
||
71 | <message> |
||
72 | <source>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"]) |
||
73 | |||
74 | Sets the gradient fill of the object "name" to type. Color descriptions are |
||
75 | the same as for setFillColor() and setFillShade(). See the constants for |
||
76 | available types (FILL_<type>). |
||
77 | </source> |
||
78 | <translation type="unfinished"></translation> |
||
79 | </message> |
||
80 | <message> |
||
81 | <source>messagebarText("string") |
||
82 | |||
83 | Writes the "string" into the Scribus message bar (status line). The text |
||
84 | must be UTF8 encoded or 'unicode' string(recommended). |
||
85 | </source> |
||
86 | <translation type="unfinished"></translation> |
||
87 | </message> |
||
88 | <message> |
||
3064 | cbradney | 89 | <source>newPage(where [,"masterpage"]) |
90 | |||
91 | Creates a new page. If "where" is -1 the new Page is appended to the |
||
92 | document, otherwise the new page is inserted before "where". Page numbers are |
||
93 | counted from 1 upwards, no matter what the displayed first page number of your |
||
94 | document is. The optional parameter "masterpage" specifies the name of the |
||
95 | master page for the new page. |
||
96 | |||
97 | May raise IndexError if the page number is out of range |
||
98 | </source> |
||
99 | <translation type="unfinished"></translation> |
||
100 | </message> |
||
101 | <message> |
||
102 | <source>importSVG("string") |
||
103 | |||
104 | The "string" must be a valid filename for a SVG image. The text |
||
105 | must be UTF8 encoded or 'unicode' string(recommended). |
||
106 | </source> |
||
107 | <translation type="unfinished"></translation> |
||
108 | </message> |
||
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> |
||
1135 | cbradney | 152 | </context> |
153 | <context> |
||
154 | <name>@default</name> |
||
155 | <message> |
||
156 | <source>getFont(["name"]) -> string |
||
157 | |||
158 | Returns the font name for the text frame "name". If this text frame |
||
159 | has some text selected the value assigned to the first character |
||
160 | of the selection is returned. If "name" is not given the currently |
||
161 | selected item is used. |
||
162 | </source> |
||
163 | <translation type="unfinished"></translation> |
||
164 | </message> |
||
165 | <message> |
||
166 | <source>getTextLength(["name"]) -> integer |
||
167 | |||
168 | Returns the length of the text in the text frame "name". |
||
169 | If "name" is not given the currently selected item is used. |
||
170 | </source> |
||
171 | <translation type="unfinished"></translation> |
||
172 | </message> |
||
173 | <message> |
||
174 | <source>getText(["name"]) -> string |
||
175 | |||
176 | Returns the text of the text frame "name". If this text frame has some text |
||
177 | selected, the selected text is returned. All text in the frame, not just |
||
178 | currently visible text, is returned. If "name" is not given the currently |
||
179 | selected item is used. |
||
180 | </source> |
||
181 | <translation type="unfinished"></translation> |
||
182 | </message> |
||
183 | <message> |
||
184 | <source>getAllText(["name"]) -> string |
||
185 | |||
186 | Returns the text of the text frame "name" and of all text frames which are |
||
187 | linked with this frame. If this textframe has some text selected, the selected |
||
188 | text is returned. If "name" is not given the currently selected item is |
||
189 | used. |
||
190 | </source> |
||
191 | <translation type="unfinished"></translation> |
||
192 | </message> |
||
193 | <message> |
||
194 | <source>getLineSpacing(["name"]) -> float |
||
195 | |||
196 | Returns the line spacing ("leading") of the text frame "name" expressed in |
||
197 | points. If "name" is not given the currently selected item is used. |
||
198 | </source> |
||
199 | <translation type="unfinished"></translation> |
||
200 | </message> |
||
201 | <message> |
||
202 | <source>getColumnGap(["name"]) -> float |
||
203 | |||
204 | Returns the column gap size of the text frame "name" expressed in points. If |
||
205 | "name" is not given the currently selected item is used. |
||
206 | </source> |
||
207 | <translation type="unfinished"></translation> |
||
208 | </message> |
||
209 | <message> |
||
210 | <source>getColumns(["name"]) -> integer |
||
211 | |||
212 | Gets the number of columns of the text frame "name". If "name" is not |
||
213 | given the currently selected item is used. |
||
214 | </source> |
||
215 | <translation type="unfinished"></translation> |
||
216 | </message> |
||
217 | <message> |
||
218 | <source>setText("text", ["name"]) |
||
219 | |||
220 | Sets the text of the text frame "name" to the text of the string "text". |
||
221 | Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ |
||
222 | for more details. If "name" is not given the currently selected item is |
||
223 | used. |
||
224 | </source> |
||
225 | <translation type="unfinished"></translation> |
||
226 | </message> |
||
227 | <message> |
||
228 | <source>setFont("font", ["name"]) |
||
229 | |||
230 | Sets the font of the text frame "name" to "font". If there is some text |
||
231 | selected only the selected text is changed. If "name" is not given the |
||
232 | currently selected item is used. |
||
233 | |||
234 | May throw ValueError if the font cannot be found. |
||
235 | </source> |
||
236 | <translation type="unfinished"></translation> |
||
237 | </message> |
||
238 | <message> |
||
239 | <source>setFontSize(size, ["name"]) |
||
240 | |||
241 | Sets the font size of the text frame "name" to "size". "size" is treated |
||
242 | as a value in points. If there is some text selected only the selected text is |
||
243 | changed. "size" must be in the range 1 to 512. If "name" is not given the |
||
244 | currently selected item is used. |
||
245 | |||
246 | May throw ValueError for a font size that's out of bounds. |
||
247 | </source> |
||
248 | <translation type="unfinished"></translation> |
||
249 | </message> |
||
250 | <message> |
||
251 | <source>setLineSpacing(size, ["name"]) |
||
252 | |||
253 | Sets the line spacing ("leading") of the text frame "name" to "size". |
||
254 | "size" is a value in points. If "name" is not given the currently selected |
||
255 | item is used. |
||
256 | |||
257 | May throw ValueError if the line spacing is out of bounds. |
||
258 | </source> |
||
259 | <translation type="unfinished"></translation> |
||
260 | </message> |
||
261 | <message> |
||
262 | <source>setColumnGap(size, ["name"]) |
||
263 | |||
264 | Sets the column gap of the text frame "name" to the value "size". If |
||
265 | "name" is not given the currently selected item is used. |
||
266 | |||
267 | May throw ValueError if the column gap is out of bounds (must be positive). |
||
268 | </source> |
||
269 | <translation type="unfinished"></translation> |
||
270 | </message> |
||
271 | <message> |
||
272 | <source>setColumns(nr, ["name"]) |
||
273 | |||
274 | Sets the number of columns of the text frame "name" to the integer "nr". |
||
275 | If "name" is not given the currently selected item is used. |
||
276 | |||
277 | May throw ValueError if number of columns is not at least one. |
||
278 | </source> |
||
279 | <translation type="unfinished"></translation> |
||
280 | </message> |
||
281 | <message> |
||
282 | <source>setTextAlignment(align, ["name"]) |
||
283 | |||
284 | Sets the text alignment of the text frame "name" to the specified alignment. |
||
285 | If "name" is not given the currently selected item is used. "align" should |
||
286 | be one of the ALIGN_ constants defined in this module - see dir(scribus). |
||
287 | |||
288 | May throw ValueError for an invalid alignment constant. |
||
289 | </source> |
||
290 | <translation type="unfinished"></translation> |
||
291 | </message> |
||
292 | <message> |
||
293 | <source>deleteText(["name"]) |
||
294 | |||
295 | Deletes any text in the text frame "name". If there is some text selected, |
||
296 | only the selected text will be deleted. If "name" is not given the currently |
||
297 | selected item is used. |
||
298 | </source> |
||
299 | <translation type="unfinished"></translation> |
||
300 | </message> |
||
301 | <message> |
||
302 | <source>setTextColor("color", ["name"]) |
||
303 | |||
304 | Sets the text color of the text frame "name" to the color "color". If there |
||
305 | is some text selected only the selected text is changed. If "name" is not |
||
306 | given the currently selected item is used. |
||
307 | </source> |
||
308 | <translation type="unfinished"></translation> |
||
309 | </message> |
||
310 | <message> |
||
311 | <source>setTextStroke("color", ["name"]) |
||
312 | |||
313 | Set "color" of the text stroke. If "name" is not given the currently |
||
314 | selected item is used. |
||
315 | </source> |
||
316 | <translation type="unfinished"></translation> |
||
317 | </message> |
||
318 | <message> |
||
319 | <source>setTextShade(shade, ["name"]) |
||
320 | |||
321 | Sets the shading of the text color of the object "name" to "shade". If |
||
322 | there is some text selected only the selected text is changed. "shade" must |
||
323 | be an integer value in the range from 0 (lightest) to 100 (full color |
||
324 | intensity). If "name" is not given the currently selected item is |
||
325 | used. |
||
326 | </source> |
||
327 | <translation type="unfinished"></translation> |
||
328 | </message> |
||
329 | <message> |
||
330 | <source>linkTextFrames("fromname", "toname") |
||
331 | |||
332 | Link two text frames. The frame named "fromname" is linked to the |
||
333 | frame named "toname". The target frame must be an empty text frame |
||
334 | and must not link to or be linked from any other frames already. |
||
335 | |||
336 | May throw ScribusException if linking rules are violated. |
||
337 | </source> |
||
338 | <translation type="unfinished"></translation> |
||
339 | </message> |
||
340 | <message> |
||
341 | <source>unlinkTextFrames("name") |
||
342 | |||
343 | Remove the specified (named) object from the text frame flow/linkage. If the |
||
344 | frame was in the middle of a chain, the previous and next frames will be |
||
345 | connected, eg 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)' |
||
346 | |||
347 | May throw ScribusException if linking rules are violated. |
||
348 | </source> |
||
349 | <translation type="unfinished"></translation> |
||
350 | </message> |
||
351 | <message> |
||
352 | <source>traceText(["name"]) |
||
353 | |||
354 | Convert the text frame "name" to outlines. If "name" is not given the |
||
355 | currently selected item is used.</source> |
||
356 | <translation type="unfinished"></translation> |
||
357 | </message> |
||
358 | <message> |
||
359 | <source>getColor("name") -> tuple |
||
360 | |||
361 | Returns a tuple (C, M, Y, K) containing the four color components of the |
||
362 | color "name" from the current document. If no document is open, returns |
||
363 | the value of the named color from the default document colors. |
||
364 | |||
365 | May raise NotFoundError if the named color wasn't found. |
||
366 | May raise ValueError if an invalid color name is specified. |
||
367 | </source> |
||
368 | <translation type="unfinished"></translation> |
||
369 | </message> |
||
370 | <message> |
||
371 | <source>changeColor("name", c, m, y, k) |
||
372 | |||
373 | Changes the color "name" to the specified CMYK value. The color value is |
||
374 | defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black. |
||
375 | Color components should be in the range from 0 to 255. |
||
376 | |||
377 | May raise NotFoundError if the named color wasn't found. |
||
378 | May raise ValueError if an invalid color name is specified. |
||
379 | </source> |
||
380 | <translation type="unfinished"></translation> |
||
381 | </message> |
||
382 | <message> |
||
383 | <source>deleteColor("name", "replace") |
||
384 | |||
385 | Deletes the color "name". Every occurence of that color is replaced by the |
||
386 | color "replace". If not specified, "replace" defaults to the color |
||
387 | "None" - transparent. |
||
388 | |||
389 | deleteColor works on the default document colors if there is no document open. |
||
390 | In that case, "replace", if specified, has no effect. |
||
391 | |||
392 | May raise NotFoundError if a named color wasn't found. |
||
393 | May raise ValueError if an invalid color name is specified. |
||
394 | </source> |
||
395 | <translation type="unfinished"></translation> |
||
396 | </message> |
||
397 | <message> |
||
398 | <source>replaceColor("name", "replace") |
||
399 | |||
400 | Every occurence of the color "name" is replaced by the color "replace". |
||
401 | |||
402 | May raise NotFoundError if a named color wasn't found. |
||
403 | May raise ValueError if an invalid color name is specified. |
||
404 | </source> |
||
405 | <translation type="unfinished"></translation> |
||
406 | </message> |
||
407 | <message> |
||
408 | <source>messageBox("caption", "message", |
||
409 | icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT, |
||
410 | button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer |
||
411 | |||
412 | Displays a message box with the title "caption", the message "message", and |
||
413 | an icon "icon" and up to 3 buttons. By default no icon is used and a single |
||
414 | button, OK, is displayed. Only the caption and message arguments are required, |
||
415 | though setting an icon and appropriate button(s) is strongly |
||
416 | recommended. The message text may contain simple HTML-like markup. |
||
417 | |||
418 | Returns the number of the button the user pressed. Button numbers start |
||
419 | at 1. |
||
420 | |||
421 | For the icon and the button parameters there are predefined constants available |
||
422 | with the same names as in the Qt Documentation. These are the BUTTON_* and |
||
423 | ICON_* constants defined in the module. There are also two extra constants that |
||
424 | can be binary-ORed with button constants: |
||
425 | BUTTONOPT_DEFAULT Pressing enter presses this button. |
||
426 | BUTTONOPT_ESCAPE Pressing escape presses this button. |
||
427 | |||
428 | Usage examples: |
||
429 | result = messageBox('Script failed', |
||
430 | 'This script only works when you have a text frame selected.', |
||
431 | ICON_ERROR) |
||
432 | result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>', |
||
433 | ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
||
434 | BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
||
435 | |||
436 | Defined button and icon constants: |
||
437 | BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO, |
||
438 | BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
||
439 | ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL. |
||
440 | </source> |
||
441 | <translation type="unfinished"></translation> |
||
442 | </message> |
||
443 | <message> |
||
444 | <source>valueDialog(caption, message [,defaultvalue]) -> string |
||
445 | |||
446 | Shows the common 'Ask for string' dialog and returns its value as a string |
||
447 | Parameters: window title, text in the window and optional 'default' value. |
||
448 | |||
449 | Example: valueDialog('title', 'text in the window', 'optional') |
||
450 | </source> |
||
451 | <translation type="unfinished"></translation> |
||
452 | </message> |
||
453 | <message> |
||
454 | <source>closeDoc() |
||
455 | |||
456 | Closes the current document without prompting to save. |
||
457 | |||
458 | May throw NoDocOpenError if there is no document to close |
||
459 | </source> |
||
460 | <translation type="unfinished"></translation> |
||
461 | </message> |
||
462 | <message> |
||
463 | <source>haveDoc() -> bool |
||
464 | |||
465 | Returns true if there is a document open. |
||
466 | </source> |
||
467 | <translation type="unfinished"></translation> |
||
468 | </message> |
||
469 | <message> |
||
470 | <source>openDoc("name") |
||
471 | |||
472 | Opens the document "name". |
||
473 | |||
474 | May raise ScribusError if the document could not be opened. |
||
475 | </source> |
||
476 | <translation type="unfinished"></translation> |
||
477 | </message> |
||
478 | <message> |
||
479 | <source>saveDoc() |
||
480 | |||
481 | Saves the current document with its current name, returns true if successful. |
||
482 | If the document has not already been saved, this may bring up an interactive |
||
483 | save file dialog. |
||
484 | |||
485 | If the save fails, there is currently no way to tell. |
||
486 | </source> |
||
487 | <translation type="unfinished"></translation> |
||
488 | </message> |
||
489 | <message> |
||
490 | <source>saveDocAs("name") |
||
491 | |||
492 | Saves the current document under the new name "name" (which may be a full or |
||
493 | relative path). |
||
494 | |||
495 | May raise ScribusError if the save fails. |
||
496 | </source> |
||
497 | <translation type="unfinished"></translation> |
||
498 | </message> |
||
499 | <message> |
||
500 | <source>setMargins(lr, rr, tr, br) |
||
501 | |||
502 | Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br) |
||
503 | margins are given in the measurement units of the document - see UNIT_<type> |
||
504 | constants. |
||
505 | </source> |
||
506 | <translation type="unfinished"></translation> |
||
507 | </message> |
||
508 | <message> |
||
509 | <source>setUnit(type) |
||
510 | |||
511 | Changes the measurement unit of the document. Possible values for "unit" are |
||
512 | defined as constants UNIT_<type>. |
||
513 | |||
514 | May raise ValueError if an invalid unit is passed. |
||
515 | </source> |
||
516 | <translation type="unfinished"></translation> |
||
517 | </message> |
||
518 | <message> |
||
519 | <source>getUnit() -> integer (Scribus unit constant) |
||
520 | |||
521 | Returns the measurement units of the document. The returned value will be one |
||
522 | of the UNIT_* constants: |
||
523 | UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS. |
||
524 | </source> |
||
525 | <translation type="unfinished"></translation> |
||
526 | </message> |
||
527 | <message> |
||
528 | <source>loadStylesFromFile("filename") |
||
529 | |||
530 | Loads paragraph styles from the Scribus document at "filename" into the |
||
531 | current document. |
||
532 | </source> |
||
533 | <translation type="unfinished"></translation> |
||
534 | </message> |
||
535 | <message> |
||
536 | <source>setDocType(facingPages, firstPageLeft) |
||
537 | |||
538 | Sets the document type. To get facing pages set the first parameter to |
||
539 | FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead. If you want |
||
540 | to be the first page a left side set the second parameter to FIRSTPAGELEFT, for |
||
541 | a right page use FIRSTPAGERIGHT. |
||
542 | </source> |
||
543 | <translation type="unfinished"></translation> |
||
544 | </message> |
||
545 | <message> |
||
546 | <source>getLineColor(["name"]) -> string |
||
547 | |||
548 | Returns the name of the line color of the object "name". |
||
549 | If "name" is not given the currently selected item is used. |
||
550 | </source> |
||
551 | <translation type="unfinished"></translation> |
||
552 | </message> |
||
553 | <message> |
||
554 | <source>getLineWidth(["name"]) -> integer |
||
555 | |||
556 | Returns the line width of the object "name". If "name" |
||
557 | is not given the currently selected Item is used. |
||
558 | </source> |
||
559 | <translation type="unfinished"></translation> |
||
560 | </message> |
||
561 | <message> |
||
562 | <source>getLineShade(["name"]) -> integer |
||
563 | |||
564 | Returns the shading value of the line color of the object "name". |
||
565 | If "name" is not given the currently selected item is used. |
||
566 | </source> |
||
567 | <translation type="unfinished"></translation> |
||
568 | </message> |
||
569 | <message> |
||
570 | <source>getLineJoin(["name"]) -> integer (see contants) |
||
571 | |||
572 | Returns the line join style of the object "name". If "name" is not given |
||
573 | the currently selected item is used. The join types are: |
||
574 | JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND |
||
575 | </source> |
||
576 | <translation type="unfinished"></translation> |
||
577 | </message> |
||
578 | <message> |
||
579 | <source>getLineEnd(["name"]) -> integer (see constants) |
||
580 | |||
581 | Returns the line cap style of the object "name". If "name" is not given the |
||
582 | currently selected item is used. The cap types are: |
||
583 | CAP_FLAT, CAP_ROUND, CAP_SQUARE |
||
584 | </source> |
||
585 | <translation type="unfinished"></translation> |
||
586 | </message> |
||
587 | <message> |
||
588 | <source>getLineStyle(["name"]) -> integer (see constants) |
||
589 | |||
590 | Returns the line style of the object "name". If "name" is not given the |
||
591 | currently selected item is used. Line style constants are: |
||
592 | LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID |
||
593 | </source> |
||
594 | <translation type="unfinished"></translation> |
||
595 | </message> |
||
596 | <message> |
||
597 | <source>getFillShade(["name"]) -> integer |
||
598 | |||
599 | Returns the shading value of the fill color of the object "name". |
||
600 | If "name" is not given the currently selected item is used. |
||
601 | </source> |
||
602 | <translation type="unfinished"></translation> |
||
603 | </message> |
||
604 | <message> |
||
605 | <source>getImageScale(["name"]) -> (x,y) |
||
606 | |||
607 | Returns a (x, y) tuple containing the scaling values of the image frame |
||
608 | "name". If "name" is not given the currently selected item is used. |
||
609 | </source> |
||
610 | <translation type="unfinished"></translation> |
||
611 | </message> |
||
612 | <message> |
||
613 | <source>getImageName(["name"]) -> string |
||
614 | |||
615 | Returns the filename for the image in the image frame. If "name" is not |
||
616 | given the currently selected item is used. |
||
617 | </source> |
||
618 | <translation type="unfinished"></translation> |
||
619 | </message> |
||
620 | <message> |
||
621 | <source>getSize(["name"]) -> (width,height) |
||
622 | |||
623 | Returns a (width, height) tuple with the size of the object "name". |
||
624 | If "name" is not given the currently selected item is used. The size is |
||
625 | expressed in the current measurement unit of the document - see UNIT_<type> |
||
626 | for reference. |
||
627 | </source> |
||
628 | <translation type="unfinished"></translation> |
||
629 | </message> |
||
630 | <message> |
||
631 | <source>getRotation(["name"]) -> integer |
||
632 | |||
633 | Returns the rotation of the object "name". The value is expressed in degrees, |
||
634 | and clockwise is positive. If "name" is not given the currently selected item |
||
635 | is used. |
||
636 | </source> |
||
637 | <translation type="unfinished"></translation> |
||
638 | </message> |
||
639 | <message> |
||
640 | <source>getAllObjects() -> list |
||
641 | |||
642 | Returns a list containing the names of all objects on the current page. |
||
643 | </source> |
||
644 | <translation type="unfinished"></translation> |
||
645 | </message> |
||
646 | <message> |
||
647 | <source>moveObjectAbs(x, y [, "name"]) |
||
648 | |||
649 | Moves the object "name" to a new location. The coordinates are expressed in |
||
650 | the current measurement unit of the document (see UNIT constants). If "name" |
||
651 | is not given the currently selected item is used. If the object "name" |
||
652 | belongs to a group, the whole group is moved. |
||
653 | </source> |
||
654 | <translation type="unfinished"></translation> |
||
655 | </message> |
||
656 | <message> |
||
657 | <source>rotateObject(rot [, "name"]) |
||
658 | |||
659 | Rotates the object "name" by "rot" degrees relatively. The object is |
||
660 | rotated by the vertex that is currently selected as the rotation point - by |
||
661 | default, the top left vertext at zero rotation. Positive values mean counter |
||
662 | clockwise rotation when the default rotation point is used. If "name" is not |
||
663 | given the currently selected item is used. |
||
664 | </source> |
||
665 | <translation type="unfinished"></translation> |
||
666 | </message> |
||
667 | <message> |
||
668 | <source>sizeObject(width, height [, "name"]) |
||
669 | |||
670 | Resizes the object "name" to the given width and height. If "name" |
||
671 | is not given the currently selected item is used. |
||
672 | </source> |
||
673 | <translation type="unfinished"></translation> |
||
674 | </message> |
||
675 | <message> |
||
676 | <source>getSelectedObject([nr]) -> string |
||
677 | |||
678 | Returns the name of the selected object. "nr" if given indicates the number |
||
679 | of the selected object, e.g. 0 means the first selected object, 1 means the |
||
680 | second selected Object and so on. |
||
681 | </source> |
||
682 | <translation type="unfinished"></translation> |
||
683 | </message> |
||
684 | <message> |
||
685 | <source>selectionCount() -> integer |
||
686 | |||
687 | Returns the number of selected objects. |
||
688 | </source> |
||
689 | <translation type="unfinished"></translation> |
||
690 | </message> |
||
691 | <message> |
||
692 | <source>selectObject("name") |
||
693 | |||
694 | Selects the object with the given "name". |
||
695 | </source> |
||
696 | <translation type="unfinished"></translation> |
||
697 | </message> |
||
698 | <message> |
||
699 | <source>deselectAll() |
||
700 | |||
701 | Deselects all objects in the whole document. |
||
702 | </source> |
||
703 | <translation type="unfinished"></translation> |
||
704 | </message> |
||
705 | <message> |
||
706 | <source>groupObjects(list) |
||
707 | |||
708 | Groups the objects named in "list" together. "list" must contain the names |
||
709 | of the objects to be grouped. If "list" is not given the currently selected |
||
710 | items are used. |
||
711 | </source> |
||
712 | <translation type="unfinished"></translation> |
||
713 | </message> |
||
714 | <message> |
||
715 | <source>unGroupObjects("name") |
||
716 | |||
717 | Destructs the group the object "name" belongs to.If "name" is not given the currently selected item is used.</source> |
||
718 | <translation type="unfinished"></translation> |
||
719 | </message> |
||
720 | <message> |
||
721 | <source>scaleGroup(factor [,"name"]) |
||
722 | |||
723 | Scales the group the object "name" belongs to. Values greater than 1 enlarge |
||
724 | the group, values smaller than 1 make the group smaller e.g a value of 0.5 |
||
725 | scales the group to 50 % of its original size, a value of 1.5 scales the group |
||
726 | to 150 % of its original size. The value for "factor" must be greater than |
||
727 | 0. If "name" is not given the currently selected item is used. |
||
728 | |||
729 | May raise ValueError if an invalid scale factor is passed. |
||
730 | </source> |
||
731 | <translation type="unfinished"></translation> |
||
732 | </message> |
||
733 | <message> |
||
734 | <source>loadImage("filename" [, "name"]) |
||
735 | |||
736 | Loads the picture "picture" into the image frame "name". If "name" is |
||
737 | not given the currently selected item is used. |
||
738 | |||
739 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
740 | </source> |
||
741 | <translation type="unfinished"></translation> |
||
742 | </message> |
||
743 | <message> |
||
744 | <source>scaleImage(x, y [, "name"]) |
||
745 | |||
746 | Sets the scaling factors of the picture in the image frame "name". |
||
747 | If "name" is not given the currently selected item is used. A number of 1 |
||
748 | means 100 %. |
||
749 | |||
750 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
751 | </source> |
||
752 | <translation type="unfinished"></translation> |
||
753 | </message> |
||
754 | <message> |
||
755 | <source>lockObject(["name"]) -> bool |
||
756 | |||
757 | Locks the object "name" if it's unlocked or unlock it if it's locked. |
||
758 | If "name" is not given the currently selected item is used. Returns true |
||
759 | if locked. |
||
760 | </source> |
||
761 | <translation type="unfinished"></translation> |
||
762 | </message> |
||
763 | <message> |
||
764 | <source>isLocked(["name"]) -> bool |
||
765 | |||
766 | Returns true if is the object "name" locked. If "name" is not given the |
||
767 | currently selected item is used. |
||
768 | </source> |
||
769 | <translation type="unfinished"></translation> |
||
770 | </message> |
||
771 | <message> |
||
772 | <source>getFontNames() -> list |
||
773 | |||
774 | Returns a list with the names of all available fonts. |
||
775 | </source> |
||
776 | <translation type="unfinished"></translation> |
||
777 | </message> |
||
778 | <message> |
||
779 | <source>getXFontNames() -> list of tuples |
||
780 | |||
781 | Returns a larger font info. It's a list of the tuples with: |
||
782 | [ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ] |
||
783 | </source> |
||
784 | <translation type="unfinished"></translation> |
||
785 | </message> |
||
786 | <message> |
||
787 | <source>getLayers() -> list |
||
788 | |||
789 | Returns a list with the names of all defined layers. |
||
790 | </source> |
||
791 | <translation type="unfinished"></translation> |
||
792 | </message> |
||
793 | <message> |
||
794 | <source>setActiveLayer("name") |
||
795 | |||
796 | Sets the active layer to the layer named "name". |
||
797 | |||
798 | May raise NotFoundError if the layer can't be found. |
||
799 | May raise ValueError if the layer name isn't acceptable. |
||
800 | </source> |
||
801 | <translation type="unfinished"></translation> |
||
802 | </message> |
||
803 | <message> |
||
804 | <source>getActiveLayer() -> string |
||
805 | |||
806 | Returns the name of the current active layer. |
||
807 | </source> |
||
808 | <translation type="unfinished"></translation> |
||
809 | </message> |
||
810 | <message> |
||
811 | <source>sentToLayer("layer" [, "name"]) |
||
812 | |||
813 | Sends the object "name" to the layer "layer". The layer must exist. |
||
814 | If "name" is not given the currently selected item is used. |
||
815 | |||
816 | May raise NotFoundError if the layer can't be found. |
||
817 | May raise ValueError if the layer name isn't acceptable. |
||
818 | </source> |
||
819 | <translation type="unfinished"></translation> |
||
820 | </message> |
||
821 | <message> |
||
822 | <source>setLayerVisible("layer", visible) |
||
823 | |||
824 | Sets the layer "layer" to be visible or not. If is the visible set to false |
||
825 | the layer is invisible. |
||
826 | |||
827 | May raise NotFoundError if the layer can't be found. |
||
828 | May raise ValueError if the layer name isn't acceptable. |
||
829 | </source> |
||
830 | <translation type="unfinished"></translation> |
||
831 | </message> |
||
832 | <message> |
||
833 | <source>deleteLayer("layer") |
||
834 | |||
835 | Deletes the layer with the name "layer". Nothing happens if the layer doesn't |
||
836 | exists or if it's the only layer in the document. |
||
837 | |||
838 | May raise NotFoundError if the layer can't be found. |
||
839 | May raise ValueError if the layer name isn't acceptable. |
||
840 | </source> |
||
841 | <translation type="unfinished"></translation> |
||
842 | </message> |
||
843 | <message> |
||
844 | <source>createLayer(layer) |
||
845 | |||
846 | Creates a new layer with the name "name". |
||
847 | |||
848 | May raise ValueError if the layer name isn't acceptable. |
||
849 | </source> |
||
850 | <translation type="unfinished"></translation> |
||
851 | </message> |
||
852 | <message> |
||
853 | <source>getGuiLanguage() -> string |
||
854 | |||
855 | Returns a string with the -lang value. |
||
856 | </source> |
||
857 | <translation type="unfinished"></translation> |
||
858 | </message> |
||
859 | <message> |
||
860 | <source>createEllipse(x, y, width, height, ["name"]) -> string |
||
861 | |||
862 | Creates a new ellipse on the current page and returns its name. |
||
863 | The coordinates are given in the current measurement units of the document |
||
864 | (see UNIT constants). "name" should be a unique identifier for the object |
||
865 | because you need this name for further referencing of that object. If "name" |
||
866 | is not given Scribus will create one for you. |
||
867 | |||
868 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
869 | </source> |
||
870 | <translation type="unfinished"></translation> |
||
871 | </message> |
||
872 | <message> |
||
873 | <source>createImage(x, y, width, height, ["name"]) -> string |
||
874 | |||
875 | Creates a new picture frame on the current page and returns its name. The |
||
876 | coordinates are given in the current measurement units of the document. |
||
877 | "name" should be a unique identifier for the object because you need this |
||
878 | name for further access to that object. If "name" is not given Scribus will |
||
879 | create one for you. |
||
880 | |||
881 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
882 | </source> |
||
883 | <translation type="unfinished"></translation> |
||
884 | </message> |
||
885 | <message> |
||
886 | <source>createText(x, y, width, height, ["name"]) -> string |
||
887 | |||
888 | Creates a new text frame on the actual page and returns its name. |
||
889 | The coordinates are given in the actual measurement unit of the document (see |
||
890 | UNIT constants). "name" should be a unique identifier for the object because |
||
891 | you need this name for further referencing of that object. If "name" is not |
||
892 | given Scribus will create one for you. |
||
893 | |||
894 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
895 | </source> |
||
896 | <translation type="unfinished"></translation> |
||
897 | </message> |
||
898 | <message> |
||
899 | <source>createLine(x1, y1, x2, y2, ["name"]) -> string |
||
900 | |||
901 | Creates a new line from the point(x1, y1) to the point(x2, y2) and returns |
||
902 | its name. The coordinates are given in the current measurement unit of the |
||
903 | document (see UNIT constants). "name" should be a unique identifier for the |
||
904 | object because you need this name for further access to that object. If |
||
905 | "name" is not given Scribus will create one for you. |
||
906 | |||
907 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
908 | </source> |
||
909 | <translation type="unfinished"></translation> |
||
910 | </message> |
||
911 | <message> |
||
912 | <source>createPolyLine(list, ["name"]) -> string |
||
913 | |||
914 | Creates a new polyline and returns its name. The points for the polyline are |
||
915 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
916 | The coordinates are given in the current measurement units of the document (see |
||
917 | UNIT constants). "name" should be a unique identifier for the object because |
||
918 | you need this name for further access to that object. If "name" is not given |
||
919 | Scribus will create one for you. |
||
920 | |||
921 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
922 | May raise ValueError if an insufficient number of points is passed or if |
||
923 | the number of values passed don't group into points without leftovers. |
||
924 | </source> |
||
925 | <translation type="unfinished"></translation> |
||
926 | </message> |
||
927 | <message> |
||
928 | <source>createPolygon(list, ["name"]) -> string |
||
929 | |||
930 | Creates a new polygon and returns its name. The points for the polygon are |
||
931 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
932 | At least three points are required. There is no need to repeat the first point |
||
933 | to close the polygon. The polygon is automatically closed by connecting the |
||
934 | first and the last point. The coordinates are given in the current measurement |
||
935 | units of the document (see UNIT constants). "name" should be a unique |
||
936 | identifier for the object because you need this name for further access to that |
||
937 | object. If "name" is not given Scribus will create one for you. |
||
938 | |||
939 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
940 | May raise ValueError if an insufficient number of points is passed or if |
||
941 | the number of values passed don't group into points without leftovers. |
||
942 | </source> |
||
943 | <translation type="unfinished"></translation> |
||
944 | </message> |
||
945 | <message> |
||
946 | <source>createBezierLine(list, ["name"]) -> string |
||
947 | |||
948 | Creates a new bezier curve and returns its name. The points for the bezier |
||
949 | curve are stored in the list "list" in the following order: |
||
950 | [x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn] |
||
951 | In the points list, x and y mean the x and y coordinates of the point and kx |
||
952 | and ky meaning the control point for the curve. The coordinates are given in |
||
953 | the current measurement units of the document (see UNIT constants). "name" |
||
954 | should be a unique identifier for the object because you need this name for |
||
955 | further access to that object. If "name" is not given Scribus will create one |
||
956 | for you. |
||
957 | |||
958 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
959 | May raise ValueError if an insufficient number of points is passed or if |
||
960 | the number of values passed don't group into points without leftovers. |
||
961 | </source> |
||
962 | <translation type="unfinished"></translation> |
||
963 | </message> |
||
964 | <message> |
||
965 | <source>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string |
||
966 | |||
967 | Creates a new pathText by merging the two objects "textbox" and |
||
968 | "beziercurve" and returns its name. The coordinates are given in the current |
||
969 | measurement unit of the document (see UNIT constants). "name" should be a |
||
970 | unique identifier for the object because you need this name for further access |
||
971 | to that object. If "name" is not given Scribus will create one for you. |
||
972 | |||
973 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
974 | May raise NotFoundError if one or both of the named base object don't exist. |
||
975 | </source> |
||
976 | <translation type="unfinished"></translation> |
||
977 | </message> |
||
978 | <message> |
||
979 | <source>deleteObject(["name"]) |
||
980 | |||
981 | Deletes the item with the name "name". If "name" is not given the currently |
||
982 | selected item is deleted. |
||
983 | </source> |
||
984 | <translation type="unfinished"></translation> |
||
985 | </message> |
||
986 | <message> |
||
987 | <source>objectExists(["name"]) -> bool |
||
988 | |||
989 | Test if an object with specified name really exists in the document. |
||
990 | The optional parameter is the object name. When no object name is given, |
||
991 | returns True if there is something selected. |
||
992 | </source> |
||
993 | <translation type="unfinished"></translation> |
||
994 | </message> |
||
995 | <message> |
||
996 | <source>setStyle("style" [, "name"]) |
||
997 | |||
998 | Apply the named "style" to the object named "name". If is no object name |
||
999 | given, it's applied on the selected object. |
||
1000 | </source> |
||
1001 | <translation type="unfinished"></translation> |
||
1002 | </message> |
||
1003 | <message> |
||
1004 | <source>getAllStyles() -> list |
||
1005 | |||
1006 | Return a list of the names of all paragraph styles in the current document. |
||
1007 | </source> |
||
1008 | <translation type="unfinished"></translation> |
||
1009 | </message> |
||
1010 | <message> |
||
1011 | <source>currentPage() -> integer |
||
1012 | |||
1013 | Returns the number of the current working page. Page numbers are counted from 1 |
||
1014 | upwards, no matter what the displayed first page number of your document is. |
||
1015 | </source> |
||
1016 | <translation type="unfinished"></translation> |
||
1017 | </message> |
||
1018 | <message> |
||
1019 | <source>redrawAll() |
||
1020 | |||
1021 | Redraws all pages. |
||
1022 | </source> |
||
1023 | <translation type="unfinished"></translation> |
||
1024 | </message> |
||
1025 | <message> |
||
1026 | <source>savePageAsEPS("name") |
||
1027 | |||
1028 | Saves the current page as an EPS to the file "name". |
||
1029 | |||
1030 | May raise ScribusError if the save failed. |
||
1031 | </source> |
||
1032 | <translation type="unfinished"></translation> |
||
1033 | </message> |
||
1034 | <message> |
||
1035 | <source>deletePage(nr) |
||
1036 | |||
1037 | Deletes the given page. Does nothing if the document contains only one page. |
||
1038 | Page numbers are counted from 1 upwards, no matter what the displayed first |
||
1039 | page number is. |
||
1040 | |||
1041 | May raise IndexError if the page number is out of range |
||
1042 | </source> |
||
1043 | <translation type="unfinished"></translation> |
||
1044 | </message> |
||
1045 | <message> |
||
1046 | <source>gotoPage(nr) |
||
1047 | |||
1048 | Moves to the page "nr" (that is, makes the current page "nr"). Note that |
||
1049 | gotoPage doesn't (curently) change the page the user's view is displaying, it |
||
1050 | just sets the page that script commands will operates on. |
||
1051 | |||
1052 | May raise IndexError if the page number is out of range. |
||
1053 | </source> |
||
1054 | <translation type="unfinished"></translation> |
||
1055 | </message> |
||
1056 | <message> |
||
1057 | <source>pageCount() -> integer |
||
1058 | |||
1059 | Returns the number of pages in the document. |
||
1060 | </source> |
||
1061 | <translation type="unfinished"></translation> |
||
1062 | </message> |
||
1063 | <message> |
||
1064 | <source>getHGuides() -> list |
||
1065 | |||
1066 | Returns a list containing positions of the horizontal guides. Values are in the |
||
1067 | document's current units - see UNIT_<type> constants. |
||
1068 | </source> |
||
1069 | <translation type="unfinished"></translation> |
||
1070 | </message> |
||
1071 | <message> |
||
1072 | <source>setHGuides(list) |
||
1073 | |||
1074 | Sets horizontal guides. Input parameter must be a list of guide positions |
||
1075 | measured in the current document units - see UNIT_<type> constants. |
||
1076 | |||
1077 | Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost |
||
1078 | setHGuides([90,250]) # replace current guides entirely |
||
1079 | </source> |
||
1080 | <translation type="unfinished"></translation> |
||
1081 | </message> |
||
1082 | <message> |
||
1083 | <source>getVGuides() |
||
1084 | |||
1085 | See getHGuides. |
||
1086 | </source> |
||
1087 | <translation type="unfinished"></translation> |
||
1088 | </message> |
||
1089 | <message> |
||
1090 | <source>setVGuides() |
||
1091 | |||
1092 | See setHGuides. |
||
1093 | </source> |
||
1094 | <translation type="unfinished"></translation> |
||
1095 | </message> |
||
1096 | <message> |
||
1097 | <source>getPageSize() -> tuple |
||
1098 | |||
1099 | Returns a tuple with page dimensions measured in the document's current units. |
||
1100 | See UNIT_<type> constants and getPageMargins() |
||
1101 | </source> |
||
1102 | <translation type="unfinished"></translation> |
||
1103 | </message> |
||
1104 | <message> |
||
1105 | <source>getPageItems() -> list |
||
1106 | |||
1107 | Returns a list of tuples with items on the current page. The tuple is: |
||
1108 | (name, objectType, order) E.g. [('Text1', 4, 0), ('Image1', 2, 1)] |
||
1109 | means that object named 'Text1' is a text frame (type 4) and is the first at |
||
1110 | the page... |
||
1111 | </source> |
||
1112 | <translation type="unfinished"></translation> |
||
1113 | </message> |
||
1114 | <message> |
||
1115 | <source>setFillColor("color", ["name"]) |
||
1116 | |||
1117 | Sets the fill color of the object "name" to the color "color". "color" |
||
1118 | is the name of one of the defined colors. If "name" is not given the |
||
1119 | currently selected item is used. |
||
1120 | </source> |
||
1121 | <translation type="unfinished"></translation> |
||
1122 | </message> |
||
1123 | <message> |
||
1124 | <source>setLineColor("color", ["name"]) |
||
1125 | |||
1126 | Sets the line color of the object "name" to the color "color". If "name" |
||
1127 | is not given the currently selected item is used. |
||
1128 | </source> |
||
1129 | <translation type="unfinished"></translation> |
||
1130 | </message> |
||
1131 | <message> |
||
1132 | <source>setLineWidth(width, ["name"]) |
||
1133 | |||
1134 | Sets line width of the object "name" to "width". "width" must be in the |
||
1135 | range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not |
||
1136 | given the currently selected item is used. |
||
1137 | |||
1138 | May raise ValueError if the line width is out of bounds. |
||
1139 | </source> |
||
1140 | <translation type="unfinished"></translation> |
||
1141 | </message> |
||
1142 | <message> |
||
1143 | <source>setLineShade(shade, ["name"]) |
||
1144 | |||
1145 | Sets the shading of the line color of the object "name" to "shade". |
||
1146 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
1147 | (full color intensity). If "name" is not given the currently selected item |
||
1148 | is used. |
||
1149 | |||
1150 | May raise ValueError if the line shade is out of bounds. |
||
1151 | </source> |
||
1152 | <translation type="unfinished"></translation> |
||
1153 | </message> |
||
1154 | <message> |
||
1155 | <source>setLineJoin(join, ["name"]) |
||
1156 | |||
1157 | Sets the line join style of the object "name" to the style "join". |
||
1158 | If "name" is not given the currently selected item is used. There are |
||
1159 | predefined constants for join - JOIN_<type>. |
||
1160 | </source> |
||
1161 | <translation type="unfinished"></translation> |
||
1162 | </message> |
||
1163 | <message> |
||
1164 | <source>setLineEnd(endtype, ["name"]) |
||
1165 | |||
1166 | Sets the line cap style of the object "name" to the style "cap". |
||
1167 | If "name" is not given the currently selected item is used. There are |
||
1168 | predefined constants for "cap" - CAP_<type>. |
||
1169 | </source> |
||
1170 | <translation type="unfinished"></translation> |
||
1171 | </message> |
||
1172 | <message> |
||
1173 | <source>setLineStyle(style, ["name"]) |
||
1174 | |||
1175 | Sets the line style of the object "name" to the style "style". If "name" |
||
1176 | is not given the currently selected item is used. There are predefined |
||
1177 | constants for "style" - LINE_<style>. |
||
1178 | </source> |
||
1179 | <translation type="unfinished"></translation> |
||
1180 | </message> |
||
1181 | <message> |
||
1182 | <source>setFillShade(shade, ["name"]) |
||
1183 | |||
1184 | Sets the shading of the fill color of the object "name" to "shade". |
||
1185 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
1186 | (full Color intensity). If "name" is not given the currently selected |
||
1187 | Item is used. |
||
1188 | |||
1189 | May raise ValueError if the fill shade is out of bounds. |
||
1190 | </source> |
||
1191 | <translation type="unfinished"></translation> |
||
1192 | </message> |
||
1193 | <message> |
||
1194 | <source>setCornerRadius(radius, ["name"]) |
||
1195 | |||
1196 | Sets the corner radius of the object "name". The radius is expressed |
||
1197 | in points. If "name" is not given the currently selected item is used. |
||
1198 | |||
1199 | May raise ValueError if the corner radius is negative. |
||
1200 | </source> |
||
1201 | <translation type="unfinished"></translation> |
||
1202 | </message> |
||
1203 | <message> |
||
1204 | <source>setMultiLine("namedStyle", ["name"]) |
||
1205 | |||
1206 | Sets the line style of the object "name" to the named style "namedStyle". |
||
1207 | If "name" is not given the currently selected item is used. |
||
1208 | |||
1209 | May raise NotFoundError if the line style doesn't exist. |
||
1210 | </source> |
||
1211 | <translation type="unfinished"></translation> |
||
1212 | </message> |
||
1213 | <message> |
||
1214 | <source>progressReset() |
||
1215 | |||
1216 | Cleans up the Scribus progress bar previous settings. It is called before the |
||
1217 | new progress bar use. See progressSet. |
||
1218 | </source> |
||
1219 | <translation type="unfinished"></translation> |
||
1220 | </message> |
||
1221 | <message> |
||
1222 | <source>progressTotal(max) |
||
1223 | |||
1224 | Sets the progress bar's maximum steps value to the specified number. |
||
1225 | See progressSet. |
||
1226 | </source> |
||
1227 | <translation type="unfinished"></translation> |
||
1228 | </message> |
||
1229 | <message> |
||
1230 | <source>progressSet(nr) |
||
1231 | |||
1232 | Set the progress bar position to "nr", a value relative to the previously set |
||
1233 | progressTotal. The progress bar uses the concept of steps; you give it the |
||
1234 | total number of steps and the number of steps completed so far and it will |
||
1235 | display the percentage of steps that have been completed. You can specify the |
||
1236 | total number of steps with progressTotal(). The current number of steps is set |
||
1237 | with progressSet(). The progress bar can be rewound to the beginning with |
||
1238 | progressReset(). [based on info taken from Trolltech's Qt docs] |
||
1239 | </source> |
||
1240 | <translation type="unfinished"></translation> |
||
1241 | </message> |
||
1242 | <message> |
||
1243 | <source>setCursor() |
||
1244 | |||
1245 | [UNSUPPORTED!] This might break things, so steer clear for now. |
||
1246 | </source> |
||
1247 | <translation type="unfinished"></translation> |
||
1248 | </message> |
||
1249 | <message> |
||
1250 | <source>docChanged(bool) |
||
1251 | |||
1252 | Enable/disable save icon in the Scribus icon bar and the Save menu item. It's |
||
1253 | useful to call this procedure when you're changing the document, because Scribus |
||
1254 | won't automatically notice when you change the document using a script. |
||
1255 | </source> |
||
1256 | <translation type="unfinished"></translation> |
||
1257 | </message> |
||
1258 | <message> |
||
1525 | cbradney | 1259 | <source>setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>) |
1260 | |||
1261 | Sets the scale to frame on the selected or specified image frame to `scaletoframe'. |
||
1262 | If `proportional' is specified, set fixed aspect ratio scaling to `proportional'. |
||
1263 | Both `scaletoframe' and `proportional' are boolean. |
||
1264 | |||
1265 | May raise WrongFrameTypeError. |
||
1266 | </source> |
||
1267 | <translation type="unfinished"></translation> |
||
1268 | </message> |
||
1269 | <message> |
||
1270 | <source>isLayerPrintable("layer") -> bool |
||
1271 | |||
1272 | Returns whether the layer "layer" is printable or not, a value of True means |
||
1273 | that the layer "layer" can be printed, a value of False means that printing |
||
1274 | the layer "layer" is disabled. |
||
1275 | |||
1276 | May raise NotFoundError if the layer can't be found. |
||
1277 | May raise ValueError if the layer name isn't acceptable. |
||
1278 | </source> |
||
1279 | <translation type="unfinished"></translation> |
||
1280 | </message> |
||
1281 | <message> |
||
1282 | <source>getColorAsRGB("name") -> tuple |
||
1283 | |||
1284 | Returns a tuple (R,G,B) containing the three color components of the |
||
1285 | color "name" from the current document, converted to the RGB color |
||
1286 | space. If no document is open, returns the value of the named color |
||
1287 | from the default document colors. |
||
1288 | |||
1289 | May raise NotFoundError if the named color wasn't found. |
||
1290 | May raise ValueError if an invalid color name is specified. |
||
1291 | </source> |
||
1292 | <translation type="unfinished"></translation> |
||
1293 | </message> |
||
1294 | <message> |
||
1295 | <source>getPropertyCType(object, property, includesuper=True) |
||
1296 | |||
1297 | Returns the name of the C type of `property' of `object'. See getProperty() |
||
1298 | for details of arguments. |
||
1299 | |||
1300 | If `includesuper' is true, search inherited properties too. |
||
1301 | </source> |
||
1302 | <translation type="unfinished"></translation> |
||
1303 | </message> |
||
1304 | <message> |
||
1305 | <source>getPropertyNames(object, includesuper=True) |
||
1306 | |||
1307 | Return a list of property names supported by `object'. |
||
1308 | If `includesuper' is true, return properties supported |
||
1309 | by parent classes as well. |
||
1310 | </source> |
||
1311 | <translation type="unfinished"></translation> |
||
1312 | </message> |
||
1313 | <message> |
||
1314 | <source>getProperty(object, property) |
||
1315 | |||
1316 | Return the value of the property `property' of the passed `object'. |
||
1317 | |||
1318 | The `object' argument may be a string, in which case the named PageItem |
||
1319 | is searched for. It may also be a PyCObject, which may point to any |
||
1320 | C++ QObject instance. |
||
1321 | |||
1322 | The `property' argument must be a string, and is the name of the property |
||
1323 | to look up on `object'. |
||
1324 | |||
1325 | The return value varies depending on the type of the property. |
||
1326 | </source> |
||
1327 | <translation type="unfinished"></translation> |
||
1328 | </message> |
||
1329 | <message> |
||
1330 | <source>setProperty(object, property, value) |
||
1331 | |||
1332 | Set `property' of `object' to `value'. If `value' cannot be converted to a type |
||
1333 | compatible with the type of `property', an exception is raised. An exception may |
||
1334 | also be raised if the underlying setter fails. |
||
1335 | |||
1336 | See getProperty() for more information. |
||
1337 | </source> |
||
1338 | <translation type="unfinished"></translation> |
||
1339 | </message> |
||
1340 | <message> |
||
1341 | <source>getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True) |
||
1342 | |||
1343 | Return a list of children of `object', possibly restricted to children |
||
1344 | of class named `ofclass' or children named `ofname'. If `recursive' is true, |
||
1345 | search recursively through children, grandchildren, etc. |
||
1346 | |||
1347 | See QObject::children() in the Qt docs for more information. |
||
1348 | </source> |
||
1349 | <translation type="unfinished"></translation> |
||
1350 | </message> |
||
1351 | <message> |
||
1352 | <source>getChild(object, childname, ofclass=None, recursive=True) |
||
1353 | |||
1354 | Return the first child of `object' named `childname', possibly restricting |
||
1355 | the search to children of type name `ofclass'. If `recursive' is true, |
||
1356 | search recursively through children, grandchildren, etc. |
||
1357 | </source> |
||
1358 | <translation type="unfinished"></translation> |
||
1359 | </message> |
||
1360 | <message> |
||
1361 | <source>renderFont("name", "filename", "sample", size, format="PPM") -> bool |
||
1362 | |||
1363 | Creates an image preview of font "name" with given text "sample" and size. |
||
1364 | If "filename" is not "", image is saved into "filename". Otherwise |
||
1365 | image data is returned as a string. The optional "format" argument |
||
1366 | specifies the image format to generate, and supports any format allowed |
||
1367 | by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM. |
||
1368 | |||
1369 | May raise NotFoundError if the specified font can't be found. |
||
1370 | May raise ValueError if an empty sample or filename is passed. |
||
1371 | </source> |
||
1372 | <translation type="unfinished"></translation> |
||
1373 | </message> |
||
1374 | <message> |
||
1375 | <source>selectText(start, count, ["name"]) |
||
1376 | |||
1377 | Selects "count" characters of text in the text frame "name" starting from the |
||
1378 | character "start". Character counting starts at 0. If "count" is zero, any |
||
1379 | text selection will be cleared. If "name" is not given the currently |
||
1380 | selected item is used. |
||
1381 | |||
1382 | May throw IndexError if the selection is outside the bounds of the text. |
||
1383 | </source> |
||
1384 | <translation type="unfinished"></translation> |
||
1385 | </message> |
||
1386 | <message> |
||
3064 | cbradney | 1387 | <source>fileDialog("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename |
1525 | cbradney | 1388 | |
3064 | cbradney | 1389 | Shows a File Open dialog box with the caption "caption". Files are filtered |
1390 | with the filter string "filter". A default filename or file path can also |
||
1391 | supplied, leave this string empty when you don't want to use it. A value of |
||
1392 | True for haspreview enables a small preview widget in the FileSelect box. When |
||
1393 | the issave parameter is set to True the dialog acts like a "Save As" dialog |
||
1394 | otherwise it acts like a "File Open Dialog". When the isdir parameter is True |
||
1395 | the dialog shows and returns only directories. The default for all of the |
||
1396 | opional parameters is False. |
||
1525 | cbradney | 1397 | |
3064 | cbradney | 1398 | The filter, if specified, takes the form 'comment (*.type *.type2 ...)'. |
1399 | For example 'Images (*.png *.xpm *.jpg)'. |
||
1400 | |||
1401 | Refer to the Qt-Documentation for QFileDialog for details on filters. |
||
1402 | |||
1403 | Example: fileDialog('Open input', 'CSV files (*.csv)') |
||
1404 | Example: fileDialog('Save report', defaultname='report.txt', issave=True) |
||
1405 | </source> |
||
1406 | <translation type="unfinished"></translation> |
||
1407 | </message> |
||
1408 | <message> |
||
1409 | <source>newStyleDialog() -> string |
||
1410 | |||
1411 | Shows 'Create new paragraph style' dialog. Function returns real |
||
1412 | style name or None when user cancels the dialog. |
||
1413 | </source> |
||
1414 | <translation type="unfinished"></translation> |
||
1415 | </message> |
||
1416 | <message> |
||
1417 | <source>getPageMargins() |
||
1418 | |||
1419 | Returns the page margins as a (top, left, right, bottom) tuple in the current |
||
1420 | units. See UNIT_<type> constants and getPageSize(). |
||
1421 | </source> |
||
1422 | <translation type="unfinished"></translation> |
||
1423 | </message> |
||
1424 | <message> |
||
1425 | <source>textOverflows(["name", nolinks]) -> integer |
||
1426 | |||
1427 | Returns the actual number of overflowing characters in text frame "name". |
||
1428 | If is nolinks set to non zero value it takes only one frame - it doesn't |
||
1429 | use text frame linking. Without this parameter it search all linking chain. |
||
1430 | |||
1525 | cbradney | 1431 | May raise WrongFrameTypeError if the target frame is not an text frame |
1432 | </source> |
||
1433 | <translation type="unfinished"></translation> |
||
1434 | </message> |
||
3064 | cbradney | 1435 | <message> |
1436 | <source>setPDFBookmark("toggle", ["name"]) |
||
1437 | |||
1438 | Sets wether (toggle = 1) the text frame "name" is a bookmark nor not. |
||
1439 | If "name" is not given the currently selected item is used. |
||
1440 | |||
1441 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
1442 | </source> |
||
1443 | <translation type="unfinished"></translation> |
||
1444 | </message> |
||
1445 | <message> |
||
1446 | <source>isPDFBookmark(["name"]) -> bool |
||
1447 | |||
1448 | Returns true if the text frame "name" is a PDF bookmark. |
||
1449 | If "name" is not given the currently selected item is used. |
||
1450 | |||
1451 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
1452 | </source> |
||
1453 | <translation type="unfinished"></translation> |
||
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> |
||
1135 | cbradney | 1832 | </context> |
1833 | <context> |
||
444 | fschmid | 1834 | <name>About</name> |
1835 | <message> |
||
1135 | cbradney | 1836 | <source>About Scribus%1%2</source> |
1837 | <translation type="obsolete">О Scribus-у%1%2</translation> |
||
1838 | </message> |
||
1839 | <message> |
||
769 | cbradney | 1840 | <source>%1. %2 %3 </source> |
3064 | cbradney | 1841 | <translation type="obsolete">%1. %2 %3 </translation> |
444 | fschmid | 1842 | </message> |
1843 | <message> |
||
769 | cbradney | 1844 | <source>Scribus Version %1 |
444 | fschmid | 1845 | %2 %3</source> |
3064 | cbradney | 1846 | <translation type="obsolete">Scribus верзија %1 |
444 | fschmid | 1847 | %2 %3</translation> |
1848 | </message> |
||
1849 | <message> |
||
769 | cbradney | 1850 | <source>Build-ID:</source> |
3824 | cbradney | 1851 | <translation type="obsolete">ID градње:</translation> |
444 | fschmid | 1852 | </message> |
1853 | <message> |
||
769 | cbradney | 1854 | <source>&About</source> |
1855 | <translation>О прогр&аму</translation> |
||
444 | fschmid | 1856 | </message> |
1857 | <message> |
||
769 | cbradney | 1858 | <source>Development Team:</source> |
1859 | <translation>Развојни тим:</translation> |
||
444 | fschmid | 1860 | </message> |
1861 | <message> |
||
769 | cbradney | 1862 | <source>Contributions from:</source> |
1863 | <translation>Прилози од стране:</translation> |
||
444 | fschmid | 1864 | </message> |
1865 | <message> |
||
769 | cbradney | 1866 | <source>Windows port:</source> |
3064 | cbradney | 1867 | <translation type="obsolete">Порт за windows:</translation> |
444 | fschmid | 1868 | </message> |
1869 | <message> |
||
769 | cbradney | 1870 | <source>Official Documentation:</source> |
1871 | <translation>Званична документација:</translation> |
||
444 | fschmid | 1872 | </message> |
1873 | <message> |
||
769 | cbradney | 1874 | <source>Other Documentation:</source> |
1875 | <translation>Остала документација:</translation> |
||
444 | fschmid | 1876 | </message> |
1877 | <message> |
||
769 | cbradney | 1878 | <source>A&uthors</source> |
1879 | <translation>А&утори</translation> |
||
444 | fschmid | 1880 | </message> |
1881 | <message> |
||
769 | cbradney | 1882 | <source>Basque:</source> |
3064 | cbradney | 1883 | <translation type="obsolete">Баскијски:</translation> |
444 | fschmid | 1884 | </message> |
1885 | <message> |
||
769 | cbradney | 1886 | <source>Brazilian:</source> |
3064 | cbradney | 1887 | <translation type="obsolete">Бразилски:</translation> |
444 | fschmid | 1888 | </message> |
1889 | <message> |
||
769 | cbradney | 1890 | <source>Bulgarian:</source> |
3064 | cbradney | 1891 | <translation type="obsolete">Бугарски:</translation> |
444 | fschmid | 1892 | </message> |
1893 | <message> |
||
769 | cbradney | 1894 | <source>Catalan:</source> |
3064 | cbradney | 1895 | <translation type="obsolete">Каталански:</translation> |
444 | fschmid | 1896 | </message> |
1897 | <message> |
||
769 | cbradney | 1898 | <source>Czech:</source> |
3064 | cbradney | 1899 | <translation type="obsolete">Чешки:</translation> |
444 | fschmid | 1900 | </message> |
1901 | <message> |
||
769 | cbradney | 1902 | <source>Danish:</source> |
3064 | cbradney | 1903 | <translation type="obsolete">Дански:</translation> |
444 | fschmid | 1904 | </message> |
1905 | <message> |
||
769 | cbradney | 1906 | <source>English (British):</source> |
3064 | cbradney | 1907 | <translation type="obsolete">Енглески (Британски):</translation> |
444 | fschmid | 1908 | </message> |
1909 | <message> |
||
769 | cbradney | 1910 | <source>Esperanto:</source> |
3064 | cbradney | 1911 | <translation type="obsolete">Есперанто:</translation> |
444 | fschmid | 1912 | </message> |
1913 | <message> |
||
769 | cbradney | 1914 | <source>Finnish:</source> |
3064 | cbradney | 1915 | <translation type="obsolete">Фински:</translation> |
444 | fschmid | 1916 | </message> |
1917 | <message> |
||
769 | cbradney | 1918 | <source>French:</source> |
3064 | cbradney | 1919 | <translation type="obsolete">Француски:</translation> |
444 | fschmid | 1920 | </message> |
1921 | <message> |
||
769 | cbradney | 1922 | <source>Galician:</source> |
3064 | cbradney | 1923 | <translation type="obsolete">Галицијски:</translation> |
444 | fschmid | 1924 | </message> |
1925 | <message> |
||
769 | cbradney | 1926 | <source>German:</source> |
3064 | cbradney | 1927 | <translation type="obsolete">Немачки:</translation> |
444 | fschmid | 1928 | </message> |
1929 | <message> |
||
769 | cbradney | 1930 | <source>Hungarian:</source> |
3064 | cbradney | 1931 | <translation type="obsolete">Мађарски:</translation> |
444 | fschmid | 1932 | </message> |
1933 | <message> |
||
769 | cbradney | 1934 | <source>Italian:</source> |
3064 | cbradney | 1935 | <translation type="obsolete">Италијански:</translation> |
444 | fschmid | 1936 | </message> |
1937 | <message> |
||
769 | cbradney | 1938 | <source>Korean:</source> |
3064 | cbradney | 1939 | <translation type="obsolete">Корејски:</translation> |
444 | fschmid | 1940 | </message> |
1941 | <message> |
||
769 | cbradney | 1942 | <source>Lithuanian:</source> |
3064 | cbradney | 1943 | <translation type="obsolete">Литвански:</translation> |
444 | fschmid | 1944 | </message> |
1945 | <message> |
||
769 | cbradney | 1946 | <source>Norwegian:</source> |
3064 | cbradney | 1947 | <translation type="obsolete">Норвешки:</translation> |
444 | fschmid | 1948 | </message> |
1949 | <message> |
||
769 | cbradney | 1950 | <source>Polish:</source> |
3064 | cbradney | 1951 | <translation type="obsolete">Пољски:</translation> |
444 | fschmid | 1952 | </message> |
1953 | <message> |
||
769 | cbradney | 1954 | <source>Russian:</source> |
3064 | cbradney | 1955 | <translation type="obsolete">Руски:</translation> |
444 | fschmid | 1956 | </message> |
1957 | <message> |
||
769 | cbradney | 1958 | <source>Slovak:</source> |
3064 | cbradney | 1959 | <translation type="obsolete">Словачки:</translation> |
444 | fschmid | 1960 | </message> |
1961 | <message> |
||
769 | cbradney | 1962 | <source>Slovenian:</source> |
3064 | cbradney | 1963 | <translation type="obsolete">Словеначки:</translation> |
444 | fschmid | 1964 | </message> |
1965 | <message> |
||
769 | cbradney | 1966 | <source>Spanish:</source> |
3064 | cbradney | 1967 | <translation type="obsolete">Шпански:</translation> |
444 | fschmid | 1968 | </message> |
1969 | <message> |
||
769 | cbradney | 1970 | <source>Swedish:</source> |
3064 | cbradney | 1971 | <translation type="obsolete">Шведски:</translation> |
444 | fschmid | 1972 | </message> |
1973 | <message> |
||
769 | cbradney | 1974 | <source>Turkish:</source> |
3064 | cbradney | 1975 | <translation type="obsolete">Турски:</translation> |
444 | fschmid | 1976 | </message> |
1977 | <message> |
||
769 | cbradney | 1978 | <source>Ukrainian:</source> |
3064 | cbradney | 1979 | <translation type="obsolete">Украјински:</translation> |
444 | fschmid | 1980 | </message> |
1981 | <message> |
||
769 | cbradney | 1982 | <source>Welsh:</source> |
3064 | cbradney | 1983 | <translation type="obsolete">Велшки:</translation> |
444 | fschmid | 1984 | </message> |
1985 | <message> |
||
769 | cbradney | 1986 | <source>&Translations</source> |
1987 | <translation>&Преводи</translation> |
||
444 | fschmid | 1988 | </message> |
1989 | <message> |
||
769 | cbradney | 1990 | <source>Homepage</source> |
1991 | <translation>Почетна страница</translation> |
||
444 | fschmid | 1992 | </message> |
1993 | <message> |
||
769 | cbradney | 1994 | <source>Online Reference</source> |
1995 | <translation>Веб референца</translation> |
||
444 | fschmid | 1996 | </message> |
1997 | <message> |
||
769 | cbradney | 1998 | <source>Bugs and Feature Requests</source> |
1999 | <translation>Грешке и захтеви за нове могућности</translation> |
||
444 | fschmid | 2000 | </message> |
2001 | <message> |
||
769 | cbradney | 2002 | <source>Mailing List</source> |
2003 | <translation>Дискусиона листа</translation> |
||
444 | fschmid | 2004 | </message> |
2005 | <message> |
||
769 | cbradney | 2006 | <source>&Online</source> |
2007 | <translation>На &вези</translation> |
||
444 | fschmid | 2008 | </message> |
2009 | <message> |
||
769 | cbradney | 2010 | <source>&Close</source> |
2011 | <translation>&Затвори</translation> |
||
444 | fschmid | 2012 | </message> |
2013 | <message> |
||
1135 | cbradney | 2014 | <source>This panel shows the version, build date and |
2015 | compiled in library support in Scribus |
||
2016 | The C-C-T equates to C=CUPS C=littlecms T=TIFF support. |
||
2017 | Missing library support is indicated by a *</source> |
||
2018 | <translation type="obsolete">Овај панел приказује верзију, датум прављења и |
||
2019 | укомпајлирану подршку за библиотеке у Scribus-у |
||
2020 | C-C-T означава: C=CUPS C=littlecms T=TIFF подршку. |
||
2021 | Подршка за библиотеке које недостају је обележена *</translation> |
||
2022 | </message> |
||
2023 | <message> |
||
769 | cbradney | 2024 | <source>Official Translations and Translators:</source> |
2025 | <translation>Званични преводи и преводиоци:</translation> |
||
454 | fschmid | 2026 | </message> |
2027 | <message> |
||
769 | cbradney | 2028 | <source>Serbian:</source> |
3064 | cbradney | 2029 | <translation type="obsolete">Српски:</translation> |
454 | fschmid | 2030 | </message> |
2031 | <message> |
||
769 | cbradney | 2032 | <source>Previous Translation Contributors:</source> |
2033 | <translation>Они који су претходно допринели превођењу:</translation> |
||
454 | fschmid | 2034 | </message> |
769 | cbradney | 2035 | <message> |
2036 | <source>About Scribus %1</source> |
||
2037 | <translation type="unfinished"></translation> |
||
2038 | </message> |
||
776 | fschmid | 2039 | <message> |
3824 | cbradney | 2040 | <source>Wiki</source> |
1525 | cbradney | 2041 | <translation type="unfinished"></translation> |
2042 | </message> |
||
2043 | <message> |
||
3824 | cbradney | 2044 | <source>%1 %2 %3</source> |
3064 | cbradney | 2045 | <translation type="unfinished"></translation> |
2046 | </message> |
||
2047 | <message> |
||
3824 | cbradney | 2048 | <source>%3-%2-%1 %4 %5</source> |
3064 | cbradney | 2049 | <translation type="unfinished"></translation> |
2050 | </message> |
||
2051 | <message> |
||
3824 | cbradney | 2052 | <source>Using Ghostscript version %1</source> |
3064 | cbradney | 2053 | <translation type="unfinished"></translation> |
2054 | </message> |
||
2055 | <message> |
||
3824 | cbradney | 2056 | <source>No Ghostscript version available</source> |
3064 | cbradney | 2057 | <translation type="unfinished"></translation> |
2058 | </message> |
||
3824 | cbradney | 2059 | <message> |
2060 | <source><b>Scribus Version %1</b><p>%2<br/>%3 %4<br/>%5</p></source> |
||
2061 | <translation type="unfinished"></translation> |
||
2062 | </message> |
||
2063 | <message> |
||
2064 | <source>Build ID:</source> |
||
2065 | <translation type="unfinished"></translation> |
||
2066 | </message> |
||
2067 | <message> |
||
4870 | mrdocs | 2068 | <source>Mac OS&#174; X Aqua Port:</source> |
4141 | cbradney | 2069 | <translation type="unfinished"></translation> |
2070 | </message> |
||
4759 | cbradney | 2071 | <message> |
4870 | mrdocs | 2072 | <source>Windows&#174; Port:</source> |
4759 | cbradney | 2073 | <translation type="unfinished"></translation> |
2074 | </message> |
||
2075 | <message> |
||
5328 | cbradney | 2076 | <source>Tango Project Icons:</source> |
2077 | <translation type="unfinished"></translation> |
||
2078 | </message> |
||
6261 | cbradney | 2079 | <message> |
2080 | <source>&Updates</source> |
||
2081 | <translation type="unfinished"></translation> |
||
2082 | </message> |
||
2083 | <message> |
||
2084 | <source>Check for &Updates</source> |
||
2085 | <translation type="unfinished"></translation> |
||
2086 | </message> |
||
2087 | <message> |
||
2088 | <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> |
||
2089 | <translation type="unfinished"></translation> |
||
2090 | </message> |
||
2091 | <message> |
||
2092 | <source>Check for updates to Scribus. No data from your machine will be transferred off it.</source> |
||
2093 | <translation type="unfinished"></translation> |
||
2094 | </message> |
||
7716 | cbradney | 2095 | <message> |
2096 | <source>OS/2&#174;/eComStation&#8482; Port:</source> |
||
2097 | <translation type="unfinished"></translation> |
||
2098 | </message> |
||
769 | cbradney | 2099 | </context> |
2100 | <context> |
||
3278 | cbradney | 2101 | <name>AboutPlugins</name> |
2102 | <message> |
||
2103 | <source>Yes</source> |
||
6769 | cbradney | 2104 | <translation type="obsolete">Да</translation> |
3278 | cbradney | 2105 | </message> |
2106 | <message> |
||
2107 | <source>No</source> |
||
6769 | cbradney | 2108 | <translation type="obsolete">Не</translation> |
3278 | cbradney | 2109 | </message> |
2110 | <message> |
||
4759 | cbradney | 2111 | <source>Filename:</source> |
3278 | cbradney | 2112 | <translation type="unfinished"></translation> |
2113 | </message> |
||
2114 | <message> |
||
2115 | <source>Version:</source> |
||
2116 | <translation type="unfinished"></translation> |
||
2117 | </message> |
||
2118 | <message> |
||
2119 | <source>Enabled:</source> |
||
2120 | <translation type="unfinished"></translation> |
||
2121 | </message> |
||
2122 | <message> |
||
2123 | <source>Release Date:</source> |
||
2124 | <translation type="unfinished"></translation> |
||
2125 | </message> |
||
2126 | <message> |
||
4759 | cbradney | 2127 | <source>Description:</source> |
3278 | cbradney | 2128 | <translation type="unfinished"></translation> |
2129 | </message> |
||
2130 | <message> |
||
2131 | <source>Author(s):</source> |
||
2132 | <translation type="unfinished"></translation> |
||
2133 | </message> |
||
2134 | <message> |
||
4759 | cbradney | 2135 | <source>Copyright:</source> |
3278 | cbradney | 2136 | <translation type="unfinished"></translation> |
2137 | </message> |
||
2138 | <message> |
||
2139 | <source>License:</source> |
||
2140 | <translation type="unfinished"></translation> |
||
2141 | </message> |
||
4759 | cbradney | 2142 | </context> |
2143 | <context> |
||
2144 | <name>AboutPluginsBase</name> |
||
3278 | cbradney | 2145 | <message> |
4759 | cbradney | 2146 | <source>Scribus: About Plug-ins</source> |
2147 | <translation type="unfinished"></translation> |
||
2148 | </message> |
||
2149 | <message> |
||
3278 | cbradney | 2150 | <source>&Close</source> |
2151 | <translation type="unfinished">&Затвори</translation> |
||
2152 | </message> |
||
2153 | <message> |
||
2154 | <source>Alt+C</source> |
||
2155 | <translation type="unfinished">Alt+C</translation> |
||
2156 | </message> |
||
2157 | </context> |
||
2158 | <context> |
||
3064 | cbradney | 2159 | <name>ActionManager</name> |
2160 | <message> |
||
2161 | <source>&New</source> |
||
2162 | <translation type="unfinished">&Нови</translation> |
||
2163 | </message> |
||
2164 | <message> |
||
2165 | <source>&Open...</source> |
||
2166 | <translation type="unfinished">&Отвори...</translation> |
||
2167 | </message> |
||
2168 | <message> |
||
2169 | <source>&Close</source> |
||
2170 | <translation type="unfinished">&Затвори</translation> |
||
2171 | </message> |
||
2172 | <message> |
||
2173 | <source>&Save</source> |
||
2174 | <translation type="unfinished">&Сними</translation> |
||
2175 | </message> |
||
2176 | <message> |
||
2177 | <source>Save &As...</source> |
||
2178 | <translation type="unfinished">Сними &као...</translation> |
||
2179 | </message> |
||
2180 | <message> |
||
2181 | <source>Re&vert to Saved</source> |
||
2182 | <translation type="unfinished">Вр&ати на снимљено</translation> |
||
2183 | </message> |
||
2184 | <message> |
||
2185 | <source>Collect for O&utput...</source> |
||
2186 | <translation type="unfinished">Сакупи за и&злаз...</translation> |
||
2187 | </message> |
||
2188 | <message> |
||
2189 | <source>Get Text...</source> |
||
2190 | <translation type="unfinished">Добави текст...</translation> |
||
2191 | </message> |
||
2192 | <message> |
||
2193 | <source>Append &Text...</source> |
||
2194 | <translation type="unfinished">Примени &текст...</translation> |
||
2195 | </message> |
||
2196 | <message> |
||
2197 | <source>Get Image...</source> |
||
2198 | <translation type="unfinished"></translation> |
||
2199 | </message> |
||
2200 | <message> |
||
2201 | <source>Save &Text...</source> |
||
2202 | <translation type="unfinished">Сними &текст...</translation> |
||
2203 | </message> |
||
2204 | <message> |
||
2205 | <source>Save Page as &EPS...</source> |
||
5485 | cbradney | 2206 | <translation type="obsolete">Сними страницу као &EPS...</translation> |
3064 | cbradney | 2207 | </message> |
2208 | <message> |
||
2209 | <source>Save as P&DF...</source> |
||
2210 | <translation type="unfinished">Сними као P&DF...</translation> |
||
2211 | </message> |
||
2212 | <message> |
||
2213 | <source>Document &Setup...</source> |
||
2214 | <translation type="unfinished">&Поставке документа...</translation> |
||
2215 | </message> |
||
2216 | <message> |
||
2217 | <source>&Print...</source> |
||
2218 | <translation type="unfinished">Ш&тампај...</translation> |
||
2219 | </message> |
||
2220 | <message> |
||
2221 | <source>&Quit</source> |
||
2222 | <translation type="unfinished">&Заврши</translation> |
||
2223 | </message> |
||
2224 | <message> |
||
2225 | <source>&Undo</source> |
||
2226 | <translation type="unfinished">&Опозови</translation> |
||
2227 | </message> |
||
2228 | <message> |
||
2229 | <source>&Redo</source> |
||
2230 | <translation type="unfinished">Поно&ви</translation> |
||
2231 | </message> |
||
2232 | <message> |
||
2233 | <source>&Item Action Mode</source> |
||
2234 | <translation type="unfinished"></translation> |
||
2235 | </message> |
||
2236 | <message> |
||
2237 | <source>Cu&t</source> |
||
2238 | <translation type="unfinished">&Исеци</translation> |
||
2239 | </message> |
||
2240 | <message> |
||
2241 | <source>&Copy</source> |
||
2242 | <translation type="unfinished">&Копирај</translation> |
||
2243 | </message> |
||
2244 | <message> |
||
2245 | <source>&Paste</source> |
||
2246 | <translation type="unfinished">&Пренеси</translation> |
||
2247 | </message> |
||
2248 | <message> |
||
2249 | <source>C&lear Contents</source> |
||
5328 | cbradney | 2250 | <translation type="obsolete">О&чисти садржај</translation> |
3064 | cbradney | 2251 | </message> |
2252 | <message> |
||
2253 | <source>Select &All</source> |
||
2254 | <translation type="unfinished">Изабери &све</translation> |
||
2255 | </message> |
||
2256 | <message> |
||
2257 | <source>&Deselect All</source> |
||
2258 | <translation type="unfinished"></translation> |
||
2259 | </message> |
||
2260 | <message> |
||
2261 | <source>&Search/Replace...</source> |
||
2262 | <translation type="unfinished">&Тражи/Замени...</translation> |
||
2263 | </message> |
||
2264 | <message> |
||
2265 | <source>Edit Image...</source> |
||
2266 | <translation type="unfinished"></translation> |
||
2267 | </message> |
||
2268 | <message> |
||
2269 | <source>C&olors...</source> |
||
2270 | <translation type="unfinished">Б&оје...</translation> |
||
2271 | </message> |
||
2272 | <message> |
||
2273 | <source>&Paragraph Styles...</source> |
||
2274 | <translation type="unfinished">Стилови &пасуса....</translation> |
||
2275 | </message> |
||
2276 | <message> |
||
2277 | <source>&Line Styles...</source> |
||
2278 | <translation type="unfinished">Стилови &линија...</translation> |
||
2279 | </message> |
||
2280 | <message> |
||
2281 | <source>&Master Pages...</source> |
||
2282 | <translation type="unfinished"></translation> |
||
2283 | </message> |
||
2284 | <message> |
||
2285 | <source>&Javascripts...</source> |
||
3278 | cbradney | 2286 | <translation type="obsolete">&Javascript-ови...</translation> |
3064 | cbradney | 2287 | </message> |
2288 | <message> |
||
2289 | <source>P&references...</source> |
||
2290 | <translation type="unfinished">П&одешавања...</translation> |
||
2291 | </message> |
||
2292 | <message> |
||
2293 | <source>%1 pt</source> |
||
2294 | <translation type="unfinished"></translation> |
||
2295 | </message> |
||
2296 | <message> |
||
2297 | <source>&Other...</source> |
||
2298 | <translation type="unfinished">&Остало...</translation> |
||
2299 | </message> |
||
2300 | <message> |
||
2301 | <source>&Left</source> |
||
2302 | <translation type="unfinished">&Лево</translation> |
||
2303 | </message> |
||
2304 | <message> |
||
2305 | <source>&Center</source> |
||
2306 | <translation type="unfinished">&Средина</translation> |
||
2307 | </message> |
||
2308 | <message> |
||
2309 | <source>&Right</source> |
||
2310 | <translation type="unfinished">&Десно</translation> |
||
2311 | </message> |
||
2312 | <message> |
||
2313 | <source>&Block</source> |
||
2314 | <translation type="unfinished">&Блокирај</translation> |
||
2315 | </message> |
||
2316 | <message> |
||
2317 | <source>&Forced</source> |
||
2318 | <translation type="unfinished">&Приморано</translation> |
||
2319 | </message> |
||
2320 | <message> |
||
2321 | <source>&%1 %</source> |
||
2322 | <translation type="unfinished"></translation> |
||
2323 | </message> |
||
2324 | <message> |
||
2325 | <source>&Normal</source> |
||
2326 | <translation type="unfinished"></translation> |
||
2327 | </message> |
||
2328 | <message> |
||
2329 | <source>&Underline</source> |
||
2330 | <translation type="unfinished">&Подвуци</translation> |
||
2331 | </message> |
||
2332 | <message> |
||
2333 | <source>Underline &Words</source> |
||
2334 | <translation type="unfinished"></translation> |
||
2335 | </message> |
||
2336 | <message> |
||
2337 | <source>&Strike Through</source> |
||
2338 | <translation type="unfinished"></translation> |
||
2339 | </message> |
||
2340 | <message> |
||
2341 | <source>&All Caps</source> |
||
2342 | <translation type="unfinished"></translation> |
||
2343 | </message> |
||
2344 | <message> |
||
2345 | <source>Small &Caps</source> |
||
2346 | <translation type="unfinished"></translation> |
||
2347 | </message> |
||
2348 | <message> |
||
2349 | <source>Su&perscript</source> |
||
2350 | <translation type="unfinished"></translation> |
||
2351 | </message> |
||
2352 | <message> |
||
2353 | <source>Su&bscript</source> |
||
2354 | <translation type="unfinished"></translation> |
||
2355 | </message> |
||
2356 | <message> |
||
2357 | <source>&Outline</source> |
||
4870 | mrdocs | 2358 | <translation type="obsolete">&Контура</translation> |
3064 | cbradney | 2359 | </message> |
2360 | <message> |
||
2361 | <source>S&hadow</source> |
||
2362 | <translation type="unfinished"></translation> |
||
2363 | </message> |
||
2364 | <message> |
||
2365 | <source>&Image Effects</source> |
||
2366 | <translation type="unfinished"></translation> |
||
2367 | </message> |
||
2368 | <message> |
||
2369 | <source>&Tabulators...</source> |
||
2370 | <translation type="unfinished">&Табулатори...</translation> |
||
2371 | </message> |
||
2372 | <message> |
||
2373 | <source>D&uplicate</source> |
||
2374 | <translation type="unfinished"></translation> |
||
2375 | </message> |
||
2376 | <message> |
||
2377 | <source>&Multiple Duplicate</source> |
||
2378 | <translation type="unfinished">&Умножено дуплирање</translation> |
||
2379 | </message> |
||
2380 | <message> |
||
2381 | <source>&Delete</source> |
||
2382 | <translation type="unfinished">&Обриши</translation> |
||
2383 | </message> |
||
2384 | <message> |
||
2385 | <source>&Group</source> |
||
2386 | <translation type="unfinished">&Група</translation> |
||
2387 | </message> |
||
2388 | <message> |
||
2389 | <source>&Ungroup</source> |
||
2390 | <translation type="unfinished">&Растури групу</translation> |
||
2391 | </message> |
||
2392 | <message> |
||
2393 | <source>Is &Locked</source> |
||
2394 | <translation type="unfinished"></translation> |
||
2395 | </message> |
||
2396 | <message> |
||
2397 | <source>Si&ze is Locked</source> |
||
2398 | <translation type="unfinished"></translation> |
||
2399 | </message> |
||
2400 | <message> |
||
2401 | <source>Lower to &Bottom</source> |
||
2402 | <translation type="unfinished"></translation> |
||
2403 | </message> |
||
2404 | <message> |
||
2405 | <source>Raise to &Top</source> |
||
2406 | <translation type="unfinished"></translation> |
||
2407 | </message> |
||
2408 | <message> |
||
2409 | <source>&Lower</source> |
||
2410 | <translation type="unfinished">&Спусти</translation> |
||
2411 | </message> |
||
2412 | <message> |
||
2413 | <source>&Raise</source> |
||
2414 | <translation type="unfinished">&Подигни</translation> |
||
2415 | </message> |
||
2416 | <message> |
||
2417 | <source>Send to S&crapbook</source> |
||
2418 | <translation type="unfinished">Пошаљи у св&еску</translation> |
||
2419 | </message> |
||
2420 | <message> |
||
2421 | <source>&Attributes...</source> |
||
2422 | <translation type="unfinished"></translation> |
||
2423 | </message> |
||
2424 | <message> |
||
2425 | <source>I&mage Visible</source> |
||
2426 | <translation type="unfinished">С&лика видљива</translation> |
||
2427 | </message> |
||
2428 | <message> |
||
2429 | <source>&Update Image</source> |
||
2430 | <translation type="unfinished"></translation> |
||
2431 | </message> |
||
2432 | <message> |
||
2433 | <source>Adjust Frame to Image</source> |
||
2434 | <translation type="unfinished"></translation> |
||
2435 | </message> |
||
2436 | <message> |
||
2437 | <source>Extended Image Properties</source> |
||
2438 | <translation type="unfinished"></translation> |
||
2439 | </message> |
||
2440 | <message> |
||
2441 | <source>&Low Resolution</source> |
||
2442 | <translation type="unfinished"></translation> |
||
2443 | </message> |
||
2444 | <message> |
||
2445 | <source>&Normal Resolution</source> |
||
2446 | <translation type="unfinished"></translation> |
||
2447 | </message> |
||
2448 | <message> |
||
2449 | <source>&Full Resolution</source> |
||
2450 | <translation type="unfinished"></translation> |
||
2451 | </message> |
||
2452 | <message> |
||
2453 | <source>Is PDF &Bookmark</source> |
||
2454 | <translation type="unfinished">Је PDF &маркер</translation> |
||
2455 | </message> |
||
2456 | <message> |
||
2457 | <source>Is PDF A&nnotation</source> |
||
2458 | <translation type="unfinished">Је PDF ан&отација</translation> |
||
2459 | </message> |
||
2460 | <message> |
||
2461 | <source>Annotation P&roperties</source> |
||
2462 | <translation type="unfinished">С&војства анотације</translation> |
||
2463 | </message> |
||
2464 | <message> |
||
2465 | <source>Field P&roperties</source> |
||
2466 | <translation type="unfinished">С&војства поља</translation> |
||
2467 | </message> |
||
2468 | <message> |
||
2469 | <source>&Edit Shape...</source> |
||
2470 | <translation type="unfinished">&Уређивање облика...</translation> |
||
2471 | </message> |
||
2472 | <message> |
||
2473 | <source>&Attach Text to Path</source> |
||
2474 | <translation type="unfinished">&Прикачи текст уз путању</translation> |
||
2475 | </message> |
||
2476 | <message> |
||
2477 | <source>&Detach Text from Path</source> |
||
2478 | <translation type="unfinished">&Откачи текст од путање</translation> |
||
2479 | </message> |
||
2480 | <message> |
||
2481 | <source>&Combine Polygons</source> |
||
2482 | <translation type="unfinished">&Комбинуј полигоне</translation> |
||
2483 | </message> |
||
2484 | <message> |
||
2485 | <source>Split &Polygons</source> |
||
2486 | <translation type="unfinished">Раздвоји &полигоне</translation> |
||
2487 | </message> |
||
2488 | <message> |
||
2489 | <source>&Bezier Curve</source> |
||
2490 | <translation type="unfinished">&Bezier крива</translation> |
||
2491 | </message> |
||
2492 | <message> |
||
2493 | <source>&Image Frame</source> |
||
2494 | <translation type="unfinished"></translation> |
||
2495 | </message> |
||
2496 | <message> |
||
2497 | <source>&Outlines</source> |
||
4870 | mrdocs | 2498 | <translation type="obsolete">&Оквирне линије</translation> |
3064 | cbradney | 2499 | </message> |
2500 | <message> |
||
2501 | <source>&Polygon</source> |
||
2502 | <translation type="unfinished"></translation> |
||
2503 | </message> |
||
2504 | <message> |
||
2505 | <source>&Text Frame</source> |
||
2506 | <translation type="unfinished">&Текстуални оквир</translation> |
||
2507 | </message> |
||
2508 | <message> |
||
2509 | <source>&Glyph...</source> |
||
2510 | <translation type="unfinished"></translation> |
||
2511 | </message> |
||
2512 | <message> |
||
2513 | <source>Sample Text</source> |
||
2514 | <translation type="unfinished"></translation> |
||
2515 | </message> |
||
2516 | <message> |
||
2517 | <source>&Insert...</source> |
||
2518 | <translation type="unfinished">Уметн&и...</translation> |
||
2519 | </message> |
||
2520 | <message> |
||
2521 | <source>Im&port...</source> |
||
2522 | <translation type="unfinished"></translation> |
||
2523 | </message> |
||
2524 | <message> |
||
2525 | <source>&Delete...</source> |
||
2526 | <translation type="unfinished">&Обриши...</translation> |
||
2527 | </message> |
||
2528 | <message> |
||
2529 | <source>&Copy...</source> |
||
2530 | <translation type="unfinished"></translation> |
||
2531 | </message> |
||
2532 | <message> |
||
2533 | <source>&Move...</source> |
||
2534 | <translation type="unfinished">&Помери...</translation> |
||
2535 | </message> |
||
2536 | <message> |
||
2537 | <source>&Apply Master Page...</source> |
||
2538 | <translation type="unfinished"></translation> |
||
2539 | </message> |
||
2540 | <message> |
||
2541 | <source>Manage &Guides...</source> |
||
2542 | <translation type="unfinished">Управљање &водиљама...</translation> |
||
2543 | </message> |
||
2544 | <message> |
||
2545 | <source>Manage Page Properties...</source> |
||
2546 | <translation type="unfinished"></translation> |
||
2547 | </message> |
||
2548 | <message> |
||
2549 | <source>&50%</source> |
||
2550 | <translation type="unfinished">&50%</translation> |
||
2551 | </message> |
||
2552 | <message> |
||
2553 | <source>&75%</source> |
||
2554 | <translation type="unfinished">&75%</translation> |
||
2555 | </message> |
||
2556 | <message> |
||
2557 | <source>&100%</source> |
||
2558 | <translation type="unfinished">&100%</translation> |
||
2559 | </message> |
||
2560 | <message> |
||
2561 | <source>&200%</source> |
||
2562 | <translation type="unfinished">&200%</translation> |
||
2563 | </message> |
||
2564 | <message> |
||
2565 | <source>&Thumbnails</source> |
||
2566 | <translation type="unfinished">&Сличице</translation> |
||
2567 | </message> |
||
2568 | <message> |
||
2569 | <source>Show &Margins</source> |
||
2570 | <translation type="unfinished">Прикажи &маргине</translation> |
||
2571 | </message> |
||
2572 | <message> |
||
2573 | <source>Show &Frames</source> |
||
2574 | <translation type="unfinished">Прикажи &оквире</translation> |
||
2575 | </message> |
||
2576 | <message> |
||
2577 | <source>Show &Images</source> |
||
2578 | <translation type="unfinished">Прикажи &слике</translation> |
||
2579 | </message> |
||
2580 | <message> |
||
2581 | <source>Show &Grid</source> |
||
2582 | <translation type="unfinished">Прикажи &мрежу</translation> |
||
2583 | </message> |
||
2584 | <message> |
||
2585 | <source>Show G&uides</source> |
||
2586 | <translation type="unfinished">Прикажи &водиље</translation> |
||
2587 | </message> |
||
2588 | <message> |
||
2589 | <source>Show &Baseline Grid</source> |
||
2590 | <translation type="unfinished">Прикажи мрежу &основне линије</translation> |
||
2591 | </message> |
||
2592 | <message> |
||
2593 | <source>Show &Text Chain</source> |
||
2594 | <translation type="unfinished"></translation> |
||
2595 | </message> |
||
2596 | <message> |
||
2597 | <source>Show Control Characters</source> |
||
2598 | <translation type="unfinished"></translation> |
||
2599 | </message> |
||
2600 | <message> |
||
2601 | <source>Rulers relative to Page</source> |
||
2602 | <translation type="unfinished"></translation> |
||
2603 | </message> |
||
2604 | <message> |
||
2605 | <source>Sn&ap to Grid</source> |
||
2606 | <translation type="unfinished">Пре&баци на мрежу</translation> |
||
2607 | </message> |
||
2608 | <message> |
||
2609 | <source>Sna&p to Guides</source> |
||
2610 | <translation type="unfinished">Преб&аци на водиље</translation> |
||
2611 | </message> |
||
2612 | <message> |
||
2613 | <source>&Properties</source> |
||
2614 | <translation type="unfinished">&Својства</translation> |
||
2615 | </message> |
||
2616 | <message> |
||
2617 | <source>&Scrapbook</source> |
||
2618 | <translation type="unfinished">&Албум</translation> |
||
2619 | </message> |
||
2620 | <message> |
||
2621 | <source>&Layers</source> |
||
2622 | <translation type="unfinished">&Слојеви</translation> |
||
2623 | </message> |
||
2624 | <message> |
||
2625 | <source>&Arrange Pages</source> |
||
2626 | <translation type="unfinished"></translation> |
||
2627 | </message> |
||
2628 | <message> |
||
2629 | <source>&Bookmarks</source> |
||
2630 | <translation type="unfinished">&Маркери</translation> |
||
2631 | </message> |
||
2632 | <message> |
||
2633 | <source>&Measurements</source> |
||
2634 | <translation type="unfinished"></translation> |
||
2635 | </message> |
||
2636 | <message> |
||
2637 | <source>Action &History</source> |
||
2638 | <translation type="unfinished"></translation> |
||
2639 | </message> |
||
2640 | <message> |
||
2641 | <source>Preflight &Verifier</source> |
||
2642 | <translation type="unfinished"></translation> |
||
2643 | </message> |
||
2644 | <message> |
||
2645 | <source>&Align and Distribute</source> |
||
2646 | <translation type="unfinished"></translation> |
||
2647 | </message> |
||
2648 | <message> |
||
2649 | <source>&Tools</source> |
||
2650 | <translation type="unfinished">&Алати</translation> |
||
2651 | </message> |
||
2652 | <message> |
||
2653 | <source>P&DF Tools</source> |
||
2654 | <translation type="unfinished">P&DF алати</translation> |
||
2655 | </message> |
||
2656 | <message> |
||
2657 | <source>Select Item</source> |
||
2658 | <translation type="unfinished"></translation> |
||
2659 | </message> |
||
2660 | <message> |
||
2661 | <source>T&able</source> |
||
2662 | <translation type="unfinished"></translation> |
||
2663 | </message> |
||
2664 | <message> |
||
2665 | <source>&Shape</source> |
||
2666 | <translation type="unfinished">&Облик</translation> |
||
2667 | </message> |
||
2668 | <message> |
||
2669 | <source>&Line</source> |
||
2670 | <translation type="unfinished">&Линија</translation> |
||
2671 | </message> |
||
2672 | <message> |
||
2673 | <source>&Freehand Line</source> |
||
2674 | <translation type="unfinished"></translation> |
||
2675 | </message> |
||
2676 | <message> |
||
2677 | <source>Rotate Item</source> |
||
2678 | <translation type="unfinished">Ротирај ставку</translation> |
||
2679 | </message> |
||
2680 | <message> |
||
2681 | <source>Zoom in or out</source> |
||
2682 | <translation type="unfinished">Увеличај или умањи</translation> |
||
2683 | </message> |
||
2684 | <message> |
||
2685 | <source>Zoom in</source> |
||
2686 | <translation type="unfinished"></translation> |
||
2687 | </message> |
||
2688 | <message> |
||
2689 | <source>Zoom out</source> |
||
2690 | <translation type="unfinished"></translation> |
||
2691 | </message> |
||
2692 | <message> |
||
2693 | <source>Edit Contents of Frame</source> |
||
2694 | <translation type="unfinished">Уређивање садржаја оквира</translation> |
||
2695 | </message> |
||
2696 | <message> |
||
2697 | <source>Edit Text...</source> |
||
2698 | <translation type="unfinished">Уреди текст...</translation> |
||
2699 | </message> |
||
2700 | <message> |
||
2701 | <source>Link Text Frames</source> |
||
2702 | <translation type="unfinished">Повежи текстуалне оквире</translation> |
||
2703 | </message> |
||
2704 | <message> |
||
2705 | <source>Unlink Text Frames</source> |
||
2706 | <translation type="unfinished">Прекини везу између текстуалних оквира</translation> |
||
2707 | </message> |
||
2708 | <message> |
||
2709 | <source>&Eye Dropper</source> |
||
2710 | <translation type="unfinished"></translation> |
||
2711 | </message> |
||
2712 | <message> |
||
2713 | <source>Copy Item Properties</source> |
||
2714 | <translation type="unfinished"></translation> |
||
2715 | </message> |
||
2716 | <message> |
||
2717 | <source>Edit the text with the Story Editor</source> |
||
2718 | <translation type="unfinished">Уређивање текста помоћу уређивача</translation> |
||
2719 | </message> |
||
2720 | <message> |
||
2721 | <source>Insert Text Frame</source> |
||
2722 | <translation type="unfinished">Уметни текстуални оквир</translation> |
||
2723 | </message> |
||
2724 | <message> |
||
2725 | <source>Insert Image Frame</source> |
||
2726 | <translation type="unfinished"></translation> |
||
2727 | </message> |
||
2728 | <message> |
||
2729 | <source>Insert Table</source> |
||
2730 | <translation type="unfinished">Убаци табелу</translation> |
||
2731 | </message> |
||
2732 | <message> |
||
2733 | <source>Insert Shape</source> |
||
2734 | <translation type="unfinished"></translation> |
||
2735 | </message> |
||
2736 | <message> |
||
2737 | <source>Insert Polygon</source> |
||
2738 | <translation type="unfinished"></translation> |
||
2739 | </message> |
||
2740 | <message> |
||
2741 | <source>Insert Line</source> |
||
2742 | <translation type="unfinished"></translation> |
||
2743 | </message> |
||
2744 | <message> |
||
2745 | <source>Insert Bezier Curve</source> |
||
2746 | <translation type="unfinished"></translation> |
||
2747 | </message> |
||
2748 | <message> |
||
2749 | <source>Insert Freehand Line</source> |
||
2750 | <translation type="unfinished">Уметни слободоручну линију</translation> |
||
2751 | </message> |
||
2752 | <message> |
||
2753 | <source>&Manage Pictures</source> |
||
2754 | <translation type="unfinished">&Управљање сликама</translation> |
||
2755 | </message> |
||
2756 | <message> |
||
2757 | <source>&Hyphenate Text</source> |
||
2758 | <translation type="unfinished">&Споји текст цртицама</translation> |
||
2759 | </message> |
||
2760 | <message> |
||
2761 | <source>Dehyphenate Text</source> |
||
2762 | <translation type="unfinished"></translation> |
||
2763 | </message> |
||
2764 | <message> |
||
2765 | <source>&Generate Table Of Contents</source> |
||
2766 | <translation type="unfinished"></translation> |
||
2767 | </message> |
||
2768 | <message> |
||
2769 | <source>&About Scribus</source> |
||
2770 | <translation type="unfinished">&О Scribus-у</translation> |
||
2771 | </message> |
||
2772 | <message> |
||
2773 | <source>About &Qt</source> |
||
2774 | <translation type="unfinished">О &Qt-у</translation> |
||
2775 | </message> |
||
2776 | <message> |
||
2777 | <source>Toolti&ps</source> |
||
2778 | <translation type="unfinished">Облач&ићи</translation> |
||
2779 | </message> |
||
2780 | <message> |
||
2781 | <source>Scribus &Manual...</source> |
||
2782 | <translation type="unfinished">Scribus &Приручник...</translation> |
||
2783 | </message> |
||
2784 | <message> |
||
2785 | <source>Smart &Hyphen</source> |
||
2786 | <translation type="unfinished"></translation> |
||
2787 | </message> |
||
2788 | <message> |
||
2789 | <source>Non Breaking Dash</source> |
||
2790 | <translation type="unfinished"></translation> |
||
2791 | </message> |
||
2792 | <message> |
||
2793 | <source>Non Breaking &Space</source> |
||
2794 | <translation type="unfinished"></translation> |
||
2795 | </message> |
||
2796 | <message> |
||
2797 | <source>Page &Number</source> |
||
2798 | <translation type="unfinished"></translation> |
||
2799 | </message> |
||
2800 | <message> |
||
2801 | <source>New Line</source> |
||
2802 | <translation type="unfinished"></translation> |
||
2803 | </message> |
||
2804 | <message> |
||
2805 | <source>Frame Break</source> |
||
2806 | <translation type="unfinished"></translation> |
||
2807 | </message> |
||
2808 | <message> |
||
2809 | <source>Column Break</source> |
||
2810 | <translation type="unfinished"></translation> |
||
2811 | </message> |
||
2812 | <message> |
||
2813 | <source>Copyright</source> |
||
2814 | <translation type="unfinished"></translation> |
||
2815 | </message> |
||
2816 | <message> |
||
2817 | <source>Registered Trademark</source> |
||
2818 | <translation type="unfinished"></translation> |
||
2819 | </message> |
||
2820 | <message> |
||
2821 | <source>Trademark</source> |
||
2822 | <translation type="unfinished"></translation> |
||
2823 | </message> |
||
2824 | <message> |
||
2825 | <source>Bullet</source> |
||
2826 | <translation type="unfinished"></translation> |
||
2827 | </message> |
||
2828 | <message> |
||
2829 | <source>Em Dash</source> |
||
2830 | <translation type="unfinished"></translation> |
||
2831 | </message> |
||
2832 | <message> |
||
2833 | <source>En Dash</source> |
||
2834 | <translation type="unfinished"></translation> |
||
2835 | </message> |
||
2836 | <message> |
||
2837 | <source>Figure Dash</source> |
||
2838 | <translation type="unfinished"></translation> |
||
2839 | </message> |
||
2840 | <message> |
||
2841 | <source>Quotation Dash</source> |
||
2842 | <translation type="unfinished"></translation> |
||
2843 | </message> |
||
2844 | <message> |
||
2845 | <source>Apostrophe</source> |
||
2846 | <translation type="unfinished"></translation> |
||
2847 | </message> |
||
2848 | <message> |
||
2849 | <source>Straight Double</source> |
||
2850 | <translation type="unfinished"></translation> |
||
2851 | </message> |
||
2852 | <message> |
||
2853 | <source>Single Left</source> |
||
2854 | <translation type="unfinished"></translation> |
||
2855 | </message> |
||
2856 | <message> |
||
2857 | <source>Single Right</source> |
||
2858 | <translation type="unfinished"></translation> |
||
2859 | </message> |
||
2860 | <message> |
||
2861 | <source>Double Left</source> |
||
2862 | <translation type="unfinished"></translation> |
||
2863 | </message> |
||
2864 | <message> |
||
2865 | <source>Double Right</source> |
||
2866 | <translation type="unfinished"></translation> |
||
2867 | </message> |
||
2868 | <message> |
||
2869 | <source>Single Reversed</source> |
||
2870 | <translation type="unfinished"></translation> |
||
2871 | </message> |
||
2872 | <message> |
||
2873 | <source>Double Reversed</source> |
||
2874 | <translation type="unfinished"></translation> |
||
2875 | </message> |
||
2876 | <message> |
||
2877 | <source>Single Left Guillemet</source> |
||
2878 | <translation type="unfinished"></translation> |
||
2879 | </message> |
||
2880 | <message> |
||
2881 | <source>Single Right Guillemet</source> |
||
2882 | <translation type="unfinished"></translation> |
||
2883 | </message> |
||
2884 | <message> |
||
2885 | <source>Double Left Guillemet</source> |
||
2886 | <translation type="unfinished"></translation> |
||
2887 | </message> |
||
2888 | <message> |
||
2889 | <source>Double Right Guillemet</source> |
||
2890 | <translation type="unfinished"></translation> |
||
2891 | </message> |
||
2892 | <message> |
||
2893 | <source>Low Single Comma</source> |
||
2894 | <translation type="unfinished"></translation> |
||
2895 | </message> |
||
2896 | <message> |
||
2897 | <source>Low Double Comma</source> |
||
2898 | <translation type="unfinished"></translation> |
||
2899 | </message> |
||
2900 | <message> |
||
2901 | <source>CJK Single Left</source> |
||
2902 | <translation type="unfinished"></translation> |
||
2903 | </message> |
||
2904 | <message> |
||
2905 | <source>CJK Single Right</source> |
||
2906 | <translation type="unfinished"></translation> |
||
2907 | </message> |
||
2908 | <message> |
||
2909 | <source>CJK Double Left</source> |
||
2910 | <translation type="unfinished"></translation> |
||
2911 | </message> |
||
2912 | <message> |
||
2913 | <source>CJK Double Right</source> |
||
2914 | <translation type="unfinished"></translation> |
||
2915 | </message> |
||
2916 | <message> |
||
2917 | <source>Toggle Palettes</source> |
||
2918 | <translation type="unfinished"></translation> |
||
2919 | </message> |
||
2920 | <message> |
||
2921 | <source>Toggle Guides</source> |
||
2922 | <translation type="unfinished"></translation> |
||
2923 | </message> |
||
3278 | cbradney | 2924 | <message> |
2925 | <source>Print Previe&w</source> |
||
2926 | <translation type="unfinished">Прегл&ед за штампање</translation> |
||
2927 | </message> |
||
2928 | <message> |
||
2929 | <source>&JavaScripts...</source> |
||
2930 | <translation type="unfinished"></translation> |
||
2931 | </message> |
||
2932 | <message> |
||
2933 | <source>Convert to Master Page...</source> |
||
2934 | <translation type="unfinished"></translation> |
||
2935 | </message> |
||
2936 | <message> |
||
2937 | <source>&Cascade</source> |
||
2938 | <translation type="unfinished">&Наслажи</translation> |
||
2939 | </message> |
||
2940 | <message> |
||
2941 | <source>&Tile</source> |
||
2942 | <translation type="unfinished">Поп&лочај</translation> |
||
2943 | </message> |
||
2944 | <message> |
||
2945 | <source>&About Plug-ins</source> |
||
2946 | <translation type="unfinished"></translation> |
||
2947 | </message> |
||
3824 | cbradney | 2948 | <message> |
2949 | <source>More Info...</source> |
||
2950 | <translation type="unfinished"></translation> |
||
2951 | </message> |
||
4759 | cbradney | 2952 | <message> |
2953 | <source>&Printing Enabled</source> |
||
2954 | <translation type="unfinished"></translation> |
||
2955 | </message> |
||
2956 | <message> |
||
2957 | <source>&Flip Horizontally</source> |
||
2958 | <translation type="unfinished"></translation> |
||
2959 | </message> |
||
2960 | <message> |
||
2961 | <source>&Flip Vertically</source> |
||
2962 | <translation type="unfinished"></translation> |
||
2963 | </message> |
||
2964 | <message> |
||
2965 | <source>Show Rulers</source> |
||
2966 | <translation type="unfinished"></translation> |
||
2967 | </message> |
||
2968 | <message> |
||
2969 | <source>&Outline</source> |
||
2970 | <comment>Document Outline Palette</comment> |
||
2971 | <translation type="unfinished">&Контура</translation> |
||
2972 | </message> |
||
2973 | <message> |
||
2974 | <source>Solidus</source> |
||
2975 | <translation type="unfinished"></translation> |
||
2976 | </message> |
||
2977 | <message> |
||
2978 | <source>Middle Dot</source> |
||
2979 | <translation type="unfinished"></translation> |
||
2980 | </message> |
||
2981 | <message> |
||
2982 | <source>En Space</source> |
||
2983 | <translation type="unfinished"></translation> |
||
2984 | </message> |
||
2985 | <message> |
||
2986 | <source>Em Space</source> |
||
2987 | <translation type="unfinished"></translation> |
||
2988 | </message> |
||
2989 | <message> |
||
2990 | <source>Thin Space</source> |
||
2991 | <translation type="unfinished"></translation> |
||
2992 | </message> |
||
2993 | <message> |
||
2994 | <source>Thick Space</source> |
||
2995 | <translation type="unfinished"></translation> |
||
2996 | </message> |
||
2997 | <message> |
||
2998 | <source>Mid Space</source> |
||
2999 | <translation type="unfinished"></translation> |
||
3000 | </message> |
||
3001 | <message> |
||
3002 | <source>Hair Space</source> |
||
3003 | <translation type="unfinished"></translation> |
||
3004 | </message> |
||
3005 | <message> |
||
3006 | <source>Insert Smart Hyphen</source> |
||
3007 | <translation type="unfinished"></translation> |
||
3008 | </message> |
||
3009 | <message> |
||
3010 | <source>Insert Non Breaking Dash</source> |
||
3011 | <translation type="unfinished"></translation> |
||
3012 | </message> |
||
3013 | <message> |
||
3014 | <source>Insert Non Breaking Space</source> |
||
3015 | <translation type="unfinished"></translation> |
||
3016 | </message> |
||
3017 | <message> |
||
3018 | <source>Insert Page Number</source> |
||
3019 | <translation type="unfinished">Уметни број странице</translation> |
||
3020 | </message> |
||
3021 | <message> |
||
3022 | <source>ff</source> |
||
3023 | <translation type="unfinished"></translation> |
||
3024 | </message> |
||
3025 | <message> |
||
3026 | <source>fi</source> |
||
3027 | <translation type="unfinished"></translation> |
||
3028 | </message> |
||
3029 | <message> |
||
3030 | <source>fl</source> |
||
3031 | <translation type="unfinished"></translation> |
||
3032 | </message> |
||
3033 | <message> |
||
3034 | <source>ffi</source> |
||
3035 | <translation type="unfinished"></translation> |
||
3036 | </message> |
||
3037 | <message> |
||
3038 | <source>ffl</source> |
||
3039 | <translation type="unfinished"></translation> |
||
3040 | </message> |
||
3041 | <message> |
||
3042 | <source>ft</source> |
||
3043 | <translation type="unfinished"></translation> |
||
3044 | </message> |
||
3045 | <message> |
||
3046 | <source>st</source> |
||
3047 | <translation type="unfinished"></translation> |
||
3048 | </message> |
||
4870 | mrdocs | 3049 | <message> |
3050 | <source>S&tyles...</source> |
||
3051 | <translation type="unfinished"></translation> |
||
3052 | </message> |
||
3053 | <message> |
||
3054 | <source>&Outline</source> |
||
3055 | <comment>type effect</comment> |
||
3056 | <translation type="unfinished">&Контура</translation> |
||
3057 | </message> |
||
3058 | <message> |
||
3059 | <source>&Outlines</source> |
||
3060 | <comment>Convert to oulines</comment> |
||
3061 | <translation type="unfinished">&Оквирне линије</translation> |
||
3062 | </message> |
||
5328 | cbradney | 3063 | <message> |
3064 | <source>Paste (&Absolute)</source> |
||
3065 | <translation type="unfinished"></translation> |
||
3066 | </message> |
||
3067 | <message> |
||
3068 | <source>C&lear</source> |
||
3069 | <translation type="unfinished">Оч&исти</translation> |
||
3070 | </message> |
||
3071 | <message> |
||
3072 | <source>Insert PDF Push Button</source> |
||
3073 | <translation type="unfinished"></translation> |
||
3074 | </message> |
||
3075 | <message> |
||
3076 | <source>Insert PDF Text Field</source> |
||
3077 | <translation type="unfinished"></translation> |
||
3078 | </message> |
||
3079 | <message> |
||
3080 | <source>Insert PDF Check Box</source> |
||
3081 | <translation type="unfinished"></translation> |
||
3082 | </message> |
||
3083 | <message> |
||
3084 | <source>Insert PDF Combo Box</source> |
||
3085 | <translation type="unfinished"></translation> |
||
3086 | </message> |
||
3087 | <message> |
||
3088 | <source>Insert PDF List Box</source> |
||
3089 | <translation type="unfinished"></translation> |
||
3090 | </message> |
||
3091 | <message> |
||
3092 | <source>Insert Text Annotation</source> |
||
3093 | <translation type="unfinished"></translation> |
||
3094 | </message> |
||
3095 | <message> |
||
3096 | <source>Insert Link Annotation</source> |
||
3097 | <translation type="unfinished"></translation> |
||
3098 | </message> |
||
5485 | cbradney | 3099 | <message> |
3100 | <source>Save as &EPS...</source> |
||
3101 | <translation type="unfinished"></translation> |
||
3102 | </message> |
||
3103 | <message> |
||
3104 | <source>Show Text Frame Columns</source> |
||
3105 | <translation type="unfinished"></translation> |
||
3106 | </message> |
||
6261 | cbradney | 3107 | <message> |
3108 | <source>&Frame...</source> |
||
3109 | <translation type="unfinished"></translation> |
||
3110 | </message> |
||
3111 | <message> |
||
3112 | <source>Preview Mode</source> |
||
3113 | <translation type="unfinished"></translation> |
||
3114 | </message> |
||
3115 | <message> |
||
3116 | <source>Show Layer Indicators</source> |
||
3117 | <translation type="unfinished"></translation> |
||
3118 | </message> |
||
6434 | cbradney | 3119 | <message> |
3120 | <source>Patterns...</source> |
||
3121 | <translation type="unfinished"></translation> |
||
3122 | </message> |
||
3123 | <message> |
||
3124 | <source>Send to Patterns</source> |
||
3125 | <translation type="unfinished"></translation> |
||
3126 | </message> |
||
7508 | cbradney | 3127 | <message> |
3128 | <source>Sticky Tools</source> |
||
3129 | <translation type="unfinished"></translation> |
||
3130 | </message> |
||
3131 | <message> |
||
3132 | <source>&Fit to Height</source> |
||
3133 | <translation type="unfinished"></translation> |
||
3134 | </message> |
||
3135 | <message> |
||
3136 | <source>Fit to Width</source> |
||
3137 | <translation type="unfinished"></translation> |
||
3138 | </message> |
||
3139 | <message> |
||
3140 | <source>Show Bleeds</source> |
||
3141 | <translation type="unfinished"></translation> |
||
3142 | </message> |
||
3143 | <message> |
||
3144 | <source>&Zero Width Space</source> |
||
3145 | <translation type="unfinished"></translation> |
||
3146 | </message> |
||
3147 | <message> |
||
3148 | <source>Zero Width NB Space</source> |
||
3149 | <translation type="unfinished"></translation> |
||
3150 | </message> |
||
3064 | cbradney | 3151 | </context> |
3152 | <context> |
||
444 | fschmid | 3153 | <name>AdvOptions</name> |
3154 | <message> |
||
769 | cbradney | 3155 | <source>Advanced Options</source> |
3278 | cbradney | 3156 | <translation type="obsolete">Напредне опције</translation> |
444 | fschmid | 3157 | </message> |
3158 | <message> |
||
769 | cbradney | 3159 | <source>Mirror Page(s) &Horizontal</source> |
3278 | cbradney | 3160 | <translation type="obsolete">Окрени страницу(е) &водоравно</translation> |
444 | fschmid | 3161 | </message> |
3162 | <message> |
||
769 | cbradney | 3163 | <source>Mirror Page(s) &Vertical</source> |
3278 | cbradney | 3164 | <translation type="obsolete">Окрени страницу(е) &усправно</translation> |
444 | fschmid | 3165 | </message> |
3166 | <message> |
||
769 | cbradney | 3167 | <source>Apply Under Color &Removal</source> |
3278 | cbradney | 3168 | <translation type="obsolete">Примени под &уклањањем боја</translation> |
444 | fschmid | 3169 | </message> |
3170 | <message> |
||
769 | cbradney | 3171 | <source>Apply &ICC Profiles</source> |
3278 | cbradney | 3172 | <translation type="obsolete">Примени &ICC профиле</translation> |
444 | fschmid | 3173 | </message> |
3174 | <message> |
||
769 | cbradney | 3175 | <source>PostScript Level &1</source> |
3278 | cbradney | 3176 | <translation type="obsolete">PostScript ниво &1</translation> |
444 | fschmid | 3177 | </message> |
3178 | <message> |
||
769 | cbradney | 3179 | <source>PostScript Level &2</source> |
3278 | cbradney | 3180 | <translation type="obsolete">PostScript ниво &2</translation> |
444 | fschmid | 3181 | </message> |
3182 | <message> |
||
769 | cbradney | 3183 | <source>PostScript Level &3</source> |
3278 | cbradney | 3184 | <translation type="obsolete">PostScript ниво &3</translation> |
444 | fschmid | 3185 | </message> |
3186 | <message> |
||
769 | cbradney | 3187 | <source>&OK</source> |
3064 | cbradney | 3188 | <translation type="obsolete">&У реду</translation> |
444 | fschmid | 3189 | </message> |
3190 | <message> |
||
769 | cbradney | 3191 | <source>&Cancel</source> |
3064 | cbradney | 3192 | <translation type="obsolete">&Откажи</translation> |
444 | fschmid | 3193 | </message> |
3194 | <message> |
||
769 | cbradney | 3195 | <source>Creates PostScript Level 3</source> |
3278 | cbradney | 3196 | <translation type="obsolete">Прави PostScript ниво 3</translation> |
444 | fschmid | 3197 | </message> |
3198 | <message> |
||
769 | cbradney | 3199 | <source>Creates PostScript Level 2 only, beware, |
444 | fschmid | 3200 | this can create huge files</source> |
3278 | cbradney | 3201 | <translation type="obsolete">Прави PostScript ниво 2 само, опрез, |
444 | fschmid | 3202 | ово може направити огромне фајлове</translation> |
3203 | </message> |
||
3204 | <message> |
||
769 | cbradney | 3205 | <source>Creates PostScript Level 1 only, beware, |
444 | fschmid | 3206 | this can create huge files</source> |
3278 | cbradney | 3207 | <translation type="obsolete">Прави PostScript ниво 1 само, опрез, |
444 | fschmid | 3208 | oво може направити огромне фајловеНиво огроман</translation> |
3209 | </message> |
||
3210 | <message> |
||
769 | cbradney | 3211 | <source>A way of switching off some of the gray shades which are composed |
444 | fschmid | 3212 | of cyan, yellow and magenta and using black instead. |
3213 | UCR most affects parts of images which are neutral and/or dark tones |
||
3214 | which are close to the gray. Use of this may improve printing some images |
||
3215 | and some experimentation and testing is need on a case by case basis. |
||
3216 | UCR reduces the possibility of over saturation with CMY inks.</source> |
||
3278 | cbradney | 3217 | <translation type="obsolete">Начин за искључивање неких сивих сенки које су састављене |
444 | fschmid | 3218 | од цијан, жуте, и магенте и коришћења црне уместо тога. |
3219 | UCR највише утиче на делове слике који имају неутралне и/или тамне тонове |
||
3220 | који су блиски сивој. Коришћење овога може поправити штампу неких слика |
||
3221 | и потребно је мало експериментисања у зависности од случаја. |
||
3222 | UCR смањује могућност презасићености CMY мастилима</translation> |
||
3223 | </message> |
||
769 | cbradney | 3224 | </context> |
3225 | <context> |
||
444 | fschmid | 3226 | <name>Align</name> |
3227 | <message> |
||
769 | cbradney | 3228 | <source>Distribute/Align</source> |
3064 | cbradney | 3229 | <translation type="obsolete">Распореди/Поравнај</translation> |
444 | fschmid | 3230 | </message> |
3231 | <message> |
||
769 | cbradney | 3232 | <source>Align</source> |
3064 | cbradney | 3233 | <translation type="obsolete">Поравнај</translation> |
444 | fschmid | 3234 | </message> |
3235 | <message> |
||
769 | cbradney | 3236 | <source>Horizontal</source> |
3064 | cbradney | 3237 | <translation type="obsolete">Водоравно</translation> |
444 | fschmid | 3238 | </message> |
3239 | <message> |
||
769 | cbradney | 3240 | <source>Left Sides</source> |
3064 | cbradney | 3241 | <translation type="obsolete">Леве стране</translation> |
444 | fschmid | 3242 | </message> |
3243 | <message> |
||
769 | cbradney | 3244 | <source>Middles</source> |
3064 | cbradney | 3245 | <translation type="obsolete">Средине</translation> |
444 | fschmid | 3246 | </message> |
3247 | <message> |
||
769 | cbradney | 3248 | <source>Right Sides</source> |
3064 | cbradney | 3249 | <translation type="obsolete">Десне стране</translation> |
444 | fschmid | 3250 | </message> |
3251 | <message> |
||
769 | cbradney | 3252 | <source>&Between:</source> |
3064 | cbradney | 3253 | <translation type="obsolete">&Између:</translation> |
444 | fschmid | 3254 | </message> |
3255 | <message> |
||
769 | cbradney | 3256 | <source>&Do Not Change</source> |
3064 | cbradney | 3257 | <translation type="obsolete">&Немој да мењаш</translation> |
444 | fschmid | 3258 | </message> |
3259 | <message> |
||
769 | cbradney | 3260 | <source>A&lign</source> |
3064 | cbradney | 3261 | <translation type="obsolete">П&оравнај</translation> |
444 | fschmid | 3262 | </message> |
3263 | <message> |
||
769 | cbradney | 3264 | <source>Di&splacement</source> |
3064 | cbradney | 3265 | <translation type="obsolete">Погрешно &постављање</translation> |
444 | fschmid | 3266 | </message> |
3267 | <message> |
||
769 | cbradney | 3268 | <source>Distribute &Evenly</source> |
3064 | cbradney | 3269 | <translation type="obsolete">Распореди &равномерно</translation> |
444 | fschmid | 3270 | </message> |
3271 | <message> |
||
769 | cbradney | 3272 | <source>Vertical</source> |
3064 | cbradney | 3273 | <translation type="obsolete">Усправно</translation> |
444 | fschmid | 3274 | </message> |
3275 | <message> |
||
769 | cbradney | 3276 | <source>Top Sides</source> |
3064 | cbradney | 3277 | <translation type="obsolete">Горње стране</translation> |
444 | fschmid | 3278 | </message> |
3279 | <message> |
||
769 | cbradney | 3280 | <source>Bottom Sides</source> |
3064 | cbradney | 3281 | <translation type="obsolete">Доње стране</translation> |
444 | fschmid | 3282 | </message> |
3283 | <message> |
||
769 | cbradney | 3284 | <source>Bet&ween:</source> |
3064 | cbradney | 3285 | <translation type="obsolete">Изм&еђу:</translation> |
444 | fschmid | 3286 | </message> |
3287 | <message> |
||
769 | cbradney | 3288 | <source>Do &Not Change</source> |
3064 | cbradney | 3289 | <translation type="obsolete">&Немој да мењаш</translation> |
444 | fschmid | 3290 | </message> |
3291 | <message> |
||
769 | cbradney | 3292 | <source>Al&ign</source> |
3064 | cbradney | 3293 | <translation type="obsolete">По&равнај</translation> |
444 | fschmid | 3294 | </message> |
3295 | <message> |
||
769 | cbradney | 3296 | <source>Dis&placement</source> |
3064 | cbradney | 3297 | <translation type="obsolete">Погрешно &постављање</translation> |
444 | fschmid | 3298 | </message> |
3299 | <message> |
||
769 | cbradney | 3300 | <source> pt</source> |
1525 | cbradney | 3301 | <translation type="obsolete"> тач.</translation> |
444 | fschmid | 3302 | </message> |
3303 | <message> |
||
769 | cbradney | 3304 | <source> mm</source> |
1525 | cbradney | 3305 | <translation type="obsolete"> mm</translation> |
444 | fschmid | 3306 | </message> |
3307 | <message> |
||
769 | cbradney | 3308 | <source> in</source> |
1525 | cbradney | 3309 | <translation type="obsolete"> in</translation> |
444 | fschmid | 3310 | </message> |
3311 | <message> |
||
769 | cbradney | 3312 | <source> p</source> |
1525 | cbradney | 3313 | <translation type="obsolete"> p</translation> |
444 | fschmid | 3314 | </message> |
3315 | <message> |
||
769 | cbradney | 3316 | <source>Distribute E&venly</source> |
3064 | cbradney | 3317 | <translation type="obsolete">Распореди рав&номерно</translation> |
444 | fschmid | 3318 | </message> |
3319 | <message> |
||
769 | cbradney | 3320 | <source>&OK</source> |
3064 | cbradney | 3321 | <translation type="obsolete">&У реду</translation> |
444 | fschmid | 3322 | </message> |
3323 | <message> |
||
769 | cbradney | 3324 | <source>&Apply</source> |
3064 | cbradney | 3325 | <translation type="obsolete">&Примени</translation> |
444 | fschmid | 3326 | </message> |
3327 | <message> |
||
769 | cbradney | 3328 | <source>&Cancel</source> |
3064 | cbradney | 3329 | <translation type="obsolete">&Откажи</translation> |
444 | fschmid | 3330 | </message> |
769 | cbradney | 3331 | </context> |
3332 | <context> |
||
6530 | cbradney | 3333 | <name>AlignDistributeBase</name> |
3064 | cbradney | 3334 | <message> |
3335 | <source>Align and Distribute</source> |
||
3336 | <translation type="unfinished"></translation> |
||
3337 | </message> |
||
3338 | <message> |
||
3339 | <source>Align</source> |
||
3340 | <translation type="unfinished">Поравнај</translation> |
||
3341 | </message> |
||
3342 | <message> |
||
6530 | cbradney | 3343 | <source>&Selected Guide:</source> |
3344 | <translation type="unfinished"></translation> |
||
3345 | </message> |
||
3346 | <message> |
||
3347 | <source>&Relative To:</source> |
||
3348 | <translation type="unfinished"></translation> |
||
3349 | </message> |
||
3350 | <message> |
||
3351 | <source>...</source> |
||
3352 | <translation type="unfinished"></translation> |
||
3353 | </message> |
||
3354 | <message> |
||
3355 | <source>Distribute</source> |
||
3356 | <translation type="unfinished"></translation> |
||
3357 | </message> |
||
3358 | <message> |
||
3359 | <source>&Distance:</source> |
||
3360 | <translation type="unfinished"></translation> |
||
3361 | </message> |
||
3362 | </context> |
||
3363 | <context> |
||
3364 | <name>AlignDistributePalette</name> |
||
3365 | <message> |
||
3366 | <source>Align and Distribute</source> |
||
3367 | <translation type="unfinished"></translation> |
||
3368 | </message> |
||
3369 | <message> |
||
3370 | <source>Align</source> |
||
7716 | cbradney | 3371 | <translation type="unfinished">Поравнај</translation> |
6530 | cbradney | 3372 | </message> |
3373 | <message> |
||
3064 | cbradney | 3374 | <source>&Relative to:</source> |
3375 | <translation type="unfinished"></translation> |
||
3376 | </message> |
||
3377 | <message> |
||
3378 | <source>First Selected</source> |
||
3379 | <translation type="unfinished"></translation> |
||
3380 | </message> |
||
3381 | <message> |
||
3382 | <source>Last Selected</source> |
||
3383 | <translation type="unfinished"></translation> |
||
3384 | </message> |
||
3385 | <message> |
||
3386 | <source>Page</source> |
||
3387 | <translation type="unfinished">Страница</translation> |
||
3388 | </message> |
||
3389 | <message> |
||
3390 | <source>Margins</source> |
||
3391 | <translation type="unfinished"></translation> |
||
3392 | </message> |
||
3393 | <message> |
||
3394 | <source>Guide</source> |
||
3395 | <translation type="unfinished"></translation> |
||
3396 | </message> |
||
3397 | <message> |
||
3398 | <source>Selection</source> |
||
3399 | <translation type="unfinished"></translation> |
||
3400 | </message> |
||
3401 | <message> |
||
7508 | cbradney | 3402 | <source>Align bottoms</source> |
3064 | cbradney | 3403 | <translation type="unfinished"></translation> |
3404 | </message> |
||
3405 | <message> |
||
7508 | cbradney | 3406 | <source>Align right sides</source> |
3064 | cbradney | 3407 | <translation type="unfinished"></translation> |
3408 | </message> |
||
3409 | <message> |
||
7508 | cbradney | 3410 | <source>Center on vertical axis</source> |
3064 | cbradney | 3411 | <translation type="unfinished"></translation> |
3412 | </message> |
||
3413 | <message> |
||
7508 | cbradney | 3414 | <source>Align left sides</source> |
3064 | cbradney | 3415 | <translation type="unfinished"></translation> |
3416 | </message> |
||
3417 | <message> |
||
7508 | cbradney | 3418 | <source>Center on horizontal axis</source> |
3064 | cbradney | 3419 | <translation type="unfinished"></translation> |
3420 | </message> |
||
3421 | <message> |
||
7508 | cbradney | 3422 | <source>Align tops</source> |
3064 | cbradney | 3423 | <translation type="unfinished"></translation> |
3424 | </message> |
||
3425 | <message> |
||
7508 | cbradney | 3426 | <source>&Selected Guide:</source> |
3064 | cbradney | 3427 | <translation type="unfinished"></translation> |
3428 | </message> |
||
3429 | <message> |
||
7508 | cbradney | 3430 | <source>Distribute right sides equidistantly</source> |
3064 | cbradney | 3431 | <translation type="unfinished"></translation> |
3432 | </message> |
||
3433 | <message> |
||
7508 | cbradney | 3434 | <source>Distribute bottoms equidistantly</source> |
3064 | cbradney | 3435 | <translation type="unfinished"></translation> |
3436 | </message> |
||
3437 | <message> |
||
7508 | cbradney | 3438 | <source>Distribute centers equidistantly horizontally</source> |
3064 | cbradney | 3439 | <translation type="unfinished"></translation> |
3440 | </message> |
||
3441 | <message> |
||
7508 | cbradney | 3442 | <source>Distribute left sides equidistantly</source> |
3064 | cbradney | 3443 | <translation type="unfinished"></translation> |
3444 | </message> |
||
3445 | <message> |
||
7508 | cbradney | 3446 | <source>Distribute centers equidistantly vertically</source> |
3064 | cbradney | 3447 | <translation type="unfinished"></translation> |
3448 | </message> |
||
3449 | <message> |
||
7508 | cbradney | 3450 | <source>Distribute tops equidistantly</source> |
3064 | cbradney | 3451 | <translation type="unfinished"></translation> |
3452 | </message> |
||
3453 | <message> |
||
7508 | cbradney | 3454 | <source>&Distance:</source> |
3064 | cbradney | 3455 | <translation type="unfinished"></translation> |
3456 | </message> |
||
3457 | <message> |
||
7508 | cbradney | 3458 | <source>Distribute the items with the distance specified</source> |
3064 | cbradney | 3459 | <translation type="unfinished"></translation> |
3460 | </message> |
||
3461 | <message> |
||
7508 | cbradney | 3462 | <source>None Selected</source> |
3064 | cbradney | 3463 | <translation type="unfinished"></translation> |
3464 | </message> |
||
3465 | <message> |
||
7508 | cbradney | 3466 | <source>Warning</source> |
3467 | <translation type="obsolete">Упозорење</translation> |
||
3064 | cbradney | 3468 | </message> |
3469 | <message> |
||
7508 | cbradney | 3470 | <source>Y: %1%2</source> |
3064 | cbradney | 3471 | <translation type="unfinished"></translation> |
3472 | </message> |
||
3473 | <message> |
||
7508 | cbradney | 3474 | <source>X: %1%2</source> |
3064 | cbradney | 3475 | <translation type="unfinished"></translation> |
3476 | </message> |
||
3477 | <message> |
||
7508 | cbradney | 3478 | <source>Align right sides of items to left side of anchor</source> |
3064 | cbradney | 3479 | <translation type="unfinished"></translation> |
3480 | </message> |
||
3481 | <message> |
||
7508 | cbradney | 3482 | <source>Align left sides of items to right side of anchor</source> |
3064 | cbradney | 3483 | <translation type="unfinished"></translation> |
3484 | </message> |
||
3485 | <message> |
||
7508 | cbradney | 3486 | <source>Align tops of items to bottom of anchor</source> |
3064 | cbradney | 3487 | <translation type="unfinished"></translation> |
3488 | </message> |
||
3489 | <message> |
||
7508 | cbradney | 3490 | <source>Align bottoms of items to top of anchor</source> |
3064 | cbradney | 3491 | <translation type="unfinished"></translation> |
3492 | </message> |
||
3493 | <message> |
||
7508 | cbradney | 3494 | <source>Make horizontal gaps between items equal</source> |
3064 | cbradney | 3495 | <translation type="unfinished"></translation> |
3496 | </message> |
||
3497 | <message> |
||
7508 | cbradney | 3498 | <source>Make horizontal gaps between items equal to the value specified</source> |
3499 | <translation type="unfinished"></translation> |
||
3064 | cbradney | 3500 | </message> |
3501 | <message> |
||
7508 | cbradney | 3502 | <source>Make vertical gaps between items equal</source> |
3064 | cbradney | 3503 | <translation type="unfinished"></translation> |
3504 | </message> |
||
3505 | <message> |
||
7508 | cbradney | 3506 | <source>Make vertical gaps between items equal to the value specified</source> |
3064 | cbradney | 3507 | <translation type="unfinished"></translation> |
3508 | </message> |
||
6530 | cbradney | 3509 | <message> |
7508 | cbradney | 3510 | <source>Make horizontal gaps between items and sides of page equal</source> |
6530 | cbradney | 3511 | <translation type="unfinished"></translation> |
3512 | </message> |
||
3513 | <message> |
||
7508 | cbradney | 3514 | <source>Make vertical gaps between items and the top and bottom of page margins equal</source> |
6530 | cbradney | 3515 | <translation type="unfinished"></translation> |
3516 | </message> |
||
3517 | <message> |
||
7508 | cbradney | 3518 | <source>Make horizontal gaps between items and sides of page margins equal</source> |
6530 | cbradney | 3519 | <translation type="unfinished"></translation> |
3520 | </message> |
||
3521 | <message> |
||
7508 | cbradney | 3522 | <source>Make vertical gaps between items and the top and bottom of page equal</source> |
6530 | cbradney | 3523 | <translation type="unfinished"></translation> |
3524 | </message> |
||
7716 | cbradney | 3525 | <message> |
3526 | <source>Distribute</source> |
||
3527 | <translation type="unfinished"></translation> |
||
3528 | </message> |
||
3064 | cbradney | 3529 | </context> |
3530 | <context> |
||
444 | fschmid | 3531 | <name>AlignSelect</name> |
3532 | <message> |
||
769 | cbradney | 3533 | <source>Align Text Left</source> |
3534 | <translation>Поравнај текст лево</translation> |
||
444 | fschmid | 3535 | </message> |
3536 | <message> |
||
769 | cbradney | 3537 | <source>Align Text Right</source> |
3538 | <translation>Поравнај текст десно</translation> |
||
444 | fschmid | 3539 | </message> |
3540 | <message> |
||
769 | cbradney | 3541 | <source>Align Text Center</source> |
3542 | <translation>Поравнај текст по средини</translation> |
||
444 | fschmid | 3543 | </message> |
3544 | <message> |
||
769 | cbradney | 3545 | <source>Align Text Justified</source> |
3546 | <translation>Поравнај текст развучено</translation> |
||
444 | fschmid | 3547 | </message> |
3548 | <message> |
||
769 | cbradney | 3549 | <source>Align Text Forced Justified</source> |
3550 | <translation>Поравнај текст насилно развучено</translation> |
||
444 | fschmid | 3551 | </message> |
769 | cbradney | 3552 | </context> |
3553 | <context> |
||
444 | fschmid | 3554 | <name>Annot</name> |
3555 | <message> |
||
769 | cbradney | 3556 | <source>Field Properties</source> |
3557 | <translation>Својства поља</translation> |
||
444 | fschmid | 3558 | </message> |
3559 | <message> |
||
769 | cbradney | 3560 | <source>Type:</source> |
3561 | <translation>Врста:</translation> |
||
444 | fschmid | 3562 | </message> |
3563 | <message> |
||
769 | cbradney | 3564 | <source>Button</source> |
3565 | <translation>Дугме</translation> |
||
444 | fschmid | 3566 | </message> |
3567 | <message> |
||
769 | cbradney | 3568 | <source>Text Field</source> |
3569 | <translation>Поље за текст</translation> |
||
444 | fschmid | 3570 | </message> |
3571 | <message> |
||
769 | cbradney | 3572 | <source>Check Box</source> |
3573 | <translation>Кућица</translation> |
||
444 | fschmid | 3574 | </message> |
3575 | <message> |
||
769 | cbradney | 3576 | <source>Combo Box</source> |
3577 | <translation>Комбо кутија</translation> |
||
444 | fschmid | 3578 | </message> |
3579 | <message> |
||
769 | cbradney | 3580 | <source>List Box</source> |
3581 | <translation>Кутија листе</translation> |
||
444 | fschmid | 3582 | </message> |
3583 | <message> |
||
769 | cbradney | 3584 | <source>Properties</source> |
3585 | <translation>Својства</translation> |
||
444 | fschmid | 3586 | </message> |
3587 | <message> |
||
769 | cbradney | 3588 | <source>Name:</source> |
3589 | <translation>Име:</translation> |
||
444 | fschmid | 3590 | </message> |
3591 | <message> |
||
769 | cbradney | 3592 | <source>Tool-Tip:</source> |
6434 | cbradney | 3593 | <translation type="obsolete">Алат-Савет:</translation> |
444 | fschmid | 3594 | </message> |
3595 | <message> |
||
769 | cbradney | 3596 | <source>Text</source> |
3597 | <translation>Текст</translation> |
||
444 | fschmid | 3598 | </message> |
3599 | <message> |
||
769 | cbradney | 3600 | <source>Font for use with PDF 1.3:</source> |
3601 | <translation>Фонт за коришћење са PDF 1.3:</translation> |
||
444 | fschmid | 3602 | </message> |
3603 | <message> |
||
769 | cbradney | 3604 | <source>Border</source> |
3605 | <translation>Оквир</translation> |
||
444 | fschmid | 3606 | </message> |
3607 | <message> |
||
769 | cbradney | 3608 | <source>Color:</source> |
3609 | <translation>Боја:</translation> |
||
444 | fschmid | 3610 | </message> |
3611 | <message> |
||
769 | cbradney | 3612 | <source>None</source> |
3613 | <translation>Ниједан</translation> |
||
444 | fschmid | 3614 | </message> |
3615 | <message> |
||
769 | cbradney | 3616 | <source>Width:</source> |
3617 | <translation>Ширина:</translation> |
||
444 | fschmid | 3618 | </message> |
3619 | <message> |
||
769 | cbradney | 3620 | <source>Thin</source> |
3621 | <translation>Танак</translation> |
||
444 | fschmid | 3622 | </message> |
3623 | <message> |
||
769 | cbradney | 3624 | <source>Normal</source> |
3625 | <translation>Нормално</translation> |
||
444 | fschmid | 3626 | </message> |
3627 | <message> |
||
769 | cbradney | 3628 | <source>Wide</source> |
3629 | <translation>Широк</translation> |
||
444 | fschmid | 3630 | </message> |
3631 | <message> |
||
769 | cbradney | 3632 | <source>Style:</source> |
3633 | <translation>Стил:</translation> |
||
444 | fschmid | 3634 | </message> |
3635 | <message> |
||
769 | cbradney | 3636 | <source>Solid</source> |
3637 | <translation>Пуно</translation> |
||
444 | fschmid | 3638 | </message> |
3639 | <message> |
||
769 | cbradney | 3640 | <source>Dashed</source> |
3641 | <translation>Испрекидано</translation> |
||
444 | fschmid | 3642 | </message> |
3643 | <message> |
||
769 | cbradney | 3644 | <source>Underline</source> |
3645 | <translation>Подвучено</translation> |
||
444 | fschmid | 3646 | </message> |
3647 | <message> |
||
769 | cbradney | 3648 | <source>Beveled</source> |
3649 | <translation>Искошено</translation> |
||
444 | fschmid | 3650 | </message> |
3651 | <message> |
||
769 | cbradney | 3652 | <source>Inset</source> |
3653 | <translation>Уметак</translation> |
||
444 | fschmid | 3654 | </message> |
3655 | <message> |
||
769 | cbradney | 3656 | <source>Other</source> |
3657 | <translation>Остало</translation> |
||
444 | fschmid | 3658 | </message> |
3659 | <message> |
||
769 | cbradney | 3660 | <source>Read Only</source> |
3661 | <translation>Само за читање</translation> |
||
444 | fschmid | 3662 | </message> |
3663 | <message> |
||
769 | cbradney | 3664 | <source>Required</source> |
3665 | <translation>Захтевано</translation> |
||
444 | fschmid | 3666 | </message> |
3667 | <message> |
||
769 | cbradney | 3668 | <source>Don't Export Value</source> |
6434 | cbradney | 3669 | <translation type="obsolete">Немој да извозиш вредност</translation> |
444 | fschmid | 3670 | </message> |
3671 | <message> |
||
769 | cbradney | 3672 | <source>Visibility:</source> |
3673 | <translation>Видљивост:</translation> |
||
444 | fschmid | 3674 | </message> |
3675 | <message> |
||
769 | cbradney | 3676 | <source>Visible</source> |
3677 | <translation>Видљиво</translation> |
||
444 | fschmid | 3678 | </message> |
3679 | <message> |
||
769 | cbradney | 3680 | <source>Hidden</source> |
3681 | <translation>Скривен</translation> |
||
444 | fschmid | 3682 | </message> |
3683 | <message> |
||
769 | cbradney | 3684 | <source>No Print</source> |
3685 | <translation>Не штампај</translation> |
||
444 | fschmid | 3686 | </message> |
3687 | <message> |
||
769 | cbradney | 3688 | <source>No View</source> |
3689 | <translation>Без приказа</translation> |
||
444 | fschmid | 3690 | </message> |
3691 | <message> |
||
769 | cbradney | 3692 | <source>Appearance</source> |
3693 | <translation>Изглед</translation> |
||
444 | fschmid | 3694 | </message> |
3695 | <message> |
||
769 | cbradney | 3696 | <source>Text for Button Down</source> |
3697 | <translation>Текст за Дугме Доле</translation> |
||
444 | fschmid | 3698 | </message> |
3699 | <message> |
||
769 | cbradney | 3700 | <source>Text for Roll Over</source> |
3701 | <translation>Текст за превртање</translation> |
||
444 | fschmid | 3702 | </message> |
3703 | <message> |
||
769 | cbradney | 3704 | <source>Icons</source> |
3705 | <translation>Иконе</translation> |
||
444 | fschmid | 3706 | </message> |
3707 | <message> |
||
769 | cbradney | 3708 | <source>Use Icons</source> |
3709 | <translation>Користи иконе</translation> |
||
444 | fschmid | 3710 | </message> |
3711 | <message> |
||
769 | cbradney | 3712 | <source>Remove</source> |
3713 | <translation>Уклони</translation> |
||
444 | fschmid | 3714 | </message> |
3715 | <message> |
||
769 | cbradney | 3716 | <source>Pressed</source> |
3717 | <translation>Притиснуто</translation> |
||
444 | fschmid | 3718 | </message> |
3719 | <message> |
||
769 | cbradney | 3720 | <source>Roll Over</source> |
3721 | <translation>Превртање</translation> |
||
444 | fschmid | 3722 | </message> |
3723 | <message> |
||
769 | cbradney | 3724 | <source>Icon Placement...</source> |
3725 | <translation>Постављање икона...</translation> |
||
444 | fschmid | 3726 | </message> |
3727 | <message> |
||
769 | cbradney | 3728 | <source>Highlight</source> |
3729 | <translation>Истицање</translation> |
||
444 | fschmid | 3730 | </message> |
3731 | <message> |
||
769 | cbradney | 3732 | <source>Invert</source> |
3733 | <translation>Инвертуј</translation> |
||
444 | fschmid | 3734 | </message> |
3735 | <message> |
||
769 | cbradney | 3736 | <source>Outlined</source> |
3737 | <translation>Уоквирено</translation> |
||
444 | fschmid | 3738 | </message> |
3739 | <message> |
||
769 | cbradney | 3740 | <source>Push</source> |
3741 | <translation>Гурни</translation> |
||
444 | fschmid | 3742 | </message> |
3743 | <message> |
||
769 | cbradney | 3744 | <source>Multi-Line</source> |
3745 | <translation>Мулти-линија</translation> |
||
444 | fschmid | 3746 | </message> |
3747 | <message> |
||
769 | cbradney | 3748 | <source>Password</source> |
3749 | <translation>Лозинка</translation> |
||
444 | fschmid | 3750 | </message> |
3751 | <message> |
||
769 | cbradney | 3752 | <source>Limit of</source> |
3753 | <translation>Лимит од</translation> |
||
444 | fschmid | 3754 | </message> |
3755 | <message> |
||
769 | cbradney | 3756 | <source>Characters</source> |
3757 | <translation>Знакови</translation> |
||
444 | fschmid | 3758 | </message> |
3759 | <message> |
||
769 | cbradney | 3760 | <source>Do Not Scroll</source> |
3761 | <translation>Немој да скролујеш</translation> |
||
444 | fschmid | 3762 | </message> |
3763 | <message> |
||
769 | cbradney | 3764 | <source>Do Not Spell Check</source> |
3765 | <translation>Немој да провераваш правопис</translation> |
||
444 | fschmid | 3766 | </message> |
3767 | <message> |
||
769 | cbradney | 3768 | <source>Check Style:</source> |
3769 | <translation>Провери стил:</translation> |
||
444 | fschmid | 3770 | </message> |
3771 | <message> |
||
769 | cbradney | 3772 | <source>Check</source> |
3773 | <translation>Провери</translation> |
||
444 | fschmid | 3774 | </message> |
3775 | <message> |
||
769 | cbradney | 3776 | <source>Cross</source> |
3777 | <translation>Крст</translation> |
||
444 | fschmid | 3778 | </message> |
3779 | <message> |
||
769 | cbradney | 3780 | <source>Diamond</source> |
3781 | <translation>Дијамант</translation> |
||
444 | fschmid | 3782 | </message> |
3783 | <message> |
||
769 | cbradney | 3784 | <source>Circle</source> |
3785 | <translation>Круг</translation> |
||
444 | fschmid | 3786 | </message> |
3787 | <message> |
||
769 | cbradney | 3788 | <source>Star</source> |
3789 | <translation>Звезда</translation> |
||
444 | fschmid | 3790 | </message> |
3791 | <message> |
||
769 | cbradney | 3792 | <source>Square</source> |
3793 | <translation>Квадрат</translation> |
||
444 | fschmid | 3794 | </message> |
3795 | <message> |
||
769 | cbradney | 3796 | <source>Default is Checked</source> |
3797 | <translation>Подразумевано је обележено</translation> |
||
444 | fschmid | 3798 | </message> |
3799 | <message> |
||
769 | cbradney | 3800 | <source>Editable</source> |
3801 | <translation>Може се уређивати</translation> |
||
444 | fschmid | 3802 | </message> |
3803 | <message> |
||
769 | cbradney | 3804 | <source>Options</source> |
3805 | <translation>Опције</translation> |
||
444 | fschmid | 3806 | </message> |
3807 | <message> |
||
769 | cbradney | 3808 | <source>Java Script</source> |
3278 | cbradney | 3809 | <translation type="obsolete">Java Script</translation> |
444 | fschmid | 3810 | </message> |
3811 | <message> |
||
769 | cbradney | 3812 | <source>Go To</source> |
3813 | <translation>Иди на</translation> |
||
444 | fschmid | 3814 | </message> |
3815 | <message> |
||
769 | cbradney | 3816 | <source>Submit Form</source> |
3817 | <translation>Пошаљи формулар</translation> |
||
444 | fschmid | 3818 | </message> |
3819 | <message> |
||
769 | cbradney | 3820 | <source>Reset Form</source> |
3821 | <translation>Ресетуј формулар</translation> |
||
444 | fschmid | 3822 | </message> |
3823 | <message> |
||
769 | cbradney | 3824 | <source>Import Data</source> |
3825 | <translation>Увези податке</translation> |
||
444 | fschmid | 3826 | </message> |
3827 | <message> |
||
769 | cbradney | 3828 | <source>Event:</source> |
3829 | <translation>Догађај:</translation> |
||
444 | fschmid | 3830 | </message> |
3831 | <message> |
||
769 | cbradney | 3832 | <source>Mouse Up</source> |
3833 | <translation>Миш горе</translation> |
||
444 | fschmid | 3834 | </message> |
3835 | <message> |
||
769 | cbradney | 3836 | <source>Mouse Down</source> |
3837 | <translation>Миш доле</translation> |
||
444 | fschmid | 3838 | </message> |
3839 | <message> |
||
769 | cbradney | 3840 | <source>Mouse Enter</source> |
3841 | <translation>Миш унеси</translation> |
||
444 | fschmid | 3842 | </message> |
3843 | <message> |
||
769 | cbradney | 3844 | <source>Mouse Exit</source> |
3845 | <translation>Миш изађи</translation> |
||
444 | fschmid | 3846 | </message> |
3847 | <message> |
||
769 | cbradney | 3848 | <source>On Focus</source> |
3849 | <translation>На фокус</translation> |
||
444 | fschmid | 3850 | </message> |
3851 | <message> |
||
769 | cbradney | 3852 | <source>On Blur</source> |
3853 | <translation>На замућење</translation> |
||
444 | fschmid | 3854 | </message> |
3855 | <message> |
||
769 | cbradney | 3856 | <source>Script:</source> |
3857 | <translation>Скрипта:</translation> |
||
444 | fschmid | 3858 | </message> |
3859 | <message> |
||
769 | cbradney | 3860 | <source>Edit...</source> |
3861 | <translation>Уреди...</translation> |
||
444 | fschmid | 3862 | </message> |
3863 | <message> |
||
769 | cbradney | 3864 | <source>Submit to URL:</source> |
3865 | <translation>Пошаљи до URL-а:</translation> |
||
444 | fschmid | 3866 | </message> |
3867 | <message> |
||
769 | cbradney | 3868 | <source>Submit Data as HTML</source> |
3869 | <translation>Пошаљи податке као HTML</translation> |
||
444 | fschmid | 3870 | </message> |
3871 | <message> |
||
769 | cbradney | 3872 | <source>Import Data from:</source> |
3873 | <translation>Увези податке од:</translation> |
||
444 | fschmid | 3874 | </message> |
3875 | <message> |
||
769 | cbradney | 3876 | <source>Destination</source> |
3877 | <translation>Одредиште</translation> |
||
444 | fschmid | 3878 | </message> |
3879 | <message> |
||
769 | cbradney | 3880 | <source>To File:</source> |
3881 | <translation>У фајл:</translation> |
||
444 | fschmid | 3882 | </message> |
3883 | <message> |
||
769 | cbradney | 3884 | <source>Change...</source> |
3885 | <translation>Измени...</translation> |
||
444 | fschmid | 3886 | </message> |
3887 | <message> |
||
769 | cbradney | 3888 | <source>Page:</source> |
3889 | <translation>Страна:</translation> |
||
444 | fschmid | 3890 | </message> |
3891 | <message> |
||
769 | cbradney | 3892 | <source>X-Pos:</source> |
3893 | <translation>X Поз:</translation> |
||
444 | fschmid | 3894 | </message> |
3895 | <message> |
||
769 | cbradney | 3896 | <source> pt</source> |
3897 | <translation> тач.</translation> |
||
444 | fschmid | 3898 | </message> |
3899 | <message> |
||
769 | cbradney | 3900 | <source>Y-Pos:</source> |
3901 | <translation>Y Поз:</translation> |
||
444 | fschmid | 3902 | </message> |
3903 | <message> |
||
769 | cbradney | 3904 | <source>Action</source> |
3905 | <translation>Акција</translation> |
||
444 | fschmid | 3906 | </message> |
3907 | <message> |
||
769 | cbradney | 3908 | <source>Field is formatted as:</source> |
3909 | <translation>Поље је форматирано као:</translation> |
||
444 | fschmid | 3910 | </message> |
3911 | <message> |
||
769 | cbradney | 3912 | <source>Plain</source> |
3913 | <translation>Обичан</translation> |
||
444 | fschmid | 3914 | </message> |
3915 | <message> |
||
769 | cbradney | 3916 | <source>Number</source> |
3917 | <translation>Број</translation> |
||
444 | fschmid | 3918 | </message> |
3919 | <message> |
||
769 | cbradney | 3920 | <source>Percentage</source> |
3921 | <translation>Проценат</translation> |
||
444 | fschmid | 3922 | </message> |
3923 | <message> |
||
769 | cbradney | 3924 | <source>Date</source> |
3925 | <translation>Датум</translation> |
||
444 | fschmid | 3926 | </message> |
3927 | <message> |
||
769 | cbradney | 3928 | <source>Time</source> |
3929 | <translation>Време</translation> |
||
444 | fschmid | 3930 | </message> |
3931 | <message> |
||
769 | cbradney | 3932 | <source>Custom</source> |
3933 | <translation>Произвољно</translation> |
||
444 | fschmid | 3934 | </message> |
3935 | <message> |
||
769 | cbradney | 3936 | <source>Number Format</source> |
3937 | <translation>Формат бројева</translation> |
||
444 | fschmid | 3938 | </message> |
3939 | <message> |
||
769 | cbradney | 3940 | <source>Decimals:</source> |
3941 | <translation>Децимале:</translation> |
||
444 | fschmid | 3942 | </message> |
3943 | <message> |
||
769 | cbradney | 3944 | <source>Use Currency Symbol</source> |
3945 | <translation>Користи симбол валуте</translation> |
||
444 | fschmid | 3946 | </message> |
3947 | <message> |
||
769 | cbradney | 3948 | <source>Prepend Currency Symbol</source> |
3949 | <translation>Валута Симбол</translation> |
||
444 | fschmid | 3950 | </message> |
3951 | <message> |
||
769 | cbradney | 3952 | <source>Formatting</source> |
3953 | <translation>Форматирање</translation> |
||
444 | fschmid | 3954 | </message> |
3955 | <message> |
||
769 | cbradney | 3956 | <source>Percent Format</source> |
3957 | <translation>Процентни формат</translation> |
||
444 | fschmid | 3958 | </message> |
3959 | <message> |
||
769 | cbradney | 3960 | <source>Date Format</source> |
3961 | <translation>Формат датума</translation> |
||
444 | fschmid | 3962 | </message> |
3963 | <message> |
||
769 | cbradney | 3964 | <source>Time Format</source> |
3965 | <translation>Формат времена</translation> |
||
444 | fschmid | 3966 | </message> |
3967 | <message> |
||
769 | cbradney | 3968 | <source>Custom Scripts</source> |
3969 | <translation>Произвољне скрипте</translation> |
||
444 | fschmid | 3970 | </message> |
3971 | <message> |
||
769 | cbradney | 3972 | <source>Format:</source> |
3973 | <translation>Формат:</translation> |
||
444 | fschmid | 3974 | </message> |
3975 | <message> |
||
769 | cbradney | 3976 | <source>Keystroke:</source> |
3977 | <translation>Притисак дугмета:</translation> |
||
444 | fschmid | 3978 | </message> |
3979 | <message> |
||
769 | cbradney | 3980 | <source>Format</source> |
3981 | <translation>Формат</translation> |
||
444 | fschmid | 3982 | </message> |
3983 | <message> |
||
769 | cbradney | 3984 | <source>Value is not validated</source> |
3985 | <translation>Вредност није оверена</translation> |
||
444 | fschmid | 3986 | </message> |
3987 | <message> |
||
769 | cbradney | 3988 | <source>Value must be greater than or equal to:</source> |
3989 | <translation>Вредност мора бити већа или једнака са:</translation> |
||
444 | fschmid | 3990 | </message> |
3991 | <message> |
||
769 | cbradney | 3992 | <source>and less or equal to:</source> |
3993 | <translation>и мања или једнака са:</translation> |
||
444 | fschmid | 3994 | </message> |
3995 | <message> |
||
769 | cbradney | 3996 | <source>Custom validate script:</source> |
3997 | <translation>Произвољне скрипте за оверавање:</translation> |
||
444 | fschmid | 3998 | </message> |
3999 | <message> |
||
769 | cbradney | 4000 | <source>Validate</source> |
4001 | <translation>Овери</translation> |
||
444 | fschmid | 4002 | </message> |
4003 | <message> |
||
769 | cbradney | 4004 | <source>Value is not calculated</source> |
4005 | <translation>Вредност није израчуната</translation> |
||
444 | fschmid | 4006 | </message> |
4007 | <message> |
||
769 | cbradney | 4008 | <source>Value is the</source> |
4009 | <translation>Вредност је</translation> |
||
444 | fschmid | 4010 | </message> |
4011 | <message> |
||
769 | cbradney | 4012 | <source>sum</source> |
4013 | <translation>сума</translation> |
||
444 | fschmid | 4014 | </message> |
4015 | <message> |
||
769 | cbradney | 4016 | <source>product</source> |
4017 | <translation>производ</translation> |
||
444 | fschmid | 4018 | </message> |
4019 | <message> |
||
769 | cbradney | 4020 | <source>average</source> |
4021 | <translation>средња вредност</translation> |
||
444 | fschmid | 4022 | </message> |
4023 | <message> |
||
769 | cbradney | 4024 | <source>minimum</source> |
4025 | <translation>минимум</translation> |
||
444 | fschmid | 4026 | </message> |
4027 | <message> |
||
769 | cbradney | 4028 | <source>maximum</source> |
4029 | <translation>максимум</translation> |
||
444 | fschmid | 4030 | </message> |
4031 | <message> |
||
769 | cbradney | 4032 | <source>of the following fields:</source> |
4033 | <translation>од следећих поља:</translation> |
||
444 | fschmid | 4034 | </message> |
4035 | <message> |
||
769 | cbradney | 4036 | <source>Pick...</source> |
4037 | <translation>Изабери...</translation> |
||
444 | fschmid | 4038 | </message> |
4039 | <message> |
||
769 | cbradney | 4040 | <source>Custom calculation script:</source> |
4041 | <translation>Произвољна скрипта за израчунавање:</translation> |
||
444 | fschmid | 4042 | </message> |
4043 | <message> |
||
769 | cbradney | 4044 | <source>Calculate</source> |
4045 | <translation>Израчунај</translation> |
||
444 | fschmid | 4046 | </message> |
4047 | <message> |
||
769 | cbradney | 4048 | <source>OK</source> |
4049 | <translation>У реду</translation> |
||
444 | fschmid | 4050 | </message> |
4051 | <message> |
||
769 | cbradney | 4052 | <source>Cancel</source> |
4053 | <translation>Поништи</translation> |
||
444 | fschmid | 4054 | </message> |
4055 | <message> |
||
769 | cbradney | 4056 | <source>Flag is ignored for PDF 1.3</source> |
4057 | <translation>Застава се игнорише за PDF 1.3</translation> |
||
444 | fschmid | 4058 | </message> |
4059 | <message> |
||
769 | cbradney | 4060 | <source>Enter a comma separated list of fields here</source> |
4061 | <translation>Овде унесите листу поља одвојених зарезима</translation> |
||
444 | fschmid | 4062 | </message> |
4063 | <message> |
||
769 | cbradney | 4064 | <source>You need at least the Icon for Normal to use Icons for Buttons</source> |
4065 | <translation>Потребна Вам је барем икона за Нормално да бисте користили икону за дугмад</translation> |
||
444 | fschmid | 4066 | </message> |
4067 | <message> |
||
769 | cbradney | 4068 | <source>Open</source> |
4069 | <translation>Отвори</translation> |
||
444 | fschmid | 4070 | </message> |
4071 | <message> |
||
769 | cbradney | 4072 | <source>Images (*.tif *.png *.jpg *.xpm);;Postscript (*.eps);;All Files (*)</source> |
3278 | cbradney | 4073 | <translation type="obsolete">Слике (*.tif *.png *.jpg *.xpm);;Postscript (*.eps);;Сви фајлови (*)</translation> |
444 | fschmid | 4074 | </message> |
4075 | <message> |
||
769 | cbradney | 4076 | <source>Example:</source> |
4077 | <translation>Пример:</translation> |
||
444 | fschmid | 4078 | </message> |
4079 | <message> |
||
769 | cbradney | 4080 | <source>Selection Change</source> |
4081 | <translation>Промена избора</translation> |
||
444 | fschmid | 4082 | </message> |
4083 | <message> |
||
769 | cbradney | 4084 | <source>PDF Files (*.pdf);;All Files (*)</source> |
4085 | <translation>PDF фајлови (*.pdf);;Сви фајлови (*)</translation> |
||
444 | fschmid | 4086 | </message> |
3278 | cbradney | 4087 | <message> |
4088 | <source>JavaScript</source> |
||
4089 | <translation type="unfinished"></translation> |
||
4090 | </message> |
||
4091 | <message> |
||
4759 | cbradney | 4092 | <source>None</source> |
4093 | <comment>highlight</comment> |
||
4094 | <translation type="unfinished">Ниједан</translation> |
||
4095 | </message> |
||
4096 | <message> |
||
4097 | <source>None</source> |
||
4098 | <comment>action</comment> |
||
4099 | <translation type="unfinished">Ниједан</translation> |
||
4100 | </message> |
||
6434 | cbradney | 4101 | <message> |
4102 | <source>Tooltip:</source> |
||
4103 | <translation type="unfinished"></translation> |
||
4104 | </message> |
||
4105 | <message> |
||
4106 | <source>Do Not Export Value</source> |
||
4107 | <translation type="unfinished"></translation> |
||
4108 | </message> |
||
7508 | cbradney | 4109 | <message> |
7716 | cbradney | 4110 | <source>Images (*.tif *.png *.jpg *.xpm);;PostScript (*.eps *.epsi);;All Files (*)</source> |
7508 | cbradney | 4111 | <translation type="unfinished"></translation> |
4112 | </message> |
||
769 | cbradney | 4113 | </context> |
4114 | <context> |
||
444 | fschmid | 4115 | <name>Annota</name> |
4116 | <message> |
||
769 | cbradney | 4117 | <source>Annotation Properties</source> |
4118 | <translation>Својства анотације</translation> |
||
444 | fschmid | 4119 | </message> |
4120 | <message> |
||
769 | cbradney | 4121 | <source>Text</source> |
4122 | <translation>Текст</translation> |
||
444 | fschmid | 4123 | </message> |
4124 | <message> |
||
769 | cbradney | 4125 | <source>Link</source> |
4126 | <translation>Веза</translation> |
||
444 | fschmid | 4127 | </message> |
4128 | <message> |
||
769 | cbradney | 4129 | <source>External Link</source> |
4130 | <translation>Спољашња веза</translation> |
||
444 | fschmid | 4131 | </message> |
4132 | <message> |
||
769 | cbradney | 4133 | <source>External Web-Link</source> |
4134 | <translation>Спољашња веб-веза</translation> |
||
444 | fschmid | 4135 | </message> |
4136 | <message> |
||
769 | cbradney | 4137 | <source>Destination</source> |
4138 | <translation>Одредиште</translation> |
||
444 | fschmid | 4139 | </message> |
4140 | <message> |
||
769 | cbradney | 4141 | <source> pt</source> |
4142 | <translation> тач.</translation> |
||
444 | fschmid | 4143 |