Rev 6261 | Rev 6436 | 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 visible or not, a value of True means |
||
1273 | that the layer "layer" is visible, a value of False means that the layer |
||
1274 | "layer" is invisible. |
||
1275 | |||
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>isLayerPrintable("layer") -> bool |
||
1283 | |||
1284 | Returns whether the layer "layer" is printable or not, a value of True means |
||
1285 | that the layer "layer" can be printed, a value of False means that printing |
||
1286 | the layer "layer" is disabled. |
||
1287 | |||
1288 | May raise NotFoundError if the layer can't be found. |
||
1289 | May raise ValueError if the layer name isn't acceptable. |
||
1290 | </source> |
||
1291 | <translation type="unfinished"></translation> |
||
1292 | </message> |
||
1293 | <message> |
||
1294 | <source>getColorAsRGB("name") -> tuple |
||
1295 | |||
1296 | Returns a tuple (R,G,B) containing the three color components of the |
||
1297 | color "name" from the current document, converted to the RGB color |
||
1298 | space. If no document is open, returns the value of the named color |
||
1299 | from the default document colors. |
||
1300 | |||
1301 | May raise NotFoundError if the named color wasn't found. |
||
1302 | May raise ValueError if an invalid color name is specified. |
||
1303 | </source> |
||
1304 | <translation type="unfinished"></translation> |
||
1305 | </message> |
||
1306 | <message> |
||
1135 | cbradney | 1307 | <source>defineColor("name", c, m, y, k) |
1308 | |||
1309 | Defines a new color "name". The color Value is defined via four components: |
||
1525 | cbradney | 1310 | c = Cyan, m = Magenta, y = Yello and k = Black. Color components should be in |
1135 | cbradney | 1311 | the range from 0 to 255. |
1312 | |||
1313 | May raise ValueError if an invalid color name is specified. |
||
1314 | </source> |
||
1315 | <translation type="unfinished"></translation> |
||
1316 | </message> |
||
1317 | <message> |
||
1318 | <source>getCornerRadius(["name"]) -> integer |
||
1319 | |||
1525 | cbradney | 1320 | Returns the corner radius of the object "name". The radius isexpressed in points. If "name" is not given the currentlyselected item is used. |
1135 | cbradney | 1321 | </source> |
1322 | <translation type="unfinished"></translation> |
||
1323 | </message> |
||
1324 | <message> |
||
1325 | <source>getPosition(["name"]) -> (x,y) |
||
1326 | |||
1327 | Returns a (x, y) tuple with the position of the object "name". |
||
1525 | cbradney | 1328 | If "name" is not given the currently selected item is used.The position is expressed in the actual measurement unit of the document |
1135 | cbradney | 1329 | - see UNIT_<type> for reference. |
1330 | </source> |
||
1331 | <translation type="unfinished"></translation> |
||
1332 | </message> |
||
1333 | <message> |
||
1525 | cbradney | 1334 | <source>getPropertyCType(object, property, includesuper=True) |
1335 | |||
1336 | Returns the name of the C type of `property' of `object'. See getProperty() |
||
1337 | for details of arguments. |
||
1338 | |||
1339 | If `includesuper' is true, search inherited properties too. |
||
1340 | </source> |
||
1341 | <translation type="unfinished"></translation> |
||
1342 | </message> |
||
1343 | <message> |
||
1344 | <source>getPropertyNames(object, includesuper=True) |
||
1345 | |||
1346 | Return a list of property names supported by `object'. |
||
1347 | If `includesuper' is true, return properties supported |
||
1348 | by parent classes as well. |
||
1349 | </source> |
||
1350 | <translation type="unfinished"></translation> |
||
1351 | </message> |
||
1352 | <message> |
||
1353 | <source>getProperty(object, property) |
||
1354 | |||
1355 | Return the value of the property `property' of the passed `object'. |
||
1356 | |||
1357 | The `object' argument may be a string, in which case the named PageItem |
||
1358 | is searched for. It may also be a PyCObject, which may point to any |
||
1359 | C++ QObject instance. |
||
1360 | |||
1361 | The `property' argument must be a string, and is the name of the property |
||
1362 | to look up on `object'. |
||
1363 | |||
1364 | The return value varies depending on the type of the property. |
||
1365 | </source> |
||
1366 | <translation type="unfinished"></translation> |
||
1367 | </message> |
||
1368 | <message> |
||
1369 | <source>setProperty(object, property, value) |
||
1370 | |||
1371 | Set `property' of `object' to `value'. If `value' cannot be converted to a type |
||
1372 | compatible with the type of `property', an exception is raised. An exception may |
||
1373 | also be raised if the underlying setter fails. |
||
1374 | |||
1375 | See getProperty() for more information. |
||
1376 | </source> |
||
1377 | <translation type="unfinished"></translation> |
||
1378 | </message> |
||
1379 | <message> |
||
1380 | <source>getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True) |
||
1381 | |||
1382 | Return a list of children of `object', possibly restricted to children |
||
1383 | of class named `ofclass' or children named `ofname'. If `recursive' is true, |
||
1384 | search recursively through children, grandchildren, etc. |
||
1385 | |||
1386 | See QObject::children() in the Qt docs for more information. |
||
1387 | </source> |
||
1388 | <translation type="unfinished"></translation> |
||
1389 | </message> |
||
1390 | <message> |
||
1391 | <source>getChild(object, childname, ofclass=None, recursive=True) |
||
1392 | |||
1393 | Return the first child of `object' named `childname', possibly restricting |
||
1394 | the search to children of type name `ofclass'. If `recursive' is true, |
||
1395 | search recursively through children, grandchildren, etc. |
||
1396 | </source> |
||
1397 | <translation type="unfinished"></translation> |
||
1398 | </message> |
||
1399 | <message> |
||
1135 | cbradney | 1400 | <source>rotateObjectAbs(rot [, "name"]) |
1401 | |||
1525 | cbradney | 1402 | Sets the rotation of the object "name" to "rot". Positve values |
1135 | cbradney | 1403 | mean counter clockwise rotation. If "name" is not given the currently |
1404 | selected item is used. |
||
1405 | </source> |
||
1406 | <translation type="unfinished"></translation> |
||
1407 | </message> |
||
1525 | cbradney | 1408 | <message> |
1409 | <source>renderFont("name", "filename", "sample", size, format="PPM") -> bool |
||
1410 | |||
1411 | Creates an image preview of font "name" with given text "sample" and size. |
||
1412 | If "filename" is not "", image is saved into "filename". Otherwise |
||
1413 | image data is returned as a string. The optional "format" argument |
||
1414 | specifies the image format to generate, and supports any format allowed |
||
1415 | by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM. |
||
1416 | |||
1417 | May raise NotFoundError if the specified font can't be found. |
||
1418 | May raise ValueError if an empty sample or filename is passed. |
||
1419 | </source> |
||
1420 | <translation type="unfinished"></translation> |
||
1421 | </message> |
||
1422 | <message> |
||
1423 | <source>selectText(start, count, ["name"]) |
||
1424 | |||
1425 | Selects "count" characters of text in the text frame "name" starting from the |
||
1426 | character "start". Character counting starts at 0. If "count" is zero, any |
||
1427 | text selection will be cleared. If "name" is not given the currently |
||
1428 | selected item is used. |
||
1429 | |||
1430 | May throw IndexError if the selection is outside the bounds of the text. |
||
1431 | </source> |
||
1432 | <translation type="unfinished"></translation> |
||
1433 | </message> |
||
1434 | <message> |
||
3064 | cbradney | 1435 | <source>fileDialog("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename |
1525 | cbradney | 1436 | |
3064 | cbradney | 1437 | Shows a File Open dialog box with the caption "caption". Files are filtered |
1438 | with the filter string "filter". A default filename or file path can also |
||
1439 | supplied, leave this string empty when you don't want to use it. A value of |
||
1440 | True for haspreview enables a small preview widget in the FileSelect box. When |
||
1441 | the issave parameter is set to True the dialog acts like a "Save As" dialog |
||
1442 | otherwise it acts like a "File Open Dialog". When the isdir parameter is True |
||
1443 | the dialog shows and returns only directories. The default for all of the |
||
1444 | opional parameters is False. |
||
1525 | cbradney | 1445 | |
3064 | cbradney | 1446 | The filter, if specified, takes the form 'comment (*.type *.type2 ...)'. |
1447 | For example 'Images (*.png *.xpm *.jpg)'. |
||
1448 | |||
1449 | Refer to the Qt-Documentation for QFileDialog for details on filters. |
||
1450 | |||
1451 | Example: fileDialog('Open input', 'CSV files (*.csv)') |
||
1452 | Example: fileDialog('Save report', defaultname='report.txt', issave=True) |
||
1453 | </source> |
||
1454 | <translation type="unfinished"></translation> |
||
1455 | </message> |
||
1456 | <message> |
||
1457 | <source>newStyleDialog() -> string |
||
1458 | |||
1459 | Shows 'Create new paragraph style' dialog. Function returns real |
||
1460 | style name or None when user cancels the dialog. |
||
1461 | </source> |
||
1462 | <translation type="unfinished"></translation> |
||
1463 | </message> |
||
1464 | <message> |
||
1465 | <source>getPageMargins() |
||
1466 | |||
1467 | Returns the page margins as a (top, left, right, bottom) tuple in the current |
||
1468 | units. See UNIT_<type> constants and getPageSize(). |
||
1469 | </source> |
||
1470 | <translation type="unfinished"></translation> |
||
1471 | </message> |
||
1472 | <message> |
||
1473 | <source>insertText("text", pos, ["name"]) |
||
1474 | |||
1475 | Inserts the text "text" at the position "pos" into the text frame "name". |
||
1476 | Text must be UTF encoded (see setText() as reference) The first character has an |
||
1477 | index of 0. Inserting at position -1 appends text to the frame. If "name" is |
||
1478 | not given the currently selected Item is used. |
||
1479 | |||
1480 | May throw IndexError for an insertion out of bounds. |
||
1481 | </source> |
||
1482 | <translation type="unfinished"></translation> |
||
1483 | </message> |
||
1484 | <message> |
||
1485 | <source>textOverflows(["name", nolinks]) -> integer |
||
1486 | |||
1487 | Returns the actual number of overflowing characters in text frame "name". |
||
1488 | If is nolinks set to non zero value it takes only one frame - it doesn't |
||
1489 | use text frame linking. Without this parameter it search all linking chain. |
||
1490 | |||
1525 | cbradney | 1491 | May raise WrongFrameTypeError if the target frame is not an text frame |
1492 | </source> |
||
1493 | <translation type="unfinished"></translation> |
||
1494 | </message> |
||
3064 | cbradney | 1495 | <message> |
1496 | <source>setPDFBookmark("toggle", ["name"]) |
||
1497 | |||
1498 | Sets wether (toggle = 1) the text frame "name" is a bookmark nor not. |
||
1499 | If "name" is not given the currently selected item is used. |
||
1500 | |||
1501 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
1502 | </source> |
||
1503 | <translation type="unfinished"></translation> |
||
1504 | </message> |
||
1505 | <message> |
||
1506 | <source>isPDFBookmark(["name"]) -> bool |
||
1507 | |||
1508 | Returns true if the text frame "name" is a PDF bookmark. |
||
1509 | If "name" is not given the currently selected item is used. |
||
1510 | |||
1511 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
1512 | </source> |
||
1513 | <translation type="unfinished"></translation> |
||
1514 | </message> |
||
3824 | cbradney | 1515 | <message> |
1516 | <source>newDoc(size, margins, orientation, firstPageNumber, |
||
1517 | unit, facingPages, firstSideLeft) -> bool |
||
1518 | |||
1519 | WARNING: Obsolete procedure! Use newDocument instead. |
||
1520 | |||
1521 | Creates a new document and returns true if successful. The parameters have the |
||
1522 | following meaning: |
||
1523 | |||
1524 | size = A tuple (width, height) describing the size of the document. You can |
||
1525 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
||
1526 | |||
1527 | margins = A tuple (left, right, top, bottom) describing the document |
||
1528 | margins |
||
1529 | |||
1530 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
1531 | |||
1532 | firstPageNumer = is the number of the first page in the document used for |
||
1533 | pagenumbering. While you'll usually want 1, it's useful to have higher |
||
1534 | numbers if you're creating a document in several parts. |
||
1535 | |||
1536 | unit: this value sets the measurement units used by the document. Use a |
||
1537 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
1538 | UNIT_PICAS, UNIT_POINTS. |
||
1539 | |||
1540 | facingPages = FACINGPAGES, NOFACINGPAGES |
||
1541 | |||
1542 | firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT |
||
1543 | |||
1544 | The values for width, height and the margins are expressed in the given unit |
||
1545 | for the document. PAPER_* constants are expressed in points. If your document |
||
1546 | is not in points, make sure to account for this. |
||
1547 | |||
1548 | example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
||
1549 | FACINGPAGES, FIRSTPAGERIGHT) |
||
1550 | </source> |
||
1551 | <translation type="unfinished"></translation> |
||
1552 | </message> |
||
4141 | cbradney | 1553 | <message> |
1554 | <source>closeMasterPage() |
||
1555 | |||
1556 | Closes the currently active master page, if any, and returns editing |
||
1557 | to normal. Begin editing with editMasterPage(). |
||
1558 | </source> |
||
1559 | <translation type="unfinished"></translation> |
||
1560 | </message> |
||
1561 | <message> |
||
1562 | <source>masterPageNames() |
||
1563 | |||
1564 | Returns a list of the names of all master pages in the document. |
||
1565 | </source> |
||
1566 | <translation type="unfinished"></translation> |
||
1567 | </message> |
||
1568 | <message> |
||
1569 | <source>editMasterPage(pageName) |
||
1570 | |||
1571 | Enables master page editing and opens the named master page |
||
1572 | for editing. Finish editing with closeMasterPage(). |
||
1573 | </source> |
||
1574 | <translation type="unfinished"></translation> |
||
1575 | </message> |
||
1576 | <message> |
||
1577 | <source>createMasterPage(pageName) |
||
1578 | |||
1579 | Creates a new master page named pageName and opens it for |
||
1580 | editing. |
||
1581 | </source> |
||
1582 | <translation type="unfinished"></translation> |
||
1583 | </message> |
||
1584 | <message> |
||
1585 | <source>deleteMasterPage(pageName) |
||
1586 | |||
1587 | Delete the named master page. |
||
1588 | </source> |
||
1589 | <translation type="unfinished"></translation> |
||
1590 | </message> |
||
1591 | <message> |
||
1592 | <source>zoomDocument(double) |
||
1593 | |||
1594 | Zoom the document in main GUI window. Actions have whole number |
||
1595 | values like 20.0, 100.0, etc. Zoom to Fit uses -100 as a marker. |
||
1596 | </source> |
||
1597 | <translation type="unfinished"></translation> |
||
1598 | </message> |
||
6261 | cbradney | 1599 | <message> |
1600 | <source>getFillTransparency(["name"]) -> float |
||
1601 | |||
1602 | Returns the fill transparency of the object "name". If "name" |
||
1603 | is not given the currently selected Item is used. |
||
1604 | </source> |
||
1605 | <translation type="unfinished"></translation> |
||
1606 | </message> |
||
1607 | <message> |
||
1608 | <source>getFillBlendmode(["name"]) -> integer |
||
1609 | |||
1610 | Returns the fill blendmode of the object "name". If "name" |
||
1611 | is not given the currently selected Item is used. |
||
1612 | </source> |
||
1613 | <translation type="unfinished"></translation> |
||
1614 | </message> |
||
1615 | <message> |
||
1616 | <source>getLineTransparency(["name"]) -> float |
||
1617 | |||
1618 | Returns the line transparency of the object "name". If "name" |
||
1619 | is not given the currently selected Item is used. |
||
1620 | </source> |
||
1621 | <translation type="unfinished"></translation> |
||
1622 | </message> |
||
1623 | <message> |
||
1624 | <source>getLineBlendmode(["name"]) -> integer |
||
1625 | |||
1626 | Returns the line blendmode of the object "name". If "name" |
||
1627 | is not given the currently selected Item is used. |
||
1628 | </source> |
||
1629 | <translation type="unfinished"></translation> |
||
1630 | </message> |
||
1631 | <message> |
||
1632 | <source>setLayerPrintable("layer", printable) |
||
1633 | |||
1634 | Sets the layer "layer" to be printable or not. If printable is set to |
||
1635 | false the layer won't be printed. |
||
1636 | |||
1637 | May raise NotFoundError if the layer can't be found. |
||
1638 | May raise ValueError if the layer name isn't acceptable. |
||
1639 | </source> |
||
1640 | <translation type="unfinished"></translation> |
||
1641 | </message> |
||
1642 | <message> |
||
1643 | <source>setLayerLocked("layer", locked) |
||
1644 | |||
1645 | Sets the layer "layer" to be locked or not. If locked is set to |
||
1646 | true the layer will be locked. |
||
1647 | |||
1648 | May raise NotFoundError if the layer can't be found. |
||
1649 | May raise ValueError if the layer name isn't acceptable. |
||
1650 | </source> |
||
1651 | <translation type="unfinished"></translation> |
||
1652 | </message> |
||
1653 | <message> |
||
1654 | <source>setLayerOutlined"layer", outline) |
||
1655 | |||
1656 | Sets the layer "layer" to be locked or not. If outline is set to |
||
1657 | true the layer will be displayed outlined. |
||
1658 | |||
1659 | May raise NotFoundError if the layer can't be found. |
||
1660 | May raise ValueError if the layer name isn't acceptable. |
||
1661 | </source> |
||
1662 | <translation type="unfinished"></translation> |
||
1663 | </message> |
||
1664 | <message> |
||
1665 | <source>setLayerFlow"layer", flow) |
||
1666 | |||
1667 | Sets the layers "layer" flowcontrol to flow. If flow is set to |
||
1668 | true text in layers above this one will flow around objects on this layer. |
||
1669 | |||
1670 | May raise NotFoundError if the layer can't be found. |
||
1671 | May raise ValueError if the layer name isn't acceptable. |
||
1672 | </source> |
||
1673 | <translation type="unfinished"></translation> |
||
1674 | </message> |
||
1675 | <message> |
||
1676 | <source>setLayerBlendmode"layer", blend) |
||
1677 | |||
1678 | Sets the layers "layer" blendmode to blend. |
||
1679 | |||
1680 | May raise NotFoundError if the layer can't be found. |
||
1681 | May raise ValueError if the layer name isn't acceptable. |
||
1682 | </source> |
||
1683 | <translation type="unfinished"></translation> |
||
1684 | </message> |
||
1685 | <message> |
||
1686 | <source>setLayerTransparency"layer", trans) |
||
1687 | |||
1688 | Sets the layers "layer" transparency to trans. |
||
1689 | |||
1690 | May raise NotFoundError if the layer can't be found. |
||
1691 | May raise ValueError if the layer name isn't acceptable. |
||
1692 | </source> |
||
1693 | <translation type="unfinished"></translation> |
||
1694 | </message> |
||
1695 | <message> |
||
1696 | <source>isLayerLocked("layer") -> bool |
||
1697 | |||
1698 | Returns whether the layer "layer" is locked or not, a value of True means |
||
1699 | that the layer "layer" is editable, a value of False means that the layer |
||
1700 | "layer" is locked. |
||
1701 | |||
1702 | May raise NotFoundError if the layer can't be found. |
||
1703 | May raise ValueError if the layer name isn't acceptable. |
||
1704 | </source> |
||
1705 | <translation type="unfinished"></translation> |
||
1706 | </message> |
||
1707 | <message> |
||
1708 | <source>isLayerOutlined("layer") -> bool |
||
1709 | |||
1710 | Returns whether the layer "layer" is outlined or not, a value of True means |
||
1711 | that the layer "layer" is outlined, a value of False means that the layer |
||
1712 | "layer" is normal. |
||
1713 | |||
1714 | May raise NotFoundError if the layer can't be found. |
||
1715 | May raise ValueError if the layer name isn't acceptable. |
||
1716 | </source> |
||
1717 | <translation type="unfinished"></translation> |
||
1718 | </message> |
||
1719 | <message> |
||
1720 | <source>isLayerFlow("layer") -> bool |
||
1721 | |||
1722 | Returns whether text flows around objects on layer "layer", a value of True means |
||
1723 | that text flows around, a value of False means that the text does not flow around. |
||
1724 | |||
1725 | May raise NotFoundError if the layer can't be found. |
||
1726 | May raise ValueError if the layer name isn't acceptable. |
||
1727 | </source> |
||
1728 | <translation type="unfinished"></translation> |
||
1729 | </message> |
||
1730 | <message> |
||
1731 | <source>getLayerBlendmode("layer") -> int |
||
1732 | |||
1733 | Returns the "layer" layer blendmode, |
||
1734 | |||
1735 | May raise NotFoundError if the layer can't be found. |
||
1736 | May raise ValueError if the layer name isn't acceptable. |
||
1737 | </source> |
||
1738 | <translation type="unfinished"></translation> |
||
1739 | </message> |
||
1740 | <message> |
||
1741 | <source>getLayerTransparency("layer") -> float |
||
1742 | |||
1743 | Returns the "layer" layer transparency, |
||
1744 | |||
1745 | May raise NotFoundError if the layer can't be found. |
||
1746 | May raise ValueError if the layer name isn't acceptable. |
||
1747 | </source> |
||
1748 | <translation type="unfinished"></translation> |
||
1749 | </message> |
||
1750 | <message> |
||
1751 | <source>textFlowMode("name" [, state]) |
||
1752 | |||
1753 | Enables/disables "Text Flows Around Frame" feature for object "name". |
||
1754 | Called with parameters string name and optional int "state" (0 <= state <= 3). |
||
1755 | Setting "state" to 0 will disable text flow. |
||
1756 | Setting "state" to 1 will make text flow around object frame. |
||
1757 | Setting "state" to 2 will make text flow around bounding box. |
||
1758 | Setting "state" to 3 will make text flow around contour line. |
||
1759 | If "state" is not passed, text flow is toggled. |
||
1760 | </source> |
||
1761 | <translation type="unfinished"></translation> |
||
1762 | </message> |
||
1763 | <message> |
||
1764 | <source>duplicateObject(["name"]) -> string |
||
1765 | |||
1766 | creates a Duplicate of the selected Object (or Selection Group). |
||
1767 | </source> |
||
1768 | <translation type="unfinished"></translation> |
||
1769 | </message> |
||
1770 | <message> |
||
1771 | <source>setFillTransparency(transparency, ["name"]) |
||
1772 | |||
1773 | Sets the fill transparency of the object "name" to transparency |
||
1774 | is the name of one of the defined colors. If "name" is not given the |
||
1775 | currently selected item is used. |
||
1776 | </source> |
||
1777 | <translation type="unfinished"></translation> |
||
1778 | </message> |
||
1779 | <message> |
||
1780 | <source>setFillBlendmode(blendmode, ["name"]) |
||
1781 | |||
1782 | Sets the fill blendmode of the object "name" to blendmode |
||
1783 | is the name of one of the defined colors. If "name" is not given the |
||
1784 | currently selected item is used. |
||
1785 | </source> |
||
1786 | <translation type="unfinished"></translation> |
||
1787 | </message> |
||
1788 | <message> |
||
1789 | <source>setLineTransparency(transparency, ["name"]) |
||
1790 | |||
1791 | Sets the line transparency of the object "name" to transparency |
||
1792 | is the name of one of the defined colors. If "name" is not given the |
||
1793 | currently selected item is used. |
||
1794 | </source> |
||
1795 | <translation type="unfinished"></translation> |
||
1796 | </message> |
||
1797 | <message> |
||
1798 | <source>setLineBlendmode(blendmode, ["name"]) |
||
1799 | |||
1800 | Sets the line blendmode of the object "name" to blendmode |
||
1801 | is the name of one of the defined colors. If "name" is not given the |
||
1802 | currently selected item is used. |
||
1803 | </source> |
||
1804 | <translation type="unfinished"></translation> |
||
1805 | </message> |
||
6434 | cbradney | 1806 | <message> |
1807 | <source>setInfo("author", "info", "description") -> bool |
||
1808 | |||
1809 | Sets the document information. "Author", "Info", "Description" are |
||
1810 | strings. |
||
1811 | </source> |
||
1812 | <translation type="unfinished"></translation> |
||
1813 | </message> |
||
1814 | <message> |
||
1815 | <source>getPageType() -> integer |
||
1816 | |||
1817 | Returns the type of the Page, 0 means left Page, 1 is a middle Page and 2 is a right Page |
||
1818 | </source> |
||
1819 | <translation type="unfinished"></translation> |
||
1820 | </message> |
||
1821 | <message> |
||
1822 | <source>getTextLines(["name"]) -> integer |
||
1823 | |||
1824 | Returns the number of lines of the text in the text frame "name". |
||
1825 | If "name" is not given the currently selected item is used. |
||
1826 | </source> |
||
1827 | <translation type="unfinished"></translation> |
||
1828 | </message> |
||
1135 | cbradney | 1829 | </context> |
1830 | <context> |
||
444 | fschmid | 1831 | <name>About</name> |
1832 | <message> |
||
1135 | cbradney | 1833 | <source>About Scribus%1%2</source> |
1834 | <translation type="obsolete">О Scribus-у%1%2</translation> |
||
1835 | </message> |
||
1836 | <message> |
||
769 | cbradney | 1837 | <source>%1. %2 %3 </source> |
3064 | cbradney | 1838 | <translation type="obsolete">%1. %2 %3 </translation> |
444 | fschmid | 1839 | </message> |
1840 | <message> |
||
769 | cbradney | 1841 | <source>Scribus Version %1 |
444 | fschmid | 1842 | %2 %3</source> |
3064 | cbradney | 1843 | <translation type="obsolete">Scribus верзија %1 |
444 | fschmid | 1844 | %2 %3</translation> |
1845 | </message> |
||
1846 | <message> |
||
769 | cbradney | 1847 | <source>Build-ID:</source> |
3824 | cbradney | 1848 | <translation type="obsolete">ID градње:</translation> |
444 | fschmid | 1849 | </message> |
1850 | <message> |
||
769 | cbradney | 1851 | <source>&About</source> |
1852 | <translation>О прогр&аму</translation> |
||
444 | fschmid | 1853 | </message> |
1854 | <message> |
||
769 | cbradney | 1855 | <source>Development Team:</source> |
1856 | <translation>Развојни тим:</translation> |
||
444 | fschmid | 1857 | </message> |
1858 | <message> |
||
769 | cbradney | 1859 | <source>Contributions from:</source> |
1860 | <translation>Прилози од стране:</translation> |
||
444 | fschmid | 1861 | </message> |
1862 | <message> |
||
769 | cbradney | 1863 | <source>Windows port:</source> |
3064 | cbradney | 1864 | <translation type="obsolete">Порт за windows:</translation> |
444 | fschmid | 1865 | </message> |
1866 | <message> |
||
769 | cbradney | 1867 | <source>Official Documentation:</source> |
1868 | <translation>Званична документација:</translation> |
||
444 | fschmid | 1869 | </message> |
1870 | <message> |
||
769 | cbradney | 1871 | <source>Other Documentation:</source> |
1872 | <translation>Остала документација:</translation> |
||
444 | fschmid | 1873 | </message> |
1874 | <message> |
||
769 | cbradney | 1875 | <source>A&uthors</source> |
1876 | <translation>А&утори</translation> |
||
444 | fschmid | 1877 | </message> |
1878 | <message> |
||
769 | cbradney | 1879 | <source>Basque:</source> |
3064 | cbradney | 1880 | <translation type="obsolete">Баскијски:</translation> |
444 | fschmid | 1881 | </message> |
1882 | <message> |
||
769 | cbradney | 1883 | <source>Brazilian:</source> |
3064 | cbradney | 1884 | <translation type="obsolete">Бразилски:</translation> |
444 | fschmid | 1885 | </message> |
1886 | <message> |
||
769 | cbradney | 1887 | <source>Bulgarian:</source> |
3064 | cbradney | 1888 | <translation type="obsolete">Бугарски:</translation> |
444 | fschmid | 1889 | </message> |
1890 | <message> |
||
769 | cbradney | 1891 | <source>Catalan:</source> |
3064 | cbradney | 1892 | <translation type="obsolete">Каталански:</translation> |
444 | fschmid | 1893 | </message> |
1894 | <message> |
||
769 | cbradney | 1895 | <source>Czech:</source> |
3064 | cbradney | 1896 | <translation type="obsolete">Чешки:</translation> |
444 | fschmid | 1897 | </message> |
1898 | <message> |
||
769 | cbradney | 1899 | <source>Danish:</source> |
3064 | cbradney | 1900 | <translation type="obsolete">Дански:</translation> |
444 | fschmid | 1901 | </message> |
1902 | <message> |
||
769 | cbradney | 1903 | <source>English (British):</source> |
3064 | cbradney | 1904 | <translation type="obsolete">Енглески (Британски):</translation> |
444 | fschmid | 1905 | </message> |
1906 | <message> |
||
769 | cbradney | 1907 | <source>Esperanto:</source> |
3064 | cbradney | 1908 | <translation type="obsolete">Есперанто:</translation> |
444 | fschmid | 1909 | </message> |
1910 | <message> |
||
769 | cbradney | 1911 | <source>Finnish:</source> |
3064 | cbradney | 1912 | <translation type="obsolete">Фински:</translation> |
444 | fschmid | 1913 | </message> |
1914 | <message> |
||
769 | cbradney | 1915 | <source>French:</source> |
3064 | cbradney | 1916 | <translation type="obsolete">Француски:</translation> |
444 | fschmid | 1917 | </message> |
1918 | <message> |
||
769 | cbradney | 1919 | <source>Galician:</source> |
3064 | cbradney | 1920 | <translation type="obsolete">Галицијски:</translation> |
444 | fschmid | 1921 | </message> |
1922 | <message> |
||
769 | cbradney | 1923 | <source>German:</source> |
3064 | cbradney | 1924 | <translation type="obsolete">Немачки:</translation> |
444 | fschmid | 1925 | </message> |
1926 | <message> |
||
769 | cbradney | 1927 | <source>Hungarian:</source> |
3064 | cbradney | 1928 | <translation type="obsolete">Мађарски:</translation> |
444 | fschmid | 1929 | </message> |
1930 | <message> |
||
769 | cbradney | 1931 | <source>Italian:</source> |
3064 | cbradney | 1932 | <translation type="obsolete">Италијански:</translation> |
444 | fschmid | 1933 | </message> |
1934 | <message> |
||
769 | cbradney | 1935 | <source>Korean:</source> |
3064 | cbradney | 1936 | <translation type="obsolete">Корејски:</translation> |
444 | fschmid | 1937 | </message> |
1938 | <message> |
||
769 | cbradney | 1939 | <source>Lithuanian:</source> |
3064 | cbradney | 1940 | <translation type="obsolete">Литвански:</translation> |
444 | fschmid | 1941 | </message> |
1942 | <message> |
||
769 | cbradney | 1943 | <source>Norwegian:</source> |
3064 | cbradney | 1944 | <translation type="obsolete">Норвешки:</translation> |
444 | fschmid | 1945 | </message> |
1946 | <message> |
||
769 | cbradney | 1947 | <source>Polish:</source> |
3064 | cbradney | 1948 | <translation type="obsolete">Пољски:</translation> |
444 | fschmid | 1949 | </message> |
1950 | <message> |
||
769 | cbradney | 1951 | <source>Russian:</source> |
3064 | cbradney | 1952 | <translation type="obsolete">Руски:</translation> |
444 | fschmid | 1953 | </message> |
1954 | <message> |
||
769 | cbradney | 1955 | <source>Slovak:</source> |
3064 | cbradney | 1956 | <translation type="obsolete">Словачки:</translation> |
444 | fschmid | 1957 | </message> |
1958 | <message> |
||
769 | cbradney | 1959 | <source>Slovenian:</source> |
3064 | cbradney | 1960 | <translation type="obsolete">Словеначки:</translation> |
444 | fschmid | 1961 | </message> |
1962 | <message> |
||
769 | cbradney | 1963 | <source>Spanish:</source> |
3064 | cbradney | 1964 | <translation type="obsolete">Шпански:</translation> |
444 | fschmid | 1965 | </message> |
1966 | <message> |
||
769 | cbradney | 1967 | <source>Swedish:</source> |
3064 | cbradney | 1968 | <translation type="obsolete">Шведски:</translation> |
444 | fschmid | 1969 | </message> |
1970 | <message> |
||
769 | cbradney | 1971 | <source>Turkish:</source> |
3064 | cbradney | 1972 | <translation type="obsolete">Турски:</translation> |
444 | fschmid | 1973 | </message> |
1974 | <message> |
||
769 | cbradney | 1975 | <source>Ukrainian:</source> |
3064 | cbradney | 1976 | <translation type="obsolete">Украјински:</translation> |
444 | fschmid | 1977 | </message> |
1978 | <message> |
||
769 | cbradney | 1979 | <source>Welsh:</source> |
3064 | cbradney | 1980 | <translation type="obsolete">Велшки:</translation> |
444 | fschmid | 1981 | </message> |
1982 | <message> |
||
769 | cbradney | 1983 | <source>&Translations</source> |
1984 | <translation>&Преводи</translation> |
||
444 | fschmid | 1985 | </message> |
1986 | <message> |
||
769 | cbradney | 1987 | <source>Homepage</source> |
1988 | <translation>Почетна страница</translation> |
||
444 | fschmid | 1989 | </message> |
1990 | <message> |
||
769 | cbradney | 1991 | <source>Online Reference</source> |
1992 | <translation>Веб референца</translation> |
||
444 | fschmid | 1993 | </message> |
1994 | <message> |
||
769 | cbradney | 1995 | <source>Bugs and Feature Requests</source> |
1996 | <translation>Грешке и захтеви за нове могућности</translation> |
||
444 | fschmid | 1997 | </message> |
1998 | <message> |
||
769 | cbradney | 1999 | <source>Mailing List</source> |
2000 | <translation>Дискусиона листа</translation> |
||
444 | fschmid | 2001 | </message> |
2002 | <message> |
||
769 | cbradney | 2003 | <source>&Online</source> |
2004 | <translation>На &вези</translation> |
||
444 | fschmid | 2005 | </message> |
2006 | <message> |
||
769 | cbradney | 2007 | <source>&Close</source> |
2008 | <translation>&Затвори</translation> |
||
444 | fschmid | 2009 | </message> |
2010 | <message> |
||
1135 | cbradney | 2011 | <source>This panel shows the version, build date and |
2012 | compiled in library support in Scribus |
||
2013 | The C-C-T equates to C=CUPS C=littlecms T=TIFF support. |
||
2014 | Missing library support is indicated by a *</source> |
||
2015 | <translation type="obsolete">Овај панел приказује верзију, датум прављења и |
||
2016 | укомпајлирану подршку за библиотеке у Scribus-у |
||
2017 | C-C-T означава: C=CUPS C=littlecms T=TIFF подршку. |
||
2018 | Подршка за библиотеке које недостају је обележена *</translation> |
||
2019 | </message> |
||
2020 | <message> |
||
769 | cbradney | 2021 | <source>Official Translations and Translators:</source> |
2022 | <translation>Званични преводи и преводиоци:</translation> |
||
454 | fschmid | 2023 | </message> |
2024 | <message> |
||
769 | cbradney | 2025 | <source>Serbian:</source> |
3064 | cbradney | 2026 | <translation type="obsolete">Српски:</translation> |
454 | fschmid | 2027 | </message> |
2028 | <message> |
||
769 | cbradney | 2029 | <source>Previous Translation Contributors:</source> |
2030 | <translation>Они који су претходно допринели превођењу:</translation> |
||
454 | fschmid | 2031 | </message> |
769 | cbradney | 2032 | <message> |
2033 | <source>About Scribus %1</source> |
||
2034 | <translation type="unfinished"></translation> |
||
2035 | </message> |
||
776 | fschmid | 2036 | <message> |
3824 | cbradney | 2037 | <source>Wiki</source> |
1525 | cbradney | 2038 | <translation type="unfinished"></translation> |
2039 | </message> |
||
2040 | <message> |
||
3824 | cbradney | 2041 | <source>%1 %2 %3</source> |
3064 | cbradney | 2042 | <translation type="unfinished"></translation> |
2043 | </message> |
||
2044 | <message> |
||
3824 | cbradney | 2045 | <source>%3-%2-%1 %4 %5</source> |
3064 | cbradney | 2046 | <translation type="unfinished"></translation> |
2047 | </message> |
||
2048 | <message> |
||
3824 | cbradney | 2049 | <source>Using Ghostscript version %1</source> |
3064 | cbradney | 2050 | <translation type="unfinished"></translation> |
2051 | </message> |
||
2052 | <message> |
||
3824 | cbradney | 2053 | <source>No Ghostscript version available</source> |
3064 | cbradney | 2054 | <translation type="unfinished"></translation> |
2055 | </message> |
||
3824 | cbradney | 2056 | <message> |
2057 | <source><b>Scribus Version %1</b><p>%2<br/>%3 %4<br/>%5</p></source> |
||
2058 | <translation type="unfinished"></translation> |
||
2059 | </message> |
||
2060 | <message> |
||
2061 | <source>Build ID:</source> |
||
2062 | <translation type="unfinished"></translation> |
||
2063 | </message> |
||
2064 | <message> |
||
4870 | mrdocs | 2065 | <source>Mac OS&#174; X Aqua Port:</source> |
4141 | cbradney | 2066 | <translation type="unfinished"></translation> |
2067 | </message> |
||
4759 | cbradney | 2068 | <message> |
4870 | mrdocs | 2069 | <source>Windows&#174; Port:</source> |
4759 | cbradney | 2070 | <translation type="unfinished"></translation> |
2071 | </message> |
||
2072 | <message> |
||
5328 | cbradney | 2073 | <source>Tango Project Icons:</source> |
2074 | <translation type="unfinished"></translation> |
||
2075 | </message> |
||
6261 | cbradney | 2076 | <message> |
2077 | <source>&Updates</source> |
||
2078 | <translation type="unfinished"></translation> |
||
2079 | </message> |
||
2080 | <message> |
||
2081 | <source>Check for &Updates</source> |
||
2082 | <translation type="unfinished"></translation> |
||
2083 | </message> |
||
2084 | <message> |
||
2085 | <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> |
||
2086 | <translation type="unfinished"></translation> |
||
2087 | </message> |
||
2088 | <message> |
||
2089 | <source>Check for updates to Scribus. No data from your machine will be transferred off it.</source> |
||
2090 | <translation type="unfinished"></translation> |
||
2091 | </message> |
||
769 | cbradney | 2092 | </context> |
2093 | <context> |
||
3278 | cbradney | 2094 | <name>AboutPlugins</name> |
2095 | <message> |
||
2096 | <source>Yes</source> |
||
2097 | <translation type="unfinished">Да</translation> |
||
2098 | </message> |
||
2099 | <message> |
||
2100 | <source>No</source> |
||
2101 | <translation type="unfinished">Не</translation> |
||
2102 | </message> |
||
2103 | <message> |
||
4759 | cbradney | 2104 | <source>Filename:</source> |
3278 | cbradney | 2105 | <translation type="unfinished"></translation> |
2106 | </message> |
||
2107 | <message> |
||
2108 | <source>Version:</source> |
||
2109 | <translation type="unfinished"></translation> |
||
2110 | </message> |
||
2111 | <message> |
||
2112 | <source>Enabled:</source> |
||
2113 | <translation type="unfinished"></translation> |
||
2114 | </message> |
||
2115 | <message> |
||
2116 | <source>Release Date:</source> |
||
2117 | <translation type="unfinished"></translation> |
||
2118 | </message> |
||
2119 | <message> |
||
4759 | cbradney | 2120 | <source>Description:</source> |
3278 | cbradney | 2121 | <translation type="unfinished"></translation> |
2122 | </message> |
||
2123 | <message> |
||
2124 | <source>Author(s):</source> |
||
2125 | <translation type="unfinished"></translation> |
||
2126 | </message> |
||
2127 | <message> |
||
4759 | cbradney | 2128 | <source>Copyright:</source> |
3278 | cbradney | 2129 | <translation type="unfinished"></translation> |
2130 | </message> |
||
2131 | <message> |
||
2132 | <source>License:</source> |
||
2133 | <translation type="unfinished"></translation> |
||
2134 | </message> |
||
4759 | cbradney | 2135 | </context> |
2136 | <context> |
||
2137 | <name>AboutPluginsBase</name> |
||
3278 | cbradney | 2138 | <message> |
4759 | cbradney | 2139 | <source>Scribus: About Plug-ins</source> |
2140 | <translation type="unfinished"></translation> |
||
2141 | </message> |
||
2142 | <message> |
||
3278 | cbradney | 2143 | <source>&Close</source> |
2144 | <translation type="unfinished">&Затвори</translation> |
||
2145 | </message> |
||
2146 | <message> |
||
2147 | <source>Alt+C</source> |
||
2148 | <translation type="unfinished">Alt+C</translation> |
||
2149 | </message> |
||
2150 | </context> |
||
2151 | <context> |
||
3064 | cbradney | 2152 | <name>ActionManager</name> |
2153 | <message> |
||
2154 | <source>&New</source> |
||
2155 | <translation type="unfinished">&Нови</translation> |
||
2156 | </message> |
||
2157 | <message> |
||
2158 | <source>&Open...</source> |
||
2159 | <translation type="unfinished">&Отвори...</translation> |
||
2160 | </message> |
||
2161 | <message> |
||
2162 | <source>&Close</source> |
||
2163 | <translation type="unfinished">&Затвори</translation> |
||
2164 | </message> |
||
2165 | <message> |
||
2166 | <source>&Save</source> |
||
2167 | <translation type="unfinished">&Сними</translation> |
||
2168 | </message> |
||
2169 | <message> |
||
2170 | <source>Save &As...</source> |
||
2171 | <translation type="unfinished">Сними &као...</translation> |
||
2172 | </message> |
||
2173 | <message> |
||
2174 | <source>Re&vert to Saved</source> |
||
2175 | <translation type="unfinished">Вр&ати на снимљено</translation> |
||
2176 | </message> |
||
2177 | <message> |
||
2178 | <source>Collect for O&utput...</source> |
||
2179 | <translation type="unfinished">Сакупи за и&злаз...</translation> |
||
2180 | </message> |
||
2181 | <message> |
||
2182 | <source>Get Text...</source> |
||
2183 | <translation type="unfinished">Добави текст...</translation> |
||
2184 | </message> |
||
2185 | <message> |
||
2186 | <source>Append &Text...</source> |
||
2187 | <translation type="unfinished">Примени &текст...</translation> |
||
2188 | </message> |
||
2189 | <message> |
||
2190 | <source>Get Image...</source> |
||
2191 | <translation type="unfinished"></translation> |
||
2192 | </message> |
||
2193 | <message> |
||
2194 | <source>Save &Text...</source> |
||
2195 | <translation type="unfinished">Сними &текст...</translation> |
||
2196 | </message> |
||
2197 | <message> |
||
2198 | <source>Save Page as &EPS...</source> |
||
5485 | cbradney | 2199 | <translation type="obsolete">Сними страницу као &EPS...</translation> |
3064 | cbradney | 2200 | </message> |
2201 | <message> |
||
2202 | <source>Save as P&DF...</source> |
||
2203 | <translation type="unfinished">Сними као P&DF...</translation> |
||
2204 | </message> |
||
2205 | <message> |
||
2206 | <source>Document &Setup...</source> |
||
2207 | <translation type="unfinished">&Поставке документа...</translation> |
||
2208 | </message> |
||
2209 | <message> |
||
2210 | <source>&Print...</source> |
||
2211 | <translation type="unfinished">Ш&тампај...</translation> |
||
2212 | </message> |
||
2213 | <message> |
||
2214 | <source>&Quit</source> |
||
2215 | <translation type="unfinished">&Заврши</translation> |
||
2216 | </message> |
||
2217 | <message> |
||
2218 | <source>&Undo</source> |
||
2219 | <translation type="unfinished">&Опозови</translation> |
||
2220 | </message> |
||
2221 | <message> |
||
2222 | <source>&Redo</source> |
||
2223 | <translation type="unfinished">Поно&ви</translation> |
||
2224 | </message> |
||
2225 | <message> |
||
2226 | <source>&Item Action Mode</source> |
||
2227 | <translation type="unfinished"></translation> |
||
2228 | </message> |
||
2229 | <message> |
||
2230 | <source>Cu&t</source> |
||
2231 | <translation type="unfinished">&Исеци</translation> |
||
2232 | </message> |
||
2233 | <message> |
||
2234 | <source>&Copy</source> |
||
2235 | <translation type="unfinished">&Копирај</translation> |
||
2236 | </message> |
||
2237 | <message> |
||
2238 | <source>&Paste</source> |
||
2239 | <translation type="unfinished">&Пренеси</translation> |
||
2240 | </message> |
||
2241 | <message> |
||
2242 | <source>C&lear Contents</source> |
||
5328 | cbradney | 2243 | <translation type="obsolete">О&чисти садржај</translation> |
3064 | cbradney | 2244 | </message> |
2245 | <message> |
||
2246 | <source>Select &All</source> |
||
2247 | <translation type="unfinished">Изабери &све</translation> |
||
2248 | </message> |
||
2249 | <message> |
||
2250 | <source>&Deselect All</source> |
||
2251 | <translation type="unfinished"></translation> |
||
2252 | </message> |
||
2253 | <message> |
||
2254 | <source>&Search/Replace...</source> |
||
2255 | <translation type="unfinished">&Тражи/Замени...</translation> |
||
2256 | </message> |
||
2257 | <message> |
||
2258 | <source>Edit Image...</source> |
||
2259 | <translation type="unfinished"></translation> |
||
2260 | </message> |
||
2261 | <message> |
||
2262 | <source>C&olors...</source> |
||
2263 | <translation type="unfinished">Б&оје...</translation> |
||
2264 | </message> |
||
2265 | <message> |
||
2266 | <source>&Paragraph Styles...</source> |
||
2267 | <translation type="unfinished">Стилови &пасуса....</translation> |
||
2268 | </message> |
||
2269 | <message> |
||
2270 | <source>&Line Styles...</source> |
||
2271 | <translation type="unfinished">Стилови &линија...</translation> |
||
2272 | </message> |
||
2273 | <message> |
||
2274 | <source>&Master Pages...</source> |
||
2275 | <translation type="unfinished"></translation> |
||
2276 | </message> |
||
2277 | <message> |
||
2278 | <source>&Javascripts...</source> |
||
3278 | cbradney | 2279 | <translation type="obsolete">&Javascript-ови...</translation> |
3064 | cbradney | 2280 | </message> |
2281 | <message> |
||
2282 | <source>P&references...</source> |
||
2283 | <translation type="unfinished">П&одешавања...</translation> |
||
2284 | </message> |
||
2285 | <message> |
||
2286 | <source>%1 pt</source> |
||
2287 | <translation type="unfinished"></translation> |
||
2288 | </message> |
||
2289 | <message> |
||
2290 | <source>&Other...</source> |
||
2291 | <translation type="unfinished">&Остало...</translation> |
||
2292 | </message> |
||
2293 | <message> |
||
2294 | <source>&Left</source> |
||
2295 | <translation type="unfinished">&Лево</translation> |
||
2296 | </message> |
||
2297 | <message> |
||
2298 | <source>&Center</source> |
||
2299 | <translation type="unfinished">&Средина</translation> |
||
2300 | </message> |
||
2301 | <message> |
||
2302 | <source>&Right</source> |
||
2303 | <translation type="unfinished">&Десно</translation> |
||
2304 | </message> |
||
2305 | <message> |
||
2306 | <source>&Block</source> |
||
2307 | <translation type="unfinished">&Блокирај</translation> |
||
2308 | </message> |
||
2309 | <message> |
||
2310 | <source>&Forced</source> |
||
2311 | <translation type="unfinished">&Приморано</translation> |
||
2312 | </message> |
||
2313 | <message> |
||
2314 | <source>&%1 %</source> |
||
2315 | <translation type="unfinished"></translation> |
||
2316 | </message> |
||
2317 | <message> |
||
2318 | <source>&Normal</source> |
||
2319 | <translation type="unfinished"></translation> |
||
2320 | </message> |
||
2321 | <message> |
||
2322 | <source>&Underline</source> |
||
2323 | <translation type="unfinished">&Подвуци</translation> |
||
2324 | </message> |
||
2325 | <message> |
||
2326 | <source>Underline &Words</source> |
||
2327 | <translation type="unfinished"></translation> |
||
2328 | </message> |
||
2329 | <message> |
||
2330 | <source>&Strike Through</source> |
||
2331 | <translation type="unfinished"></translation> |
||
2332 | </message> |
||
2333 | <message> |
||
2334 | <source>&All Caps</source> |
||
2335 | <translation type="unfinished"></translation> |
||
2336 | </message> |
||
2337 | <message> |
||
2338 | <source>Small &Caps</source> |
||
2339 | <translation type="unfinished"></translation> |
||
2340 | </message> |
||
2341 | <message> |
||
2342 | <source>Su&perscript</source> |
||
2343 | <translation type="unfinished"></translation> |
||
2344 | </message> |
||
2345 | <message> |
||
2346 | <source>Su&bscript</source> |
||
2347 | <translation type="unfinished"></translation> |
||
2348 | </message> |
||
2349 | <message> |
||
2350 | <source>&Outline</source> |
||
4870 | mrdocs | 2351 | <translation type="obsolete">&Контура</translation> |
3064 | cbradney | 2352 | </message> |
2353 | <message> |
||
2354 | <source>S&hadow</source> |
||
2355 | <translation type="unfinished"></translation> |
||
2356 | </message> |
||
2357 | <message> |
||
2358 | <source>&Image Effects</source> |
||
2359 | <translation type="unfinished"></translation> |
||
2360 | </message> |
||
2361 | <message> |
||
2362 | <source>&Tabulators...</source> |
||
2363 | <translation type="unfinished">&Табулатори...</translation> |
||
2364 | </message> |
||
2365 | <message> |
||
2366 | <source>D&uplicate</source> |
||
2367 | <translation type="unfinished"></translation> |
||
2368 | </message> |
||
2369 | <message> |
||
2370 | <source>&Multiple Duplicate</source> |
||
2371 | <translation type="unfinished">&Умножено дуплирање</translation> |
||
2372 | </message> |
||
2373 | <message> |
||
2374 | <source>&Delete</source> |
||
2375 | <translation type="unfinished">&Обриши</translation> |
||
2376 | </message> |
||
2377 | <message> |
||
2378 | <source>&Group</source> |
||
2379 | <translation type="unfinished">&Група</translation> |
||
2380 | </message> |
||
2381 | <message> |
||
2382 | <source>&Ungroup</source> |
||
2383 | <translation type="unfinished">&Растури групу</translation> |
||
2384 | </message> |
||
2385 | <message> |
||
2386 | <source>Is &Locked</source> |
||
2387 | <translation type="unfinished"></translation> |
||
2388 | </message> |
||
2389 | <message> |
||
2390 | <source>Si&ze is Locked</source> |
||
2391 | <translation type="unfinished"></translation> |
||
2392 | </message> |
||
2393 | <message> |
||
2394 | <source>Lower to &Bottom</source> |
||
2395 | <translation type="unfinished"></translation> |
||
2396 | </message> |
||
2397 | <message> |
||
2398 | <source>Raise to &Top</source> |
||
2399 | <translation type="unfinished"></translation> |
||
2400 | </message> |
||
2401 | <message> |
||
2402 | <source>&Lower</source> |
||
2403 | <translation type="unfinished">&Спусти</translation> |
||
2404 | </message> |
||
2405 | <message> |
||
2406 | <source>&Raise</source> |
||
2407 | <translation type="unfinished">&Подигни</translation> |
||
2408 | </message> |
||
2409 | <message> |
||
2410 | <source>Send to S&crapbook</source> |
||
2411 | <translation type="unfinished">Пошаљи у св&еску</translation> |
||
2412 | </message> |
||
2413 | <message> |
||
2414 | <source>&Attributes...</source> |
||
2415 | <translation type="unfinished"></translation> |
||
2416 | </message> |
||
2417 | <message> |
||
2418 | <source>I&mage Visible</source> |
||
2419 | <translation type="unfinished">С&лика видљива</translation> |
||
2420 | </message> |
||
2421 | <message> |
||
2422 | <source>&Update Image</source> |
||
2423 | <translation type="unfinished"></translation> |
||
2424 | </message> |
||
2425 | <message> |
||
2426 | <source>Adjust Frame to Image</source> |
||
2427 | <translation type="unfinished"></translation> |
||
2428 | </message> |
||
2429 | <message> |
||
2430 | <source>Extended Image Properties</source> |
||
2431 | <translation type="unfinished"></translation> |
||
2432 | </message> |
||
2433 | <message> |
||
2434 | <source>&Low Resolution</source> |
||
2435 | <translation type="unfinished"></translation> |
||
2436 | </message> |
||
2437 | <message> |
||
2438 | <source>&Normal Resolution</source> |
||
2439 | <translation type="unfinished"></translation> |
||
2440 | </message> |
||
2441 | <message> |
||
2442 | <source>&Full Resolution</source> |
||
2443 | <translation type="unfinished"></translation> |
||
2444 | </message> |
||
2445 | <message> |
||
2446 | <source>Is PDF &Bookmark</source> |
||
2447 | <translation type="unfinished">Је PDF &маркер</translation> |
||
2448 | </message> |
||
2449 | <message> |
||
2450 | <source>Is PDF A&nnotation</source> |
||
2451 | <translation type="unfinished">Је PDF ан&отација</translation> |
||
2452 | </message> |
||
2453 | <message> |
||
2454 | <source>Annotation P&roperties</source> |
||
2455 | <translation type="unfinished">С&војства анотације</translation> |
||
2456 | </message> |
||
2457 | <message> |
||
2458 | <source>Field P&roperties</source> |
||
2459 | <translation type="unfinished">С&војства поља</translation> |
||
2460 | </message> |
||
2461 | <message> |
||
2462 | <source>&Edit Shape...</source> |
||
2463 | <translation type="unfinished">&Уређивање облика...</translation> |
||
2464 | </message> |
||
2465 | <message> |
||
2466 | <source>&Attach Text to Path</source> |
||
2467 | <translation type="unfinished">&Прикачи текст уз путању</translation> |
||
2468 | </message> |
||
2469 | <message> |
||
2470 | <source>&Detach Text from Path</source> |
||
2471 | <translation type="unfinished">&Откачи текст од путање</translation> |
||
2472 | </message> |
||
2473 | <message> |
||
2474 | <source>&Combine Polygons</source> |
||
2475 | <translation type="unfinished">&Комбинуј полигоне</translation> |
||
2476 | </message> |
||
2477 | <message> |
||
2478 | <source>Split &Polygons</source> |
||
2479 | <translation type="unfinished">Раздвоји &полигоне</translation> |
||
2480 | </message> |
||
2481 | <message> |
||
2482 | <source>&Bezier Curve</source> |
||
2483 | <translation type="unfinished">&Bezier крива</translation> |
||
2484 | </message> |
||
2485 | <message> |
||
2486 | <source>&Image Frame</source> |
||
2487 | <translation type="unfinished"></translation> |
||
2488 | </message> |
||
2489 | <message> |
||
2490 | <source>&Outlines</source> |
||
4870 | mrdocs | 2491 | <translation type="obsolete">&Оквирне линије</translation> |
3064 | cbradney | 2492 | </message> |
2493 | <message> |
||
2494 | <source>&Polygon</source> |
||
2495 | <translation type="unfinished"></translation> |
||
2496 | </message> |
||
2497 | <message> |
||
2498 | <source>&Text Frame</source> |
||
2499 | <translation type="unfinished">&Текстуални оквир</translation> |
||
2500 | </message> |
||
2501 | <message> |
||
2502 | <source>&Glyph...</source> |
||
2503 | <translation type="unfinished"></translation> |
||
2504 | </message> |
||
2505 | <message> |
||
2506 | <source>Sample Text</source> |
||
2507 | <translation type="unfinished"></translation> |
||
2508 | </message> |
||
2509 | <message> |
||
2510 | <source>&Insert...</source> |
||
2511 | <translation type="unfinished">Уметн&и...</translation> |
||
2512 | </message> |
||
2513 | <message> |
||
2514 | <source>Im&port...</source> |
||
2515 | <translation type="unfinished"></translation> |
||
2516 | </message> |
||
2517 | <message> |
||
2518 | <source>&Delete...</source> |
||
2519 | <translation type="unfinished">&Обриши...</translation> |
||
2520 | </message> |
||
2521 | <message> |
||
2522 | <source>&Copy...</source> |
||
2523 | <translation type="unfinished"></translation> |
||
2524 | </message> |
||
2525 | <message> |
||
2526 | <source>&Move...</source> |
||
2527 | <translation type="unfinished">&Помери...</translation> |
||
2528 | </message> |
||
2529 | <message> |
||
2530 | <source>&Apply Master Page...</source> |
||
2531 | <translation type="unfinished"></translation> |
||
2532 | </message> |
||
2533 | <message> |
||
2534 | <source>Manage &Guides...</source> |
||
2535 | <translation type="unfinished">Управљање &водиљама...</translation> |
||
2536 | </message> |
||
2537 | <message> |
||
2538 | <source>Manage Page Properties...</source> |
||
2539 | <translation type="unfinished"></translation> |
||
2540 | </message> |
||
2541 | <message> |
||
2542 | <source>&Fit in window</source> |
||
2543 | <translation type="unfinished"></translation> |
||
2544 | </message> |
||
2545 | <message> |
||
2546 | <source>&50%</source> |
||
2547 | <translation type="unfinished">&50%</translation> |
||
2548 | </message> |
||
2549 | <message> |
||
2550 | <source>&75%</source> |
||
2551 | <translation type="unfinished">&75%</translation> |
||
2552 | </message> |
||
2553 | <message> |
||
2554 | <source>&100%</source> |
||
2555 | <translation type="unfinished">&100%</translation> |
||
2556 | </message> |
||
2557 | <message> |
||
2558 | <source>&200%</source> |
||
2559 | <translation type="unfinished">&200%</translation> |
||
2560 | </message> |
||
2561 | <message> |
||
2562 | <source>&Thumbnails</source> |
||
2563 | <translation type="unfinished">&Сличице</translation> |
||
2564 | </message> |
||
2565 | <message> |
||
2566 | <source>Show &Margins</source> |
||
2567 | <translation type="unfinished">Прикажи &маргине</translation> |
||
2568 | </message> |
||
2569 | <message> |
||
2570 | <source>Show &Frames</source> |
||
2571 | <translation type="unfinished">Прикажи &оквире</translation> |
||
2572 | </message> |
||
2573 | <message> |
||
2574 | <source>Show &Images</source> |
||
2575 | <translation type="unfinished">Прикажи &слике</translation> |
||
2576 | </message> |
||
2577 | <message> |
||
2578 | <source>Show &Grid</source> |
||
2579 | <translation type="unfinished">Прикажи &мрежу</translation> |
||
2580 | </message> |
||
2581 | <message> |
||
2582 | <source>Show G&uides</source> |
||
2583 | <translation type="unfinished">Прикажи &водиље</translation> |
||
2584 | </message> |
||
2585 | <message> |
||
2586 | <source>Show &Baseline Grid</source> |
||
2587 | <translation type="unfinished">Прикажи мрежу &основне линије</translation> |
||
2588 | </message> |
||
2589 | <message> |
||
2590 | <source>Show &Text Chain</source> |
||
2591 | <translation type="unfinished"></translation> |
||
2592 | </message> |
||
2593 | <message> |
||
2594 | <source>Show Control Characters</source> |
||
2595 | <translation type="unfinished"></translation> |
||
2596 | </message> |
||
2597 | <message> |
||
2598 | <source>Rulers relative to Page</source> |
||
2599 | <translation type="unfinished"></translation> |
||
2600 | </message> |
||
2601 | <message> |
||
2602 | <source>Sn&ap to Grid</source> |
||
2603 | <translation type="unfinished">Пре&баци на мрежу</translation> |
||
2604 | </message> |
||
2605 | <message> |
||
2606 | <source>Sna&p to Guides</source> |
||
2607 | <translation type="unfinished">Преб&аци на водиље</translation> |
||
2608 | </message> |
||
2609 | <message> |
||
2610 | <source>&Properties</source> |
||
2611 | <translation type="unfinished">&Својства</translation> |
||
2612 | </message> |
||
2613 | <message> |
||
2614 | <source>&Scrapbook</source> |
||
2615 | <translation type="unfinished">&Албум</translation> |
||
2616 | </message> |
||
2617 | <message> |
||
2618 | <source>&Layers</source> |
||
2619 | <translation type="unfinished">&Слојеви</translation> |
||
2620 | </message> |
||
2621 | <message> |
||
2622 | <source>&Arrange Pages</source> |
||
2623 | <translation type="unfinished"></translation> |
||
2624 | </message> |
||
2625 | <message> |
||
2626 | <source>&Bookmarks</source> |
||
2627 | <translation type="unfinished">&Маркери</translation> |
||
2628 | </message> |
||
2629 | <message> |
||
2630 | <source>&Measurements</source> |
||
2631 | <translation type="unfinished"></translation> |
||
2632 | </message> |
||
2633 | <message> |
||
2634 | <source>Action &History</source> |
||
2635 | <translation type="unfinished"></translation> |
||
2636 | </message> |
||
2637 | <message> |
||
2638 | <source>Preflight &Verifier</source> |
||
2639 | <translation type="unfinished"></translation> |
||
2640 | </message> |
||
2641 | <message> |
||
2642 | <source>&Align and Distribute</source> |
||
2643 | <translation type="unfinished"></translation> |
||
2644 | </message> |
||
2645 | <message> |
||
2646 | <source>&Tools</source> |
||
2647 | <translation type="unfinished">&Алати</translation> |
||
2648 | </message> |
||
2649 | <message> |
||
2650 | <source>P&DF Tools</source> |
||
2651 | <translation type="unfinished">P&DF алати</translation> |
||
2652 | </message> |
||
2653 | <message> |
||
2654 | <source>Select Item</source> |
||
2655 | <translation type="unfinished"></translation> |
||
2656 | </message> |
||
2657 | <message> |
||
2658 | <source>T&able</source> |
||
2659 | <translation type="unfinished"></translation> |
||
2660 | </message> |
||
2661 | <message> |
||
2662 | <source>&Shape</source> |
||
2663 | <translation type="unfinished">&Облик</translation> |
||
2664 | </message> |
||
2665 | <message> |
||
2666 | <source>&Line</source> |
||
2667 | <translation type="unfinished">&Линија</translation> |
||
2668 | </message> |
||
2669 | <message> |
||
2670 | <source>&Freehand Line</source> |
||
2671 | <translation type="unfinished"></translation> |
||
2672 | </message> |
||
2673 | <message> |
||
2674 | <source>Rotate Item</source> |
||
2675 | <translation type="unfinished">Ротирај ставку</translation> |
||
2676 | </message> |
||
2677 | <message> |
||
2678 | <source>Zoom in or out</source> |
||
2679 | <translation type="unfinished">Увеличај или умањи</translation> |
||
2680 | </message> |
||
2681 | <message> |
||
2682 | <source>Zoom in</source> |
||
2683 | <translation type="unfinished"></translation> |
||
2684 | </message> |
||
2685 | <message> |
||
2686 | <source>Zoom out</source> |
||
2687 | <translation type="unfinished"></translation> |
||
2688 | </message> |
||
2689 | <message> |
||
2690 | <source>Edit Contents of Frame</source> |
||
2691 | <translation type="unfinished">Уређивање садржаја оквира</translation> |
||
2692 | </message> |
||
2693 | <message> |
||
2694 | <source>Edit Text...</source> |
||
2695 | <translation type="unfinished">Уреди текст...</translation> |
||
2696 | </message> |
||
2697 | <message> |
||
2698 | <source>Link Text Frames</source> |
||
2699 | <translation type="unfinished">Повежи текстуалне оквире</translation> |
||
2700 | </message> |
||
2701 | <message> |
||
2702 | <source>Unlink Text Frames</source> |
||
2703 | <translation type="unfinished">Прекини везу између текстуалних оквира</translation> |
||
2704 | </message> |
||
2705 | <message> |
||
2706 | <source>&Eye Dropper</source> |
||
2707 | <translation type="unfinished"></translation> |
||
2708 | </message> |
||
2709 | <message> |
||
2710 | <source>Copy Item Properties</source> |
||
2711 | <translation type="unfinished"></translation> |
||
2712 | </message> |
||
2713 | <message> |
||
2714 | <source>Edit the text with the Story Editor</source> |
||
2715 | <translation type="unfinished">Уређивање текста помоћу уређивача</translation> |
||
2716 | </message> |
||
2717 | <message> |
||
2718 | <source>Insert Text Frame</source> |
||
2719 | <translation type="unfinished">Уметни текстуални оквир</translation> |
||
2720 | </message> |
||
2721 | <message> |
||
2722 | <source>Insert Image Frame</source> |
||
2723 | <translation type="unfinished"></translation> |
||
2724 | </message> |
||
2725 | <message> |
||
2726 | <source>Insert Table</source> |
||
2727 | <translation type="unfinished">Убаци табелу</translation> |
||
2728 | </message> |
||
2729 | <message> |
||
2730 | <source>Insert Shape</source> |
||
2731 | <translation type="unfinished"></translation> |
||
2732 | </message> |
||
2733 | <message> |
||
2734 | <source>Insert Polygon</source> |
||
2735 | <translation type="unfinished"></translation> |
||
2736 | </message> |
||
2737 | <message> |
||
2738 | <source>Insert Line</source> |
||
2739 | <translation type="unfinished"></translation> |
||
2740 | </message> |
||
2741 | <message> |
||
2742 | <source>Insert Bezier Curve</source> |
||
2743 | <translation type="unfinished"></translation> |
||
2744 | </message> |
||
2745 | <message> |
||
2746 | <source>Insert Freehand Line</source> |
||
2747 | <translation type="unfinished">Уметни слободоручну линију</translation> |
||
2748 | </message> |
||
2749 | <message> |
||
2750 | <source>&Manage Pictures</source> |
||
2751 | <translation type="unfinished">&Управљање сликама</translation> |
||
2752 | </message> |
||
2753 | <message> |
||
2754 | <source>&Hyphenate Text</source> |
||
2755 | <translation type="unfinished">&Споји текст цртицама</translation> |
||
2756 | </message> |
||
2757 | <message> |
||
2758 | <source>Dehyphenate Text</source> |
||
2759 | <translation type="unfinished"></translation> |
||
2760 | </message> |
||
2761 | <message> |
||
2762 | <source>&Generate Table Of Contents</source> |
||
2763 | <translation type="unfinished"></translation> |
||
2764 | </message> |
||
2765 | <message> |
||
2766 | <source>&About Scribus</source> |
||
2767 | <translation type="unfinished">&О Scribus-у</translation> |
||
2768 | </message> |
||
2769 | <message> |
||
2770 | <source>About &Qt</source> |
||
2771 | <translation type="unfinished">О &Qt-у</translation> |
||
2772 | </message> |
||
2773 | <message> |
||
2774 | <source>Toolti&ps</source> |
||
2775 | <translation type="unfinished">Облач&ићи</translation> |
||
2776 | </message> |
||
2777 | <message> |
||
2778 | <source>Scribus &Manual...</source> |
||
2779 | <translation type="unfinished">Scribus &Приручник...</translation> |
||
2780 | </message> |
||
2781 | <message> |
||
2782 | <source>Smart &Hyphen</source> |
||
2783 | <translation type="unfinished"></translation> |
||
2784 | </message> |
||
2785 | <message> |
||
2786 | <source>Non Breaking Dash</source> |
||
2787 | <translation type="unfinished"></translation> |
||
2788 | </message> |
||
2789 | <message> |
||
2790 | <source>Non Breaking &Space</source> |
||
2791 | <translation type="unfinished"></translation> |
||
2792 | </message> |
||
2793 | <message> |
||
2794 | <source>Page &Number</source> |
||
2795 | <translation type="unfinished"></translation> |
||
2796 | </message> |
||
2797 | <message> |
||
2798 | <source>New Line</source> |
||
2799 | <translation type="unfinished"></translation> |
||
2800 | </message> |
||
2801 | <message> |
||
2802 | <source>Frame Break</source> |
||
2803 | <translation type="unfinished"></translation> |
||
2804 | </message> |
||
2805 | <message> |
||
2806 | <source>Column Break</source> |
||
2807 | <translation type="unfinished"></translation> |
||
2808 | </message> |
||
2809 | <message> |
||
2810 | <source>Copyright</source> |
||
2811 | <translation type="unfinished"></translation> |
||
2812 | </message> |
||
2813 | <message> |
||
2814 | <source>Registered Trademark</source> |
||
2815 | <translation type="unfinished"></translation> |
||
2816 | </message> |
||
2817 | <message> |
||
2818 | <source>Trademark</source> |
||
2819 | <translation type="unfinished"></translation> |
||
2820 | </message> |
||
2821 | <message> |
||
2822 | <source>Bullet</source> |
||
2823 | <translation type="unfinished"></translation> |
||
2824 | </message> |
||
2825 | <message> |
||
2826 | <source>Em Dash</source> |
||
2827 | <translation type="unfinished"></translation> |
||
2828 | </message> |
||
2829 | <message> |
||
2830 | <source>En Dash</source> |
||
2831 | <translation type="unfinished"></translation> |
||
2832 | </message> |
||
2833 | <message> |
||
2834 | <source>Figure Dash</source> |
||
2835 | <translation type="unfinished"></translation> |
||
2836 | </message> |
||
2837 | <message> |
||
2838 | <source>Quotation Dash</source> |
||
2839 | <translation type="unfinished"></translation> |
||
2840 | </message> |
||
2841 | <message> |
||
2842 | <source>Apostrophe</source> |
||
2843 | <translation type="unfinished"></translation> |
||
2844 | </message> |
||
2845 | <message> |
||
2846 | <source>Straight Double</source> |
||
2847 | <translation type="unfinished"></translation> |
||
2848 | </message> |
||
2849 | <message> |
||
2850 | <source>Single Left</source> |
||
2851 | <translation type="unfinished"></translation> |
||
2852 | </message> |
||
2853 | <message> |
||
2854 | <source>Single Right</source> |
||
2855 | <translation type="unfinished"></translation> |
||
2856 | </message> |
||
2857 | <message> |
||
2858 | <source>Double Left</source> |
||
2859 | <translation type="unfinished"></translation> |
||
2860 | </message> |
||
2861 | <message> |
||
2862 | <source>Double Right</source> |
||
2863 | <translation type="unfinished"></translation> |
||
2864 | </message> |
||
2865 | <message> |
||
2866 | <source>Single Reversed</source> |
||
2867 | <translation type="unfinished"></translation> |
||
2868 | </message> |
||
2869 | <message> |
||
2870 | <source>Double Reversed</source> |
||
2871 | <translation type="unfinished"></translation> |
||
2872 | </message> |
||
2873 | <message> |
||
2874 | <source>Single Left Guillemet</source> |
||
2875 | <translation type="unfinished"></translation> |
||
2876 | </message> |
||
2877 | <message> |
||
2878 | <source>Single Right Guillemet</source> |
||
2879 | <translation type="unfinished"></translation> |
||
2880 | </message> |
||
2881 | <message> |
||
2882 | <source>Double Left Guillemet</source> |
||
2883 | <translation type="unfinished"></translation> |
||
2884 | </message> |
||
2885 | <message> |
||
2886 | <source>Double Right Guillemet</source> |
||
2887 | <translation type="unfinished"></translation> |
||
2888 | </message> |
||
2889 | <message> |
||
2890 | <source>Low Single Comma</source> |
||
2891 | <translation type="unfinished"></translation> |
||
2892 | </message> |
||
2893 | <message> |
||
2894 | <source>Low Double Comma</source> |
||
2895 | <translation type="unfinished"></translation> |
||
2896 | </message> |
||
2897 | <message> |
||
2898 | <source>CJK Single Left</source> |
||
2899 | <translation type="unfinished"></translation> |
||
2900 | </message> |
||
2901 | <message> |
||
2902 | <source>CJK Single Right</source> |
||
2903 | <translation type="unfinished"></translation> |
||
2904 | </message> |
||
2905 | <message> |
||
2906 | <source>CJK Double Left</source> |
||
2907 | <translation type="unfinished"></translation> |
||
2908 | </message> |
||
2909 | <message> |
||
2910 | <source>CJK Double Right</source> |
||
2911 | <translation type="unfinished"></translation> |
||
2912 | </message> |
||
2913 | <message> |
||
2914 | <source>Toggle Palettes</source> |
||
2915 | <translation type="unfinished"></translation> |
||
2916 | </message> |
||
2917 | <message> |
||
2918 | <source>Toggle Guides</source> |
||
2919 | <translation type="unfinished"></translation> |
||
2920 | </message> |
||
3278 | cbradney | 2921 | <message> |
2922 | <source>Print Previe&w</source> |
||
2923 | <translation type="unfinished">Прегл&ед за штампање</translation> |
||
2924 | </message> |
||
2925 | <message> |
||
2926 | <source>&JavaScripts...</source> |
||
2927 | <translation type="unfinished"></translation> |
||
2928 | </message> |
||
2929 | <message> |
||
2930 | <source>Convert to Master Page...</source> |
||
2931 | <translation type="unfinished"></translation> |
||
2932 | </message> |
||
2933 | <message> |
||
2934 | <source>&Cascade</source> |
||
2935 | <translation type="unfinished">&Наслажи</translation> |
||
2936 | </message> |
||
2937 | <message> |
||
2938 | <source>&Tile</source> |
||
2939 | <translation type="unfinished">Поп&лочај</translation> |
||
2940 | </message> |
||
2941 | <message> |
||
2942 | <source>&About Plug-ins</source> |
||
2943 | <translation type="unfinished"></translation> |
||
2944 | </message> |
||
3824 | cbradney | 2945 | <message> |
2946 | <source>More Info...</source> |
||
2947 | <translation type="unfinished"></translation> |
||
2948 | </message> |
||
4759 | cbradney | 2949 | <message> |
2950 | <source>&Printing Enabled</source> |
||
2951 | <translation type="unfinished"></translation> |
||
2952 | </message> |
||
2953 | <message> |
||
2954 | <source>&Flip Horizontally</source> |
||
2955 | <translation type="unfinished"></translation> |
||
2956 | </message> |
||
2957 | <message> |
||
2958 | <source>&Flip Vertically</source> |
||
2959 | <translation type="unfinished"></translation> |
||
2960 | </message> |
||
2961 | <message> |
||
2962 | <source>Show Rulers</source> |
||
2963 | <translation type="unfinished"></translation> |
||
2964 | </message> |
||
2965 | <message> |
||
2966 | <source>&Outline</source> |
||
2967 | <comment>Document Outline Palette</comment> |
||
2968 | <translation type="unfinished">&Контура</translation> |
||
2969 | </message> |
||
2970 | <message> |
||
2971 | <source>Solidus</source> |
||
2972 | <translation type="unfinished"></translation> |
||
2973 | </message> |
||
2974 | <message> |
||
2975 | <source>Middle Dot</source> |
||
2976 | <translation type="unfinished"></translation> |
||
2977 | </message> |
||
2978 | <message> |
||
2979 | <source>En Space</source> |
||
2980 | <translation type="unfinished"></translation> |
||
2981 | </message> |
||
2982 | <message> |
||
2983 | <source>Em Space</source> |
||
2984 | <translation type="unfinished"></translation> |
||
2985 | </message> |
||
2986 | <message> |
||
2987 | <source>Thin Space</source> |
||
2988 | <translation type="unfinished"></translation> |
||
2989 | </message> |
||
2990 | <message> |
||
2991 | <source>Thick Space</source> |
||
2992 | <translation type="unfinished"></translation> |
||
2993 | </message> |
||
2994 | <message> |
||
2995 | <source>Mid Space</source> |
||
2996 | <translation type="unfinished"></translation> |
||
2997 | </message> |
||
2998 | <message> |
||
2999 | <source>Hair Space</source> |
||
3000 | <translation type="unfinished"></translation> |
||
3001 | </message> |
||
3002 | <message> |
||
3003 | <source>Insert Smart Hyphen</source> |
||
3004 | <translation type="unfinished"></translation> |
||
3005 | </message> |
||
3006 | <message> |
||
3007 | <source>Insert Non Breaking Dash</source> |
||
3008 | <translation type="unfinished"></translation> |
||
3009 | </message> |
||
3010 | <message> |
||
3011 | <source>Insert Non Breaking Space</source> |
||
3012 | <translation type="unfinished"></translation> |
||
3013 | </message> |
||
3014 | <message> |
||
3015 | <source>Insert Page Number</source> |
||
3016 | <translation type="unfinished">Уметни број странице</translation> |
||
3017 | </message> |
||
3018 | <message> |
||
3019 | <source>ff</source> |
||
3020 | <translation type="unfinished"></translation> |
||
3021 | </message> |
||
3022 | <message> |
||
3023 | <source>fi</source> |
||
3024 | <translation type="unfinished"></translation> |
||
3025 | </message> |
||
3026 | <message> |
||
3027 | <source>fl</source> |
||
3028 | <translation type="unfinished"></translation> |
||
3029 | </message> |
||
3030 | <message> |
||
3031 | <source>ffi</source> |
||
3032 | <translation type="unfinished"></translation> |
||
3033 | </message> |
||
3034 | <message> |
||
3035 | <source>ffl</source> |
||
3036 | <translation type="unfinished"></translation> |
||
3037 | </message> |
||
3038 | <message> |
||
3039 | <source>ft</source> |
||
3040 | <translation type="unfinished"></translation> |
||
3041 | </message> |
||
3042 | <message> |
||
3043 | <source>st</source> |
||
3044 | <translation type="unfinished"></translation> |
||
3045 | </message> |
||
4870 | mrdocs | 3046 | <message> |
3047 | <source>S&tyles...</source> |
||
3048 | <translation type="unfinished"></translation> |
||
3049 | </message> |
||
3050 | <message> |
||
3051 | <source>&Outline</source> |
||
3052 | <comment>type effect</comment> |
||
3053 | <translation type="unfinished">&Контура</translation> |
||
3054 | </message> |
||
3055 | <message> |
||
3056 | <source>&Outlines</source> |
||
3057 | <comment>Convert to oulines</comment> |
||
3058 | <translation type="unfinished">&Оквирне линије</translation> |
||
3059 | </message> |
||
5328 | cbradney | 3060 | <message> |
3061 | <source>Paste (&Absolute)</source> |
||
3062 | <translation type="unfinished"></translation> |
||
3063 | </message> |
||
3064 | <message> |
||
3065 | <source>C&lear</source> |
||
3066 | <translation type="unfinished">Оч&исти</translation> |
||
3067 | </message> |
||
3068 | <message> |
||
3069 | <source>Insert PDF Push Button</source> |
||
3070 | <translation type="unfinished"></translation> |
||
3071 | </message> |
||
3072 | <message> |
||
3073 | <source>Insert PDF Text Field</source> |
||
3074 | <translation type="unfinished"></translation> |
||
3075 | </message> |
||
3076 | <message> |
||
3077 | <source>Insert PDF Check Box</source> |
||
3078 | <translation type="unfinished"></translation> |
||
3079 | </message> |
||
3080 | <message> |
||
3081 | <source>Insert PDF Combo Box</source> |
||
3082 | <translation type="unfinished"></translation> |
||
3083 | </message> |
||
3084 | <message> |
||
3085 | <source>Insert PDF List Box</source> |
||
3086 | <translation type="unfinished"></translation> |
||
3087 | </message> |
||
3088 | <message> |
||
3089 | <source>Insert Text Annotation</source> |
||
3090 | <translation type="unfinished"></translation> |
||
3091 | </message> |
||
3092 | <message> |
||
3093 | <source>Insert Link Annotation</source> |
||
3094 | <translation type="unfinished"></translation> |
||
3095 | </message> |
||
5485 | cbradney | 3096 | <message> |
3097 | <source>Save as &EPS...</source> |
||
3098 | <translation type="unfinished"></translation> |
||
3099 | </message> |
||
3100 | <message> |
||
3101 | <source>Show Text Frame Columns</source> |
||
3102 | <translation type="unfinished"></translation> |
||
3103 | </message> |
||
6261 | cbradney | 3104 | <message> |
3105 | <source>Get Text 2...</source> |
||
3106 | <translation type="unfinished"></translation> |
||
3107 | </message> |
||
3108 | <message> |
||
3109 | <source>&Frame...</source> |
||
3110 | <translation type="unfinished"></translation> |
||
3111 | </message> |
||
3112 | <message> |
||
3113 | <source>Preview Mode</source> |
||
3114 | <translation type="unfinished"></translation> |
||
3115 | </message> |
||
3116 | <message> |
||
3117 | <source>Show Layer Indicators</source> |
||
3118 | <translation type="unfinished"></translation> |
||
3119 | </message> |
||
6434 | cbradney | 3120 | <message> |
3121 | <source>Patterns...</source> |
||
3122 | <translation type="unfinished"></translation> |
||
3123 | </message> |
||
3124 | <message> |
||
3125 | <source>Send to Patterns</source> |
||
3126 | <translation type="unfinished"></translation> |
||
3127 | </message> |
||
3064 | cbradney | 3128 | </context> |
3129 | <context> |
||
444 | fschmid | 3130 | <name>AdvOptions</name> |
3131 | <message> |
||
769 | cbradney | 3132 | <source>Advanced Options</source> |
3278 | cbradney | 3133 | <translation type="obsolete">Напредне опције</translation> |
444 | fschmid | 3134 | </message> |
3135 | <message> |
||
769 | cbradney | 3136 | <source>Mirror Page(s) &Horizontal</source> |
3278 | cbradney | 3137 | <translation type="obsolete">Окрени страницу(е) &водоравно</translation> |
444 | fschmid | 3138 | </message> |
3139 | <message> |
||
769 | cbradney | 3140 | <source>Mirror Page(s) &Vertical</source> |
3278 | cbradney | 3141 | <translation type="obsolete">Окрени страницу(е) &усправно</translation> |
444 | fschmid | 3142 | </message> |
3143 | <message> |
||
769 | cbradney | 3144 | <source>Apply Under Color &Removal</source> |
3278 | cbradney | 3145 | <translation type="obsolete">Примени под &уклањањем боја</translation> |
444 | fschmid | 3146 | </message> |
3147 | <message> |
||
769 | cbradney | 3148 | <source>Apply &ICC Profiles</source> |
3278 | cbradney | 3149 | <translation type="obsolete">Примени &ICC профиле</translation> |
444 | fschmid | 3150 | </message> |
3151 | <message> |
||
769 | cbradney | 3152 | <source>PostScript Level &1</source> |
3278 | cbradney | 3153 | <translation type="obsolete">PostScript ниво &1</translation> |
444 | fschmid | 3154 | </message> |
3155 | <message> |
||
769 | cbradney | 3156 | <source>PostScript Level &2</source> |
3278 | cbradney | 3157 | <translation type="obsolete">PostScript ниво &2</translation> |
444 | fschmid | 3158 | </message> |
3159 | <message> |
||
769 | cbradney | 3160 | <source>PostScript Level &3</source> |
3278 | cbradney | 3161 | <translation type="obsolete">PostScript ниво &3</translation> |
444 | fschmid | 3162 | </message> |
3163 | <message> |
||
769 | cbradney | 3164 | <source>&OK</source> |
3064 | cbradney | 3165 | <translation type="obsolete">&У реду</translation> |
444 | fschmid | 3166 | </message> |
3167 | <message> |
||
769 | cbradney | 3168 | <source>&Cancel</source> |
3064 | cbradney | 3169 | <translation type="obsolete">&Откажи</translation> |
444 | fschmid | 3170 | </message> |
3171 | <message> |
||
769 | cbradney | 3172 | <source>Creates PostScript Level 3</source> |
3278 | cbradney | 3173 | <translation type="obsolete">Прави PostScript ниво 3</translation> |
444 | fschmid | 3174 | </message> |
3175 | <message> |
||
769 | cbradney | 3176 | <source>Creates PostScript Level 2 only, beware, |
444 | fschmid | 3177 | this can create huge files</source> |
3278 | cbradney | 3178 | <translation type="obsolete">Прави PostScript ниво 2 само, опрез, |
444 | fschmid | 3179 | ово може направити огромне фајлове</translation> |
3180 | </message> |
||
3181 | <message> |
||
769 | cbradney | 3182 | <source>Creates PostScript Level 1 only, beware, |
444 | fschmid | 3183 | this can create huge files</source> |
3278 | cbradney | 3184 | <translation type="obsolete">Прави PostScript ниво 1 само, опрез, |
444 | fschmid | 3185 | oво може направити огромне фајловеНиво огроман</translation> |
3186 | </message> |
||
3187 | <message> |
||
769 | cbradney | 3188 | <source>A way of switching off some of the gray shades which are composed |
444 | fschmid | 3189 | of cyan, yellow and magenta and using black instead. |
3190 | UCR most affects parts of images which are neutral and/or dark tones |
||
3191 | which are close to the gray. Use of this may improve printing some images |
||
3192 | and some experimentation and testing is need on a case by case basis. |
||
3193 | UCR reduces the possibility of over saturation with CMY inks.</source> |
||
3278 | cbradney | 3194 | <translation type="obsolete">Начин за искључивање неких сивих сенки које су састављене |
444 | fschmid | 3195 | од цијан, жуте, и магенте и коришћења црне уместо тога. |
3196 | UCR највише утиче на делове слике који имају неутралне и/или тамне тонове |
||
3197 | који су блиски сивој. Коришћење овога може поправити штампу неких слика |
||
3198 | и потребно је мало експериментисања у зависности од случаја. |
||
3199 | UCR смањује могућност презасићености CMY мастилима</translation> |
||
3200 | </message> |
||
769 | cbradney | 3201 | </context> |
3202 | <context> |
||
444 | fschmid | 3203 | <name>Align</name> |
3204 | <message> |
||
769 | cbradney | 3205 | <source>Distribute/Align</source> |
3064 | cbradney | 3206 | <translation type="obsolete">Распореди/Поравнај</translation> |
444 | fschmid | 3207 | </message> |
3208 | <message> |
||
769 | cbradney | 3209 | <source>Align</source> |
3064 | cbradney | 3210 | <translation type="obsolete">Поравнај</translation> |
444 | fschmid | 3211 | </message> |
3212 | <message> |
||
769 | cbradney | 3213 | <source>Horizontal</source> |
3064 | cbradney | 3214 | <translation type="obsolete">Водоравно</translation> |
444 | fschmid | 3215 | </message> |
3216 | <message> |
||
769 | cbradney | 3217 | <source>Left Sides</source> |
3064 | cbradney | 3218 | <translation type="obsolete">Леве стране</translation> |
444 | fschmid | 3219 | </message> |
3220 | <message> |
||
769 | cbradney | 3221 | <source>Middles</source> |
3064 | cbradney | 3222 | <translation type="obsolete">Средине</translation> |
444 | fschmid | 3223 | </message> |
3224 | <message> |
||
769 | cbradney | 3225 | <source>Right Sides</source> |
3064 | cbradney | 3226 | <translation type="obsolete">Десне стране</translation> |
444 | fschmid | 3227 | </message> |
3228 | <message> |
||
769 | cbradney | 3229 | <source>&Between:</source> |
3064 | cbradney | 3230 | <translation type="obsolete">&Између:</translation> |
444 | fschmid | 3231 | </message> |
3232 | <message> |
||
769 | cbradney | 3233 | <source>&Do Not Change</source> |
3064 | cbradney | 3234 | <translation type="obsolete">&Немој да мењаш</translation> |
444 | fschmid | 3235 | </message> |
3236 | <message> |
||
769 | cbradney | 3237 | <source>A&lign</source> |
3064 | cbradney | 3238 | <translation type="obsolete">П&оравнај</translation> |
444 | fschmid | 3239 | </message> |
3240 | <message> |
||
769 | cbradney | 3241 | <source>Di&splacement</source> |
3064 | cbradney | 3242 | <translation type="obsolete">Погрешно &постављање</translation> |
444 | fschmid | 3243 | </message> |
3244 | <message> |
||
769 | cbradney | 3245 | <source>Distribute &Evenly</source> |
3064 | cbradney | 3246 | <translation type="obsolete">Распореди &равномерно</translation> |
444 | fschmid | 3247 | </message> |
3248 | <message> |
||
769 | cbradney | 3249 | <source>Vertical</source> |
3064 | cbradney | 3250 | <translation type="obsolete">Усправно</translation> |
444 | fschmid | 3251 | </message> |
3252 | <message> |
||
769 | cbradney | 3253 | <source>Top Sides</source> |
3064 | cbradney | 3254 | <translation type="obsolete">Горње стране</translation> |
444 | fschmid | 3255 | </message> |
3256 | <message> |
||
769 | cbradney | 3257 | <source>Bottom Sides</source> |
3064 | cbradney | 3258 | <translation type="obsolete">Доње стране</translation> |
444 | fschmid | 3259 | </message> |
3260 | <message> |
||
769 | cbradney | 3261 | <source>Bet&ween:</source> |
3064 | cbradney | 3262 | <translation type="obsolete">Изм&еђу:</translation> |
444 | fschmid | 3263 | </message> |
3264 | <message> |
||
769 | cbradney | 3265 | <source>Do &Not Change</source> |
3064 | cbradney | 3266 | <translation type="obsolete">&Немој да мењаш</translation> |
444 | fschmid | 3267 | </message> |
3268 | <message> |
||
769 | cbradney | 3269 | <source>Al&ign</source> |
3064 | cbradney | 3270 | <translation type="obsolete">По&равнај</translation> |
444 | fschmid | 3271 | </message> |
3272 | <message> |
||
769 | cbradney | 3273 | <source>Dis&placement</source> |
3064 | cbradney | 3274 | <translation type="obsolete">Погрешно &постављање</translation> |
444 | fschmid | 3275 | </message> |
3276 | <message> |
||
769 | cbradney | 3277 | <source> pt</source> |
1525 | cbradney | 3278 | <translation type="obsolete"> тач.</translation> |
444 | fschmid | 3279 | </message> |
3280 | <message> |
||
769 | cbradney | 3281 | <source> mm</source> |
1525 | cbradney | 3282 | <translation type="obsolete"> mm</translation> |
444 | fschmid | 3283 | </message> |
3284 | <message> |
||
769 | cbradney | 3285 | <source> in</source> |
1525 | cbradney | 3286 | <translation type="obsolete"> in</translation> |
444 | fschmid | 3287 | </message> |
3288 | <message> |
||
769 | cbradney | 3289 | <source> p</source> |
1525 | cbradney | 3290 | <translation type="obsolete"> p</translation> |
444 | fschmid | 3291 | </message> |
3292 | <message> |
||
769 | cbradney | 3293 | <source>Distribute E&venly</source> |
3064 | cbradney | 3294 | <translation type="obsolete">Распореди рав&номерно</translation> |
444 | fschmid | 3295 | </message> |
3296 | <message> |
||
769 | cbradney | 3297 | <source>&OK</source> |
3064 | cbradney | 3298 | <translation type="obsolete">&У реду</translation> |
444 | fschmid | 3299 | </message> |
3300 | <message> |
||
769 | cbradney | 3301 | <source>&Apply</source> |
3064 | cbradney | 3302 | <translation type="obsolete">&Примени</translation> |
444 | fschmid | 3303 | </message> |
3304 | <message> |
||
769 | cbradney | 3305 | <source>&Cancel</source> |
3064 | cbradney | 3306 | <translation type="obsolete">&Откажи</translation> |
444 | fschmid | 3307 | </message> |
769 | cbradney | 3308 | </context> |
3309 | <context> |
||
3064 | cbradney | 3310 | <name>AlignDistributePalette</name> |
3311 | <message> |
||
3312 | <source>Align and Distribute</source> |
||
3313 | <translation type="unfinished"></translation> |
||
3314 | </message> |
||
3315 | <message> |
||
3316 | <source>Align</source> |
||
3317 | <translation type="unfinished">Поравнај</translation> |
||
3318 | </message> |
||
3319 | <message> |
||
3320 | <source>&Relative to:</source> |
||
3321 | <translation type="unfinished"></translation> |
||
3322 | </message> |
||
3323 | <message> |
||
3324 | <source>First Selected</source> |
||
3325 | <translation type="unfinished"></translation> |
||
3326 | </message> |
||
3327 | <message> |
||
3328 | <source>Last Selected</source> |
||
3329 | <translation type="unfinished"></translation> |
||
3330 | </message> |
||
3331 | <message> |
||
3332 | <source>Page</source> |
||
3333 | <translation type="unfinished">Страница</translation> |
||
3334 | </message> |
||
3335 | <message> |
||
3336 | <source>Margins</source> |
||
3337 | <translation type="unfinished"></translation> |
||
3338 | </message> |
||
3339 | <message> |
||
3340 | <source>Guide</source> |
||
3341 | <translation type="unfinished"></translation> |
||
3342 | </message> |
||
3343 | <message> |
||
3344 | <source>Selection</source> |
||
3345 | <translation type="unfinished"></translation> |
||
3346 | </message> |
||
3347 | <message> |
||
3348 | <source>Align right sides of objects to left side of anchor</source> |
||
3349 | <translation type="unfinished"></translation> |
||
3350 | </message> |
||
3351 | <message> |
||
3352 | <source>Align left sides of objects to right side of anchor</source> |
||
3353 | <translation type="unfinished"></translation> |
||
3354 | </message> |
||
3355 | <message> |
||
3356 | <source>Align bottoms</source> |
||
3357 | <translation type="unfinished"></translation> |
||
3358 | </message> |
||
3359 | <message> |
||
3360 | <source>Align right sides</source> |
||
3361 | <translation type="unfinished"></translation> |
||
3362 | </message> |
||
3363 | <message> |
||
3364 | <source>Align tops of objects to bottom of anchor</source> |
||
3365 | <translation type="unfinished"></translation> |
||
3366 | </message> |
||
3367 | <message> |
||
3368 | <source>Center on vertical axis</source> |
||
3369 | <translation type="unfinished"></translation> |
||
3370 | </message> |
||
3371 | <message> |
||
3372 | <source>Align left sides</source> |
||
3373 | <translation type="unfinished"></translation> |
||
3374 | </message> |
||
3375 | <message> |
||
3376 | <source>Center on horizontal axis</source> |
||
3377 | <translation type="unfinished"></translation> |
||
3378 | </message> |
||
3379 | <message> |
||
3380 | <source>Align bottoms of objects to top of anchor</source> |
||
3381 | <translation type="unfinished"></translation> |
||
3382 | </message> |
||
3383 | <message> |
||
3384 | <source>Align tops</source> |
||
3385 | <translation type="unfinished"></translation> |
||
3386 | </message> |
||
3387 | <message> |
||
3388 | <source>&Selected Guide:</source> |
||
3389 | <translation type="unfinished"></translation> |
||
3390 | </message> |
||
3391 | <message> |
||
3392 | <source>Distribute</source> |
||
3393 | <translation type="unfinished"></translation> |
||
3394 | </message> |
||
3395 | <message> |
||
3396 | <source>Make horizontal gaps between objects equal</source> |
||
3397 | <translation type="unfinished"></translation> |
||
3398 | </message> |
||
3399 | <message> |
||
3400 | <source>Make horizontal gaps between objects equal to the value specified</source> |
||
3401 | <translation type="unfinished"></translation> |
||
3402 | </message> |
||
3403 | <message> |
||
3404 | <source>Distribute right sides equidistantly</source> |
||
3405 | <translation type="unfinished"></translation> |
||
3406 | </message> |
||
3407 | <message> |
||
3408 | <source>Distribute bottoms equidistantly</source> |
||
3409 | <translation type="unfinished"></translation> |
||
3410 | </message> |
||
3411 | <message> |
||
3412 | <source>Distribute centers equidistantly horizontally</source> |
||
3413 | <translation type="unfinished"></translation> |
||
3414 | </message> |
||
3415 | <message> |
||
3416 | <source>Make vertical gaps between objects equal</source> |
||
3417 | <translation type="unfinished"></translation> |
||
3418 | </message> |
||
3419 | <message> |
||
3420 | <source>Make vertical gaps between objects equal to the value specified</source> |
||
3421 | <translation type="unfinished"></translation> |
||
3422 | </message> |
||
3423 | <message> |
||
3424 | <source>Distribute left sides equidistantly</source> |
||
3425 | <translation type="unfinished"></translation> |
||
3426 | </message> |
||
3427 | <message> |
||
3428 | <source>Distribute centers equidistantly vertically</source> |
||
3429 | <translation type="unfinished"></translation> |
||
3430 | </message> |
||
3431 | <message> |
||
3432 | <source>Distribute tops equidistantly</source> |
||
3433 | <translation type="unfinished"></translation> |
||
3434 | </message> |
||
3435 | <message> |
||
3436 | <source>&Distance:</source> |
||
3437 | <translation type="unfinished"></translation> |
||
3438 | </message> |
||
3439 | <message> |
||
3440 | <source>Distribute the items with the distance specified</source> |
||
3441 | <translation type="unfinished"></translation> |
||
3442 | </message> |
||
3443 | <message> |
||
3444 | <source>None Selected</source> |
||
3445 | <translation type="unfinished"></translation> |
||
3446 | </message> |
||
3447 | <message> |
||
3448 | <source>Warning</source> |
||
3824 | cbradney | 3449 | <translation type="obsolete">Упозорење</translation> |
3064 | cbradney | 3450 | </message> |
3451 | <message> |
||
3452 | <source>Y: %1%2</source> |
||
3453 | <translation type="unfinished"></translation> |
||
3454 | </message> |
||
3455 | <message> |
||
3456 | <source>X: %1%2</source> |
||
3457 | <translation type="unfinished"></translation> |
||
3458 | </message> |
||
3459 | </context> |
||
3460 | <context> |
||
444 | fschmid | 3461 | <name>AlignSelect</name> |
3462 | <message> |
||
769 | cbradney | 3463 | <source>Align Text Left</source> |
3464 | <translation>Поравнај текст лево</translation> |
||
444 | fschmid | 3465 | </message> |
3466 | <message> |
||
769 | cbradney | 3467 | <source>Align Text Right</source> |
3468 | <translation>Поравнај текст десно</translation> |
||
444 | fschmid | 3469 | </message> |
3470 | <message> |
||
769 | cbradney | 3471 | <source>Align Text Center</source> |
3472 | <translation>Поравнај текст по средини</translation> |
||
444 | fschmid | 3473 | </message> |
3474 | <message> |
||
769 | cbradney | 3475 | <source>Align Text Justified</source> |
3476 | <translation>Поравнај текст развучено</translation> |
||
444 | fschmid | 3477 | </message> |
3478 | <message> |
||
769 | cbradney | 3479 | <source>Align Text Forced Justified</source> |
3480 | <translation>Поравнај текст насилно развучено</translation> |
||
444 | fschmid | 3481 | </message> |
769 | cbradney | 3482 | </context> |
3483 | <context> |
||
444 | fschmid | 3484 | <name>Annot</name> |
3485 | <message> |
||
769 | cbradney | 3486 | <source>Field Properties</source> |
3487 | <translation>Својства поља</translation> |
||
444 | fschmid | 3488 | </message> |
3489 | <message> |
||
769 | cbradney | 3490 | <source>Type:</source> |
3491 | <translation>Врста:</translation> |
||
444 | fschmid | 3492 | </message> |
3493 | <message> |
||
769 | cbradney | 3494 | <source>Button</source> |
3495 | <translation>Дугме</translation> |
||
444 | fschmid | 3496 | </message> |
3497 | <message> |
||
769 | cbradney | 3498 | <source>Text Field</source> |
3499 | <translation>Поље за текст</translation> |
||
444 | fschmid | 3500 | </message> |
3501 | <message> |
||
769 | cbradney | 3502 | <source>Check Box</source> |
3503 | <translation>Кућица</translation> |
||
444 | fschmid | 3504 | </message> |
3505 | <message> |
||
769 | cbradney | 3506 | <source>Combo Box</source> |
3507 | <translation>Комбо кутија</translation> |
||
444 | fschmid | 3508 | </message> |
3509 | <message> |
||
769 | cbradney | 3510 | <source>List Box</source> |
3511 | <translation>Кутија листе</translation> |
||
444 | fschmid | 3512 | </message> |
3513 | <message> |
||
769 | cbradney | 3514 | <source>Properties</source> |
3515 | <translation>Својства</translation> |
||
444 | fschmid | 3516 | </message> |
3517 | <message> |
||
769 | cbradney | 3518 | <source>Name:</source> |
3519 | <translation>Име:</translation> |
||
444 | fschmid | 3520 | </message> |
3521 | <message> |
||
769 | cbradney | 3522 | <source>Tool-Tip:</source> |
6434 | cbradney | 3523 | <translation type="obsolete">Алат-Савет:</translation> |
444 | fschmid | 3524 | </message> |
3525 | <message> |
||
769 | cbradney | 3526 | <source>Text</source> |
3527 | <translation>Текст</translation> |
||
444 | fschmid | 3528 | </message> |
3529 | <message> |
||
769 | cbradney | 3530 | <source>Font for use with PDF 1.3:</source> |
3531 | <translation>Фонт за коришћење са PDF 1.3:</translation> |
||
444 | fschmid | 3532 | </message> |
3533 | <message> |
||
769 | cbradney | 3534 | <source>Border</source> |
3535 | <translation>Оквир</translation> |
||
444 | fschmid | 3536 | </message> |
3537 | <message> |
||
769 | cbradney | 3538 | <source>Color:</source> |
3539 | <translation>Боја:</translation> |
||
444 | fschmid | 3540 | </message> |
3541 | <message> |
||
769 | cbradney | 3542 | <source>None</source> |
3543 | <translation>Ниједан</translation> |
||
444 | fschmid | 3544 | </message> |
3545 | <message> |
||
769 | cbradney | 3546 | <source>Width:</source> |
3547 | <translation>Ширина:</translation> |
||
444 | fschmid | 3548 | </message> |
3549 | <message> |
||
769 | cbradney | 3550 | <source>Thin</source> |
3551 | <translation>Танак</translation> |
||
444 | fschmid | 3552 | </message> |
3553 | <message> |
||
769 | cbradney | 3554 | <source>Normal</source> |
3555 | <translation>Нормално</translation> |
||
444 | fschmid | 3556 | </message> |
3557 | <message> |
||
769 | cbradney | 3558 | <source>Wide</source> |
3559 | <translation>Широк</translation> |
||
444 | fschmid | 3560 | </message> |
3561 | <message> |
||
769 | cbradney | 3562 | <source>Style:</source> |
3563 | <translation>Стил:</translation> |
||
444 | fschmid | 3564 | </message> |
3565 | <message> |
||
769 | cbradney | 3566 | <source>Solid</source> |
3567 | <translation>Пуно</translation> |
||
444 | fschmid | 3568 | </message> |
3569 | <message> |
||
769 | cbradney | 3570 | <source>Dashed</source> |
3571 | <translation>Испрекидано</translation> |
||
444 | fschmid | 3572 | </message> |
3573 | <message> |
||
769 | cbradney | 3574 | <source>Underline</source> |
3575 | <translation>Подвучено</translation> |
||
444 | fschmid | 3576 | </message> |
3577 | <message> |
||
769 | cbradney | 3578 | <source>Beveled</source> |
3579 | <translation>Искошено</translation> |
||
444 | fschmid | 3580 | </message> |
3581 | <message> |
||
769 | cbradney | 3582 | <source>Inset</source> |
3583 | <translation>Уметак</translation> |
||
444 | fschmid | 3584 | </message> |
3585 | <message> |
||
769 | cbradney | 3586 | <source>Other</source> |
3587 | <translation>Остало</translation> |
||
444 | fschmid | 3588 | </message> |
3589 | <message> |
||
769 | cbradney | 3590 | <source>Read Only</source> |
3591 | <translation>Само за читање</translation> |
||
444 | fschmid | 3592 | </message> |
3593 | <message> |
||
769 | cbradney | 3594 | <source>Required</source> |
3595 | <translation>Захтевано</translation> |
||
444 | fschmid | 3596 | </message> |
3597 | <message> |
||
769 | cbradney | 3598 | <source>Don't Export Value</source> |
6434 | cbradney | 3599 | <translation type="obsolete">Немој да извозиш вредност</translation> |
444 | fschmid | 3600 | </message> |
3601 | <message> |
||
769 | cbradney | 3602 | <source>Visibility:</source> |
3603 | <translation>Видљивост:</translation> |
||
444 | fschmid | 3604 | </message> |
3605 | <message> |
||
769 | cbradney | 3606 | <source>Visible</source> |
3607 | <translation>Видљиво</translation> |
||
444 | fschmid | 3608 | </message> |
3609 | <message> |
||
769 | cbradney | 3610 | <source>Hidden</source> |
3611 | <translation>Скривен</translation> |
||
444 | fschmid | 3612 | </message> |
3613 | <message> |
||
769 | cbradney | 3614 | <source>No Print</source> |
3615 | <translation>Не штампај</translation> |
||
444 | fschmid | 3616 | </message> |
3617 | <message> |
||
769 | cbradney | 3618 | <source>No View</source> |
3619 | <translation>Без приказа</translation> |
||
444 | fschmid | 3620 | </message> |
3621 | <message> |
||
769 | cbradney | 3622 | <source>Appearance</source> |
3623 | <translation>Изглед</translation> |
||
444 | fschmid | 3624 | </message> |
3625 | <message> |
||
769 | cbradney | 3626 | <source>Text for Button Down</source> |
3627 | <translation>Текст за Дугме Доле</translation> |
||
444 | fschmid | 3628 | </message> |
3629 | <message> |
||
769 | cbradney | 3630 | <source>Text for Roll Over</source> |
3631 | <translation>Текст за превртање</translation> |
||
444 | fschmid | 3632 | </message> |
3633 | <message> |
||
769 | cbradney | 3634 | <source>Icons</source> |
3635 | <translation>Иконе</translation> |
||
444 | fschmid | 3636 | </message> |
3637 | <message> |
||
769 | cbradney | 3638 | <source>Use Icons</source> |
3639 | <translation>Користи иконе</translation> |
||
444 | fschmid | 3640 | </message> |
3641 | <message> |
||
769 | cbradney | 3642 | <source>Remove</source> |
3643 | <translation>Уклони</translation> |
||
444 | fschmid | 3644 | </message> |
3645 | <message> |
||
769 | cbradney | 3646 | <source>Pressed</source> |
3647 | <translation>Притиснуто</translation> |
||
444 | fschmid | 3648 | </message> |
3649 | <message> |
||
769 | cbradney | 3650 | <source>Roll Over</source> |
3651 | <translation>Превртање</translation> |
||
444 | fschmid | 3652 | </message> |
3653 | <message> |
||
769 | cbradney | 3654 | <source>Icon Placement...</source> |
3655 | <translation>Постављање икона...</translation> |
||
444 | fschmid | 3656 | </message> |
3657 | <message> |
||
769 | cbradney | 3658 | <source>Highlight</source> |
3659 | <translation>Истицање</translation> |
||
444 | fschmid | 3660 | </message> |
3661 | <message> |
||
769 | cbradney | 3662 | <source>Invert</source> |
3663 | <translation>Инвертуј</translation> |
||
444 | fschmid | 3664 | </message> |
3665 | <message> |
||
769 | cbradney | 3666 | <source>Outlined</source> |
3667 | <translation>Уоквирено</translation> |
||
444 | fschmid | 3668 | </message> |
3669 | <message> |
||
769 | cbradney | 3670 | <source>Push</source> |
3671 | <translation>Гурни</translation> |
||
444 | fschmid | 3672 | </message> |
3673 | <message> |
||
769 | cbradney | 3674 | <source>Multi-Line</source> |
3675 | <translation>Мулти-линија</translation> |
||
444 | fschmid | 3676 | </message> |
3677 | <message> |
||
769 | cbradney | 3678 | <source>Password</source> |
3679 | <translation>Лозинка</translation> |
||
444 | fschmid | 3680 | </message> |
3681 | <message> |
||
769 | cbradney | 3682 | <source>Limit of</source> |
3683 | <translation>Лимит од</translation> |
||
444 | fschmid | 3684 | </message> |
3685 | <message> |
||
769 | cbradney | 3686 | <source>Characters</source> |
3687 | <translation>Знакови</translation> |
||
444 | fschmid | 3688 | </message> |
3689 | <message> |
||
769 | cbradney | 3690 | <source>Do Not Scroll</source> |
3691 | <translation>Немој да скролујеш</translation> |
||
444 | fschmid | 3692 | </message> |
3693 | <message> |
||
769 | cbradney | 3694 | <source>Do Not Spell Check</source> |
3695 | <translation>Немој да провераваш правопис</translation> |
||
444 | fschmid | 3696 | </message> |
3697 | <message> |
||
769 | cbradney | 3698 | <source>Check Style:</source> |
3699 | <translation>Провери стил:</translation> |
||
444 | fschmid | 3700 | </message> |
3701 | <message> |
||
769 | cbradney | 3702 | <source>Check</source> |
3703 | <translation>Провери</translation> |
||
444 | fschmid | 3704 | </message> |
3705 | <message> |
||
769 | cbradney | 3706 | <source>Cross</source> |
3707 | <translation>Крст</translation> |
||
444 | fschmid | 3708 | </message> |
3709 | <message> |
||
769 | cbradney | 3710 | <source>Diamond</source> |
3711 | <translation>Дијамант</translation> |
||
444 | fschmid | 3712 | </message> |
3713 | <message> |
||
769 | cbradney | 3714 | <source>Circle</source> |
3715 | <translation>Круг</translation> |
||
444 | fschmid | 3716 | </message> |
3717 | <message> |
||
769 | cbradney | 3718 | <source>Star</source> |
3719 | <translation>Звезда</translation> |
||
444 | fschmid | 3720 | </message> |
3721 | <message> |
||
769 | cbradney | 3722 | <source>Square</source> |
3723 | <translation>Квадрат</translation> |
||
444 | fschmid | 3724 | </message> |
3725 | <message> |
||
769 | cbradney | 3726 | <source>Default is Checked</source> |
3727 | <translation>Подразумевано је обележено</translation> |
||
444 | fschmid | 3728 | </message> |
3729 | <message> |
||
769 | cbradney | 3730 | <source>Editable</source> |
3731 | <translation>Може се уређивати</translation> |
||
444 | fschmid | 3732 | </message> |
3733 | <message> |
||
769 | cbradney | 3734 | <source>Options</source> |
3735 | <translation>Опције</translation> |
||
444 | fschmid | 3736 | </message> |
3737 | <message> |
||
769 | cbradney | 3738 | <source>Java Script</source> |
3278 | cbradney | 3739 | <translation type="obsolete">Java Script</translation> |
444 | fschmid | 3740 | </message> |
3741 | <message> |
||
769 | cbradney | 3742 | <source>Go To</source> |
3743 | <translation>Иди на</translation> |
||
444 | fschmid | 3744 | </message> |
3745 | <message> |
||
769 | cbradney | 3746 | <source>Submit Form</source> |
3747 | <translation>Пошаљи формулар</translation> |
||
444 | fschmid | 3748 | </message> |
3749 | <message> |
||
769 | cbradney | 3750 | <source>Reset Form</source> |
3751 | <translation>Ресетуј формулар</translation> |
||
444 | fschmid | 3752 | </message> |
3753 | <message> |
||
769 | cbradney | 3754 | <source>Import Data</source> |
3755 | <translation>Увези податке</translation> |
||
444 | fschmid | 3756 | </message> |
3757 | <message> |
||
769 | cbradney | 3758 | <source>Event:</source> |
3759 | <translation>Догађај:</translation> |
||
444 | fschmid | 3760 | </message> |
3761 | <message> |
||
769 | cbradney | 3762 | <source>Mouse Up</source> |
3763 | <translation>Миш горе</translation> |
||
444 | fschmid | 3764 | </message> |
3765 | <message> |
||
769 | cbradney | 3766 | <source>Mouse Down</source> |
3767 | <translation>Миш доле</translation> |
||
444 | fschmid | 3768 | </message> |
3769 | <message> |
||
769 | cbradney | 3770 | <source>Mouse Enter</source> |
3771 | <translation>Миш унеси</translation> |
||
444 | fschmid | 3772 | </message> |
3773 | <message> |
||
769 | cbradney | 3774 | <source>Mouse Exit</source> |
3775 | <translation>Миш изађи</translation> |
||
444 | fschmid | 3776 | </message> |
3777 | <message> |
||
769 | cbradney | 3778 | <source>On Focus</source> |
3779 | <translation>На фокус</translation> |
||
444 | fschmid | 3780 | </message> |
3781 | <message> |
||
769 | cbradney | 3782 | <source>On Blur</source> |
3783 | <translation>На замућење</translation> |
||
444 | fschmid | 3784 | </message> |
3785 | <message> |
||
769 | cbradney | 3786 | <source>Script:</source> |
3787 | <translation>Скрипта:</translation> |
||
444 | fschmid | 3788 | </message> |
3789 | <message> |
||
769 | cbradney | 3790 | <source>Edit...</source> |
3791 | <translation>Уреди...</translation> |
||
444 | fschmid | 3792 | </message> |
3793 | <message> |
||
769 | cbradney | 3794 | <source>Submit to URL:</source> |
3795 | <translation>Пошаљи до URL-а:</translation> |
||
444 | fschmid | 3796 | </message> |
3797 | <message> |
||
769 | cbradney | 3798 | <source>Submit Data as HTML</source> |
3799 | <translation>Пошаљи податке као HTML</translation> |
||
444 | fschmid | 3800 | </message> |
3801 | <message> |
||
769 | cbradney | 3802 | <source>Import Data from:</source> |
3803 | <translation>Увези податке од:</translation> |
||
444 | fschmid | 3804 | </message> |
3805 | <message> |
||
769 | cbradney | 3806 | <source>Destination</source> |
3807 | <translation>Одредиште</translation> |
||
444 | fschmid | 3808 | </message> |
3809 | <message> |
||
769 | cbradney | 3810 | <source>To File:</source> |
3811 | <translation>У фајл:</translation> |
||
444 | fschmid | 3812 | </message> |
3813 | <message> |
||
769 | cbradney | 3814 | <source>Change...</source> |
3815 | <translation>Измени...</translation> |
||
444 | fschmid | 3816 | </message> |
3817 | <message> |
||
769 | cbradney | 3818 | <source>Page:</source> |
3819 | <translation>Страна:</translation> |
||
444 | fschmid | 3820 | </message> |
3821 | <message> |
||
769 | cbradney | 3822 | <source>X-Pos:</source> |
3823 | <translation>X Поз:</translation> |
||
444 | fschmid | 3824 | </message> |
3825 | <message> |
||
769 | cbradney | 3826 | <source> pt</source> |
3827 | <translation> тач.</translation> |
||
444 | fschmid | 3828 | </message> |
3829 | <message> |
||
769 | cbradney | 3830 | <source>Y-Pos:</source> |
3831 | <translation>Y Поз:</translation> |
||
444 | fschmid | 3832 | </message> |
3833 | <message> |
||
769 | cbradney | 3834 | <source>Action</source> |
3835 | <translation>Акција</translation> |
||
444 | fschmid | 3836 | </message> |
3837 | <message> |
||
769 | cbradney | 3838 | <source>Field is formatted as:</source> |
3839 | <translation>Поље је форматирано као:</translation> |
||
444 | fschmid | 3840 | </message> |
3841 | <message> |
||
769 | cbradney | 3842 | <source>Plain</source> |
3843 | <translation>Обичан</translation> |
||
444 | fschmid | 3844 | </message> |
3845 | <message> |
||
769 | cbradney | 3846 | <source>Number</source> |
3847 | <translation>Број</translation> |
||
444 | fschmid | 3848 | </message> |
3849 | <message> |
||
769 | cbradney | 3850 | <source>Percentage</source> |
3851 | <translation>Проценат</translation> |
||
444 | fschmid | 3852 | </message> |
3853 | <message> |
||
769 | cbradney | 3854 | <source>Date</source> |
3855 | <translation>Датум</translation> |
||
444 | fschmid | 3856 | </message> |
3857 | <message> |
||
769 | cbradney | 3858 | <source>Time</source> |
3859 | <translation>Време</translation> |
||
444 | fschmid | 3860 | </message> |
3861 | <message> |
||
769 | cbradney | 3862 | <source>Custom</source> |
3863 | <translation>Произвољно</translation> |
||
444 | fschmid | 3864 | </message> |
3865 | <message> |
||
769 | cbradney | 3866 | <source>Number Format</source> |
3867 | <translation>Формат бројева</translation> |
||
444 | fschmid | 3868 | </message> |
3869 | <message> |
||
769 | cbradney | 3870 | <source>Decimals:</source> |
3871 | <translation>Децимале:</translation> |
||
444 | fschmid | 3872 | </message> |
3873 | <message> |
||
769 | cbradney | 3874 | <source>Use Currency Symbol</source> |
3875 | <translation>Користи симбол валуте</translation> |
||
444 | fschmid | 3876 | </message> |
3877 | <message> |
||
769 | cbradney | 3878 | <source>Prepend Currency Symbol</source> |
3879 | <translation>Валута Симбол</translation> |
||
444 | fschmid | 3880 | </message> |
3881 | <message> |
||
769 | cbradney | 3882 | <source>Formatting</source> |
3883 | <translation>Форматирање</translation> |
||
444 | fschmid | 3884 | </message> |
3885 | <message> |
||
769 | cbradney | 3886 | <source>Percent Format</source> |
3887 | <translation>Процентни формат</translation> |
||
444 | fschmid | 3888 | </message> |
3889 | <message> |
||
769 | cbradney | 3890 | <source>Date Format</source> |
3891 | <translation>Формат датума</translation> |
||
444 | fschmid | 3892 | </message> |
3893 | <message> |
||
769 | cbradney | 3894 | <source>Time Format</source> |
3895 | <translation>Формат времена</translation> |
||
444 | fschmid | 3896 | </message> |
3897 | <message> |
||
769 | cbradney | 3898 | <source>Custom Scripts</source> |
3899 | <translation>Произвољне скрипте</translation> |
||
444 | fschmid | 3900 | </message> |
3901 | <message> |
||
769 | cbradney | 3902 | <source>Format:</source> |
3903 | <translation>Формат:</translation> |
||
444 | fschmid | 3904 | </message> |
3905 | <message> |
||
769 | cbradney | 3906 | <source>Keystroke:</source> |
3907 | <translation>Притисак дугмета:</translation> |
||
444 | fschmid | 3908 | </message> |
3909 | <message> |
||
769 | cbradney | 3910 | <source>Format</source> |
3911 | <translation>Формат</translation> |
||
444 | fschmid | 3912 | </message> |
3913 | <message> |
||
769 | cbradney | 3914 | <source>Value is not validated</source> |
3915 | <translation>Вредност није оверена</translation> |
||
444 | fschmid | 3916 | </message> |
3917 | <message> |
||
769 | cbradney | 3918 | <source>Value must be greater than or equal to:</source> |
3919 | <translation>Вредност мора бити већа или једнака са:</translation> |
||
444 | fschmid | 3920 | </message> |
3921 | <message> |
||
769 | cbradney | 3922 | <source>and less or equal to:</source> |
3923 | <translation>и мања или једнака са:</translation> |
||
444 | fschmid | 3924 | </message> |
3925 | <message> |
||
769 | cbradney | 3926 | <source>Custom validate script:</source> |
3927 | <translation>Произвољне скрипте за оверавање:</translation> |
||
444 | fschmid | 3928 | </message> |
3929 | <message> |
||
769 | cbradney | 3930 | <source>Validate</source> |
3931 | <translation>Овери</translation> |
||
444 | fschmid | 3932 | </message> |
3933 | <message> |
||
769 | cbradney | 3934 | <source>Value is not calculated</source> |
3935 | <translation>Вредност није израчуната</translation> |
||
444 | fschmid | 3936 | </message> |
3937 | <message> |
||
769 | cbradney | 3938 | <source>Value is the</source> |
3939 | <translation>Вредност је</translation> |
||
444 | fschmid | 3940 | </message> |
3941 | <message> |
||
769 | cbradney | 3942 | <source>sum</source> |
3943 | <translation>сума</translation> |
||
444 | fschmid | 3944 | </message> |
3945 | <message> |
||
769 | cbradney | 3946 | <source>product</source> |
3947 | <translation>производ</translation> |
||
444 | fschmid | 3948 | </message> |
3949 | <message> |
||
769 | cbradney | 3950 | <source>average</source> |
3951 | <translation>средња вредност</translation> |
||
444 | fschmid | 3952 | </message> |
3953 | <message> |
||
769 | cbradney | 3954 | <source>minimum</source> |
3955 | <translation>минимум</translation> |
||
444 | fschmid | 3956 | </message> |
3957 | <message> |
||
769 | cbradney | 3958 | <source>maximum</source> |
3959 | <translation>максимум</translation> |
||
444 | fschmid | 3960 | </message> |
3961 | <message> |
||
769 | cbradney | 3962 | <source>of the following fields:</source> |
3963 | <translation>од следећих поља:</translation> |
||
444 | fschmid | 3964 | </message> |
3965 | <message> |
||
769 | cbradney | 3966 | <source>Pick...</source> |
3967 | <translation>Изабери...</translation> |
||
444 | fschmid | 3968 | </message> |
3969 | <message> |
||
769 | cbradney | 3970 | <source>Custom calculation script:</source> |
3971 | <translation>Произвољна скрипта за израчунавање:</translation> |
||
444 | fschmid | 3972 | </message> |
3973 | <message> |
||
769 | cbradney | 3974 | <source>Calculate</source> |
3975 | <translation>Израчунај</translation> |
||
444 | fschmid | 3976 | </message> |
3977 | <message> |
||
769 | cbradney | 3978 | <source>OK</source> |
3979 | <translation>У реду</translation> |
||
444 | fschmid | 3980 | </message> |
3981 | <message> |
||
769 | cbradney | 3982 | <source>Cancel</source> |
3983 | <translation>Поништи</translation> |
||
444 | fschmid | 3984 | </message> |
3985 | <message> |
||
769 | cbradney | 3986 | <source>Flag is ignored for PDF 1.3</source> |
3987 | <translation>Застава се игнорише за PDF 1.3</translation> |
||
444 | fschmid | 3988 | </message> |
3989 | <message> |
||
769 | cbradney | 3990 | <source>Enter a comma separated list of fields here</source> |
3991 | <translation>Овде унесите листу поља одвојених зарезима</translation> |
||
444 | fschmid | 3992 | </message> |
3993 | <message> |
||
769 | cbradney | 3994 | <source>You need at least the Icon for Normal to use Icons for Buttons</source> |
3995 | <translation>Потребна Вам је барем икона за Нормално да бисте користили икону за дугмад</translation> |
||
444 | fschmid | 3996 | </message> |
3997 | <message> |
||
769 | cbradney | 3998 | <source>Open</source> |
3999 | <translation>Отвори</translation> |
||
444 | fschmid | 4000 | </message> |
4001 | <message> |
||
769 | cbradney | 4002 | <source>Images (*.tif *.png *.jpg *.xpm);;Postscript (*.eps);;All Files (*)</source> |
3278 | cbradney | 4003 | <translation type="obsolete">Слике (*.tif *.png *.jpg *.xpm);;Postscript (*.eps);;Сви фајлови (*)</translation> |
444 | fschmid | 4004 | </message> |
4005 | <message> |
||
769 | cbradney | 4006 | <source>Example:</source> |
4007 | <translation>Пример:</translation> |
||
444 | fschmid | 4008 | </message> |
4009 | <message> |
||
769 | cbradney | 4010 | <source>Selection Change</source> |
4011 | <translation>Промена избора</translation> |
||
444 | fschmid | 4012 | </message> |
4013 | <message> |
||
769 | cbradney | 4014 | <source>PDF Files (*.pdf);;All Files (*)</source> |
4015 | <translation>PDF фајлови (*.pdf);;Сви фајлови (*)</translation> |
||
444 | fschmid | 4016 | </message> |
3278 | cbradney | 4017 | <message> |
4018 | <source>JavaScript</source> |
||
4019 | <translation type="unfinished"></translation> |
||
4020 | </message> |
||
4021 | <message> |
||
4022 | <source>Images (*.tif *.png *.jpg *.xpm);;PostScript (*.eps);;All Files (*)</source> |
||
4023 | <translation type="unfinished"></translation> |
||
4024 | </message> |
||
4759 | cbradney | 4025 | <message> |
4026 | <source>None</source> |
||
4027 | <comment>highlight</comment> |
||
4028 | <translation type="unfinished">Ниједан</translation> |
||
4029 | </message> |
||
4030 | <message> |
||
4031 | <source>None</source> |
||
4032 | <comment>action</comment> |
||
4033 | <translation type="unfinished">Ниједан</translation> |
||
4034 | </message> |
||
6434 | cbradney | 4035 | <message> |
4036 | <source>Tooltip:</source> |
||
4037 | <translation type="unfinished"></translation> |
||
4038 | </message> |
||
4039 | <message> |
||
4040 | <source>Do Not Export Value</source> |
||
4041 | <translation type="unfinished"></translation> |
||
4042 | </message> |
||
769 | cbradney | 4043 | </context> |
4044 | <context> |
||
444 | fschmid | 4045 | <name>Annota</name> |
4046 | <message> |
||
769 | cbradney | 4047 | <source>Annotation Properties</source> |
4048 | <translation>Својства анотације</translation> |
||
444 | fschmid | 4049 | </message> |
4050 | <message> |
||
769 | cbradney | 4051 | <source>Text</source> |
4052 | <translation>Текст</translation> |
||
444 | fschmid | 4053 | </message> |
4054 | <message> |
||
769 | cbradney | 4055 | <source>Link</source> |
4056 | <translation>Веза</translation> |
||
444 | fschmid | 4057 | </message> |
4058 | <message> |
||
769 | cbradney | 4059 | <source>External Link</source> |
4060 | <translation>Спољашња веза</translation> |
||
444 | fschmid | 4061 | </message> |
4062 | <message> |
||
769 | cbradney | 4063 | <source>External Web-Link</source> |
4064 | <translation>Спољашња веб-веза</translation> |
||
444 | fschmid | 4065 | </message> |
4066 | <message> |
||
769 | cbradney | 4067 | <source>Destination</source> |
4068 | <translation>Одредиште</translation> |
||
444 | fschmid | 4069 | </message> |
4070 | <message> |
||
769 | cbradney | 4071 | <source> pt</source> |
4072 | <translation> тач.</translation> |
||
444 | fschmid | 4073 | </message> |
4074 | <message> |
||
769 | cbradney | 4075 | <source>Open</source> |
4076 | <translation>Отвори</translation> |
||
444 | fschmid | 4077 | </message> |
4078 | <message> |
||
769 | cbradney | 4079 | <source>PDF-Documents (*.pdf);;All Files (*)</source> |
4080 | <translation>PDF-Документи (*.pdf);;Сви фајлови (*)</translation> |
||
444 | fschmid | 4081 | </message> |
4082 | <message> |
||
769 | cbradney | 4083 | <source>&Type:</source> |
4084 | <translation>&Врста:</translation> |
||
444 | fschmid | 4085 | </message> |
4086 | <message> |
||
769 | cbradney | 4087 | <source>C&hange...</source> |
4088 | <translation>И&змени...</translation> |
||
444 | fschmid | 4089 | </message> |
4090 | <message> |
||
769 | cbradney | 4091 | <source>&Page:</source> |
4092 | <translation>&Страница:</translation> |
||
444 | fschmid | 4093 | </message> |
4094 | <message> |
||
769 | cbradney | 4095 | <source>&X-Pos</source> |
4096 | <translation>&X-Поз</translation> |
||
444 | fschmid | 4097 | </message> |
4098 | <message> |
||
769 | cbradney | 4099 | <source>&Y-Pos:</source> |
4100 | <translation>&Y Поз:</translation> |
||
444 | fschmid | 4101 | </message> |
532 | cbradney | 4102 | <message> |
769 | cbradney | 4103 | <source>&OK</source> |
3064 | cbradney | 4104 | <translation type="obsolete">&У реду</translation> |
532 | cbradney | 4105 | </message> |
4106 | <message> |
||
769 | cbradney | 4107 | <source>&Cancel</source> |
3064 | cbradney | 4108 | <translation type="obsolete">&Откажи</translation> |
532 | cbradney | 4109 | </message> |
769 | cbradney | 4110 | </context> |
4111 | <context> |
||
3064 | cbradney | 4112 | <name>ApplyMasterPageDialog</name> |
4113 | <message> |
||
4114 | <source>Normal</source> |
||
4115 | <translation type="unfinished">Нормално</translation> |
||
4116 | </message> |
||
4117 | <message> |
||
4118 | <source>Apply Master Page</source> |
||
4119 | <translation type="unfinished"></translation> |
||
4120 | </message> |
||
4121 | <message> |
||
4122 | <source>&Master Page:</source> |
||
4123 | <translation type="unfinished"></translation> |
||
4124 | </message> |
||
4125 | <message> |
||
4126 | <source>Apply To</source> |
||
4127 | <translation type="unfinished"></translation> |
||
4128 | </message> |
||
4129 | <message> |
||
4130 | <source>Current &page</source> |
||
4131 | <translation type="unfinished"></translation> |
||
4132 | </message> |
||
4133 | <message> |
||
4134 | <source>Alt+P</source> |
||
4135 | <translation type="unfinished"></translation> |
||
4136 | </message> |
||
4137 | <message> |
||
4138 | <source>&Even pages</source> |
||
4139 | <translation type="unfinished"></translation> |
||
4140 | </message> |
||
4141 | <message> |
||
4142 | <source>Alt+E</source> |
||
4143 | <translation type="unfinished"></translation> |
||
4144 | </message> |
||
4145 | <message> |
||
4146 | <source>O&dd pages</source> |
||
4147 | <translation type="unfinished"></translation> |
||
4148 | </message> |
||
4149 | <message> |
||
4150 | <source>Alt+D</source> |
||
4151 | <translation type="unfinished"></translation> |
||
4152 | </message> |
||
4153 | <message> |
||
4154 | <source>&All pages</source> |
||
4155 | <translation type="unfinished">&Све странице</translation> |
||
4156 | </message> |
||
4157 | <message> |
||
4158 | <source>Alt+A</source> |
||
4159 | <translation type="unfinished"></translation> |
||
4160 | </message> |
||
4161 | <message> |
||
4162 | <source>&Within range</source> |
||
4163 | <translation type="unfinished"></translation> |
||
4164 | </message> |
||
4165 | <message> |
||
4166 | <source>Alt+W</source> |
||
4167 | <translation type="unfinished"></translation> |
||
4168 | </message> |
||
4169 | <message> |
||
4170 | <source>to</source> |
||
4171 | <translation type="unfinished">до</translation> |
||
4172 | </message> |
||
4173 | <message> |
||
4174 | <source>Alt+O</source> |
||
4175 | <translation type="unfinished">Alt+O</translation> |
||
4176 | </message> |
||
4177 | <message> |
||
4178 | <source>Alt+C</source> |
||
4179 | <translation type="unfinished">Alt+C</translation> |
||
4180 | </message> |
||