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