Rev 985 | Rev 1525 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
131 | Franz | 1 | <!DOCTYPE TS><TS> |
2 | <context> |
||
985 | mrdocs | 3 | <name></name> |
4 | <message> |
||
5 | <source>getColorNames() -> list |
||
6 | |||
7 | Returns a list containing the names of all defined colors in the document. |
||
8 | If no document is open, returns a list of the default document colors. |
||
9 | </source> |
||
10 | <translation>getColorNames() -> list |
||
11 | |||
12 | Возвращает список имён цветов, определённых для этого документа. |
||
13 | Если ни один документ не открыт, возвращается список стандартных цветов документа. |
||
14 | </translation> |
||
15 | </message> |
||
16 | <message> |
||
17 | <source>newDocDialog() -> bool |
||
18 | |||
19 | Displays the "New Document" dialog box. Creates a new document if the user |
||
20 | accepts the settings. Does not create a document if the user presses cancel. |
||
21 | Returns true if a new document was created. |
||
22 | </source> |
||
23 | <translation>newDocDialog() -> bool |
||
24 | |||
25 | Показавает диалог "Новый документ". Создаёт новый документ, если пользователь |
||
26 | примет установки. Не создаёт документ, если пользователь нажимает "Отменить". |
||
27 | Возвращает значение true, если документ создан. |
||
28 | </translation> |
||
29 | </message> |
||
30 | <message> |
||
31 | <source>newDoc(size, margins, orientation, firstPageNumber, |
||
32 | unit, facingPages, firstSideLeft) -> bool |
||
33 | |||
34 | Creates a new document and returns true if successful. The parameters have the |
||
35 | following meaning: |
||
36 | |||
37 | size = A tuple (width, height) describing the size of the document. You can |
||
38 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
||
39 | |||
40 | margins = A tuple (left, right, top, bottom) describing the document |
||
41 | margins |
||
42 | |||
43 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
44 | |||
45 | firstPageNumber = is the number of the first page in the document used for |
||
46 | pagenumbering. While you'll usually want 1, it's useful to have higher |
||
47 | numbers if you're creating a document in several parts. |
||
48 | |||
49 | unit: this value sets the measurement units used by the document. Use a |
||
50 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
51 | UNIT_PICAS, UNIT_POINTS. |
||
52 | |||
53 | facingPages = FACINGPAGES, NOFACINGPAGES |
||
54 | |||
55 | firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT |
||
56 | |||
57 | The values for width, height and the margins are expressed in the given unit |
||
58 | for the document. PAPER_* constants are expressed in points. If your document |
||
59 | is not in points, make sure to account for this. |
||
60 | |||
61 | example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
||
62 | FACINGPAGES, FIRSTPAGERIGHT) |
||
63 | </source> |
||
64 | <translation type="unfinished"></translation> |
||
65 | </message> |
||
66 | <message> |
||
67 | <source>getFillColor(["name"]) -> string |
||
68 | |||
69 | Returns the name of the fill color of the object "name". |
||
70 | If "name" is not given the currently selected item is used. |
||
71 | </source> |
||
72 | <translation>getFillColor(["name"]) -> string |
||
73 | |||
74 | Возвращает имя цвета заливки объекта "name". Если "name" |
||
75 | не задан, используется текущий выбранный объект. |
||
76 | </translation> |
||
77 | </message> |
||
78 | <message> |
||
79 | <source>moveObject(dx, dy [, "name"]) |
||
80 | |||
81 | Moves the object "name" by dx and dy relative to its current position. The |
||
82 | distances are expressed in the current measurement unit of the document (see |
||
83 | UNIT constants). If "name" is not given the currently selected item is used. |
||
84 | If the object "name" belongs to a group, the whole group is moved. |
||
85 | </source> |
||
86 | <translation>moveObject(dx, dy [, "name"]) |
||
87 | |||
88 | Смещает обект "name" на dx и dy по отношению к текущей позиции. |
||
89 | Расстояния выражаются в текущей единице измерения документа |
||
90 | (см. константы UNIT). Если "name" не задано, используется выбранный |
||
91 | в данный момент объект. Если объект "name" принадлежит группе, |
||
92 | перемещается вся группа. |
||
93 | </translation> |
||
94 | </message> |
||
95 | <message> |
||
96 | <source>setRedraw(bool) |
||
97 | |||
98 | Disables page redraw when bool = False, otherwise redrawing is enabled. |
||
99 | This change will persist even after the script exits, so make sure to call |
||
100 | setRedraw(True) in a finally: clause at the top level of your script. |
||
101 | </source> |
||
102 | <translation type="unfinished"></translation> |
||
103 | </message> |
||
104 | <message> |
||
105 | <source>createRect(x, y, width, height, ["name"]) -> string |
||
106 | |||
107 | Creates a new rectangle on the current page and returns its name. The |
||
108 | coordinates are given in the current measurement units of the document |
||
109 | (see UNIT constants). "name" should be a unique identifier for the object |
||
110 | because you need this name to reference that object in future. If "name" |
||
111 | is not given Scribus will create one for you. |
||
112 | |||
113 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
114 | </source> |
||
115 | <translation type="unfinished"></translation> |
||
116 | </message> |
||
117 | <message> |
||
118 | <source>newPage(where [,"template"]) |
||
119 | |||
120 | Creates a new page. If "where" is -1 the new Page is appended to the |
||
121 | document, otherwise the new page is inserted before "where". Page numbers are |
||
122 | counted from 1 upwards, no matter what the displayed first page number of your |
||
123 | document is. The optional parameter "template" specifies the name of the |
||
124 | template page for the new page. |
||
125 | |||
126 | May raise IndexError if the page number is out of range |
||
127 | </source> |
||
128 | <translation type="unfinished"></translation> |
||
129 | </message> |
||
130 | <message> |
||
131 | <source>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"]) |
||
132 | |||
133 | Sets the gradient fill of the object "name" to type. Color descriptions are |
||
134 | the same as for setFillColor() and setFillShade(). See the constants for |
||
135 | available types (FILL_<type>). |
||
136 | </source> |
||
137 | <translation type="unfinished"></translation> |
||
138 | </message> |
||
139 | <message> |
||
140 | <source>getFontSize(["name"]) -> float |
||
141 | |||
142 | Returns the font size in points for the text frame "name". If this text |
||
143 | frame has some text selected the value assigned to the first character of |
||
144 | the selection is returned. |
||
145 | If "name" is not given the currently selected item is used. |
||
146 | </source> |
||
147 | <translation type="unfinished"></translation> |
||
148 | </message> |
||
149 | <message> |
||
150 | <source>messagebarText("string") |
||
151 | |||
152 | Writes the "string" into the Scribus message bar (status line). The text |
||
153 | must be UTF8 encoded or 'unicode' string(recommended). |
||
154 | </source> |
||
155 | <translation type="unfinished"></translation> |
||
156 | </message> |
||
157 | </context> |
||
158 | <context> |
||
159 | <name>@default</name> |
||
160 | <message> |
||
161 | <source>getColor("name") -> tuple |
||
162 | |||
163 | Returns a tuple (C, M, Y, K) containing the four color components of the |
||
164 | color "name" from the current document. If no document is open, returns |
||
165 | the value of the named color from the default document colors. |
||
166 | |||
167 | May raise NotFoundError if the named color wasn't found. |
||
168 | May raise ValueError if an invalid color name is specified. |
||
169 | </source> |
||
170 | <translation type="unfinished"></translation> |
||
171 | </message> |
||
172 | <message> |
||
173 | <source>changeColor("name", c, m, y, k) |
||
174 | |||
175 | Changes the color "name" to the specified CMYK value. The color value is |
||
176 | defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black. |
||
177 | Color components should be in the range from 0 to 255. |
||
178 | |||
179 | May raise NotFoundError if the named color wasn't found. |
||
180 | May raise ValueError if an invalid color name is specified. |
||
181 | </source> |
||
182 | <translation type="unfinished"></translation> |
||
183 | </message> |
||
184 | <message> |
||
185 | <source>defineColor("name", c, m, y, k) |
||
186 | |||
187 | Defines a new color "name". The color Value is defined via four components: |
||
188 | c = Cyan, m = Magenta, y = Yellow and k = Black. Color components should be in |
||
189 | the range from 0 to 255. |
||
190 | |||
191 | May raise ValueError if an invalid color name is specified. |
||
192 | </source> |
||
193 | <translation type="unfinished"></translation> |
||
194 | </message> |
||
195 | <message> |
||
196 | <source>deleteColor("name", "replace") |
||
197 | |||
198 | Deletes the color "name". Every occurence of that color is replaced by the |
||
199 | color "replace". If not specified, "replace" defaults to the color |
||
200 | "None" - transparent. |
||
201 | |||
202 | deleteColor works on the default document colors if there is no document open. |
||
203 | In that case, "replace", if specified, has no effect. |
||
204 | |||
205 | May raise NotFoundError if a named color wasn't found. |
||
206 | May raise ValueError if an invalid color name is specified. |
||
207 | </source> |
||
208 | <translation type="unfinished"></translation> |
||
209 | </message> |
||
210 | <message> |
||
211 | <source>replaceColor("name", "replace") |
||
212 | |||
213 | Every occurence of the color "name" is replaced by the color "replace". |
||
214 | |||
215 | May raise NotFoundError if a named color wasn't found. |
||
216 | May raise ValueError if an invalid color name is specified. |
||
217 | </source> |
||
218 | <translation type="unfinished"></translation> |
||
219 | </message> |
||
220 | <message> |
||
221 | <source>fileDialog("caption", ["filter", "defaultname" ,haspreview, issave]) -> string with filename |
||
222 | |||
223 | Shows a File Open dialog box with the caption "caption". Files are filtered |
||
224 | with the filter string "filter". A default filename or file path can also |
||
225 | supplied, leave this string empty when you don't want to use it. A value of |
||
226 | True for haspreview enables a small preview widget in the FileSelect box. When |
||
227 | the issave parameter is set to True the dialog acts like a "Save As" dialog |
||
228 | otherwise it acts like a "File Open Dialog". The default for both of the |
||
229 | opional parameters is False. |
||
230 | |||
231 | The filter, if specified, takes the form 'comment (*.type *.type2 ...)'. |
||
232 | For example 'Images (*.png *.xpm *.jpg)'. |
||
233 | |||
234 | Refer to the Qt-Documentation for QFileDialog for details on filters. |
||
235 | |||
236 | Example: fileDialog('Open input', 'CSV files (*.csv)') |
||
237 | Example: fileDialog('Save report', defaultname='report.txt', issave=True) |
||
238 | </source> |
||
239 | <translation type="unfinished"></translation> |
||
240 | </message> |
||
241 | <message> |
||
242 | <source>messageBox("caption", "message", |
||
243 | icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT, |
||
244 | button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer |
||
245 | |||
246 | Displays a message box with the title "caption", the message "message", and |
||
247 | an icon "icon" and up to 3 buttons. By default no icon is used and a single |
||
248 | button, OK, is displayed. Only the caption and message arguments are required, |
||
249 | though setting an icon and appropriate button(s) is strongly |
||
250 | recommended. The message text may contain simple HTML-like markup. |
||
251 | |||
252 | Returns the number of the button the user pressed. Button numbers start |
||
253 | at 1. |
||
254 | |||
255 | For the icon and the button parameters there are predefined constants available |
||
256 | with the same names as in the Qt Documentation. These are the BUTTON_* and |
||
257 | ICON_* constants defined in the module. There are also two extra constants that |
||
258 | can be binary-ORed with button constants: |
||
259 | BUTTONOPT_DEFAULT Pressing enter presses this button. |
||
260 | BUTTONOPT_ESCAPE Pressing escape presses this button. |
||
261 | |||
262 | Usage examples: |
||
263 | result = messageBox('Script failed', |
||
264 | 'This script only works when you have a text frame selected.', |
||
265 | ICON_ERROR) |
||
266 | result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>', |
||
267 | ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
||
268 | BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
||
269 | |||
270 | Defined button and icon constants: |
||
271 | BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO, |
||
272 | BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
||
273 | ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL. |
||
274 | </source> |
||
275 | <translation type="unfinished"></translation> |
||
276 | </message> |
||
277 | <message> |
||
278 | <source>valueDialog(caption, message [,defaultvalue]) -> string |
||
279 | |||
280 | Shows the common 'Ask for string' dialog and returns its value as a string |
||
281 | Parameters: window title, text in the window and optional 'default' value. |
||
282 | |||
283 | Example: valueDialog('title', 'text in the window', 'optional') |
||
284 | </source> |
||
285 | <translation type="unfinished"></translation> |
||
286 | </message> |
||
287 | <message> |
||
288 | <source>closeDoc() |
||
289 | |||
290 | Closes the current document without prompting to save. |
||
291 | |||
292 | May throw NoDocOpenError if there is no document to close |
||
293 | </source> |
||
294 | <translation type="unfinished"></translation> |
||
295 | </message> |
||
296 | <message> |
||
297 | <source>haveDoc() -> bool |
||
298 | |||
299 | Returns true if there is a document open. |
||
300 | </source> |
||
301 | <translation type="unfinished"></translation> |
||
302 | </message> |
||
303 | <message> |
||
304 | <source>openDoc("name") |
||
305 | |||
306 | Opens the document "name". |
||
307 | |||
308 | May raise ScribusError if the document could not be opened. |
||
309 | </source> |
||
310 | <translation type="unfinished"></translation> |
||
311 | </message> |
||
312 | <message> |
||
313 | <source>saveDoc() |
||
314 | |||
315 | Saves the current document with its current name, returns true if successful. |
||
316 | If the document has not already been saved, this may bring up an interactive |
||
317 | save file dialog. |
||
318 | |||
319 | If the save fails, there is currently no way to tell. |
||
320 | </source> |
||
321 | <translation type="unfinished"></translation> |
||
322 | </message> |
||
323 | <message> |
||
324 | <source>saveDocAs("name") |
||
325 | |||
326 | Saves the current document under the new name "name" (which may be a full or |
||
327 | relative path). |
||
328 | |||
329 | May raise ScribusError if the save fails. |
||
330 | </source> |
||
331 | <translation type="unfinished"></translation> |
||
332 | </message> |
||
333 | <message> |
||
334 | <source>saveDocAs("author", "info", "description") -> bool |
||
335 | |||
336 | Sets the document information. "Author", "Info", "Description" are |
||
337 | strings. |
||
338 | </source> |
||
339 | <translation type="unfinished"></translation> |
||
340 | </message> |
||
341 | <message> |
||
342 | <source>setMargins(lr, rr, tr, br) |
||
343 | |||
344 | Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br) |
||
345 | margins are given in the measurement units of the document - see UNIT_<type> |
||
346 | constants. |
||
347 | </source> |
||
348 | <translation type="unfinished"></translation> |
||
349 | </message> |
||
350 | <message> |
||
351 | <source>setUnit(type) |
||
352 | |||
353 | Changes the measurement unit of the document. Possible values for "unit" are |
||
354 | defined as constants UNIT_<type>. |
||
355 | |||
356 | May raise ValueError if an invalid unit is passed. |
||
357 | </source> |
||
358 | <translation type="unfinished"></translation> |
||
359 | </message> |
||
360 | <message> |
||
361 | <source>getUnit() -> integer (Scribus unit constant) |
||
362 | |||
363 | Returns the measurement units of the document. The returned value will be one |
||
364 | of the UNIT_* constants: |
||
365 | UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS. |
||
366 | </source> |
||
367 | <translation type="unfinished"></translation> |
||
368 | </message> |
||
369 | <message> |
||
370 | <source>loadStylesFromFile("filename") |
||
371 | |||
372 | Loads paragraph styles from the Scribus document at "filename" into the |
||
373 | current document. |
||
374 | </source> |
||
375 | <translation type="unfinished"></translation> |
||
376 | </message> |
||
377 | <message> |
||
378 | <source>setDocType(facingPages, firstPageLeft) |
||
379 | |||
380 | Sets the document type. To get facing pages set the first parameter to |
||
381 | FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead. If you want |
||
382 | to be the first page a left side set the second parameter to FIRSTPAGELEFT, for |
||
383 | a right page use FIRSTPAGERIGHT. |
||
384 | </source> |
||
385 | <translation type="unfinished"></translation> |
||
386 | </message> |
||
387 | <message> |
||
388 | <source>getLineColor(["name"]) -> string |
||
389 | |||
390 | Returns the name of the line color of the object "name". |
||
391 | If "name" is not given the currently selected item is used. |
||
392 | </source> |
||
393 | <translation type="unfinished"></translation> |
||
394 | </message> |
||
395 | <message> |
||
396 | <source>getLineWidth(["name"]) -> integer |
||
397 | |||
398 | Returns the line width of the object "name". If "name" |
||
399 | is not given the currently selected Item is used. |
||
400 | </source> |
||
401 | <translation type="unfinished"></translation> |
||
402 | </message> |
||
403 | <message> |
||
404 | <source>getLineShade(["name"]) -> integer |
||
405 | |||
406 | Returns the shading value of the line color of the object "name". |
||
407 | If "name" is not given the currently selected item is used. |
||
408 | </source> |
||
409 | <translation type="unfinished"></translation> |
||
410 | </message> |
||
411 | <message> |
||
412 | <source>getLineJoin(["name"]) -> integer (see contants) |
||
413 | |||
414 | Returns the line join style of the object "name". If "name" is not given |
||
415 | the currently selected item is used. The join types are: |
||
416 | JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND |
||
417 | </source> |
||
418 | <translation type="unfinished"></translation> |
||
419 | </message> |
||
420 | <message> |
||
421 | <source>getLineEnd(["name"]) -> integer (see constants) |
||
422 | |||
423 | Returns the line cap style of the object "name". If "name" is not given the |
||
424 | currently selected item is used. The cap types are: |
||
425 | CAP_FLAT, CAP_ROUND, CAP_SQUARE |
||
426 | </source> |
||
427 | <translation type="unfinished"></translation> |
||
428 | </message> |
||
429 | <message> |
||
430 | <source>getLineStyle(["name"]) -> integer (see constants) |
||
431 | |||
432 | Returns the line style of the object "name". If "name" is not given the |
||
433 | currently selected item is used. Line style constants are: |
||
434 | LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID |
||
435 | </source> |
||
436 | <translation type="unfinished"></translation> |
||
437 | </message> |
||
438 | <message> |
||
439 | <source>getFillShade(["name"]) -> integer |
||
440 | |||
441 | Returns the shading value of the fill color of the object "name". |
||
442 | If "name" is not given the currently selected item is used. |
||
443 | </source> |
||
444 | <translation type="unfinished"></translation> |
||
445 | </message> |
||
446 | <message> |
||
447 | <source>getCornerRadius(["name"]) -> integer |
||
448 | |||
449 | Returns the corner radius of the object "name". The radius is |
||
450 | expressed in points. If "name" is not given the currently |
||
451 | selected item is used. |
||
452 | </source> |
||
453 | <translation type="unfinished"></translation> |
||
454 | </message> |
||
455 | <message> |
||
456 | <source>getImageScale(["name"]) -> (x,y) |
||
457 | |||
458 | Returns a (x, y) tuple containing the scaling values of the image frame |
||
459 | "name". If "name" is not given the currently selected item is used. |
||
460 | </source> |
||
461 | <translation type="unfinished"></translation> |
||
462 | </message> |
||
463 | <message> |
||
464 | <source>getImageName(["name"]) -> string |
||
465 | |||
466 | Returns the filename for the image in the image frame. If "name" is not |
||
467 | given the currently selected item is used. |
||
468 | </source> |
||
469 | <translation type="unfinished"></translation> |
||
470 | </message> |
||
471 | <message> |
||
472 | <source>getPosition(["name"]) -> (x,y) |
||
473 | |||
474 | Returns a (x, y) tuple with the position of the object "name". |
||
475 | If "name" is not given the currently selected item is used. |
||
476 | The position is expressed in the actual measurement unit of the document |
||
477 | - see UNIT_<type> for reference. |
||
478 | </source> |
||
479 | <translation type="unfinished"></translation> |
||
480 | </message> |
||
481 | <message> |
||
482 | <source>getSize(["name"]) -> (width,height) |
||
483 | |||
484 | Returns a (width, height) tuple with the size of the object "name". |
||
485 | If "name" is not given the currently selected item is used. The size is |
||
486 | expressed in the current measurement unit of the document - see UNIT_<type> |
||
487 | for reference. |
||
488 | </source> |
||
489 | <translation type="unfinished"></translation> |
||
490 | </message> |
||
491 | <message> |
||
492 | <source>getRotation(["name"]) -> integer |
||
493 | |||
494 | Returns the rotation of the object "name". The value is expressed in degrees, |
||
495 | and clockwise is positive. If "name" is not given the currently selected item |
||
496 | is used. |
||
497 | </source> |
||
498 | <translation type="unfinished"></translation> |
||
499 | </message> |
||
500 | <message> |
||
501 | <source>getAllObjects() -> list |
||
502 | |||
503 | Returns a list containing the names of all objects on the current page. |
||
504 | </source> |
||
505 | <translation type="unfinished"></translation> |
||
506 | </message> |
||
507 | <message> |
||
508 | <source>moveObjectAbs(x, y [, "name"]) |
||
509 | |||
510 | Moves the object "name" to a new location. The coordinates are expressed in |
||
511 | the current measurement unit of the document (see UNIT constants). If "name" |
||
512 | is not given the currently selected item is used. If the object "name" |
||
513 | belongs to a group, the whole group is moved. |
||
514 | </source> |
||
515 | <translation type="unfinished"></translation> |
||
516 | </message> |
||
517 | <message> |
||
518 | <source>rotateObject(rot [, "name"]) |
||
519 | |||
520 | Rotates the object "name" by "rot" degrees relatively. The object is |
||
521 | rotated by the vertex that is currently selected as the rotation point - by |
||
522 | default, the top left vertext at zero rotation. Positive values mean counter |
||
523 | clockwise rotation when the default rotation point is used. If "name" is not |
||
524 | given the currently selected item is used. |
||
525 | </source> |
||
526 | <translation type="unfinished"></translation> |
||
527 | </message> |
||
528 | <message> |
||
529 | <source>rotateObjectAbs(rot [, "name"]) |
||
530 | |||
531 | Sets the rotation of the object "name" to "rot". Positive values |
||
532 | mean counter clockwise rotation. If "name" is not given the currently |
||
533 | selected item is used. |
||
534 | </source> |
||
535 | <translation type="unfinished"></translation> |
||
536 | </message> |
||
537 | <message> |
||
538 | <source>sizeObject(width, height [, "name"]) |
||
539 | |||
540 | Resizes the object "name" to the given width and height. If "name" |
||
541 | is not given the currently selected item is used. |
||
542 | </source> |
||
543 | <translation type="unfinished"></translation> |
||
544 | </message> |
||
545 | <message> |
||
546 | <source>getSelectedObject([nr]) -> string |
||
547 | |||
548 | Returns the name of the selected object. "nr" if given indicates the number |
||
549 | of the selected object, e.g. 0 means the first selected object, 1 means the |
||
550 | second selected Object and so on. |
||
551 | </source> |
||
552 | <translation type="unfinished"></translation> |
||
553 | </message> |
||
554 | <message> |
||
555 | <source>selectionCount() -> integer |
||
556 | |||
557 | Returns the number of selected objects. |
||
558 | </source> |
||
559 | <translation type="unfinished"></translation> |
||
560 | </message> |
||
561 | <message> |
||
562 | <source>selectObject("name") |
||
563 | |||
564 | Selects the object with the given "name". |
||
565 | </source> |
||
566 | <translation type="unfinished"></translation> |
||
567 | </message> |
||
568 | <message> |
||
569 | <source>deselectAll() |
||
570 | |||
571 | Deselects all objects in the whole document. |
||
572 | </source> |
||
573 | <translation type="unfinished"></translation> |
||
574 | </message> |
||
575 | <message> |
||
576 | <source>groupObjects(list) |
||
577 | |||
578 | Groups the objects named in "list" together. "list" must contain the names |
||
579 | of the objects to be grouped. If "list" is not given the currently selected |
||
580 | items are used. |
||
581 | </source> |
||
582 | <translation type="unfinished"></translation> |
||
583 | </message> |
||
584 | <message> |
||
585 | <source>unGroupObjects("name") |
||
586 | |||
587 | Destructs the group the object "name" belongs to.If "name" is not given the currently selected item is used.</source> |
||
588 | <translation type="unfinished"></translation> |
||
589 | </message> |
||
590 | <message> |
||
591 | <source>scaleGroup(factor [,"name"]) |
||
592 | |||
593 | Scales the group the object "name" belongs to. Values greater than 1 enlarge |
||
594 | the group, values smaller than 1 make the group smaller e.g a value of 0.5 |
||
595 | scales the group to 50 % of its original size, a value of 1.5 scales the group |
||
596 | to 150 % of its original size. The value for "factor" must be greater than |
||
597 | 0. If "name" is not given the currently selected item is used. |
||
598 | |||
599 | May raise ValueError if an invalid scale factor is passed. |
||
600 | </source> |
||
601 | <translation type="unfinished"></translation> |
||
602 | </message> |
||
603 | <message> |
||
604 | <source>loadImage("filename" [, "name"]) |
||
605 | |||
606 | Loads the picture "picture" into the image frame "name". If "name" is |
||
607 | not given the currently selected item is used. |
||
608 | |||
609 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
610 | </source> |
||
611 | <translation type="unfinished"></translation> |
||
612 | </message> |
||
613 | <message> |
||
614 | <source>scaleImage(x, y [, "name"]) |
||
615 | |||
616 | Sets the scaling factors of the picture in the image frame "name". |
||
617 | If "name" is not given the currently selected item is used. A number of 1 |
||
618 | means 100 %. |
||
619 | |||
620 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
621 | </source> |
||
622 | <translation type="unfinished"></translation> |
||
623 | </message> |
||
624 | <message> |
||
625 | <source>lockObject(["name"]) -> bool |
||
626 | |||
627 | Locks the object "name" if it's unlocked or unlock it if it's locked. |
||
628 | If "name" is not given the currently selected item is used. Returns true |
||
629 | if locked. |
||
630 | </source> |
||
631 | <translation type="unfinished"></translation> |
||
632 | </message> |
||
633 | <message> |
||
634 | <source>isLocked(["name"]) -> bool |
||
635 | |||
636 | Returns true if is the object "name" locked. If "name" is not given the |
||
637 | currently selected item is used. |
||
638 | </source> |
||
639 | <translation type="unfinished"></translation> |
||
640 | </message> |
||
641 | <message> |
||
642 | <source>getFontNames() -> list |
||
643 | |||
644 | Returns a list with the names of all available fonts. |
||
645 | </source> |
||
646 | <translation type="unfinished"></translation> |
||
647 | </message> |
||
648 | <message> |
||
649 | <source>getXFontNames() -> list of tuples |
||
650 | |||
651 | Returns a larger font info. It's a list of the tuples with: |
||
652 | [ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ] |
||
653 | </source> |
||
654 | <translation type="unfinished"></translation> |
||
655 | </message> |
||
656 | <message> |
||
657 | <source>rendeFont("name", "filename", "sample", size) -> bool |
||
658 | |||
659 | Creates an image preview of font "name" with given text "sample" and size. |
||
660 | Image is saved into "filename". Returns true when success. |
||
661 | |||
662 | May raise NotFoundError if the specified font can't be found. |
||
663 | May raise ValueError if an empty sample or filename is passed. |
||
664 | </source> |
||
665 | <translation type="unfinished"></translation> |
||
666 | </message> |
||
667 | <message> |
||
668 | <source>getLayers() -> list |
||
669 | |||
670 | Returns a list with the names of all defined layers. |
||
671 | </source> |
||
672 | <translation type="unfinished"></translation> |
||
673 | </message> |
||
674 | <message> |
||
675 | <source>setActiveLayer("name") |
||
676 | |||
677 | Sets the active layer to the layer named "name". |
||
678 | |||
679 | May raise NotFoundError if the layer can't be found. |
||
680 | May raise ValueError if the layer name isn't acceptable. |
||
681 | </source> |
||
682 | <translation type="unfinished"></translation> |
||
683 | </message> |
||
684 | <message> |
||
685 | <source>getActiveLayer() -> string |
||
686 | |||
687 | Returns the name of the current active layer. |
||
688 | </source> |
||
689 | <translation type="unfinished"></translation> |
||
690 | </message> |
||
691 | <message> |
||
692 | <source>sentToLayer("layer" [, "name"]) |
||
693 | |||
694 | Sends the object "name" to the layer "layer". The layer must exist. |
||
695 | If "name" is not given the currently selected item is used. |
||
696 | |||
697 | May raise NotFoundError if the layer can't be found. |
||
698 | May raise ValueError if the layer name isn't acceptable. |
||
699 | </source> |
||
700 | <translation type="unfinished"></translation> |
||
701 | </message> |
||
702 | <message> |
||
703 | <source>setLayerVisible("layer", visible) |
||
704 | |||
705 | Sets the layer "layer" to be visible or not. If is the visible set to false |
||
706 | the layer is invisible. |
||
707 | |||
708 | May raise NotFoundError if the layer can't be found. |
||
709 | May raise ValueError if the layer name isn't acceptable. |
||
710 | </source> |
||
711 | <translation type="unfinished"></translation> |
||
712 | </message> |
||
713 | <message> |
||
714 | <source>setLayerPrintable("layer", printable) |
||
715 | |||
716 | Sets the layer "layer" to be printable or not. If is the printable set to |
||
717 | false the layer won't be printed. |
||
718 | |||
719 | May raise NotFoundError if the layer can't be found. |
||
720 | May raise ValueError if the layer name isn't acceptable. |
||
721 | </source> |
||
722 | <translation type="unfinished"></translation> |
||
723 | </message> |
||
724 | <message> |
||
725 | <source>isLayerPrintable("layer") -> bool |
||
726 | |||
727 | Returns wether the Layer "layer" is visible or not, a value of True means |
||
728 | that the layer "layer" is visible, a value of False means that the layer |
||
729 | "layer" is invisible. |
||
730 | |||
731 | May raise NotFoundError if the layer can't be found. |
||
732 | May raise ValueError if the layer name isn't acceptable. |
||
733 | </source> |
||
734 | <translation type="unfinished"></translation> |
||
735 | </message> |
||
736 | <message> |
||
737 | <source>isLayerPrintable("layer") -> bool |
||
738 | |||
739 | Returns wether the layer "layer" is printable or not, a value of True means |
||
740 | that the layer "layer" can be printed, a value of False means that printing |
||
741 | the layer "layer" is disabled. |
||
742 | |||
743 | May raise NotFoundError if the layer can't be found. |
||
744 | May raise ValueError if the layer name isn't acceptable. |
||
745 | </source> |
||
746 | <translation type="unfinished"></translation> |
||
747 | </message> |
||
748 | <message> |
||
749 | <source>deleteLayer("layer") |
||
750 | |||
751 | Deletes the layer with the name "layer". Nothing happens if the layer doesn't |
||
752 | exists or if it's the only layer in the document. |
||
753 | |||
754 | May raise NotFoundError if the layer can't be found. |
||
755 | May raise ValueError if the layer name isn't acceptable. |
||
756 | </source> |
||
757 | <translation type="unfinished"></translation> |
||
758 | </message> |
||
759 | <message> |
||
760 | <source>createLayer(layer) |
||
761 | |||
762 | Creates a new layer with the name "name". |
||
763 | |||
764 | May raise ValueError if the layer name isn't acceptable. |
||
765 | </source> |
||
766 | <translation type="unfinished"></translation> |
||
767 | </message> |
||
768 | <message> |
||
769 | <source>getGuiLanguage() -> string |
||
770 | |||
771 | Returns a string with the -lang value. |
||
772 | </source> |
||
773 | <translation type="unfinished"></translation> |
||
774 | </message> |
||
775 | <message> |
||
776 | <source>createEllipse(x, y, width, height, ["name"]) -> string |
||
777 | |||
778 | Creates a new ellipse on the current page and returns its name. |
||
779 | The coordinates are given in the current measurement units of the document |
||
780 | (see UNIT constants). "name" should be a unique identifier for the object |
||
781 | because you need this name for further referencing of that object. If "name" |
||
782 | is not given Scribus will create one for you. |
||
783 | |||
784 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
785 | </source> |
||
786 | <translation type="unfinished"></translation> |
||
787 | </message> |
||
788 | <message> |
||
789 | <source>createImage(x, y, width, height, ["name"]) -> string |
||
790 | |||
791 | Creates a new picture frame on the current page and returns its name. The |
||
792 | coordinates are given in the current measurement units of the document. |
||
793 | "name" should be a unique identifier for the object because you need this |
||
794 | name for further access to that object. If "name" is not given Scribus will |
||
795 | create one for you. |
||
796 | |||
797 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
798 | </source> |
||
799 | <translation type="unfinished"></translation> |
||
800 | </message> |
||
801 | <message> |
||
802 | <source>createText(x, y, width, height, ["name"]) -> string |
||
803 | |||
804 | Creates a new text frame on the actual page and returns its name. |
||
805 | The coordinates are given in the actual measurement unit of the document (see |
||
806 | UNIT constants). "name" should be a unique identifier for the object because |
||
807 | you need this name for further referencing of that object. If "name" is not |
||
808 | given Scribus will create one for you. |
||
809 | |||
810 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
811 | </source> |
||
812 | <translation type="unfinished"></translation> |
||
813 | </message> |
||
814 | <message> |
||
815 | <source>createLine(x1, y1, x2, y2, ["name"]) -> string |
||
816 | |||
817 | Creates a new line from the point(x1, y1) to the point(x2, y2) and returns |
||
818 | its name. The coordinates are given in the current measurement unit of the |
||
819 | document (see UNIT constants). "name" should be a unique identifier for the |
||
820 | object because you need this name for further access to that object. If |
||
821 | "name" is not given Scribus will create one for you. |
||
822 | |||
823 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
824 | </source> |
||
825 | <translation type="unfinished"></translation> |
||
826 | </message> |
||
827 | <message> |
||
828 | <source>createPolyLine(list, ["name"]) -> string |
||
829 | |||
830 | Creates a new polyline and returns its name. The points for the polyline are |
||
831 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
832 | The coordinates are given in the current measurement units of the document (see |
||
833 | UNIT constants). "name" should be a unique identifier for the object because |
||
834 | you need this name for further access to that object. If "name" is not given |
||
835 | Scribus will create one for you. |
||
836 | |||
837 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
838 | May raise ValueError if an insufficient number of points is passed or if |
||
839 | the number of values passed don't group into points without leftovers. |
||
840 | </source> |
||
841 | <translation type="unfinished"></translation> |
||
842 | </message> |
||
843 | <message> |
||
844 | <source>createPolygon(list, ["name"]) -> string |
||
845 | |||
846 | Creates a new polygon and returns its name. The points for the polygon are |
||
847 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
848 | At least three points are required. There is no need to repeat the first point |
||
849 | to close the polygon. The polygon is automatically closed by connecting the |
||
850 | first and the last point. The coordinates are given in the current measurement |
||
851 | units of the document (see UNIT constants). "name" should be a unique |
||
852 | identifier for the object because you need this name for further access to that |
||
853 | object. If "name" is not given Scribus will create one for you. |
||
854 | |||
855 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
856 | May raise ValueError if an insufficient number of points is passed or if |
||
857 | the number of values passed don't group into points without leftovers. |
||
858 | </source> |
||
859 | <translation type="unfinished"></translation> |
||
860 | </message> |
||
861 | <message> |
||
862 | <source>createBezierLine(list, ["name"]) -> string |
||
863 | |||
864 | Creates a new bezier curve and returns its name. The points for the bezier |
||
865 | curve are stored in the list "list" in the following order: |
||
866 | [x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn] |
||
867 | In the points list, x and y mean the x and y coordinates of the point and kx |
||
868 | and ky meaning the control point for the curve. The coordinates are given in |
||
869 | the current measurement units of the document (see UNIT constants). "name" |
||
870 | should be a unique identifier for the object because you need this name for |
||
871 | further access to that object. If "name" is not given Scribus will create one |
||
872 | for you. |
||
873 | |||
874 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
875 | May raise ValueError if an insufficient number of points is passed or if |
||
876 | the number of values passed don't group into points without leftovers. |
||
877 | </source> |
||
878 | <translation type="unfinished"></translation> |
||
879 | </message> |
||
880 | <message> |
||
881 | <source>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string |
||
882 | |||
883 | Creates a new pathText by merging the two objects "textbox" and |
||
884 | "beziercurve" and returns its name. The coordinates are given in the current |
||
885 | measurement unit of the document (see UNIT constants). "name" should be a |
||
886 | unique identifier for the object because you need this name for further access |
||
887 | to that object. If "name" is not given Scribus will create one for you. |
||
888 | |||
889 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
890 | May raise NotFoundError if one or both of the named base object don't exist. |
||
891 | </source> |
||
892 | <translation type="unfinished"></translation> |
||
893 | </message> |
||
894 | <message> |
||
895 | <source>deleteObject(["name"]) |
||
896 | |||
897 | Deletes the item with the name "name". If "name" is not given the currently |
||
898 | selected item is deleted. |
||
899 | </source> |
||
900 | <translation type="unfinished"></translation> |
||
901 | </message> |
||
902 | <message> |
||
903 | <source>textFlowsAroundFrame("name" [, state]) |
||
904 | |||
905 | Enables/disables "Text Flows Around Frame" feature for object "name". |
||
906 | Called with parameters string name and optional boolean "state". If "state" |
||
907 | is not passed, text flow is toggled. |
||
908 | </source> |
||
909 | <translation type="unfinished"></translation> |
||
910 | </message> |
||
911 | <message> |
||
912 | <source>objectExists(["name"]) -> bool |
||
913 | |||
914 | Test if an object with specified name really exists in the document. |
||
915 | The optional parameter is the object name. When no object name is given, |
||
916 | returns True if there is something selected. |
||
917 | </source> |
||
918 | <translation type="unfinished"></translation> |
||
919 | </message> |
||
920 | <message> |
||
921 | <source>setStyle("style" [, "name"]) |
||
922 | |||
923 | Apply the named "style" to the object named "name". If is no object name |
||
924 | given, it's applied on the selected object. |
||
925 | </source> |
||
926 | <translation type="unfinished"></translation> |
||
927 | </message> |
||
928 | <message> |
||
929 | <source>getAllStyles() -> list |
||
930 | |||
931 | Return a list of the names of all paragraph styles in the current document. |
||
932 | </source> |
||
933 | <translation type="unfinished"></translation> |
||
934 | </message> |
||
935 | <message> |
||
936 | <source>currentPage() -> integer |
||
937 | |||
938 | Returns the number of the current working page. Page numbers are counted from 1 |
||
939 | upwards, no matter what the displayed first page number of your document is. |
||
940 | </source> |
||
941 | <translation type="unfinished"></translation> |
||
942 | </message> |
||
943 | <message> |
||
944 | <source>redrawAll() |
||
945 | |||
946 | Redraws all pages. |
||
947 | </source> |
||
948 | <translation type="unfinished"></translation> |
||
949 | </message> |
||
950 | <message> |
||
951 | <source>savePageAsEPS("name") |
||
952 | |||
953 | Saves the current page as an EPS to the file "name". |
||
954 | |||
955 | May raise ScribusError if the save failed. |
||
956 | </source> |
||
957 | <translation type="unfinished"></translation> |
||
958 | </message> |
||
959 | <message> |
||
960 | <source>deletePage(nr) |
||
961 | |||
962 | Deletes the given page. Does nothing if the document contains only one page. |
||
963 | Page numbers are counted from 1 upwards, no matter what the displayed first |
||
964 | page number is. |
||
965 | |||
966 | May raise IndexError if the page number is out of range |
||
967 | </source> |
||
968 | <translation type="unfinished"></translation> |
||
969 | </message> |
||
970 | <message> |
||
971 | <source>gotoPage(nr) |
||
972 | |||
973 | Moves to the page "nr" (that is, makes the current page "nr"). Note that |
||
974 | gotoPage doesn't (curently) change the page the user's view is displaying, it |
||
975 | just sets the page that script commands will operates on. |
||
976 | |||
977 | May raise IndexError if the page number is out of range. |
||
978 | </source> |
||
979 | <translation type="unfinished"></translation> |
||
980 | </message> |
||
981 | <message> |
||
982 | <source>pageCount() -> integer |
||
983 | |||
984 | Returns the number of pages in the document. |
||
985 | </source> |
||
986 | <translation type="unfinished"></translation> |
||
987 | </message> |
||
988 | <message> |
||
989 | <source>getHGuides() -> list |
||
990 | |||
991 | Returns a list containing positions of the horizontal guides. Values are in the |
||
992 | document's current units - see UNIT_<type> constants. |
||
993 | </source> |
||
994 | <translation type="unfinished"></translation> |
||
995 | </message> |
||
996 | <message> |
||
997 | <source>setHGuides(list) |
||
998 | |||
999 | Sets horizontal guides. Input parameter must be a list of guide positions |
||
1000 | measured in the current document units - see UNIT_<type> constants. |
||
1001 | |||
1002 | Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost |
||
1003 | setHGuides([90,250]) # replace current guides entirely |
||
1004 | </source> |
||
1005 | <translation type="unfinished"></translation> |
||
1006 | </message> |
||
1007 | <message> |
||
1008 | <source>getVGuides() |
||
1009 | |||
1010 | See getHGuides. |
||
1011 | </source> |
||
1012 | <translation type="unfinished"></translation> |
||
1013 | </message> |
||
1014 | <message> |
||
1015 | <source>setVGuides() |
||
1016 | |||
1017 | See setHGuides. |
||
1018 | </source> |
||
1019 | <translation type="unfinished"></translation> |
||
1020 | </message> |
||
1021 | <message> |
||
1022 | <source>getPageSize() -> tuple |
||
1023 | |||
1024 | Returns a tuple with page dimensions measured in the document's current units. |
||
1025 | See UNIT_<type> constants and getPageMargins() |
||
1026 | </source> |
||
1027 | <translation type="unfinished"></translation> |
||
1028 | </message> |
||
1029 | <message> |
||
1030 | <source>getPageItems() -> list |
||
1031 | |||
1032 | Returns a list of tuples with items on the current page. The tuple is: |
||
1033 | (name, objectType, order) E.g. [('Text1', 4, 0), ('Image1', 2, 1)] |
||
1034 | means that object named 'Text1' is a text frame (type 4) and is the first at |
||
1035 | the page... |
||
1036 | </source> |
||
1037 | <translation type="unfinished"></translation> |
||
1038 | </message> |
||
1039 | <message> |
||
1040 | <source>getPageMargins() |
||
1041 | |||
1042 | Returns the page margins as a (left, right, top, bottom) tuple in the current |
||
1043 | units. See UNIT_<type> constants and getPageSize(). |
||
1044 | </source> |
||
1045 | <translation type="unfinished"></translation> |
||
1046 | </message> |
||
1047 | <message> |
||
1048 | <source>setFillColor("color", ["name"]) |
||
1049 | |||
1050 | Sets the fill color of the object "name" to the color "color". "color" |
||
1051 | is the name of one of the defined colors. If "name" is not given the |
||
1052 | currently selected item is used. |
||
1053 | </source> |
||
1054 | <translation type="unfinished"></translation> |
||
1055 | </message> |
||
1056 | <message> |
||
1057 | <source>setLineColor("color", ["name"]) |
||
1058 | |||
1059 | Sets the line color of the object "name" to the color "color". If "name" |
||
1060 | is not given the currently selected item is used. |
||
1061 | </source> |
||
1062 | <translation type="unfinished"></translation> |
||
1063 | </message> |
||
1064 | <message> |
||
1065 | <source>setLineWidth(width, ["name"]) |
||
1066 | |||
1067 | Sets line width of the object "name" to "width". "width" must be in the |
||
1068 | range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not |
||
1069 | given the currently selected item is used. |
||
1070 | |||
1071 | May raise ValueError if the line width is out of bounds. |
||
1072 | </source> |
||
1073 | <translation type="unfinished"></translation> |
||
1074 | </message> |
||
1075 | <message> |
||
1076 | <source>setLineShade(shade, ["name"]) |
||
1077 | |||
1078 | Sets the shading of the line color of the object "name" to "shade". |
||
1079 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
1080 | (full color intensity). If "name" is not given the currently selected item |
||
1081 | is used. |
||
1082 | |||
1083 | May raise ValueError if the line shade is out of bounds. |
||
1084 | </source> |
||
1085 | <translation type="unfinished"></translation> |
||
1086 | </message> |
||
1087 | <message> |
||
1088 | <source>setLineJoin(join, ["name"]) |
||
1089 | |||
1090 | Sets the line join style of the object "name" to the style "join". |
||
1091 | If "name" is not given the currently selected item is used. There are |
||
1092 | predefined constants for join - JOIN_<type>. |
||
1093 | </source> |
||
1094 | <translation type="unfinished"></translation> |
||
1095 | </message> |
||
1096 | <message> |
||
1097 | <source>setLineEnd(endtype, ["name"]) |
||
1098 | |||
1099 | Sets the line cap style of the object "name" to the style "cap". |
||
1100 | If "name" is not given the currently selected item is used. There are |
||
1101 | predefined constants for "cap" - CAP_<type>. |
||
1102 | </source> |
||
1103 | <translation type="unfinished"></translation> |
||
1104 | </message> |
||
1105 | <message> |
||
1106 | <source>setLineStyle(style, ["name"]) |
||
1107 | |||
1108 | Sets the line style of the object "name" to the style "style". If "name" |
||
1109 | is not given the currently selected item is used. There are predefined |
||
1110 | constants for "style" - LINE_<style>. |
||
1111 | </source> |
||
1112 | <translation type="unfinished"></translation> |
||
1113 | </message> |
||
1114 | <message> |
||
1115 | <source>setFillShade(shade, ["name"]) |
||
1116 | |||
1117 | Sets the shading of the fill color of the object "name" to "shade". |
||
1118 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
1119 | (full Color intensity). If "name" is not given the currently selected |
||
1120 | Item is used. |
||
1121 | |||
1122 | May raise ValueError if the fill shade is out of bounds. |
||
1123 | </source> |
||
1124 | <translation type="unfinished"></translation> |
||
1125 | </message> |
||
1126 | <message> |
||
1127 | <source>setCornerRadius(radius, ["name"]) |
||
1128 | |||
1129 | Sets the corner radius of the object "name". The radius is expressed |
||
1130 | in points. If "name" is not given the currently selected item is used. |
||
1131 | |||
1132 | May raise ValueError if the corner radius is negative. |
||
1133 | </source> |
||
1134 | <translation type="unfinished"></translation> |
||
1135 | </message> |
||
1136 | <message> |
||
1137 | <source>setMultiLine("namedStyle", ["name"]) |
||
1138 | |||
1139 | Sets the line style of the object "name" to the named style "namedStyle". |
||
1140 | If "name" is not given the currently selected item is used. |
||
1141 | |||
1142 | May raise NotFoundError if the line style doesn't exist. |
||
1143 | </source> |
||
1144 | <translation type="unfinished"></translation> |
||
1145 | </message> |
||
1146 | <message> |
||
1147 | <source>getFont(["name"]) -> string |
||
1148 | |||
1149 | Returns the font name for the text frame "name". If this text frame |
||
1150 | has some text selected the value assigned to the first character |
||
1151 | of the selection is returned. If "name" is not given the currently |
||
1152 | selected item is used. |
||
1153 | </source> |
||
1154 | <translation type="unfinished"></translation> |
||
1155 | </message> |
||
1156 | <message> |
||
1157 | <source>getTextLength(["name"]) -> integer |
||
1158 | |||
1159 | Returns the length of the text in the text frame "name". |
||
1160 | If "name" is not given the currently selected item is used. |
||
1161 | </source> |
||
1162 | <translation type="unfinished"></translation> |
||
1163 | </message> |
||
1164 | <message> |
||
1165 | <source>getText(["name"]) -> string |
||
1166 | |||
1167 | Returns the text of the text frame "name". If this text frame has some text |
||
1168 | selected, the selected text is returned. All text in the frame, not just |
||
1169 | currently visible text, is returned. If "name" is not given the currently |
||
1170 | selected item is used. |
||
1171 | </source> |
||
1172 | <translation type="unfinished"></translation> |
||
1173 | </message> |
||
1174 | <message> |
||
1175 | <source>getAllText(["name"]) -> string |
||
1176 | |||
1177 | Returns the text of the text frame "name" and of all text frames which are |
||
1178 | linked with this frame. If this textframe has some text selected, the selected |
||
1179 | text is returned. If "name" is not given the currently selected item is |
||
1180 | used. |
||
1181 | </source> |
||
1182 | <translation type="unfinished"></translation> |
||
1183 | </message> |
||
1184 | <message> |
||
1185 | <source>getLineSpacing(["name"]) -> float |
||
1186 | |||
1187 | Returns the line spacing ("leading") of the text frame "name" expressed in |
||
1188 | points. If "name" is not given the currently selected item is used. |
||
1189 | </source> |
||
1190 | <translation type="unfinished"></translation> |
||
1191 | </message> |
||
1192 | <message> |
||
1193 | <source>getColumnGap(["name"]) -> float |
||
1194 | |||
1195 | Returns the column gap size of the text frame "name" expressed in points. If |
||
1196 | "name" is not given the currently selected item is used. |
||
1197 | </source> |
||
1198 | <translation type="unfinished"></translation> |
||
1199 | </message> |
||
1200 | <message> |
||
1201 | <source>getColumns(["name"]) -> integer |
||
1202 | |||
1203 | Gets the number of columns of the text frame "name". If "name" is not |
||
1204 | given the currently selected item is used. |
||
1205 | </source> |
||
1206 | <translation type="unfinished"></translation> |
||
1207 | </message> |
||
1208 | <message> |
||
1209 | <source>setText("text", ["name"]) |
||
1210 | |||
1211 | Sets the text of the text frame "name" to the text of the string "text". |
||
1212 | Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ |
||
1213 | for more details. If "name" is not given the currently selected item is |
||
1214 | used. |
||
1215 | </source> |
||
1216 | <translation type="unfinished"></translation> |
||
1217 | </message> |
||
1218 | <message> |
||
1219 | <source>insertText("text", pos, ["name"]) |
||
1220 | |||
1221 | Inserts the text "text" at the position "pos" into the text frame. Text |
||
1222 | must be UTF encoded (see setText() as reference) The first character has an |
||
1223 | index of 0. "name" If "name" is not given the currently selected Item is |
||
1224 | used. |
||
1225 | |||
1226 | May throw IndexError for an insertion out of bounds. |
||
1227 | </source> |
||
1228 | <translation type="unfinished"></translation> |
||
1229 | </message> |
||
1230 | <message> |
||
1231 | <source>setFont("font", ["name"]) |
||
1232 | |||
1233 | Sets the font of the text frame "name" to "font". If there is some text |
||
1234 | selected only the selected text is changed. If "name" is not given the |
||
1235 | currently selected item is used. |
||
1236 | |||
1237 | May throw ValueError if the font cannot be found. |
||
1238 | </source> |
||
1239 | <translation type="unfinished"></translation> |
||
1240 | </message> |
||
1241 | <message> |
||
1242 | <source>setFontSize(size, ["name"]) |
||
1243 | |||
1244 | Sets the font size of the text frame "name" to "size". "size" is treated |
||
1245 | as a value in points. If there is some text selected only the selected text is |
||
1246 | changed. "size" must be in the range 1 to 512. If "name" is not given the |
||
1247 | currently selected item is used. |
||
1248 | |||
1249 | May throw ValueError for a font size that's out of bounds. |
||
1250 | </source> |
||
1251 | <translation type="unfinished"></translation> |
||
1252 | </message> |
||
1253 | <message> |
||
1254 | <source>setLineSpacing(size, ["name"]) |
||
1255 | |||
1256 | Sets the line spacing ("leading") of the text frame "name" to "size". |
||
1257 | "size" is a value in points. If "name" is not given the currently selected |
||
1258 | item is used. |
||
1259 | |||
1260 | May throw ValueError if the line spacing is out of bounds. |
||
1261 | </source> |
||
1262 | <translation type="unfinished"></translation> |
||
1263 | </message> |
||
1264 | <message> |
||
1265 | <source>setColumnGap(size, ["name"]) |
||
1266 | |||
1267 | Sets the column gap of the text frame "name" to the value "size". If |
||
1268 | "name" is not given the currently selected item is used. |
||
1269 | |||
1270 | May throw ValueError if the column gap is out of bounds (must be positive). |
||
1271 | </source> |
||
1272 | <translation type="unfinished"></translation> |
||
1273 | </message> |
||
1274 | <message> |
||
1275 | <source>setColumns(nr, ["name"]) |
||
1276 | |||
1277 | Sets the number of columns of the text frame "name" to the integer "nr". |
||
1278 | If "name" is not given the currently selected item is used. |
||
1279 | |||
1280 | May throw ValueError if number of columns is not at least one. |
||
1281 | </source> |
||
1282 | <translation type="unfinished"></translation> |
||
1283 | </message> |
||
1284 | <message> |
||
1285 | <source>setTextAlignment(align, ["name"]) |
||
1286 | |||
1287 | Sets the text alignment of the text frame "name" to the specified alignment. |
||
1288 | If "name" is not given the currently selected item is used. "align" should |
||
1289 | be one of the ALIGN_ constants defined in this module - see dir(scribus). |
||
1290 | |||
1291 | May throw ValueError for an invalid alignment constant. |
||
1292 | </source> |
||
1293 | <translation type="unfinished"></translation> |
||
1294 | </message> |
||
1295 | <message> |
||
1296 | <source>selectText(start, count, ["name"]) |
||
1297 | |||
1298 | Selects "count" characters of text in the text frame "name" starting from the |
||
1299 | character "start". Character counting starts at 0. If "count" is zero, any |
||
1300 | text selection will be cleared. If "name" is not given the currently |
||
1301 | selected item is used. |
||
1302 | |||
1303 | May throw IndexError if the selection is outside the bounds of the text. |
||
1304 | </source> |
||
1305 | <translation type="unfinished"></translation> |
||
1306 | </message> |
||
1307 | <message> |
||
1308 | <source>deleteText(["name"]) |
||
1309 | |||
1310 | Deletes any text in the text frame "name". If there is some text selected, |
||
1311 | only the selected text will be deleted. If "name" is not given the currently |
||
1312 | selected item is used. |
||
1313 | </source> |
||
1314 | <translation type="unfinished"></translation> |
||
1315 | </message> |
||
1316 | <message> |
||
1317 | <source>setTextColor("color", ["name"]) |
||
1318 | |||
1319 | Sets the text color of the text frame "name" to the color "color". If there |
||
1320 | is some text selected only the selected text is changed. If "name" is not |
||
1321 | given the currently selected item is used. |
||
1322 | </source> |
||
1323 | <translation type="unfinished"></translation> |
||
1324 | </message> |
||
1325 | <message> |
||
1326 | <source>setTextStroke("color", ["name"]) |
||
1327 | |||
1328 | Set "color" of the text stroke. If "name" is not given the currently |
||
1329 | selected item is used. |
||
1330 | </source> |
||
1331 | <translation type="unfinished"></translation> |
||
1332 | </message> |
||
1333 | <message> |
||
1334 | <source>setTextShade(shade, ["name"]) |
||
1335 | |||
1336 | Sets the shading of the text color of the object "name" to "shade". If |
||
1337 | there is some text selected only the selected text is changed. "shade" must |
||
1338 | be an integer value in the range from 0 (lightest) to 100 (full color |
||
1339 | intensity). If "name" is not given the currently selected item is |
||
1340 | used. |
||
1341 | </source> |
||
1342 | <translation type="unfinished"></translation> |
||
1343 | </message> |
||
1344 | <message> |
||
1345 | <source>linkTextFrames("fromname", "toname") |
||
1346 | |||
1347 | Link two text frames. The frame named "fromname" is linked to the |
||
1348 | frame named "toname". The target frame must be an empty text frame |
||
1349 | and must not link to or be linked from any other frames already. |
||
1350 | |||
1351 | May throw ScribusException if linking rules are violated. |
||
1352 | </source> |
||
1353 | <translation type="unfinished"></translation> |
||
1354 | </message> |
||
1355 | <message> |
||
1356 | <source>unlinkTextFrames("name") |
||
1357 | |||
1358 | Remove the specified (named) object from the text frame flow/linkage. If the |
||
1359 | frame was in the middle of a chain, the previous and next frames will be |
||
1360 | connected, eg 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)' |
||
1361 | |||
1362 | May throw ScribusException if linking rules are violated. |
||
1363 | </source> |
||
1364 | <translation type="unfinished"></translation> |
||
1365 | </message> |
||
1366 | <message> |
||
1367 | <source>traceText(["name"]) |
||
1368 | |||
1369 | Convert the text frame "name" to outlines. If "name" is not given the |
||
1370 | currently selected item is used.</source> |
||
1371 | <translation type="unfinished"></translation> |
||
1372 | </message> |
||
1373 | <message> |
||
1374 | <source>progressReset() |
||
1375 | |||
1376 | Cleans up the Scribus progress bar previous settings. It is called before the |
||
1377 | new progress bar use. See progressSet. |
||
1378 | </source> |
||
1379 | <translation type="unfinished"></translation> |
||
1380 | </message> |
||
1381 | <message> |
||
1382 | <source>progressTotal(max) |
||
1383 | |||
1384 | Sets the progress bar's maximum steps value to the specified number. |
||
1385 | See progressSet. |
||
1386 | </source> |
||
1387 | <translation type="unfinished"></translation> |
||
1388 | </message> |
||
1389 | <message> |
||
1390 | <source>progressSet(nr) |
||
1391 | |||
1392 | Set the progress bar position to "nr", a value relative to the previously set |
||
1393 | progressTotal. The progress bar uses the concept of steps; you give it the |
||
1394 | total number of steps and the number of steps completed so far and it will |
||
1395 | display the percentage of steps that have been completed. You can specify the |
||
1396 | total number of steps with progressTotal(). The current number of steps is set |
||
1397 | with progressSet(). The progress bar can be rewound to the beginning with |
||
1398 | progressReset(). [based on info taken from Trolltech's Qt docs] |
||
1399 | </source> |
||
1400 | <translation type="unfinished"></translation> |
||
1401 | </message> |
||
1402 | <message> |
||
1403 | <source>setCursor() |
||
1404 | |||
1405 | [UNSUPPORTED!] This might break things, so steer clear for now. |
||
1406 | </source> |
||
1407 | <translation type="unfinished"></translation> |
||
1408 | </message> |
||
1409 | <message> |
||
1410 | <source>docChanged(bool) |
||
1411 | |||
1412 | Enable/disable save icon in the Scribus icon bar and the Save menu item. It's |
||
1413 | useful to call this procedure when you're changing the document, because Scribus |
||
1414 | won't automatically notice when you change the document using a script. |
||
1415 | </source> |
||
1416 | <translation type="unfinished"></translation> |
||
1417 | </message> |
||
1418 | </context> |
||
1419 | <context> |
||
131 | Franz | 1420 | <name>About</name> |
1421 | <message> |
||
985 | mrdocs | 1422 | <source>About Scribus%1%2</source> |
1423 | <translation type="obsolete">О Scribus%1%2</translation> |
||
1424 | </message> |
||
1425 | <message> |
||
131 | Franz | 1426 | <source>%1. %2 %3 </source> |
1427 | <translation>%1. %2 %3 </translation> |
||
1428 | </message> |
||
1429 | <message> |
||
1430 | <source>Scribus Version %1 |
||
1431 | %2 %3</source> |
||
1432 | <translation>Scribus v%1 |
||
1433 | %2 %3</translation> |
||
1434 | </message> |
||
1435 | <message> |
||
1436 | <source>Build-ID:</source> |
||
1437 | <translation>ID сборки:</translation> |
||
1438 | </message> |
||
1439 | <message> |
||
1440 | <source>Contributions from:</source> |
||
391 | Franz | 1441 | <translation>Свой вклад в разработку внесли:</translation> |
131 | Franz | 1442 | </message> |
1443 | <message> |
||
1444 | <source>German:</source> |
||
1445 | <translation>На немецкий:</translation> |
||
1446 | </message> |
||
1447 | <message> |
||
1448 | <source>French:</source> |
||
1449 | <translation>На французский:</translation> |
||
1450 | </message> |
||
1451 | <message> |
||
1452 | <source>Italian:</source> |
||
1453 | <translation>На итальянский:</translation> |
||
1454 | </message> |
||
1455 | <message> |
||
1456 | <source>Hungarian:</source> |
||
1457 | <translation>На венгерский:</translation> |
||
1458 | </message> |
||
1459 | <message> |
||
1460 | <source>Ukrainian:</source> |
||
1461 | <translation>На украинский:</translation> |
||
1462 | </message> |
||
1463 | <message> |
||
1464 | <source>Bulgarian:</source> |
||
1465 | <translation>На болгарский:</translation> |
||
1466 | </message> |
||
1467 | <message> |
||
1468 | <source>Galician:</source> |
||
1469 | <translation>На галльский:</translation> |
||
1470 | </message> |
||
1471 | <message> |
||
1472 | <source>Turkish:</source> |
||
1473 | <translation>На турецкий:</translation> |
||
1474 | </message> |
||
1475 | <message> |
||
1476 | <source>Lithuanian:</source> |
||
1477 | <translation>На литовский:</translation> |
||
1478 | </message> |
||
1479 | <message> |
||
1480 | <source>Polish:</source> |
||
1481 | <translation>На польский:</translation> |
||
1482 | </message> |
||
1483 | <message> |
||
1484 | <source>Czech:</source> |
||
1485 | <translation>На чешский:</translation> |
||
1486 | </message> |
||
1487 | <message> |
||
1488 | <source>Slovak:</source> |
||
1489 | <translation>На словацкий:</translation> |
||
1490 | </message> |
||
1491 | <message> |
||
1492 | <source>Danish:</source> |
||
1493 | <translation>На датский:</translation> |
||
1494 | </message> |
||
1495 | <message> |
||
1496 | <source>Norwegian:</source> |
||
1497 | <translation>На норвежский:</translation> |
||
1498 | </message> |
||
1499 | <message> |
||
1500 | <source>Welsh:</source> |
||
1501 | <translation>На уэльский:</translation> |
||
1502 | </message> |
||
1503 | <message> |
||
1504 | <source>Russian:</source> |
||
1505 | <translation>На русский:</translation> |
||
1506 | </message> |
||
159 | Franz | 1507 | <message> |
1508 | <source>Windows port:</source> |
||
1509 | <translation>Портирование под Windows:</translation> |
||
1510 | </message> |
||
1511 | <message> |
||
1512 | <source>Brazilian:</source> |
||
1513 | <translation>На бразильский:</translation> |
||
1514 | </message> |
||
262 | Franz | 1515 | <message> |
1516 | <source>Finnish:</source> |
||
1517 | <translation>На финский:</translation> |
||
1518 | </message> |
||
1519 | <message> |
||
290 | Franz | 1520 | <source>Slovenian:</source> |
1521 | <translation>На словенский:</translation> |
||
1522 | </message> |
||
1523 | <message> |
||
1524 | <source>Basque:</source> |
||
1525 | <translation>На баскский:</translation> |
||
1526 | </message> |
||
1527 | <message> |
||
985 | mrdocs | 1528 | <source>This panel shows the version, build date and |
1529 | compiled in library support in Scribus |
||
1530 | The C-C-T equates to C=CUPS C=littlecms T=TIFF support. |
||
1531 | Missing library support is indicated by a *</source> |
||
1532 | <translation>Здесь отображается версия, дата сборки и |
||
1533 | статус поддержки различных библиотек в Scribus. |
||
1534 | "C-C-T" расшифровывается так: |
||
1535 | C=CUPS C=littlecms T=TIFF |
||
1536 | Отсутствующая библиотека помечается символом *</translation> |
||
1537 | </message> |
||
1538 | <message> |
||
341 | Franz | 1539 | <source>&About</source> |
391 | Franz | 1540 | <translation>О &программе</translation> |
341 | Franz | 1541 | </message> |
1542 | <message> |
||
1543 | <source>A&uthors</source> |
||
391 | Franz | 1544 | <translation>&Авторы</translation> |
341 | Franz | 1545 | </message> |
1546 | <message> |
||
1547 | <source>&Translations</source> |
||
391 | Franz | 1548 | <translation>П&ереводы</translation> |
341 | Franz | 1549 | </message> |
1550 | <message> |
||
1551 | <source>&Online</source> |
||
391 | Franz | 1552 | <translation>В &Интернете</translation> |
341 | Franz | 1553 | </message> |
1554 | <message> |
||
1555 | <source>&Close</source> |
||
391 | Franz | 1556 | <translation>&Закрыть</translation> |
341 | Franz | 1557 | </message> |
131 | Franz | 1558 | <message> |
418 | Franz | 1559 | <source>Development Team:</source> |
473 | fschmid | 1560 | <translation>Команда разработчиков:</translation> |
418 | Franz | 1561 | </message> |
1562 | <message> |
||
1563 | <source>Official Documentation:</source> |
||
473 | fschmid | 1564 | <translation>Официальная документация:</translation> |
418 | Franz | 1565 | </message> |
1566 | <message> |
||
1567 | <source>Other Documentation:</source> |
||
473 | fschmid | 1568 | <translation>Остальная документация:</translation> |
418 | Franz | 1569 | </message> |
1570 | <message> |
||
1571 | <source>English (British):</source> |
||
473 | fschmid | 1572 | <translation>На британский английский:</translation> |
418 | Franz | 1573 | </message> |
1574 | <message> |
||
1575 | <source>Swedish:</source> |
||
473 | fschmid | 1576 | <translation>На шведский:</translation> |
418 | Franz | 1577 | </message> |
1578 | <message> |
||
1579 | <source>Homepage</source> |
||
473 | fschmid | 1580 | <translation>Веб-сайт</translation> |
418 | Franz | 1581 | </message> |
1582 | <message> |
||
1583 | <source>Online Reference</source> |
||
473 | fschmid | 1584 | <translation>Электронный справочник</translation> |
418 | Franz | 1585 | </message> |
1586 | <message> |
||
1587 | <source>Bugs and Feature Requests</source> |
||
473 | fschmid | 1588 | <translation>Система отслеживания ошибок</translation> |
418 | Franz | 1589 | </message> |
1590 | <message> |
||
1591 | <source>Mailing List</source> |
||
473 | fschmid | 1592 | <translation>Список рассылки</translation> |
418 | Franz | 1593 | </message> |
454 | fschmid | 1594 | <message> |
473 | fschmid | 1595 | <source>Catalan:</source> |
1596 | <translation>На каталонский:</translation> |
||
454 | fschmid | 1597 | </message> |
1598 | <message> |
||
1599 | <source>Korean:</source> |
||
473 | fschmid | 1600 | <translation>На корейский:</translation> |
454 | fschmid | 1601 | </message> |
1602 | <message> |
||
1603 | <source>Spanish:</source> |
||
473 | fschmid | 1604 | <translation>На испанский:</translation> |
454 | fschmid | 1605 | </message> |
1606 | <message> |
||
473 | fschmid | 1607 | <source>Esperanto:</source> |
1608 | <translation>На эсперанто:</translation> |
||
454 | fschmid | 1609 | </message> |
1610 | <message> |
||
473 | fschmid | 1611 | <source>Serbian:</source> |
1612 | <translation>На сербский:</translation> |
||
454 | fschmid | 1613 | </message> |
532 | cbradney | 1614 | <message> |
1615 | <source>Official Translations and Translators:</source> |
||
550 | fschmid | 1616 | <translation>Официальные переводы и переводчики:</translation> |
532 | cbradney | 1617 | </message> |
1618 | <message> |
||
1619 | <source>Previous Translation Contributors:</source> |
||
550 | fschmid | 1620 | <translation>Предыдущие авторы переводов:</translation> |
532 | cbradney | 1621 | </message> |
769 | cbradney | 1622 | <message> |
1623 | <source>About Scribus %1</source> |
||
985 | mrdocs | 1624 | <translation>О Scribus %1</translation> |
769 | cbradney | 1625 | </message> |
391 | Franz | 1626 | </context> |
1627 | <context> |
||
1628 | <name>AdvOptions</name> |
||
131 | Franz | 1629 | <message> |
391 | Franz | 1630 | <source>Advanced Options</source> |
1631 | <translation>Дополнительные параметры</translation> |
||
131 | Franz | 1632 | </message> |
310 | Franz | 1633 | <message> |
1634 | <source>Creates PostScript Level 3</source> |
||
311 | Franz | 1635 | <translation>Создать PostScript Level 3</translation> |
310 | Franz | 1636 | </message> |
1637 | <message> |
||
1638 | <source>Creates PostScript Level 2 only, beware, |
||
1639 | this can create huge files</source> |
||
311 | Franz | 1640 | <translation>Создать только PostScript Level 2 |
1641 | Осторожно! Файл может получиться огромным.</translation> |
||
310 | Franz | 1642 | </message> |
1643 | <message> |
||
1644 | <source>Creates PostScript Level 1 only, beware, |
||
1645 | this can create huge files</source> |
||
311 | Franz | 1646 | <translation>Создать только PostScript Level 1 |
1647 | Осторожно! Файл может получиться огромным.</translation> |
||
310 | Franz | 1648 | </message> |
351 | Franz | 1649 | <message> |
1650 | <source>Mirror Page(s) &Horizontal</source> |
||
399 | Franz | 1651 | <translation>Зеркально отразить по &горизонтали</translation> |
351 | Franz | 1652 | </message> |
1653 | <message> |
||
1654 | <source>Mirror Page(s) &Vertical</source> |
||
399 | Franz | 1655 | <translation>Зеркально отразить по &вертикали</translation> |
351 | Franz | 1656 | </message> |
1657 | <message> |
||
391 | Franz | 1658 | <source>Apply Under Color &Removal</source> |
399 | Franz | 1659 | <translation>Применить вычитание из-под &чёрного</translation> |
391 | Franz | 1660 | </message> |
1661 | <message> |
||
351 | Franz | 1662 | <source>Apply &ICC Profiles</source> |
391 | Franz | 1663 | <translation>Применить ICC-&профили</translation> |
351 | Franz | 1664 | </message> |
1665 | <message> |
||
1666 | <source>PostScript Level &1</source> |
||
391 | Franz | 1667 | <translation>PostScript Level &1</translation> |
351 | Franz | 1668 | </message> |
1669 | <message> |
||
1670 | <source>PostScript Level &2</source> |
||
391 | Franz | 1671 | <translation>PostScript Level &2</translation> |
351 | Franz | 1672 | </message> |
1673 | <message> |
||
1674 | <source>PostScript Level &3</source> |
||
391 | Franz | 1675 | <translation>PostScript Level &3</translation> |
351 | Franz | 1676 | </message> |
1677 | <message> |
||
1678 | <source>&OK</source> |
||
391 | Franz | 1679 | <translation>&ОК</translation> |
351 | Franz | 1680 | </message> |
1681 | <message> |
||
1682 | <source>&Cancel</source> |
||
391 | Franz | 1683 | <translation>О&тменить</translation> |
351 | Franz | 1684 | </message> |
364 | Franz | 1685 | <message> |
1686 | <source>A way of switching off some of the gray shades which are composed |
||
1687 | of cyan, yellow and magenta and using black instead. |
||
1688 | UCR most affects parts of images which are neutral and/or dark tones |
||
1689 | which are close to the gray. Use of this may improve printing some images |
||
1690 | and some experimentation and testing is need on a case by case basis. |
||
1691 | UCR reduces the possibility of over saturation with CMY inks.</source> |
||
391 | Franz | 1692 | <translation>Способ удаления некоторых серых (ахроматических) тонов, |
1693 | составленных из голубой, желтой и пурпурной красок, |
||
1694 | и замены их на черный. UCR главным образом воздействует на |
||
1695 | нейтральные по цвету части изображения. Использование этого |
||
1696 | метода способно улучшить печать некоторых изображений, но |
||
1697 | каждый отдельный случай требует особого рассмотрения. |
||
1698 | При использовании этого способа также снижается |
||
399 | Franz | 1699 | вероятность избыточной яркости изображения. </translation> |
364 | Franz | 1700 | </message> |
131 | Franz | 1701 | </context> |
1702 | <context> |
||
1703 | <name>Align</name> |
||
1704 | <message> |
||
1705 | <source>Distribute/Align</source> |
||
1706 | <translation>Распределение / Выравнивание</translation> |
||
1707 | </message> |
||
1708 | <message> |
||
1709 | <source>Align</source> |
||
550 | fschmid | 1710 | <translation>Выравнивание</translation> |
131 | Franz | 1711 | </message> |
1712 | <message> |
||
1713 | <source>Horizontal</source> |
||
1714 | <translation>По горизонтали</translation> |
||
1715 | </message> |
||
1716 | <message> |
||
1717 | <source>Left Sides</source> |
||
1718 | <translation>левыми сторонами</translation> |
||
1719 | </message> |
||
1720 | <message> |
||
1721 | <source>Middles</source> |
||
1722 | <translation>серединой</translation> |
||
1723 | </message> |
||
1724 | <message> |
||
1725 | <source>Right Sides</source> |
||
1726 | <translation>правыми сторонами</translation> |
||
1727 | </message> |
||
1728 | <message> |
||
1729 | <source>Vertical</source> |
||
1730 | <translation>По вертикали</translation> |
||
1731 | </message> |
||
1732 | <message> |
||
1733 | <source>Top Sides</source> |
||
1734 | <translation>верхними сторонами</translation> |
||
1735 | </message> |
||
1736 | <message> |
||
1737 | <source>Bottom Sides</source> |
||
1738 | <translation>нижними сторонами</translation> |
||
1739 | </message> |
||
1740 | <message> |
||
1741 | <source> mm</source> |
||
1742 | <translation>мм</translation> |
||
1743 | </message> |
||
1744 | <message> |
||
1745 | <source> in</source> |
||
1746 | <translation>in</translation> |
||
1747 | </message> |
||
1748 | <message> |
||
1749 | <source> p</source> |
||
1750 | <translation>p</translation> |
||
1751 | </message> |
||
1752 | <message> |
||
391 | Franz | 1753 | <source>&Between:</source> |
1754 | <translation>&Между:</translation> |
||
131 | Franz | 1755 | </message> |
1756 | <message> |
||
391 | Franz | 1757 | <source>&Do Not Change</source> |
1758 | <translation>&Не изменять</translation> |
||
131 | Franz | 1759 | </message> |
1760 | <message> |
||
391 | Franz | 1761 | <source>A&lign</source> |
1762 | <translation>В&ыровнять</translation> |
||
131 | Franz | 1763 | </message> |
341 | Franz | 1764 | <message> |
391 | Franz | 1765 | <source>Di&splacement</source> |
1766 | <translation>&Смещение</translation> |
||
341 | Franz | 1767 | </message> |
1768 | <message> |
||
391 | Franz | 1769 | <source>Distribute &Evenly</source> |
1770 | <translation>Распределить ра&вномерно</translation> |
||
341 | Franz | 1771 | </message> |
1772 | <message> |
||
391 | Franz | 1773 | <source>Bet&ween:</source> |
1774 | <translation>&Между:</translation> |
||
341 | Franz | 1775 | </message> |
351 | Franz | 1776 | <message> |
391 | Franz | 1777 | <source>Do &Not Change</source> |
1778 | <translation>Не &изменять</translation> |
||
351 | Franz | 1779 | </message> |
1780 | <message> |
||
391 | Franz | 1781 | <source>Al&ign</source> |
1782 | <translation>Выр&овнять</translation> |
||
351 | Franz | 1783 | </message> |
1784 | <message> |
||
391 | Franz | 1785 | <source>Dis&placement</source> |
1786 | <translation>Смеще&ние</translation> |
||
351 | Franz | 1787 | </message> |
1788 | <message> |
||
391 | Franz | 1789 | <source> pt</source> |
1790 | <translation>pt</translation> |
||
351 | Franz | 1791 | </message> |
1792 | <message> |
||
391 | Franz | 1793 | <source>Distribute E&venly</source> |
1794 | <translation>Распределить р&авномерно</translation> |
||
351 | Franz | 1795 | </message> |
1796 | <message> |
||
391 | Franz | 1797 | <source>&OK</source> |
1798 | <translation>&ОК</translation> |
||
351 | Franz | 1799 | </message> |
1800 | <message> |
||
391 | Franz | 1801 | <source>&Apply</source> |
1802 | <translation>&Применить</translation> |
||
351 | Franz | 1803 | </message> |
1804 | <message> |
||
391 | Franz | 1805 | <source>&Cancel</source> |
1806 | <translation>О&тменить</translation> |
||
351 | Franz | 1807 | </message> |
131 | Franz | 1808 | </context> |
1809 | <context> |
||
262 | Franz | 1810 | <name>AlignSelect</name> |
1811 | <message> |
||
1812 | <source>Align Text Left</source> |
||
550 | fschmid | 1813 | <translation>Выключка по левой стороне</translation> |
262 | Franz | 1814 | </message> |
1815 | <message> |
||
1816 | <source>Align Text Right</source> |
||
550 | fschmid | 1817 | <translation>Выключка по правой стороне</translation> |
262 | Franz | 1818 | </message> |
1819 | <message> |
||
1820 | <source>Align Text Center</source> |
||
550 | fschmid | 1821 | <translation>Выключка по центру</translation> |
262 | Franz | 1822 | </message> |
1823 | <message> |
||
1824 | <source>Align Text Justified</source> |
||
550 | fschmid | 1825 | <translation>Выключка по ширине</translation> |
262 | Franz | 1826 | </message> |
1827 | <message> |
||
1828 | <source>Align Text Forced Justified</source> |
||
550 | fschmid | 1829 | <translation>Принудительная выключка по ширине</translation> |
262 | Franz | 1830 | </message> |
1831 | </context> |
||
1832 | <context> |
||
131 | Franz | 1833 | <name>Annot</name> |
1834 | <message> |
||
1835 | <source>Field Properties</source> |
||
1836 | <translation>Свойства поля</translation> |
||
1837 | </message> |
||
1838 | <message> |
||
1839 | <source>Type:</source> |
||
1840 | <translation>Тип:</translation> |
||
1841 | </message> |
||
1842 | <message> |
||
1843 | <source>Button</source> |
||
1844 | <translation>Кнопка</translation> |
||
1845 | </message> |
||
1846 | <message> |
||
1847 | <source>Text Field</source> |
||
1848 | <translation>Текстовое поле</translation> |
||
1849 | </message> |
||
1850 | <message> |
||
1851 | <source>Check Box</source> |
||
1852 | <translation>Флажок</translation> |
||
1853 | </message> |
||
1854 | <message> |
||
1855 | <source>Combo Box</source> |
||
399 | Franz | 1856 | <translation>Раскрывающийся список</translation> |
131 | Franz | 1857 | </message> |
1858 | <message> |
||
1859 | <source>List Box</source> |
||
1860 | <translation>Список</translation> |
||
1861 | </message> |
||
1862 | <message> |
||
1863 | <source>Properties</source> |
||
1864 | <translation>Свойства</translation> |
||
1865 | </message> |
||
1866 | <message> |
||
1867 | <source>Name:</source> |
||
1868 | <translation>Имя:</translation> |
||
1869 | </message> |
||
1870 | <message> |
||
1871 | <source>Tool-Tip:</source> |
||
1872 | <translation>Подсказка:</translation> |
||
1873 | </message> |
||
1874 | <message> |
||
1875 | <source>Text</source> |
||
1876 | <translation>Текст</translation> |
||
1877 | </message> |
||
1878 | <message> |
||
1879 | <source>Border</source> |
||
1880 | <translation>Граница</translation> |
||
1881 | </message> |
||
1882 | <message> |
||
1883 | <source>Color:</source> |
||
1884 | <translation>Цвет:</translation> |
||
1885 | </message> |
||
1886 | <message> |
||
1887 | <source>None</source> |
||
1888 | <translation>Не задано</translation> |
||
1889 | </message> |
||
1890 | <message> |
||
1891 | <source>Width:</source> |
||
1892 | <translation>Ширина:</translation> |
||
1893 | </message> |
||
1894 | <message> |
||
1895 | <source>Thin</source> |
||
1896 | <translation>Тонкая</translation> |
||
1897 | </message> |
||
1898 | <message> |
||
1899 | <source>Normal</source> |
||
1900 | <translation>Нормальная</translation> |
||
1901 | </message> |
||
1902 | <message> |
||
1903 | <source>Wide</source> |
||
1904 | <translation>Широкая</translation> |
||
1905 | </message> |
||
1906 | <message> |
||
1907 | <source>Style:</source> |
||
1908 | <translation>Стиль:</translation> |
||
1909 | </message> |
||
1910 | <message> |
||
1911 | <source>Solid</source> |
||
1912 | <translation>Сплошная</translation> |
||
1913 | </message> |
||
1914 | <message> |
||
1915 | <source>Dashed</source> |
||
1916 | <translation>Пунктирная</translation> |
||
1917 | </message> |
||
1918 | <message> |
||
1919 | <source>Underline</source> |
||
1920 | <translation>Подчёркнутая</translation> |
||
1921 | </message> |
||
1922 | <message> |
||
1923 | <source>Beveled</source> |
||
1924 | <translation>С фаской</translation> |
||
1925 | </message> |
||
1926 | <message> |
||
1927 | <source>Inset</source> |
||
391 | Franz | 1928 | <translation>Втяжка</translation> |
131 | Franz | 1929 | </message> |
1930 | <message> |
||
1931 | <source>Other</source> |
||
1932 | <translation>Другое</translation> |
||
1933 | </message> |
||
1934 | <message> |
||
1935 | <source>Read Only</source> |
||
1936 | <translation>Только для чтения</translation> |
||
1937 | </message> |
||
1938 | <message> |
||
1939 | <source>Required</source> |
||
1940 | <translation>Необходимо</translation> |
||
1941 | </message> |
||
1942 | <message> |
||
1943 | <source>Don't Export Value</source> |
||
1944 | <translation>Не экспортировать значение</translation> |
||
1945 | </message> |
||
1946 | <message> |
||
1947 | <source>Visibility:</source> |
||
1948 | <translation>Видимость:</translation> |
||
1949 | </message> |
||
1950 | <message> |
||
1951 | <source>Visible</source> |
||
1952 | <translation>Видимо</translation> |
||
1953 | </message> |
||
1954 | <message> |
||
1955 | <source>Hidden</source> |
||
1956 | <translation>Скрыто</translation> |
||
1957 | </message> |
||
1958 | <message> |
||
1959 | <source>No Print</source> |
||
1960 | <translation>Не печатается</translation> |
||
1961 | </message> |
||
1962 | <message> |
||
1963 | <source>No View</source> |
||
1964 | <translation>Не видно на экране</translation> |
||
1965 | </message> |
||
1966 | <message> |
||
1967 | <source>Appearance</source> |
||
1968 | <translation>Внешний вид</translation> |
||
1969 | </message> |
||
1970 | <message> |
||
1971 | <source>Text for Button Down</source> |
||
1972 | <translation>Текст нажатой кнопки</translation> |
||
1973 | </message> |
||
1974 | <message> |
||
1975 | <source>Text for Roll Over</source> |
||
1976 | <translation>Текст для Roll Over</translation> |
||
1977 | </message> |
||
1978 | <message> |
||
1979 | <source>Icons</source> |
||
1980 | <translation>Пиктограммы</translation> |
||
1981 | </message> |
||
1982 | <message> |
||
1983 | <source>Use Icons</source> |
||
1984 | <translation>Использовать пиктограммы</translation> |
||
1985 | </message> |
||
1986 | <message> |
||
1987 | <source>Remove</source> |
||
1988 | <translation>Удалить</translation> |
||
1989 | </message> |
||
1990 | <message> |
||
1991 | <source>Pressed</source> |
||
1992 | <translation>Нажато</translation> |
||
1993 | </message> |
||
1994 | <message> |
||
1995 | <source>Roll Over</source> |
||
159 | Franz | 1996 | <translation>Roll Over</translation> |
131 | Franz | 1997 | </message> |
1998 | <message> |
||
1999 | <source>Icon Placement...</source> |
||
2000 | <translation>Расположение...</translation> |
||
2001 | </message> |
||
2002 | <message> |
||
2003 | <source>Highlight</source> |
||
2004 | <translation>В фокусе</translation> |
||
2005 | </message> |
||
2006 | <message> |
||
2007 | <source>Invert</source> |
||
2008 | <translation>Инвертировано</translation> |
||
2009 | </message> |
||
2010 | <message> |
||
2011 | <source>Outlined</source> |
||
2012 | <translation>Обведено</translation> |
||
2013 | </message> |
||
2014 | <message> |
||
2015 | <source>Push</source> |
||
2016 | <translation>Нажато</translation> |
||
2017 | </message> |
||
2018 | <message> |
||
2019 | <source>Multi-Line</source> |
||
2020 | <translation>Многострочное</translation> |
||
2021 | </message> |
||
2022 | <message> |
||
2023 | <source>Password</source> |
||
2024 | <translation>Пароль</translation> |
||
2025 | </message> |
||
2026 | <message> |
||
2027 | <source>Limit of</source> |
||
2028 | <translation>Символов не более</translation> |
||
2029 | </message> |
||
2030 | <message> |
||
2031 | <source>Characters</source> |
||
290 | Franz | 2032 | <translation>Символы</translation> |
131 | Franz | 2033 | </message> |
2034 | <message> |
||
2035 | <source>Do Not Scroll</source> |
||
2036 | <translation>Без прокрутки</translation> |
||
2037 | </message> |
||
2038 | <message> |
||
2039 | <source>Do Not Spell Check</source> |
||
2040 | <translation>Без проверки орфографии</translation> |
||
2041 | </message> |
||
2042 | <message> |
||
2043 | <source>Check Style:</source> |
||
2044 | <translation>Стиль флажка:</translation> |
||
2045 | </message> |
||
2046 | <message> |
||
2047 | <source>Check</source> |
||
2048 | <translation>Галочка</translation> |
||
2049 | </message> |
||
2050 | <message> |
||
2051 | <source>Cross</source> |
||
2052 | <translation>Крестик</translation> |
||
2053 | </message> |
||
2054 | <message> |
||
2055 | <source>Diamond</source> |
||
2056 | <translation>Ромб</translation> |
||
2057 | </message> |
||
2058 | <message> |
||
2059 | <source>Circle</source> |
||
2060 | <translation>Круг</translation> |
||
2061 | </message> |
||
2062 | <message> |
||
2063 | <source>Star</source> |
||
2064 | <translation>Звезда</translation> |
||
2065 | </message> |
||
2066 | <message> |
||
2067 | <source>Square</source> |
||
2068 | <translation>Квадрат</translation> |
||
2069 | </message> |
||
2070 | <message> |
||
2071 | <source>Default is Checked</source> |
||
399 | Franz | 2072 | <translation>По умолчанию включён</translation> |
131 | Franz | 2073 | </message> |
2074 | <message> |
||
2075 | <source>Editable</source> |
||
2076 | <translation>Редактируем</translation> |
||
2077 | </message> |
||
2078 | <message> |
||
2079 | <source>Options</source> |
||
2080 | <translation>Параметры</translation> |
||
2081 | </message> |
||
2082 | <message> |
||
2083 | <source>Java Script</source> |
||
2084 | <translation>Java Script</translation> |
||
2085 | </message> |
||
2086 | <message> |
||
2087 | <source>Go To</source> |
||
2088 | <translation>Перейти</translation> |
||
2089 | </message> |
||
2090 | <message> |
||
2091 | <source>Submit Form</source> |
||
399 | Franz | 2092 | <translation>Отправить форму</translation> |
131 | Franz | 2093 | </message> |
2094 | <message> |
||
2095 | <source>Reset Form</source> |
||
399 | Franz | 2096 | <translation>Сбросить введённые данные</translation> |
131 | Franz | 2097 | </message> |
2098 | <message> |
||
2099 | <source>Import Data</source> |
||
2100 | <translation>Импортировать данные</translation> |
||
2101 | </message> |
||
2102 | <message> |
||
2103 | <source>Event:</source> |
||
2104 | <translation>Событие:</translation> |
||
2105 | </message> |
||
2106 | <message> |
||
2107 | <source>Mouse Up</source> |
||
2108 | <translation>Mouse Up</translation> |
||
2109 | </message> |
||
2110 | <message> |
||
2111 | <source>Mouse Down</source> |
||
2112 | <translation>Mouse Down</translation> |
||
2113 | </message> |
||
2114 | <message> |
||
2115 | <source>Mouse Enter</source> |
||
2116 | <translation>Mouse Enter</translation> |
||
2117 | </message> |
||
2118 | <message> |
||
2119 | <source>Mouse Exit</source> |
||
2120 | <translation>Mouse Exit</translation> |
||
2121 | </message> |
||
2122 | <message> |
||
2123 | <source>On Focus</source> |
||
2124 | <translation>On Focus</translation> |
||
2125 | </message> |
||
2126 | <message> |
||
2127 | <source>On Blur</source> |
||
2128 | <translation>On Blur</translation> |
||
2129 | </message> |
||
2130 | <message> |
||
2131 | <source>Script:</source> |
||
2132 | <translation>Сценарий:</translation> |
||
2133 | </message> |
||
2134 | <message> |
||
2135 | <source>Edit...</source> |
||
2136 | <translation>Изменить...</translation> |
||
2137 | </message> |
||
2138 | <message> |
||
2139 | <source>Submit to URL:</source> |
||
2140 | <translation>Передать на URL</translation> |
||
2141 | </message> |
||
2142 | <message> |
||
2143 | <source>Submit Data as HTML</source> |
||
2144 | <translation>Переслать данные как HTML</translation> |
||
2145 | </message> |
||
2146 | <message> |
||
2147 | <source>Import Data from:</source> |
||
2148 | <translation>Откуда взять данные:</translation> |
||
2149 | </message> |
||
2150 | <message> |
||
2151 | <source>Destination</source> |
||
2152 | <translation>Цель</translation> |
||
2153 | </message> |
||
2154 | <message> |
||
2155 | <source>To File:</source> |
||
2156 | <translation>В файл:</translation> |
||
2157 | </message> |
||
2158 | <message> |
||
2159 | <source>Change...</source> |
||
2160 | <translation>Изменить...</translation> |
||
2161 | </message> |
||
2162 | <message> |
||
2163 | <source>Page:</source> |
||
2164 | <translation>Страница:</translation> |
||
2165 | </message> |
||
2166 | <message> |
||
2167 | <source>X-Pos:</source> |
||
2168 | <translation>X-Поз:</translation> |
||
2169 | </message> |
||
2170 | <message> |
||
2171 | <source> pt</source> |
||
2172 | <translation>pt</translation> |
||
2173 | </message> |
||
2174 | <message> |
||
2175 | <source>Y-Pos:</source> |
||
2176 | <translation>Y-Поз:</translation> |
||
2177 | </message> |
||
2178 | <message> |
||
2179 | <source>Action</source> |
||
2180 | <translation>Действие</translation> |
||
2181 | </message> |
||
2182 | <message> |
||
2183 | <source>Field is formatted as:</source> |
||
2184 | <translation>Формат поля:</translation> |
||
2185 | </message> |
||
2186 | <message> |
||
2187 | <source>Plain</source> |
||
2188 | <translation>Общий</translation> |
||
2189 | </message> |
||
2190 | <message> |
||
2191 | <source>Number</source> |
||
2192 | <translation>Числовой</translation> |
||
2193 | </message> |
||
2194 | <message> |
||
2195 | <source>Percentage</source> |
||
2196 | <translation>Проценты</translation> |
||
2197 | </message> |
||
2198 | <message> |
||
2199 | <source>Date</source> |
||
2200 | <translation>Дата</translation> |
||
2201 | </message> |
||
2202 | <message> |
||
2203 | <source>Time</source> |
||
2204 | <translation>Время</translation> |
||
2205 | </message> |
||
2206 | <message> |
||
2207 | <source>Custom</source> |
||
2208 | <translation>Другой</translation> |
||
2209 | </message> |
||
2210 | <message> |
||
2211 | <source>Number Format</source> |
||
2212 | <translation>Числовой формат</translation> |
||
2213 | </message> |
||
2214 | <message> |
||
2215 | <source>Decimals:</source> |
||
2216 | <translation>Цифр в дробной части:</translation> |
||
2217 | </message> |
||
2218 | <message> |
||
2219 | <source>Use Currency Symbol</source> |
||
2220 | <translation>Использовать символ валюты</translation> |
||
2221 | </message> |
||
2222 | <message> |
||
2223 | <source>Prepend Currency Symbol</source> |
||
2224 | <translation>Знак валюты перед числом</translation> |
||
2225 | </message> |
||
2226 | <message> |
||
2227 | <source>Formatting</source> |
||
2228 | <translation>Формат</translation> |
||
2229 | </message> |
||
2230 | <message> |
||
2231 | <source>Percent Format</source> |
||
2232 | <translation>Процентный формат</translation> |
||
2233 | </message> |
||
2234 | <message> |
||
2235 | <source>Date Format</source> |
||
2236 | <translation>Формат даты</translation> |
||
2237 | </message> |
||
2238 | <message> |
||
2239 | <source>Time Format</source> |
||
2240 | <translation>Формат времени</translation> |
||
2241 | </message> |
||
2242 | <message> |
||
2243 | <source>Custom Scripts</source> |
||
2244 | <translation>Другие сценарии</translation> |
||
2245 | </message> |
||
2246 | <message> |
||
2247 | <source>Format:</source> |
||
2248 | <translation>Формат:</translation> |
||
2249 | </message> |
||
2250 | <message> |
||
2251 | <source>Keystroke:</source> |
||
399 | Franz | 2252 | <translation>Комбинация клавиш:</translation> |
131 | Franz | 2253 | </message> |
2254 | <message> |
||
2255 | <source>Format</source> |
||
2256 | <translation>Формат</translation> |
||
2257 | </message> |
||
2258 | <message> |
||
2259 | <source>Value is not validated</source> |
||
2260 | <translation>Значение не проверено</translation> |
||
2261 | </message> |
||
2262 | <message> |
||
2263 | <source>Value must be greater than or equal to:</source> |
||
2264 | <translation>Значение должно быть больше или равно:</translation> |
||
2265 | </message> |
||
2266 | <message> |
||
2267 | <source>and less or equal to:</source> |
||
2268 | <translation>и меньше или равно:</translation> |
||
2269 | </message> |
||
2270 | <message> |
||
2271 | <source>Custom validate script:</source> |
||
2272 | <translation>Другой сценарий проверки:</translation> |
||
2273 | </message> |
||
2274 | <message> |
||
2275 | <source>Validate</source> |
||
2276 | <translation>Проверка</translation> |
||
2277 | </message> |
||
2278 | <message> |
||
2279 | <source>Value is not calculated</source> |
||
2280 | <translation>Значение не вычислено</translation> |
||
2281 | </message> |
||
2282 | <message> |
||
2283 | <source>Value is the</source> |
||
2284 | <translation>Значение является</translation> |
||
2285 | </message> |
||
2286 | <message> |
||
2287 | <source>sum</source> |
||
2288 | <translation>суммой</translation> |
||
2289 | </message> |
||
2290 | <message> |
||
2291 | <source>product</source> |
||
2292 | <translation>произведением</translation> |
||
2293 | </message> |
||
2294 | <message> |
||
2295 | <source>average</source> |
||
2296 | <translation>средним арифметическим</translation> |
||
2297 | </message> |
||
2298 | <message> |
||
2299 | <source>minimum</source> |
||
2300 | <translation>минимальным из</translation> |
||
2301 | </message> |
||
2302 | <message> |
||
2303 | <source>maximum</source> |
||
2304 | <translation>максимальным из</translation> |
||
2305 | </message> |
||
2306 | <message> |
||
2307 | <source>of the following fields:</source> |
||
2308 | <translation>следующих полей:</translation> |
||
2309 | </message> |
||
2310 | <message> |
||
2311 | <source>Pick...</source> |
||
2312 | <translation>Выбрать</translation> |
||
2313 | </message> |
||
2314 | <message> |
||
2315 | <source>Custom calculation script:</source> |
||
2316 | <translation>Другой сценарий для вычисления:</translation> |
||
2317 | </message> |
||
2318 | <message> |
||
2319 | <source>Calculate</source> |
||
2320 | <translation>Вычисления</translation> |
||
2321 | </message> |
||
2322 | <message> |
||
2323 | <source>OK</source> |
||
2324 | <translation>ОК</translation> |
||
2325 | </message> |
||
2326 | <message> |
||
2327 | <source>Cancel</source> |
||
290 | Franz | 2328 | <translation>Отменить</translation> |
131 | Franz | 2329 | </message> |
2330 | <message> |
||
2331 | <source>Enter a comma separated list of fields here</source> |
||
2332 | <translation>Введите разделённый запятыми список полей</translation> |
||
2333 | </message> |
||
2334 | <message> |
||
2335 | <source>You need at least the Icon for Normal to use Icons for Buttons</source> |
||
399 | Franz | 2336 | <translation>Для использования пиктограмм в кнопках необходима, |
2337 | как минимум, пиктограмма для Normal</translation> |
||
131 | Franz | 2338 | </message> |
2339 | <message> |
||
2340 | <source>Open</source> |
||
2341 | <translation>Открыть</translation> |
||
2342 | </message> |
||
2343 | <message> |
||
2344 | <source>Images (*.tif *.png *.jpg *.xpm);;Postscript (*.eps);;All Files (*)</source> |
||
2345 | <translation>Изображения (*.tif *.png *.jpg *.xpm);;Файлы Postscript (*.eps);;Все файлы (*)</translation> |
||
2346 | </message> |
||
2347 | <message> |
||
2348 | <source>Example:</source> |
||
2349 | <translation>Пример:</translation> |
||
2350 | </message> |
||
2351 | <message> |
||
2352 | <source>Selection Change</source> |
||
391 | Franz | 2353 | <translation>Изменение выделения</translation> |
131 | Franz | 2354 | </message> |
2355 | <message> |
||
351 | Franz | 2356 | <source>Font for use with PDF 1.3:</source> |
391 | Franz | 2357 | <translation>Шрифт для использования с PDF 1.3:</translation> |
351 | Franz | 2358 | </message> |
2359 | <message> |
||
2360 | <source>Flag is ignored for PDF 1.3</source> |
||
391 | Franz | 2361 | <translation>Флажок игнорируется для PDF 1.3 |
2362 | </translation> |
||
351 | Franz | 2363 | </message> |
2364 | <message> |
||
364 | Franz | 2365 | <source>PDF Files (*.pdf);;All Files (*)</source> |
391 | Franz | 2366 | <translation>PDF-документы (*.pdf);;Все файлы (*)</translation> |
351 | Franz | 2367 | </message> |
131 | Franz | 2368 | </context> |
2369 | <context> |
||
2370 | <name>Annota</name> |
||
2371 | <message> |
||
2372 | <source>Annotation Properties</source> |
||
2373 | <translation>Свойства аннотации</translation> |
||
2374 | </message> |
||
2375 | <message> |
||
2376 | <source>Text</source> |
||
2377 | <translation>Текст</translation> |
||
2378 | </message> |
||
2379 | <message> |
||
2380 | <source>Link</source> |
||
391 | Franz | 2381 | <translation>Ссылка</translation> |
131 | Franz | 2382 | </message> |
2383 | <message> |
||
2384 | <source>External Link</source> |
||
2385 | <translation>Внешняя ссылка</translation> |
||
2386 | </message> |
||
2387 | <message> |
||
2388 | <source>External Web-Link</source> |
||
399 | Franz | 2389 | <translation>Внешняя веб-ссылка</translation> |
131 | Franz | 2390 | </message> |
2391 | <message> |
||
2392 | <source>Destination</source> |
||
2393 | <translation>Цель</translation> |
||
2394 | </message> |
||
2395 | <message> |
||
2396 | <source> pt</source> |
||
2397 | <translation>pt</translation> |
||
2398 | </message> |
||
2399 | <message> |
||
2400 | <source>Open</source> |
||
2401 | <translation>Открыть</translation> |
||
2402 | </message> |
||
2403 | <message> |
||
2404 | <source>PDF-Documents (*.pdf);;All Files (*)</source> |
||
2405 | <translation>PDF-документы (*.pdf);;Все файлы (*)</translation> |
||
2406 | </message> |
||
454 | fschmid | 2407 | <message> |
2408 | <source>&Type:</source> |
||
473 | fschmid | 2409 | <translation>&Тип:</translation> |
454 | fschmid | 2410 | </message> |
2411 | <message> |
||
2412 | <source>C&hange...</source> |
||
473 | fschmid | 2413 | <translation>Из&менить...</translation> |
454 | fschmid | 2414 | </message> |
2415 | <message> |
||
2416 | <source>&Page:</source> |
||
473 | fschmid | 2417 | <translation>С&траница:</translation> |
454 | fschmid | 2418 | </message> |
2419 | <message> |
||
2420 | <source>&X-Pos</source> |
||
473 | fschmid | 2421 | <translation>&X-Поз.</translation> |
454 | fschmid | 2422 | </message> |
2423 | <message> |
||
2424 | <source>&Y-Pos:</source> |
||
473 | fschmid | 2425 | <translation>&Y-Поз:</translation> |
454 | fschmid | 2426 | </message> |
532 | cbradney | 2427 | <message> |
2428 | <source>&OK</source> |
||
550 | fschmid | 2429 | <translation>&ОК</translation> |
532 | cbradney | 2430 | </message> |
2431 | <message> |
||
2432 | <source>&Cancel</source> |
||
550 | fschmid | 2433 | <translation>О&тменить</translation> |
532 | cbradney | 2434 | </message> |
131 | Franz | 2435 | </context> |
2436 | <context> |
||
2437 | <name>ApplyT</name> |
||
2438 | <message> |
||
2439 | <source>Apply Template</source> |
||
2440 | <translation>Применить шаблон</translation> |
||
2441 | </message> |
||
2442 | <message> |
||
2443 | <source>Normal</source> |
||
2444 | <translation>Normal</translation> |
||
2445 | </message> |
||
2446 | <message> |
||
391 | Franz | 2447 | <source>&Template:</source> |
2448 | <translation>&Шаблон:</translation> |
||
131 | Franz | 2449 | </message> |
2450 | <message> |
||
391 | Franz | 2451 | <source>Apply to &Current Page</source> |
2452 | <translation>Применить к &текущей странице</translation> |
||
131 | Franz | 2453 | </message> |
2454 | <message> |
||
391 | Franz | 2455 | <source>Apply to all &even Pages</source> |
2456 | <translation>Применить ко всем &чётным страницам</translation> |
||
131 | Franz | 2457 | </message> |
2458 | <message> |
||
391 | Franz | 2459 | <source>Apply to all &odd Pages</source> |
2460 | <translation>Применить ко всем &нечётным страницам</translation> |
||
131 | Franz | 2461 | </message> |
159 | Franz | 2462 | <message> |
341 | Franz | 2463 | <source>Apply from &Page:</source> |
391 | Franz | 2464 | <translation>На&чиная со страницы:</translation> |
341 | Franz | 2465 | </message> |
2466 | <message> |
||
2467 | <source>To:</source> |
||
391 | Franz | 2468 | <translation>До:</translation> |
341 | Franz | 2469 | </message> |
2470 | <message> |
||
2471 | <source>&OK</source> |
||
391 | Franz | 2472 | <translation>&ОК</translation> |
341 | Franz | 2473 | </message> |
2474 | <message> |
||
2475 | <source>&Cancel</source> |
||
391 | Franz | 2476 | <translation>О&тменить</translation> |
341 | Franz | 2477 | </message> |
391 | Franz | 2478 | </context> |
2479 | <context> |
||
2480 | <name>Biblio</name> |
||
131 | Franz | 2481 | <message> |
391 | Franz | 2482 | <source>Scrapbook</source> |
2483 | <translation>Запасник</translation> |
||
131 | Franz | 2484 | </message> |
2485 | <message> |
||
2486 | <source>Scrapbooks (*.scs);;All Files (*)</source> |
||
2487 | <translation>Запасники (*.scs);;Все файлы (*)</translation> |
||
2488 | </message> |
||
2489 | <message> |
||
2490 | <source>Delete</source> |
||
2491 | <translation>Удалить</translation> |
||
2492 | </message> |
||
2493 | <message> |
||
2494 | <source>Object</source> |
||
2495 | <translation>Объект</translation> |
||
2496 | </message> |
||
262 | Franz | 2497 | <message> |
2498 | <source>New Entry</source> |
||
2499 | <translation>Новая запись</translation> |
||
2500 | </message> |
||
310 | Franz | 2501 | <message> |
2502 | <source>Rename</source> |
||
311 | Franz | 2503 | <translation>Переименовать</translation> |
310 | Franz | 2504 | </message> |
2505 | <message> |
||
2506 | <source>Warning</source> |
||
311 | Franz | 2507 | <translation>Предупреждение</translation> |
310 | Franz | 2508 | </message> |
2509 | <message> |
||
2510 | <source>Name "%1" isn't unique. |
||
2511 | Please choose another.</source> |
||
311 | Franz | 2512 | <translation>Имя "%1" уже использовано. |
310 | Franz | 2513 | Выберите другое.</translation> |
2514 | </message> |
||
2515 | <message> |
||
2516 | <source>OK</source> |
||
311 | Franz | 2517 | <translation>ОК</translation> |
310 | Franz | 2518 | </message> |
341 | Franz | 2519 | <message> |
2520 | <source>&New</source> |
||
391 | Franz | 2521 | <translation>&Новый</translation> |
341 | Franz | 2522 | </message> |
2523 | <message> |
||
2524 | <source>&Load...</source> |
||
391 | Franz | 2525 | <translation>&Открыть...</translation> |
341 | Franz | 2526 | </message> |
2527 | <message> |
||
2528 | <source>&Save</source> |
||
391 | Franz | 2529 | <translation>&Сохранить</translation> |
341 | Franz | 2530 | </message> |
2531 | <message> |
||
2532 | <source>Save &As...</source> |
||
391 | Franz | 2533 | <translation>Сохранить &как...</translation> |
341 | Franz | 2534 | </message> |
2535 | <message> |
||
2536 | <source>&Close</source> |
||
391 | Franz | 2537 | <translation>&Закрыть</translation> |
341 | Franz | 2538 | </message> |
2539 | <message> |
||
2540 | <source>&Small</source> |
||
391 | Franz | 2541 | <translation> |
2542 | &Небольшой</translation> |
||
341 | Franz | 2543 | </message> |
2544 | <message> |
||
2545 | <source>&Medium</source> |
||
391 | Franz | 2546 | <translation>&Средний</translation> |
341 | Franz | 2547 | </message> |
2548 | <message> |
||
2549 | <source>&Large</source> |
||
391 | Franz | 2550 | <translation>&Большой</translation> |
341 | Franz | 2551 | </message> |
2552 | <message> |
||
2553 | <source>&File</source> |
||
391 | Franz | 2554 | <translation>&Файл</translation> |
341 | Franz | 2555 | </message> |
2556 | <message> |
||
2557 | <source>&Preview</source> |
||
391 | Franz | 2558 | <translation>&Предпросмотр</translation> |
341 | Franz | 2559 | </message> |
351 | Franz | 2560 | <message> |
2561 | <source>&Name:</source> |
||
391 | Franz | 2562 | <translation>&Имя:</translation> |
351 | Franz | 2563 | </message> |
131 | Franz | 2564 | </context> |
2565 | <context> |
||
2566 | <name>BookMView</name> |
||
2567 | <message> |
||
2568 | <source>Bookmarks</source> |
||
2569 | <translation>Закладки</translation> |
||
2570 | </message> |
||
2571 | <message> |
||
2572 | <source>Move Bookmark</source> |
||
2573 | <translation>Переместить закладку</translation> |
||
2574 | </message> |
||
2575 | <message> |
||
2576 | <source>Insert Bookmark</source> |
||
2577 | <translation>Вставить закладку</translation> |
||
2578 | </message> |
||
2579 | <message> |
||
2580 | <source>Cancel</source> |
||
2581 | <translation>Отменить</translation> |
||
2582 | </message> |
||
2583 | </context> |
||
2584 | <context> |
||
2585 | <name>BookPalette</name> |
||
2586 | <message> |
||
2587 | <source>Bookmarks</source> |
||
2588 | <translation>Закладки</translation> |
||
2589 | </message> |
||
2590 | </context> |
||
2591 | <context> |
||
2592 | <name>ButtonIcon</name> |
||
2593 | <message> |
||
2594 | <source>Icon Placement</source> |
||
2595 | <translation>Расположение</translation> |
||
2596 | </message> |
||
2597 | <message> |
||
2598 | <source>Layout:</source> |
||
2599 | <translation>Способ:</translation> |
||
2600 | </message> |
||
2601 | <message> |
||
2602 | <source>Caption only</source> |
||
2603 | <translation>Только название</translation> |
||
2604 | </message> |
||
2605 | <message> |
||
2606 | <source>Icon only</source> |
||
2607 | <translation>Только пиктограмма</translation> |
||
2608 | </message> |
||
2609 | <message> |
||
2610 | <source>Caption below Icon</source> |
||
2611 | <translation>Название под пиктограммой</translation> |
||
2612 | </message> |
||
2613 | <message> |
||
2614 | <source>Caption above Icon</source> |
||
2615 | <translation>Название над пиктограммой</translation> |
||
2616 | </message> |
||
2617 | <message> |
||
2618 | <source>Caption right to Icon</source> |
||
2619 | <translation>Название справа от пиктограммы</translation> |
||
2620 | </message> |
||
2621 | <message> |
||
2622 | <source>Caption left to Icon</source> |
||
2623 | <translation>Название слева от пиктограммы</translation> |
||
2624 | </message> |
||
2625 | <message> |
||
2626 | <source>Caption overlays Icon</source> |
||
2627 | <translation>Название поверх пиктограммы</translation> |
||
2628 | </message> |
||
2629 | <message> |
||
2630 | <source>Scale:</source> |
||
2631 | <translation>Масштабировать:</translation> |
||
2632 | </message> |
||
2633 | <message> |
||
2634 | <source>Always</source> |
||
2635 | <translation>Всегда</translation> |
||
2636 | </message> |
||
2637 | <message> |
||
2638 | <source>When Icon is too small</source> |
||
2639 | <translation>Когда пиктограмма слишком мала</translation> |
||
2640 | </message> |
||
2641 | <message> |
||
2642 | <source>When Icon is too big</source> |
||
2643 | <translation>Когда пиктограмма слишком велика</translation> |
||
2644 | </message> |
||
2645 | <message> |
||
2646 | <source>Never</source> |
||
2647 | <translation>Никогда</translation> |
||
2648 | </message> |
||
2649 | <message> |
||
2650 | <source>Scale How:</source> |
||
2651 | <translation>Как масштабировать:</translation> |
||
2652 | </message> |
||
2653 | <message> |
||
2654 | <source>Proportional</source> |
||
2655 | <translation>Пропорционально</translation> |
||
2656 | </message> |
||
2657 | <message> |
||
2658 | <source>Non Proportional</source> |
||
2659 | <translation>Непропорционально</translation> |
||
2660 | </message> |
||
2661 | <message> |
||
2662 | <source>Icon</source> |
||
2663 | <translation>Пикт.</translation> |
||
2664 | </message> |
||
2665 | <message> |
||
2666 | <source>OK</source> |
||
2667 | <translation>ОК</translation> |
||
2668 | </message> |
||
2669 | <message> |
||
2670 | <source>Cancel</source> |
||
290 | Franz | 2671 | <translation>Отменить</translation> |
131 | Franz | 2672 | </message> |
2673 | <message> |
||
2674 | <source>Reset</source> |
||
2675 | <translation>Сбросить</translation> |
||
2676 | </message> |
||
2677 | </context> |
||
2678 | <context> |
||
2679 | <name>CMSPrefs</name> |
||
2680 | <message> |
||
2681 | <source>Color Management Settings</source> |
||
2682 | <translation>Настройки управления цветом</translation> |
||
2683 | </message> |
||
2684 | <message> |
||
2685 | <source>System Profiles</source> |
||
2686 | <translation>Системные профили</translation> |
||
2687 | </message> |
||
2688 | <message> |
||
2689 | <source>Rendering Intents</source> |
||
262 | Franz | 2690 | <translation>Типы вывода</translation> |
131 | Franz | 2691 | </message> |
2692 | <message> |
||
2693 | <source>Perceptual</source> |
||
2694 | <translation>Перцепционный</translation> |
||
2695 | </message> |
||
2696 | <message> |
||
2697 | <source>Relative Colorimetric</source> |
||
2698 | <translation>Относительно колориметрический</translation> |
||
2699 | </message> |
||
2700 | <message> |
||
2701 | <source>Saturation</source> |
||
2702 | <translation>Насыщенность</translation> |
||
2703 | </message> |
||
2704 | <message> |
||
2705 | <source>Absolute Colorimetric</source> |
||
2706 | <translation>Абсолютно колориметрический</translation> |
||
2707 | </message> |
||
2708 | <message> |
||
262 | Franz | 2709 | <source>Default color profile for imported images</source> |
2710 | <translation>Стандартный цветовой профиль для |
||
2711 | импортированных изображений</translation> |
||
2712 | </message> |
||
2713 | <message> |
||
2714 | <source>Default color profile for solid colors on the page</source> |
||
2715 | <translation>Стандартный цветовой профиль |
||
2716 | для сплошных тонов на странице</translation> |
||
2717 | </message> |
||
2718 | <message> |
||
2719 | <source>Color profile that you have generated or received from the manufacturer. |
||
2720 | This profile should be specific to your monitor and not a generic profile (i.e. sRGB).</source> |
||
2721 | <translation>Цветовой профиль, созданный вами или полученный |
||
399 | Franz | 2722 | от производителя устройства. Этот должен быть |
2723 | профиль для конкретного монитора, а не общий |
||
2724 | профиль (например, sRGB).</translation> |
||
262 | Franz | 2725 | </message> |
2726 | <message> |
||
2727 | <source>Color profile for your printer model from the manufacturer. |
||
2728 | This profile should be specific to your printer and not a generic profile (i.e. sRGB).</source> |
||
2729 | <translation>Цветовой профиль для вашего принтера, созданный |
||
2730 | его производителем. Этот профиль дожен быть |
||
2731 | уникальным для вашего принтера, а не общим |
||
2732 | профилем (например, sRGB).</translation> |
||
2733 | </message> |
||
2734 | <message> |
||
2735 | <source>Black Point Compensation is a method of improving contrast in photos. |
||
2736 | It is recommended that you enable this if you have photos in your document.</source> |
||
2737 | <translation>Компенсация чёрной точки -- это метод улучшения |
||
2738 | контрастности фотографий. Его рекомендуется |
||
2739 | использовать при наличии фотографий в документе.</translation> |
||
2740 | </message> |
||
2741 | <message> |
||
2742 | <source>Default rendering intent for your monitor. Unless you know why to change it, |
||
2743 | Relative Colorimetric or Perceptual should be chosen.</source> |
||
2744 | <translation>Стандартный тип рендеринга для вашего монитора. |
||
2745 | Если вы не знаете, что это такое, выберите |
||
2746 | относительно колориметрический или перцептуальный.</translation> |
||
2747 | </message> |
||
2748 | <message> |
||
2749 | <source>Default rendering intent for your printer. Unless you know why to change it, |
||
2750 | Relative Colorimetric or Perceptual should be chosen.</source> |
||
2751 | <translation>Стандартный тип рендеринга для вашего принтера. |
||
2752 | Если вы не знаете, что это такое, выберите |
||
2753 | относительно колориметрический или перцептуальный.</translation> |
||
2754 | </message> |
||
2755 | <message> |
||
2756 | <source>Enable 'soft proofing' of how your document colors will print, |
||
2757 | based on the chosen printer profile.</source> |
||
399 | Franz | 2758 | <translation>Включить мягкий режим цветопробы вашего |
262 | Franz | 2759 | документа на основе выбранного профиля для принтера.</translation> |
2760 | </message> |
||
2761 | <message> |
||
2762 | <source>Method of showing colors on the screen which may not print properly. |
||
2763 | This requires very accurate profiles and serves only as a warning.</source> |
||
2764 | <translation>Способ отображения на экране тех цветов, которые |
||
2765 | могут быть некорректно напечатаны. Он требует очень |
||
399 | Franz | 2766 | точных профилей и предназначен лишь для предупреждения.</translation> |
262 | Franz | 2767 | </message> |
341 | Franz | 2768 | <message> |
2769 | <source>&Activate Color Management</source> |
||
391 | Franz | 2770 | <translation>&Включить управление цветом</translation> |
341 | Franz | 2771 | </message> |
2772 | <message> |
||
2773 | <source>&Pictures:</source> |
||
391 | Franz | 2774 | <translation>&Изображения:</translation> |
341 | Franz | 2775 | </message> |
2776 | <message> |
||
2777 | <source>&Solid Colors:</source> |
||
391 | Franz | 2778 | <translation>&Сплошные тона:</translation> |
341 | Franz | 2779 | </message> |
2780 | <message> |
||
2781 | <source>&Monitor:</source> |
||
391 | Franz | 2782 | <translation>&Монитор:</translation> |
341 | Franz | 2783 | </message> |
2784 | <message> |
||
2785 | <source>P&rinter:</source> |
||
391 | Franz | 2786 | <translation>&Принтер:</translation> |
341 | Franz | 2787 | </message> |
2788 | <message> |
||
2789 | <source>M&onitor:</source> |
||
391 | Franz | 2790 | <translation>М&онитор:</translation> |
341 | Franz | 2791 | </message> |
2792 | <message> |
||
2793 | <source>Pr&inter:</source> |
||
391 | Franz | 2794 | <translation>Пр&интер:</translation> |
341 | Franz | 2795 | </message> |
2796 | <message> |
||
2797 | <source>Sim&ulate Printer on the Screen</source> |
||
391 | Franz | 2798 | <translation>&Эмулировать принтер на экране</translation> |
341 | Franz | 2799 | </message> |
2800 | <message> |
||
2801 | <source>Mark Colors out of &Gamut</source> |
||
391 | Franz | 2802 | <translation>Пометить цвета вне &гаммы</translation> |
341 | Franz | 2803 | </message> |
2804 | <message> |
||
2805 | <source>Use &Blackpoint Compensation</source> |
||
391 | Franz | 2806 | <translation>Использовать компенсацию &чёрной точки</translation> |
341 | Franz | 2807 | </message> |
2808 | <message> |
||
2809 | <source>&OK</source> |
||
391 | Franz | 2810 | <translation>&ОК</translation> |
341 | Franz | 2811 | </message> |
2812 | <message> |
||
2813 | <source>&Cancel</source> |
||
391 | Franz | 2814 | <translation>О&тменить</translation> |
341 | Franz | 2815 | </message> |
131 | Franz | 2816 | </context> |
2817 | <context> |
||
2818 | <name>CMYKChoose</name> |
||
2819 | <message> |
||
2820 | <source>Edit Color</source> |
||
2821 | <translation>Изменить цвет</translation> |
||
2822 | </message> |
||
2823 | <message> |
||
2824 | <source>CMYK</source> |
||
2825 | <translation>CMYK</translation> |
||
2826 | </message> |
||
2827 | <message> |
||
2828 | <source>RGB</source> |
||
2829 | <translation>RGB</translation> |
||
2830 | </message> |
||
2831 | <message> |
||
2832 | <source>Web Safe RGB</source> |
||
2833 | <translation>RGB для web</translation> |
||
2834 | </message> |
||
2835 | <message> |
||
2836 | <source>New</source> |
||
2837 | <translation>Новый</translation> |
||
2838 | </message> |
||
2839 | <message> |
||
2840 | <source>Old</source> |
||
2841 | <translation>Старый</translation> |
||
2842 | </message> |
||
2843 | <message> |
||
2844 | <source>OK</source> |
||
2845 | <translation>ОК</translation> |
||
2846 | </message> |
||
2847 | <message> |
||
2848 | <source>C:</source> |
||
2849 | <translation>C:</translation> |
||
2850 | </message> |
||
2851 | <message> |
||
2852 | <source>M:</source> |
||
2853 | <translation>M:</translation> |
||
2854 | </message> |
||
2855 | <message> |
||
2856 | <source>Y:</source> |
||
2857 | <translation>Y:</translation> |
||
2858 | </message> |
||
2859 | <message> |
||
2860 | <source>K:</source> |
||
2861 | <translation>K:</translation> |
||
2862 | </message> |
||
2863 | <message> |
||
2864 | <source>Dynamic Color Bars</source> |
||
2865 | <translation>Динамические цветовые полосы</translation> |
||
2866 | </message> |
||
2867 | <message> |
||
2868 | <source>Static Color Bars</source> |
||
2869 | <translation>Статические цветовые полосы</translation> |
||
2870 | </message> |
||
2871 | <message> |
||
2872 | <source>R:</source> |
||
2873 | <translation>R:</translation> |
||
2874 | </message> |
||
2875 | <message> |
||
2876 | <source>G:</source> |
||
2877 | <translation>G:</translation> |
||
2878 | </message> |
||
2879 | <message> |
||
2880 | <source>B:</source> |
||
2881 | <translation>B:</translation> |
||
2882 | </message> |
||
2883 | <message> |
||
262 | Franz | 2884 | <source> %</source> |
2885 | <translation>%</translation> |
||
131 | Franz | 2886 | </message> |
262 | Franz | 2887 | <message> |
2888 | <source>Warning</source> |
||
2889 | <translation>Предупреждение</translation> |
||
2890 | </message> |
||
2891 | <message> |
||
2892 | <source>Name of the Color is not unique</source> |
||
2893 | <translation>Цвет с таким именем уже существует</translation> |
||
2894 | </message> |
||
290 | Franz | 2895 | <message> |
2896 | <source>HSV-Colormap</source> |
||
2897 | <translation>Карта цветов HSV</translation> |
||
2898 | </message> |
||
351 | Franz | 2899 | <message> |
2900 | <source>&Name:</source> |
||
391 | Franz | 2901 | <translation>&Имя:</translation> |
351 | Franz | 2902 | </message> |
2903 | <message> |
||
2904 | <source>Color &Model</source> |
||
391 | Franz | 2905 | <translation>Цветовая &модель</translation> |
351 | Franz | 2906 | </message> |
2907 | <message> |
||
2908 | <source>&OK</source> |
||
391 | Franz | 2909 | <translation>&ОК</translation> |
351 | Franz | 2910 | </message> |
2911 | <message> |
||
2912 | <source>&Cancel</source> |
||
391 | Franz | 2913 | <translation>О&тменить</translation> |
351 | Franz | 2914 | </message> |
391 | Franz | 2915 | <message> |
532 | cbradney | 2916 | <source>None</source> |
550 | fschmid | 2917 | <translation>Ничего</translation> |
532 | cbradney | 2918 | </message> |
2919 | <message> |
||
2920 | <source>You cannot create a color named "%1". |
||
2921 | It's a reserved name for transparent color</source> |
||
550 | fschmid | 2922 | <translation>Вы не можете создать цвет с именем "%1". |
2923 | Это имя зарезервировано для прозрачного цвета</translation> |
||
532 | cbradney | 2924 | </message> |
131 | Franz | 2925 | </context> |
2926 | <context> |
||
2927 | <name>Cpalette</name> |
||
2928 | <message> |
||
2929 | <source>Normal</source> |
||
2930 | <translation>Normal</translation> |
||
2931 | </message> |
||
2932 | <message> |
||
2933 | <source>Horizontal Gradient</source> |
||
2934 | <translation>Горизонтальный градиент</translation> |
||
2935 | </message> |
||
2936 | <message> |
||
2937 | <source>Vertical Gradient</source> |
||
2938 | <translation>Вертикальный градиент</translation> |
||
2939 | </message> |
||
2940 | <message> |
||
2941 | <source>Diagonal Gradient</source> |
||
2942 | <translation>Диагональный градиент</translation> |
||
2943 | </message> |
||
2944 | <message> |
||
2945 | <source>Cross Diagonal Gradient</source> |
||
2946 | <translation>Перекрёстно-диагональный градиент</translation> |
||
2947 | </message> |
||
2948 | <message> |
||
2949 | <source>Radial Gradient</source> |
||
2950 | <translation>Радиальный градиент</translation> |
||
2951 | </message> |
||
2952 | <message> |
||
2953 | <source>Opacity:</source> |
||
2954 | <translation>Непрозрачность:</translation> |
||
2955 | </message> |
||
2956 | <message> |
||
2957 | <source> %</source> |
||
2958 | <translation>%</translation> |
||
2959 | </message> |
||
2960 | <message> |
||
2961 | <source>None</source> |
||
2962 | <translation>Ничего</translation> |
||
2963 | </message> |
||
262 | Franz | 2964 | <message> |
2965 | <source>Shade:</source> |
||
2966 | <translation>Тень:</translation> |
||
2967 | </message> |
||
2968 | <message> |
||
2969 | <source>Edit Line Color Properties</source> |
||
2970 | <translation>Изменить свойства цвета линии</translation> |
||
2971 | </message> |
||
2972 | <message> |
||
2973 | <source>Edit Fill Color Properties</source> |
||
392 | Franz | 2974 | <translation>Изменить свойства заливки линии</translation> |
262 | Franz | 2975 | </message> |
2976 | <message> |
||
2977 | <source>Saturation of color</source> |
||
2978 | <translation>Насыщение цвета</translation> |
||
2979 | </message> |
||
2980 | <message> |
||
2981 | <source>Normal or gradient fill method</source> |
||
392 | Franz | 2982 | <translation>Обычная или градиентная заливка</translation> |
262 | Franz | 2983 | </message> |
2984 | <message> |
||
2985 | <source>Set the transparency for the color selected</source> |
||
2986 | <translation>Установить прозрачность для выбранного цвета</translation> |
||
2987 | </message> |
||
2988 | <message> |
||
2989 | <source>Color of selected object</source> |
||
2990 | <translation>Цвет выбранного объекта</translation> |
||
2991 | </message> |
||
310 | Franz | 2992 | <message> |
2993 | <source>Free linear Gradient</source> |
||
311 | Franz | 2994 | <translation>Линейный градиент</translation> |
310 | Franz | 2995 | </message> |
2996 | <message> |
||
2997 | <source>Free radial Gradient</source> |
||
311 | Franz | 2998 | <translation>Радиальный градиент</translation> |
310 | Franz | 2999 | </message> |
3000 | <message> |
||
3001 | <source>X1:</source> |
||
311 | Franz | 3002 | <translation>X1:</translation> |
310 | Franz | 3003 | </message> |
3004 | <message> |
||
3005 | <source>Y1:</source> |
||
311 | Franz | 3006 | <translation>Y1:</translation> |
310 | Franz | 3007 | </message> |
3008 | <message> |
||
3009 | <source> pt</source> |
||
311 | Franz | 3010 | <translation>pt</translation> |
310 | Franz | 3011 | </message> |
3012 | <message> |
||
3013 | <source>X2:</source> |
||
311 | Franz | 3014 | <translation>X2:</translation> |
310 | Franz | 3015 | </message> |
3016 | <message> |
||
3017 | <source>Y2:</source> |
||
311 | Franz | 3018 | <translation>Y2:</translation> |
310 | Franz | 3019 | </message> |
3020 | <message> |
||
985 | mrdocs | 3021 | <source> mm</source> |
3022 | <translation>mm</translation> |
||
769 | cbradney | 3023 | </message> |
3024 | <message> |
||
985 | mrdocs | 3025 | <source> in</source> |
3026 | <translation>in</translation> |
||
769 | cbradney | 3027 | </message> |
985 | mrdocs | 3028 | <message> |
3029 | <source> p</source> |
||
3030 | <translation>p</translation> |
||
3031 | </message> |
||
131 | Franz | 3032 | </context> |
3033 | <context> |
||
377 | Franz | 3034 | <name>CsvDialog</name> |
3035 | <message> |
||
3036 | <source>CSV Importer Options</source> |
||
391 | Franz | 3037 | <translation>Параметры импорта CSV</translation> |
377 | Franz | 3038 | </message> |
3039 | <message> |
||
3040 | <source>Field delimiter:</source> |
||
391 | Franz | 3041 | <translation>Разделитель полей:</translation> |
377 | Franz | 3042 | </message> |
3043 | <message> |
||
3044 | <source>(TAB)</source> |
||
391 | Franz | 3045 | <translation>(TAB)</translation> |
377 | Franz | 3046 | </message> |
3047 | <message> |
||
3048 | <source>Value delimiter:</source> |
||
391 | Franz | 3049 | <translation>Разделитель значений:</translation> |
377 | Franz | 3050 | </message> |
3051 | <message> |
||
391 | Franz | 3052 | <source>None</source> |
3053 | <translation>Ничего</translation> |
||
3054 | </message> |
||
3055 | <message> |
||
377 | Franz | 3056 | <source>First row is a header</source> |
391 | Franz | 3057 | <translation>Первая строка как заголовок</translation> |
377 | Franz | 3058 | </message> |
3059 | <message> |
||
3060 | <source>OK</source> |
||
391 | Franz | 3061 | <translation>ОК</translation> |
377 | Franz | 3062 | </message> |
3063 | <message> |
||
3064 | <source>Cancel</source> |
||
391 | Franz | 3065 | <translation>Отменить</translation> |
377 | Franz | 3066 | </message> |
3067 | </context> |
||
3068 | <context> |
||
131 | Franz | 3069 | <name>CupsOptions</name> |
3070 | <message> |
||
3071 | <source>Printer Options</source> |
||
3072 | <translation>Параметры печати</translation> |
||
3073 | </message> |
||
3074 | <message> |
||
3075 | <source>Option</source> |
||
3076 | <translation>Параметр</translation> |
||
3077 | </message> |
||
3078 | <message> |
||
3079 | <source>Value</source> |
||
3080 | <translation>Значение</translation> |
||
3081 | </message> |
||
3082 | <message> |
||
3083 | <source>Page Set</source> |
||
3084 | <translation>Набор страниц</translation> |
||
3085 | </message> |
||
3086 | <message> |
||
3087 | <source>All Pages</source> |
||
3088 | <translation>Все страницы</translation> |
||
3089 | </message> |
||
3090 | <message> |
||
3091 | <source>Even Pages only</source> |
||
3092 | <translation>Только чётные</translation> |
||
3093 | </message> |
||
3094 | <message> |
||
3095 | <source>Odd Pages only</source> |
||
3096 | <translation>Только нечётные</translation> |
||
3097 | </message> |
||
3098 | <message> |
||
3099 | <source>Mirror</source> |
||
3100 | <translation>Зеркалирование</translation> |
||
3101 | </message> |
||
3102 | <message> |
||
3103 | <source>No</source> |
||
3104 | <translation>Нет</translation> |
||
3105 | </message> |
||
3106 | <message> |
||
3107 | <source>Yes</source> |
||
3108 | <translation>Да</translation> |
||
3109 | </message> |
||
3110 | <message> |
||
3111 | <source>Orientation</source> |
||
3112 | <translation>Ориентация</translation> |
||
3113 | </message> |
||
3114 | <message> |
||
3115 | <source>Portrait</source> |
||
3116 | <translation>Портрет</translation> |
||
3117 | </message> |
||
3118 | <message> |
||
3119 | <source>Landscape</source> |
||
3120 | <translation>Альбом</translation> |
||
3121 | </message> |
||
3122 | <message> |
||
3123 | <source>N-Up Printing</source> |
||
3124 | <translation>Страниц на лист</translation> |
||
3125 | </message> |
||
3126 | <message> |
||
3127 | <source>Page per Sheet</source> |
||
3128 | <translation>страница на лист</translation> |
||
3129 | </message> |
||
3130 | <message> |
||
3131 | <source>Pages per Sheet</source> |
||
3132 | <translation>страниц на лист</translation> |
||
3133 | </message> |
||
3134 | <message> |
||
290 | Franz | 3135 | <source>This panel displays various CUPS options when printing. |
3136 | The exact parameters available will depend on your printer driver. |
||
3137 | You can confirm CUPS support by selecting Help > About. |
||
3138 | Look for the listings: C-C-T These equate to C=CUPS C=littlecms T=TIFF support. |
||
3139 | Missing library support is indicated by a *</source> |
||
391 | Franz | 3140 | <translation>Здесь отображаются различные параметры CUPS для печати. |
3141 | Состав параметров зависит от используемой модели принтера. |
||
3142 | наличие поддержки можно проверить в диалоге "О Scribus", |
||
3143 | вызываемом через меню "Справка". Найдите сокращение вида |
||
3144 | "C-C-T", которое расшифровывается так: |
||
3145 | C=CUPS C=littlecms T=TIFF |
||
3146 | Отсутствующая библиотека помечается символом *</translation> |
||
290 | Franz | 3147 | </message> |
351 | Franz | 3148 | <message> |
3149 | <source>&OK</source> |
||
391 | Franz | 3150 | <translation>&ОК</translation> |
351 | Franz | 3151 | </message> |
3152 | <message> |
||
3153 | <source>&Cancel</source> |
||
391 | Franz | 3154 | <translation>О&тменить</translation> |
351 | Franz | 3155 | </message> |
131 | Franz | 3156 | </context> |
3157 | <context> |
||
3158 | <name>CustomFDialog</name> |
||
3159 | <message> |
||
3160 | <source>Encoding:</source> |
||
3161 | <translation>Кодировка:</translation> |
||
3162 | </message> |
||
3163 | <message> |
||
3164 | <source>Moves to your Document Directory. |
||
3165 | This can be set in the Preferences.</source> |
||
3166 | <translation>Перемещается в каталог с документами. |
||
3167 | Это можно изменить через диалог общих настроек.</translation> |
||
3168 | </message> |
||
316 | Franz | 3169 | <message> |
341 | Franz | 3170 | <source>&Compress File</source> |
391 | Franz | 3171 | <translation>&Сжать файл</translation> |
316 | Franz | 3172 | </message> |
341 | Franz | 3173 | <message> |
3174 | <source>&Include Fonts</source> |
||
391 | Franz | 3175 | <translation>&Включить шрифты</translation> |
341 | Franz | 3176 | </message> |
131 | Franz | 3177 | </context> |
3178 | <context> |
||
3179 | <name>DelColor</name> |
||
3180 | <message> |
||
3181 | <source>Delete Color</source> |
||
3182 | <translation>Удаление цвета</translation> |
||
3183 | </message> |
||
3184 | <message> |
||
985 | mrdocs | 3185 | <source>?</source> |
3186 | <translation>?</translation> |
||
532 | cbradney | 3187 | </message> |
769 | cbradney | 3188 | <message> |
985 | mrdocs | 3189 | <source>Replace it with:</source> |
3190 | <translation>Заменить на:</translation> |
||
769 | cbradney | 3191 | </message> |
3192 | <message> |
||
985 | mrdocs | 3193 | <source>OK</source> |
3194 | <translation type="obsolete">ОК</translation> |
||
769 | cbradney | 3195 | </message> |
3196 | <message> |
||
985 | mrdocs | 3197 | <source>Cancel</source> |
3198 | <translation type="obsolete">Отменить</translation> |
||
3199 | </message> |
||
3200 | <message> |
||
3201 | <source>Delete color:</source> |
||
3202 | <translation>Удалить цвет:</translation> |
||
3203 | </message> |
||
3204 | <message> |
||
3205 | <source>None</source> |
||
3206 | <translation>Ничего</translation> |
||
3207 | </message> |
||
3208 | <message> |
||
769 | cbradney | 3209 | <source>&OK</source> |
985 | mrdocs | 3210 | <translation>&ОК</translation> |
769 | cbradney | 3211 | </message> |
3212 | <message> |
||
3213 | <source>&Cancel</source> |
||
985 | mrdocs | 3214 | <translation>О&тменить</translation> |
769 | cbradney | 3215 | </message> |
131 | Franz | 3216 | </context> |
3217 | <context> |
||
3218 | <name>DelPages</name> |
||
3219 | <message> |
||
3220 | <source>Delete Pages</source> |
||
3221 | <translation>Удаление страниц</translation> |
||
3222 | </message> |
||
3223 | <message> |
||
985 | mrdocs | 3224 | <source>Delete from:</source> |
3225 | <translation>Удалить от:</translation> |
||
3226 | </message> |
||
3227 | <message> |
||
131 | Franz | 3228 | <source>to:</source> |
3229 | <translation>до:</translation> |
||
3230 | </message> |
||
3231 | <message> |
||
391 | Franz | 3232 | <source>&OK</source> |
3233 | <translation>&ОК</translation> |
||
3234 | </message> |
||
3235 | <message> |
||
3236 | <source>&Cancel</source> |
||
3237 | <translation>О&тменить</translation> |
||
3238 | </message> |
||
985 | mrdocs | 3239 | </context> |
3240 | <context> |
||
3241 | <name>DmF</name> |
||
769 | cbradney | 3242 | <message> |
985 | mrdocs | 3243 | <source>Missing Font</source> |
3244 | <translation>Шрифт отсутствует</translation> |
||
769 | cbradney | 3245 | </message> |
985 | mrdocs | 3246 | <message> |
3247 | <source>The Font %1 is not installed.</source> |
||
3248 | <translation>Шрифт %1 не установлен.</translation> |
||
3249 | </message> |
||
3250 | <message> |
||
3251 | <source>Use</source> |
||
3252 | <translation>Использовать</translation> |
||
3253 | </message> |
||
3254 | <message> |
||
3255 | <source>instead</source> |
||
3256 | <translation>вместо</translation> |
||
3257 | </message> |
||
3258 | <message> |
||
3259 | <source>OK</source> |
||
3260 | <translation>ОК</translation> |
||
3261 | </message> |
||
131 | Franz | 3262 | </context> |
3263 | <context> |
||
3264 | <name>DocInfos</name> |
||
3265 | <message> |
||
341 | Franz | 3266 | <source>Document Information</source> |
391 | Franz | 3267 | <translation>Информация о документе</translation> |
341 | Franz | 3268 | </message> |
3269 | <message> |
||
3270 | <source>&Title:</source> |
||
391 | Franz | 3271 | <translation>&Заголовок:</translation> |
341 | Franz | 3272 | </message> |
3273 | <message> |
||
3274 | <source>&Author:</source> |
||
391 | Franz | 3275 | <translation>&Автор:</translation> |
341 | Franz | 3276 | </message> |
3277 | <message> |
||
3278 | <source>&Keywords:</source> |
||
391 | Franz | 3279 | <translation>&Ключевые слова:</translation> |
341 | Franz | 3280 | </message> |
3281 | <message> |
||
3282 | <source>Descri&ption:</source> |
||
391 | Franz | 3283 | <translation>Опи&сание:</translation> |
341 | Franz | 3284 | </message> |
3285 | <message> |
||
3286 | <source>P&ublisher:</source> |
||
391 | Franz | 3287 | <translation>Изда&тель:</translation> |
341 | Franz | 3288 | </message> |
3289 | <message> |
||
3290 | <source>&Contributors:</source> |
||
391 | Franz | 3291 | <translation>Соа&вторы:</translation> |
341 | Franz | 3292 | </message> |
3293 | <message> |
||
3294 | <source>Dat&e:</source> |
||
391 | Franz | 3295 | <translation>Д&ата:</translation> |
341 | Franz | 3296 | </message> |
3297 | <message> |
||
3298 | <source>T&ype:</source> |
||
391 | Franz | 3299 | <translation>&Тип:</translation> |
341 | Franz | 3300 | </message> |
3301 | <message> |
||
3302 | <source>F&ormat:</source> |
||
391 | Franz | 3303 | <translation>Фор&мат:</translation> |
341 | Franz | 3304 | </message> |
3305 | <message> |
||
3306 | <source>Identi&fier:</source> |
||
391 | Franz | 3307 | <translation>Идентиф&икатор:</translation> |
341 | Franz | 3308 | </message> |
3309 | <message> |
||
3310 | <source>&Source:</source> |
||
391 | Franz | 3311 | <translation>&Источник:</translation> |
341 | Franz | 3312 | </message> |
3313 | <message> |
||
3314 | <source>&Language:</source> |
||
391 | Franz | 3315 | <translation>Я&зык:</translation> |
341 | Franz | 3316 | </message> |
3317 | <message> |
||
3318 | <source>&Relation:</source> |
||
391 | Franz | 3319 | <translation>О&тношение:</translation> |
341 | Franz | 3320 | </message> |
3321 | <message> |
||
3322 | <source>Co&verage:</source> |
||
391 | Franz | 3323 | <translation>&Cфера действия:</translation> |
341 | Franz | 3324 | </message> |
3325 | <message> |
||
3326 | <source>Ri&ghts:</source> |
||
391 | Franz | 3327 | <translation>Пра&ва:</translation> |
341 | Franz | 3328 | </message> |
3329 | <message> |
||
3330 | <source>&Document</source> |
||
391 | Franz | 3331 | <translation>До&кумент</translation> |
341 | Franz | 3332 | </message> |
3333 | <message> |
||
3334 | <source>Further &Information</source> |
||
391 | Franz | 3335 | <translation>&Подробнее</translation> |
341 | Franz | 3336 | </message> |
3337 | <message> |
||
3338 | <source>The person or organisation primarily responsible for making the content of the document. |
||
3339 | This field can be embedded in the Scribus document for reference, as well as in the metadata of a PDF</source> |
||
391 | Franz | 3340 | <translation>Человек или организация, в первую очередь |
3341 | ответственные за создание содержимого |
||
3342 | этого документа. Это поле может быть встроено |
||
3343 | в документ Scribus для справки, равно как и |
||
399 | Franz | 3344 | в метаданные для PDF</translation> |
341 | Franz | 3345 | </message> |
3346 | <message> |
||
3347 | <source>A name given to the document. |
||
3348 | This field can be embedded in the Scribus document for reference, as well as in the metadata of a PDF</source> |
||
391 | Franz | 3349 | <translation>Имя, данное этому документу. |
399 | Franz | 3350 | Это поле может быть встроено в |
3351 | документ Scribus для справки, |
||
3352 | равно как и в метаданные для PDF</translation> |
||
341 | Franz | 3353 | </message> |
3354 | <message> |
||
3355 | <source>An account of the content of the document. |
||
3356 | This field is for a brief description or abstract of the document. It is embedded in the PDF on export</source> |
||
399 | Franz | 3357 | <translation>Характеристика этого документа. |
391 | Franz | 3358 | Это поле предназначено для краткого описания документа. |
3359 | Оно встраивается в PDF при экспорте</translation> |
||
341 | Franz | 3360 | </message> |
3361 | <message> |
||
3362 | <source>The topic of the content of the document. |
||
3363 | This field is for document keywords you wish to embed in a PDF, to assist searches and indexing of PDF files</source> |
||
399 | Franz | 3364 | <translation>Тема этого документа. Это поле для |
3365 | ключевых слов, которые будут встроены |
||
3366 | в PDF для упрощения последующего |
||
3367 | поиска и индексирования PDF-файлов</translation> |
||
341 | Franz | 3368 | </message> |
3369 | <message> |
||
3370 | <source>A person or organisation responsible for making the document available</source> |
||
391 | Franz | 3371 | <translation>Человек или организация, ответственные за выпуск этого документа</translation> |
341 | Franz | 3372 | </message> |
3373 | <message> |
||
3374 | <source>A person or organisation responsible for making contributions to the content of the document</source> |
||
399 | Franz | 3375 | <translation>Человек или организация, внесшие вклад |
3376 | в содержимое этого документа</translation> |
||
341 | Franz | 3377 | </message> |
3378 | <message> |
||
3379 | <source>A date associated with an event in the life cycle of the document, in YYYY-MM-DD format, as per ISO 8601</source> |
||
399 | Franz | 3380 | <translation>Дата, связанная с событием в жизненном цикле этого |
3381 | документа, в формате ГГГГ-ММ-ДД согласно ISO 8601</translation> |
||
341 | Franz | 3382 | </message> |
3383 | <message> |
||
3384 | <source>The nature or genre of the content of the document, eg. categories, functions, genres, etc</source> |
||
391 | Franz | 3385 | <translation>Природа жанра содержимого этого документа, например, категории, функции и т.д.</translation> |
341 | Franz | 3386 | </message> |
3387 | <message> |
||
3388 | <source>The physical or digital manifestation of the document. Media type and dimensions would be worth noting. |
||
3389 | RFC2045,RFC2046 for MIME types are also useful here</source> |
||
399 | Franz | 3390 | <translation>Физическая или цифровая форма этого документа. |
3391 | Рекомендуется указать тип носителя и количество. |
||
3392 | Указание RFC2045, RFC2046 для MIME-типов также не помешает.</translation> |
||
341 | Franz | 3393 | </message> |
3394 | <message> |
||
3395 | <source>An unambiguous reference to the document within a given context such as ISBN or URI</source> |
||
399 | Franz | 3396 | <translation>Уникальная ссылка на этот документ посредством ISBN или URI</translation> |
341 | Franz | 3397 | </message> |
3398 | <message> |
||
3399 | <source>The language in which the content of the document is written, usually a ISO-639 language code |
||
3400 | optionally suffixed with a hypen and an ISO-3166 country code, eg. en-GB, fr-CH</source> |
||
399 | Franz | 3401 | <translation>Код языка, на котором написано содержимое этого |
391 | Franz | 3402 | документа -- обычно, в коде ISO-639, обычно |
3403 | имеющее суффикс с дефисом и кодом страны |
||
3404 | по ISO-3166, например, en-GB, fr-CH.</translation> |
||
341 | Franz | 3405 | </message> |
3406 | <message> |
||
3407 | <source>A reference to a related document, possibly using a formal identifier such as a ISBN or URI</source> |
||
391 | Franz | 3408 | <translation>Ссылка на документ с родственной тематикой, |
3409 | возможно, с формальным идентификатором, |
||
3410 | таким как ISBN или URI.</translation> |
||
341 | Franz | 3411 | </message> |
3412 | <message> |
||
3413 | <source>The extent or scope of the content of the document, possibly including location, time and jurisdiction ranges</source> |
||
399 | Franz | 3414 | <translation>Область охвата данного документа, возможно, |
391 | Franz | 3415 | включая место, время и область юрисдикции.</translation> |
341 | Franz | 3416 | </message> |
3417 | <message> |
||
3418 | <source>Information about rights held in and over the document, eg. copyright, patent or trademark</source> |
||
391 | Franz | 3419 | <translation>Информация о правах на документ и его содержимое, |
3420 | например, авторские и патентные права, торговая марка.</translation> |
||
341 | Franz | 3421 | </message> |
3422 | <message> |
||
391 | Franz | 3423 | <source>A reference to a document from which the present document is derived, eg. ISBN or URI</source> |
3424 | <translation>Ссылка на документ, производным от которого является |
||
3425 | данный документ, например, в виде ISBN или URI.</translation> |
||
3426 | </message> |
||
3427 | <message> |
||
341 | Franz | 3428 | <source>&OK</source> |
391 | Franz | 3429 | <translation>&ОК</translation> |
341 | Franz | 3430 | </message> |
3431 | <message> |
||
3432 | <source>&Cancel</source> |
||
391 | Franz | 3433 | <translation>О&тменить</translation> |
341 | Franz | 3434 | </message> |
391 | Franz | 3435 | </context> |
3436 | <context> |
||
3437 | <name>Druck</name> |
||
131 | Franz | 3438 | <message> |
391 | Franz | 3439 | <source>Setup Printer</source> |
3440 | <translation>Настройка принтера</translation> |
||
131 | Franz | 3441 | </message> |
3442 | <message> |
||
391 | Franz | 3443 | <source>File</source> |
3444 | <translation>Файл</translation> |
||
131 | Franz | 3445 | </message> |
3446 | <message> |
||
3447 | <source>Options</source> |
||
3448 | <translation>Параметры</translation> |
||
3449 | </message> |
||
3450 | <message> |
||
3451 | <source>All</source> |
||
3452 | <translation>Все</translation> |
||
3453 | </message> |
||
3454 | <message> |
||
3455 | <source>Save as</source> |
||
3456 | <translation>Сохранить как</translation> |
||
3457 | </message> |
||
3458 | <message> |
||
3459 | <source>Postscript-Files (*.ps);;All Files (*)</source> |
||
3460 | <translation>Файлы Postscript (*.ps);;Все файлы (*)</translation> |
||
3461 | </message> |
||
262 | Franz | 3462 | <message> |
3463 | <source>Cyan</source> |
||
3464 | <translation>Cyan</translation> |
||
3465 | </message> |
||
3466 | <message> |
||
3467 | <source>Magenta</source> |
||
3468 | <translation>Magenta</translation> |
||
3469 | </message> |
||
3470 | <message> |
||
3471 | <source>Yellow</source> |
||
3472 | <translation>Magenta</translation> |
||
3473 | </message> |
||
3474 | <message> |
||
3475 | <source>Black</source> |
||
3476 | <translation>Black</translation> |
||
3477 | </message> |
||
3478 | <message> |
||
341 | Franz | 3479 | <source>Insert a comma separated list of tokens where |
3480 | a token can be * for all the pages, 1-5 for |
||
3481 | a range of pages or a single page number.</source> |
||
399 | Franz | 3482 | <translation>Вставить сюда разделённый запятыми список |
3483 | маркёров, где каждый маркёр может быть * для |
||
3484 | всех страниц, 1-5 для диапазона страниц или |
||
3485 | номером одиночной страницы.</translation> |
||
341 | Franz | 3486 | </message> |
351 | Franz | 3487 | <message> |
3488 | <source>Print Destination</source> |
||
391 | Franz | 3489 | <translation>Путь к принтеру</translation> |
351 | Franz | 3490 | </message> |
3491 | <message> |
||
3492 | <source>&Options...</source> |
||
391 | Franz | 3493 | <translation>&Параметры...</translation> |
351 | Franz | 3494 | </message> |
3495 | <message> |
||
3496 | <source>&File:</source> |
||
391 | Franz | 3497 | <translation>&Файл:</translation> |
351 | Franz | 3498 | </message> |
3499 | <message> |
||
3500 | <source>C&hange...</source> |
||
391 | Franz | 3501 | <translation>&Изменить...</translation> |
351 | Franz | 3502 | </message> |
3503 | <message> |
||
3504 | <source>A&lternative Printer Command</source> |
||
391 | Franz | 3505 | <translation>&Альтернативная команда для принтера</translation> |
351 | Franz | 3506 | </message> |
3507 | <message> |
||
391 | Franz | 3508 | <source>Use an alternative print manager, such as kprinter or gtklp, |
3509 | to utilize additional printing options</source> |
||
3510 | <translation>Использовать альтернативное средство |
||
3511 | настройки печати вроде kprinter или gtklp для |
||
3512 | задания дополнительных параметров печати</translation> |
||
3513 | </message> |
||
3514 | <message> |
||
351 | Franz | 3515 | <source>Co&mmand:</source> |
391 | Franz | 3516 | <translation>&Команда:</translation> |
351 | Franz | 3517 | </message> |
3518 | <message> |
||
3519 | <source>Range</source> |
||
391 | Franz | 3520 | <translation>Диапазон</translation> |
351 | Franz | 3521 | </message> |
3522 | <message> |
||
3523 | <source>Print &All</source> |
||
391 | Franz | 3524 | <translation>Напечатать &все</translation> |
351 | Franz | 3525 | </message> |
3526 | <message> |
||
3527 | <source>Print Current Pa&ge</source> |
||
391 | Franz | 3528 | <translation>Напечатать те&кущую страницу</translation> |
351 | Franz | 3529 | </message> |
3530 | <message> |
||
3531 | <source>Print &Range</source> |
||
391 | Franz | 3532 | <translation>Напечатать ди&апазон</translation> |
351 | Franz | 3533 | </message> |
3534 | <message> |
||
3535 | <source>N&umber of Copies:</source> |
||
391 | Franz | 3536 | <translation>Ко&личество копий:</translation> |
351 | Franz | 3537 | </message> |
3538 | <message> |
||
3539 | <source>Print &Normal</source> |
||
391 | Franz | 3540 | <translation>Напечатать &обычным образом</translation> |
351 | Franz | 3541 | </message> |
3542 | <message> |
||
3543 | <source>Print &Separations</source> |
||
399 | Franz | 3544 | <translation>Напечатать с ц&ветоделением</translation> |
351 | Franz | 3545 | </message> |
3546 | <message> |
||
3547 | <source>Pr&int In Color If Available</source> |
||
391 | Franz | 3548 | <translation>Напечатать в цв&ете (если возможно)</translation> |
351 | Franz | 3549 | </message> |
3550 | <message> |
||
3551 | <source>Print In Gra&yscale</source> |
||
391 | Franz | 3552 | <translation>Напечатать в оттенках &серого</translation> |
351 | Franz | 3553 | </message> |
3554 | <message> |
||
3555 | <source>Ad&vanced Options...</source> |
||
391 | Franz | 3556 | <translation>До&полнительные параметры...</translation> |
351 | Franz | 3557 | </message> |
3558 | <message> |
||
3559 | <source>&Print</source> |
||
391 | Franz | 3560 | <translation>&Напечатать</translation> |
351 | Franz | 3561 | </message> |
3562 | <message> |
||
3563 | <source>&Cancel</source> |
||
391 | Franz | 3564 | <translation>О&тменить</translation> |
351 | Franz | 3565 | </message> |
131 | Franz | 3566 | </context> |
3567 | <context> |
||
310 | Franz | 3568 | <name>EPSPlug</name> |
3569 | <message> |
||
3570 | <source>Importing File: |
||
3571 | %1 |
||
3572 | failed!</source> |
||
391 | Franz | 3573 | <translation>Импорт файла: |
311 | Franz | 3574 | %1 |
3575 | не удался!</translation> |
||
310 | Franz | 3576 | </message> |
3577 | <message> |
||
3578 | <source>Fatal Error</source> |
||
391 | Franz | 3579 | <translation>Критическая ошибка</translation> |
310 | Franz | 3580 | </message> |
3581 | </context> |
||
3582 | <context> |
||
131 | Franz | 3583 | <name>EditStyle</name> |
3584 | <message> |
||
3585 | <source>Edit Style</source> |
||
3586 | <translation>Правка стиля</translation> |
||
3587 | </message> |
||
3588 | <message> |
||
3589 | <source>Character</source> |
||
3590 | <translation>Символ</translation> |
||
3591 | </message> |
||
3592 | <message> |
||
3593 | <source> pt</source> |
||
3594 | <translation>pt</translation> |
||
3595 | </message> |
||
3596 | <message> |
||
3597 | <source>Vertical Spaces</source> |
||
3598 | <translation>Междустрочные интервалы</translation> |
||
3599 | </message> |
||
3600 | <message> |
||
3601 | <source>Line Spacing</source> |
||
262 | Franz | 3602 | <translation>Между строк</translation> |
131 | Franz | 3603 | </message> |
3604 | <message> |
||
3605 | <source>OK</source> |
||
3606 | <translation>ОК</translation> |
||
3607 | </message> |
||
3608 | <message> |
||
3609 | <source>Warning</source> |
||
3610 | <translation>Предупреждение</translation> |
||
3611 | </message> |
||
3612 | <message> |
||
3613 | <source>Name of the Style is not unique</source> |
||
3614 | <translation>Стиль с таким именем уже существует</translation> |
||
3615 | </message> |
||
159 | Franz | 3616 | <message> |
262 | Franz | 3617 | <source>Effect:</source> |
3618 | <translation>Эффект:</translation> |
||
3619 | </message> |
||
3620 | <message> |
||
3621 | <source>None</source> |
||
3622 | <translation>Не задано</translation> |
||
3623 | </message> |
||
3624 | <message> |
||
3625 | <source> mm</source> |
||
3626 | <translation>mm</translation> |
||
3627 | </message> |
||
3628 | <message> |
||
3629 | <source> in</source> |
||
290 | Franz | 3630 | <translation>in</translation> |
262 | Franz | 3631 | </message> |
3632 | <message> |
||
3633 | <source> p</source> |
||
3634 | <translation>pp</translation> |
||
3635 | </message> |
||
3636 | <message> |
||
3637 | <source>Name of your paragraph style</source> |
||
392 | Franz | 3638 | <translation>Имя стиля абзаца</translation> |
262 | Franz | 3639 | </message> |
3640 | <message> |
||
3641 | <source>Font of selected text or object</source> |
||
3642 | <translation>Шрифт выделенного текста или объекта</translation> |
||
3643 | </message> |
||
3644 | <message> |
||
3645 | <source>Font Size</source> |
||
3646 | <translation>Кегль шрифта</translation> |
||
3647 | </message> |
||
3648 | <message> |
||
3649 | <source>Color of text fill</source> |
||
392 | Franz | 3650 | <translation>Цвет заливки текста</translation> |
262 | Franz | 3651 | </message> |
3652 | <message> |
||
3653 | <source>Color of text stroke</source> |
||
399 | Franz | 3654 | <translation>Цвет контура текста</translation> |
262 | Franz | 3655 | </message> |
3656 | <message> |
||
3657 | <source>Provides an oversized first letter for a paragraph. Used for stylistic effect</source> |
||
399 | Franz | 3658 | <translation>Создать (буквицу) увеличенную первую букву абзаца.</translation> |
262 | Franz | 3659 | </message> |
3660 | <message> |
||
3661 | <source>Determines the overall height, in line numbers, of the Drop Caps</source> |
||
3662 | <translation>Задать общую высоту буквицы в строках</translation> |
||
3663 | </message> |
||
3664 | <message> |
||
3665 | <source>Align text to baseline grid</source> |
||
3666 | <translation>Выровнять по опорной сетке</translation> |
||
3667 | </message> |
||
3668 | <message> |
||
3669 | <source>Spacing above the paragraph</source> |
||
399 | Franz | 3670 | <translation>Отбивка перед абзацем</translation> |
262 | Franz | 3671 | </message> |
3672 | <message> |
||
3673 | <source>Spacing below the paragraph</source> |
||
399 | Franz | 3674 | <translation>Отбивка под абзацем</translation> |
262 | Franz | 3675 | </message> |
3676 | <message> |
||
290 | Franz | 3677 | <source>Tabulators and Indentation</source> |
3678 | <translation>Табуляторы и отступы</translation> |
||
262 | Franz | 3679 | </message> |
3680 | <message> |
||
351 | Franz | 3681 | <source>&Name:</source> |
391 | Franz | 3682 | <translation>&Имя:</translation> |
351 | Franz | 3683 | </message> |
3684 | <message> |
||
3685 | <source>&Font:</source> |
||
391 | Franz | 3686 | <translation>&Шрифт:</translation> |
351 | Franz | 3687 | </message> |
3688 | <message> |
||
3689 | <source>Si&ze:</source> |
||
391 | Franz | 3690 | <translation>&Размер:</translation> |
351 | Franz | 3691 | </message> |
3692 | <message> |
||
3693 | <source>&Alignment:</source> |
||
391 | Franz | 3694 | <translation>В&ыравнивание:</translation> |
351 | Franz | 3695 | </message> |
3696 | <message> |
||
3697 | <source>&Drop Caps</source> |
||
473 | fschmid | 3698 | <translation>&Буквица</translation> |
351 | Franz | 3699 | </message> |
3700 | <message> |
||
3701 | <source>&Lines:</source> |
||
391 | Franz | 3702 | <translation>&Линии:</translation> |
351 | Franz | 3703 | </message> |
3704 | <message> |
||
3705 | <source>F&ill Color:</source> |
||
391 | Franz | 3706 | <translation>Цвет &заливки:</translation> |
351 | Franz | 3707 | </message> |
3708 | <message> |
||
3709 | <source>St&roke Color:</source> |
||
399 | Franz | 3710 | <translation>Цвет &контура:</translation> |
351 | Franz | 3711 | </message> |
3712 | <message> |
||
3713 | <source>Adjust to Baseline &Grid</source> |
||
391 | Franz | 3714 | <translation>Подстроить до опорной &сетки</translation> |
351 | Franz | 3715 | </message> |
3716 | <message> |
||
3717 | <source>Line &Spacing:</source> |
||
391 | Franz | 3718 | <translation>Между с&трок:</translation> |
351 | Franz | 3719 | </message> |
3720 | <message> |
||
3721 | <source>Abo&ve:</source> |
||
391 | Franz | 3722 | <translation>&Над:</translation> |
351 | Franz | 3723 | </message> |
3724 | <message> |
||
3725 | <source>&Below:</source> |
||
391 | Franz | 3726 | <translation>&Под:</translation> |
351 | Franz | 3727 | </message> |
3728 | <message> |
||
3729 | <source>&OK</source> |
||
391 | Franz | 3730 | <translation>&ОК</translation> |
351 | Franz | 3731 | </message> |
3732 | <message> |
||
3733 | <source>&Cancel</source> |
||
391 | Franz | 3734 | <translation>О&тменить</translation> |
351 | Franz | 3735 | </message> |
391 | Franz | 3736 | </context> |
3737 | <context> |
||
3738 | <name>Editor</name> |
||
131 | Franz | 3739 | <message> |
391 | Franz | 3740 | <source>Editor</source> |
3741 | <translation>Редактор</translation> |
||
131 | Franz | 3742 | </message> |
3743 | <message> |
||
3744 | <source>Javascripts (*.js);;All Files (*)</source> |
||
3745 | <translation>Javascripts (*.js);;Все файлы (*)</translation> |
||
3746 | </message> |
||
351 | Franz | 3747 | <message> |
3748 | <source>&New</source> |
||
391 | Franz | 3749 | <translation>&Новый</translation> |
351 | Franz | 3750 | </message> |
3751 | <message> |
||
3752 | <source>&Open...</source> |
||
391 | Franz | 3753 | <translation>&Открыть...</translation> |
351 | Franz | 3754 | </message> |
3755 | <message> |
||
3756 | <source>Save &As...</source> |
||
391 | Franz | 3757 | <translation>Сохранить &как...</translation> |
351 | Franz | 3758 | </message> |
3759 | <message> |
||
3760 | <source>&Save and Exit</source> |
||
391 | Franz | 3761 | <translation>Сохр&анить и выйти</translation> |
351 | Franz | 3762 | </message> |
3763 | <message> |
||
3764 | <source>&Exit without Saving</source> |
||
391 | Franz | 3765 | <translation>Вы&йти без сохранения</translation> |
351 | Franz | 3766 | </message> |
3767 | <message> |
||
3768 | <source>&Undo</source> |
||
391 | Franz | 3769 | <translation>&Отменить</translation> |
351 | Franz | 3770 | </message> |
3771 | <message> |
||
3772 | <source>&Redo</source> |
||
391 | Franz | 3773 | <translation>Пов&торить</translation> |
351 | Franz | 3774 | </message> |
3775 | <message> |
||
3776 | <source>Cu&t</source> |
||
391 | Franz | 3777 | <translation>&Вырезать</translation> |
351 | Franz | 3778 | </message> |
3779 | <message> |
||
3780 | <source>&Copy</source> |
||
391 | Franz | 3781 | <translation>С&копировать</translation> |
351 | Franz | 3782 | </message> |
3783 | <message> |
||
3784 | <source>&Paste</source> |
||
391 | Franz | 3785 | <translation>Вст&авить</translation> |
351 | Franz | 3786 | </message> |
3787 | <message> |
||
3788 | <source>C&lear</source> |
||
391 | Franz | 3789 | <translation>О&чистить</translation> |
351 | Franz | 3790 | </message> |
3791 | <message> |
||
3792 | <source>&Get Field Names</source> |
||
391 | Franz | 3793 | <translation>Полу&чить имена полей</translation> |
351 | Franz | 3794 | </message> |
3795 | <message> |
||
3796 | <source>&File</source> |
||
391 | Franz | 3797 | <translation>&Файл</translation> |
351 | Franz | 3798 | </message> |
3799 | <message> |
||
3800 | <source>&Edit</source> |
||
391 | Franz | 3801 | <translation>&Правка</translation> |
351 | Franz | 3802 | </message> |
391 | Franz | 3803 | </context> |
3804 | <context> |
||
3805 | <name>ExportForm</name> |
||
290 | Franz | 3806 | <message> |
391 | Franz | 3807 | <source>&All pages</source> |
3808 | <translation>&Все страницы</translation> |
||
290 | Franz | 3809 | </message> |
3810 | <message> |
||
3811 | <source>&OK</source> |
||
3812 | <translation>&ОК</translation> |
||
3813 | </message> |
||
3814 | <message> |
||
3815 | <source>&Cancel</source> |
||
3816 | <translation>О&тменить</translation> |
||
3817 | </message> |
||
3818 | <message> |
||
3819 | <source>Change the output directory</source> |
||
3820 | <translation>Сменить каталог вывода</translation> |
||
3821 | </message> |
||
3822 | <message> |
||
3823 | <source>The output directory - the place to store your images. |
||
3824 | Name of the export file will be 'documentname-pagenumber.filetype'</source> |
||
3825 | <translation>Каталог вывода -- каталог, в который помещаются изображения. |
||
3826 | Файлы будут иметь имена вида ''имядокумента-№страницы.расширение"</translation> |
||
3827 | </message> |
||
3828 | <message> |
||
3829 | <source>Export only the current page</source> |
||
3830 | <translation>Только текущую страницу</translation> |
||
3831 | </message> |
||
3832 | <message> |
||
3833 | <source>Available export formats</source> |
||
3834 | <translation>Возможные форматы для экспорта</translation> |
||
3835 | </message> |
||
3836 | <message> |
||
3837 | <source>Choose a Export Directory</source> |
||
3838 | <translation>Выберите каталог для экспорта</translation> |
||
3839 | </message> |
||
351 | Franz | 3840 | <message> |
391 | Franz | 3841 | <source>Export as Image(s)</source> |
3842 | <translation>Экспортировать как изображение</translation> |
||
351 | Franz | 3843 | </message> |
3844 | <message> |
||
3845 | <source>&Export to Directory:</source> |
||
391 | Franz | 3846 | <translation>&Экспортировать в каталог:</translation> |
351 | Franz | 3847 | </message> |
3848 | <message> |
||
391 | Franz | 3849 | <source>C&hange...</source> |
3850 | <translation>&Изменить...</translation> |
||
351 | Franz | 3851 | </message> |
3852 | <message> |
||
391 | Franz | 3853 | <source>Options</source> |
3854 | <translation>Параметры</translation> |
||
351 | Franz | 3855 | </message> |
3856 | <message> |
||
391 | Franz | 3857 | <source>Image &Type:</source> |
3858 | <translation>&Формат:</translation> |
||
351 | Franz | 3859 | </message> |
364 | Franz | 3860 | <message> |
391 | Franz | 3861 | <source>&Quality:</source> |
3862 | <translation>&Качество:</translation> |
||
364 | Franz | 3863 | </message> |
3864 | <message> |
||
3865 | <source>&Resolution:</source> |
||
391 | Franz | 3866 | <translation>&Разрешение:</translation> |
364 | Franz | 3867 | </message> |
3868 | <message> |
||
3869 | <source> %</source> |
||
391 | Franz | 3870 | <translation>%</translation> |
364 | Franz | 3871 | </message> |
3872 | <message> |
||
3873 | <source> dpi</source> |
||
391 | Franz | 3874 | <translation>dpi</translation> |
364 | Franz | 3875 | </message> |
3876 | <message> |
||
3877 | <source>Range</source> |
||
391 | Franz | 3878 | <translation>Диапазон</translation> |
364 | Franz | 3879 | </message> |
3880 | <message> |
||
3881 | <source>&Current page</source> |
||
391 | Franz | 3882 | <translation>&Текущая страница</translation> |
364 | Franz | 3883 | </message> |
3884 | <message> |
||
3885 | <source>&Range</source> |
||
391 | Franz | 3886 | <translation>Д&иапазон</translation> |
364 | Franz | 3887 | </message> |
3888 | <message> |
||
3889 | <source>C</source> |
||
391 | Franz | 3890 | <translation>C</translation> |
364 | Franz | 3891 | </message> |
3892 | <message> |
||
3893 | <source>Export a range of pages</source> |
||
391 | Franz | 3894 | <translation>Экспортировать диапазон страниц</translation> |
364 | Franz | 3895 | </message> |
3896 | <message> |
||
3897 | <source>Insert a comma separated list of tokens where |
||
3898 | a token can be * for all the pages, 1-5 for |
||
3899 | a range of pages or a single page number.</source> |
||
399 | Franz | 3900 | <translation>Вставить сюда разделённый запятыми список |
3901 | маркёров, где каждый маркёр может быть * для |
||
3902 | всех страниц, 1-5 для диапазона страниц или |
||
3903 | номером одиночной страницы.</translation> |
||
364 | Franz | 3904 | </message> |
3905 | <message> |
||
3906 | <source>Export all pages</source> |
||
391 | Franz | 3907 | <translation>Экспортировать все страницы</translation> |
364 | Franz | 3908 | </message> |
3909 | <message> |
||
3910 | <source>Resolution of the Images |
||
3911 | Use 72 dpi for Images intended for the Screen</source> |
||
391 | Franz | 3912 | <translation>Разрешение изображений |
3913 | Используйте 72 dpi для изображений, |
||
3914 | ориентированных на просмотр с экрана</translation> |
||
364 | Franz | 3915 | </message> |
3916 | <message> |
||
3917 | <source>The quality of your images - 100% is the best, 1% the lowest quality</source> |
||
391 | Franz | 3918 | <translation>Качество изображений - 100% является |
3919 | наилучшим, 1% - наихудшим</translation> |
||
364 | Franz | 3920 | </message> |
769 | cbradney | 3921 | <message> |
3922 | <source>&Size:</source> |
||
985 | mrdocs | 3923 | <translation>Раз&мер:</translation> |
769 | cbradney | 3924 | </message> |
3925 | <message> |
||
3926 | <source>Size of the images. 100% for no changes, 200% for two times larger etc.</source> |
||
985 | mrdocs | 3927 | <translation>Размер изображений. 100% - без изменений, 200% - в 2 раза больше и т.д.</translation> |
769 | cbradney | 3928 | </message> |
290 | Franz | 3929 | </context> |
3930 | <context> |
||
131 | Franz | 3931 | <name>FDialogPreview</name> |
3932 | <message> |
||
3933 | <source>Size:</source> |
||
3934 | <translation>Размер:</translation> |
||
3935 | </message> |
||
3936 | <message> |
||
3937 | <source>Title:</source> |
||
3938 | <translation>Название:</translation> |
||
3939 | </message> |
||
3940 | <message> |
||
3941 | <source>No Title</source> |
||
399 | Franz | 3942 | <translation>Без заголовка</translation> |
131 | Franz | 3943 | </message> |
3944 | <message> |
||
3945 | <source>Author:</source> |
||
3946 | <translation>Автор:</translation> |
||
3947 | </message> |
||