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