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