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