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