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