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