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