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