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