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