Rev 6436 | Rev 6769 | 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 visible or not, a value of True means |
||
1476 | that the layer "layer" is visible, a value of False means that the layer |
||
1477 | "layer" is invisible. |
||
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>isLayerPrintable("layer") -> bool |
||
1486 | |||
1487 | Returns whether the layer "layer" is printable or not, a value of True means |
||
1488 | that the layer "layer" can be printed, a value of False means that printing |
||
1489 | the layer "layer" is disabled. |
||
1490 | |||
1491 | May raise NotFoundError if the layer can't be found. |
||
1492 | May raise ValueError if the layer name isn't acceptable. |
||
1493 | </source> |
||
1494 | <translation type="unfinished"></translation> |
||
1495 | </message> |
||
1496 | <message> |
||
1497 | <source>getColorAsRGB("name") -> tuple |
||
1498 | |||
1499 | Returns a tuple (R,G,B) containing the three color components of the |
||
1500 | color "name" from the current document, converted to the RGB color |
||
1501 | space. If no document is open, returns the value of the named color |
||
1502 | from the default document colors. |
||
1503 | |||
1504 | May raise NotFoundError if the named color wasn't found. |
||
1505 | May raise ValueError if an invalid color name is specified. |
||
1506 | </source> |
||
1507 | <translation type="unfinished"></translation> |
||
1508 | </message> |
||
1509 | <message> |
||
1135 | cbradney | 1510 | <source>defineColor("name", c, m, y, k) |
1511 | |||
1512 | Defines a new color "name". The color Value is defined via four components: |
||
1525 | cbradney | 1513 | c = Cyan, m = Magenta, y = Yello and k = Black. Color components should be in |
1135 | cbradney | 1514 | the range from 0 to 255. |
1515 | |||
1516 | May raise ValueError if an invalid color name is specified. |
||
1517 | </source> |
||
1518 | <translation type="unfinished"></translation> |
||
1519 | </message> |
||
1520 | <message> |
||
1521 | <source>getCornerRadius(["name"]) -> integer |
||
1522 | |||
1525 | cbradney | 1523 | Returns the corner radius of the object "name". The radius isexpressed in points. If "name" is not given the currentlyselected item is used. |
1135 | cbradney | 1524 | </source> |
1525 | <translation type="unfinished"></translation> |
||
1526 | </message> |
||
1527 | <message> |
||
1528 | <source>getPosition(["name"]) -> (x,y) |
||
1529 | |||
1530 | Returns a (x, y) tuple with the position of the object "name". |
||
1525 | cbradney | 1531 | If "name" is not given the currently selected item is used.The position is expressed in the actual measurement unit of the document |
1135 | cbradney | 1532 | - see UNIT_<type> for reference. |
1533 | </source> |
||
1534 | <translation type="unfinished"></translation> |
||
1535 | </message> |
||
1536 | <message> |
||
1525 | cbradney | 1537 | <source>getPropertyCType(object, property, includesuper=True) |
1538 | |||
1539 | Returns the name of the C type of `property' of `object'. See getProperty() |
||
1540 | for details of arguments. |
||
1541 | |||
1542 | If `includesuper' is true, search inherited properties too. |
||
1543 | </source> |
||
1544 | <translation type="unfinished"></translation> |
||
1545 | </message> |
||
1546 | <message> |
||
1547 | <source>getPropertyNames(object, includesuper=True) |
||
1548 | |||
1549 | Return a list of property names supported by `object'. |
||
1550 | If `includesuper' is true, return properties supported |
||
1551 | by parent classes as well. |
||
1552 | </source> |
||
1553 | <translation type="unfinished"></translation> |
||
1554 | </message> |
||
1555 | <message> |
||
1556 | <source>getProperty(object, property) |
||
1557 | |||
1558 | Return the value of the property `property' of the passed `object'. |
||
1559 | |||
1560 | The `object' argument may be a string, in which case the named PageItem |
||
1561 | is searched for. It may also be a PyCObject, which may point to any |
||
1562 | C++ QObject instance. |
||
1563 | |||
1564 | The `property' argument must be a string, and is the name of the property |
||
1565 | to look up on `object'. |
||
1566 | |||
1567 | The return value varies depending on the type of the property. |
||
1568 | </source> |
||
1569 | <translation type="unfinished"></translation> |
||
1570 | </message> |
||
1571 | <message> |
||
1572 | <source>setProperty(object, property, value) |
||
1573 | |||
1574 | Set `property' of `object' to `value'. If `value' cannot be converted to a type |
||
1575 | compatible with the type of `property', an exception is raised. An exception may |
||
1576 | also be raised if the underlying setter fails. |
||
1577 | |||
1578 | See getProperty() for more information. |
||
1579 | </source> |
||
1580 | <translation type="unfinished"></translation> |
||
1581 | </message> |
||
1582 | <message> |
||
1583 | <source>getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True) |
||
1584 | |||
1585 | Return a list of children of `object', possibly restricted to children |
||
1586 | of class named `ofclass' or children named `ofname'. If `recursive' is true, |
||
1587 | search recursively through children, grandchildren, etc. |
||
1588 | |||
1589 | See QObject::children() in the Qt docs for more information. |
||
1590 | </source> |
||
1591 | <translation type="unfinished"></translation> |
||
1592 | </message> |
||
1593 | <message> |
||
1594 | <source>getChild(object, childname, ofclass=None, recursive=True) |
||
1595 | |||
1596 | Return the first child of `object' named `childname', possibly restricting |
||
1597 | the search to children of type name `ofclass'. If `recursive' is true, |
||
1598 | search recursively through children, grandchildren, etc. |
||
1599 | </source> |
||
1600 | <translation type="unfinished"></translation> |
||
1601 | </message> |
||
1602 | <message> |
||
1135 | cbradney | 1603 | <source>rotateObjectAbs(rot [, "name"]) |
1604 | |||
1525 | cbradney | 1605 | Sets the rotation of the object "name" to "rot". Positve values |
1135 | cbradney | 1606 | mean counter clockwise rotation. If "name" is not given the currently |
1607 | selected item is used. |
||
1608 | </source> |
||
1609 | <translation type="unfinished"></translation> |
||
1610 | </message> |
||
1525 | cbradney | 1611 | <message> |
1612 | <source>renderFont("name", "filename", "sample", size, format="PPM") -> bool |
||
1613 | |||
1614 | Creates an image preview of font "name" with given text "sample" and size. |
||
1615 | If "filename" is not "", image is saved into "filename". Otherwise |
||
1616 | image data is returned as a string. The optional "format" argument |
||
1617 | specifies the image format to generate, and supports any format allowed |
||
1618 | by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM. |
||
1619 | |||
1620 | May raise NotFoundError if the specified font can't be found. |
||
1621 | May raise ValueError if an empty sample or filename is passed. |
||
1622 | </source> |
||
1623 | <translation type="unfinished"></translation> |
||
1624 | </message> |
||
1625 | <message> |
||
1626 | <source>selectText(start, count, ["name"]) |
||
1627 | |||
1628 | Selects "count" characters of text in the text frame "name" starting from the |
||
1629 | character "start". Character counting starts at 0. If "count" is zero, any |
||
1630 | text selection will be cleared. If "name" is not given the currently |
||
1631 | selected item is used. |
||
1632 | |||
1633 | May throw IndexError if the selection is outside the bounds of the text. |
||
1634 | </source> |
||
1635 | <translation type="unfinished"></translation> |
||
1636 | </message> |
||
1637 | <message> |
||
3064 | cbradney | 1638 | <source>fileDialog("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename |
1525 | cbradney | 1639 | |
3064 | cbradney | 1640 | Shows a File Open dialog box with the caption "caption". Files are filtered |
1641 | with the filter string "filter". A default filename or file path can also |
||
1642 | supplied, leave this string empty when you don't want to use it. A value of |
||
1643 | True for haspreview enables a small preview widget in the FileSelect box. When |
||
1644 | the issave parameter is set to True the dialog acts like a "Save As" dialog |
||
1645 | otherwise it acts like a "File Open Dialog". When the isdir parameter is True |
||
1646 | the dialog shows and returns only directories. The default for all of the |
||
1647 | opional parameters is False. |
||
1525 | cbradney | 1648 | |
3064 | cbradney | 1649 | The filter, if specified, takes the form 'comment (*.type *.type2 ...)'. |
1650 | For example 'Images (*.png *.xpm *.jpg)'. |
||
1651 | |||
1652 | Refer to the Qt-Documentation for QFileDialog for details on filters. |
||
1653 | |||
1654 | Example: fileDialog('Open input', 'CSV files (*.csv)') |
||
1655 | Example: fileDialog('Save report', defaultname='report.txt', issave=True) |
||
1656 | </source> |
||
1657 | <translation type="unfinished"></translation> |
||
1658 | </message> |
||
1659 | <message> |
||
1660 | <source>newStyleDialog() -> string |
||
1661 | |||
1662 | Shows 'Create new paragraph style' dialog. Function returns real |
||
1663 | style name or None when user cancels the dialog. |
||
1664 | </source> |
||
1665 | <translation type="unfinished"></translation> |
||
1666 | </message> |
||
1667 | <message> |
||
1668 | <source>getPageMargins() |
||
1669 | |||
1670 | Returns the page margins as a (top, left, right, bottom) tuple in the current |
||
1671 | units. See UNIT_<type> constants and getPageSize(). |
||
1672 | </source> |
||
1673 | <translation type="unfinished"></translation> |
||
1674 | </message> |
||
1675 | <message> |
||
1676 | <source>insertText("text", pos, ["name"]) |
||
1677 | |||
1678 | Inserts the text "text" at the position "pos" into the text frame "name". |
||
1679 | Text must be UTF encoded (see setText() as reference) The first character has an |
||
1680 | index of 0. Inserting at position -1 appends text to the frame. If "name" is |
||
1681 | not given the currently selected Item is used. |
||
1682 | |||
1683 | May throw IndexError for an insertion out of bounds. |
||
1684 | </source> |
||
1685 | <translation type="unfinished"></translation> |
||
1686 | </message> |
||
1687 | <message> |
||
1688 | <source>textOverflows(["name", nolinks]) -> integer |
||
1689 | |||
1690 | Returns the actual number of overflowing characters in text frame "name". |
||
1691 | If is nolinks set to non zero value it takes only one frame - it doesn't |
||
1692 | use text frame linking. Without this parameter it search all linking chain. |
||
1693 | |||
1525 | cbradney | 1694 | May raise WrongFrameTypeError if the target frame is not an text frame |
1695 | </source> |
||
1696 | <translation type="unfinished"></translation> |
||
1697 | </message> |
||
3064 | cbradney | 1698 | <message> |
1699 | <source>setPDFBookmark("toggle", ["name"]) |
||
1700 | |||
1701 | Sets wether (toggle = 1) the text frame "name" is a bookmark nor not. |
||
1702 | If "name" is not given the currently selected item is used. |
||
1703 | |||
1704 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
1705 | </source> |
||
1706 | <translation type="unfinished"></translation> |
||
1707 | </message> |
||
1708 | <message> |
||
1709 | <source>isPDFBookmark(["name"]) -> bool |
||
1710 | |||
1711 | Returns true if the text frame "name" is a PDF bookmark. |
||
1712 | If "name" is not given the currently selected item is used. |
||
1713 | |||
1714 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
1715 | </source> |
||
1716 | <translation type="unfinished"></translation> |
||
1717 | </message> |
||
3824 | cbradney | 1718 | <message> |
1719 | <source>newDoc(size, margins, orientation, firstPageNumber, |
||
1720 | unit, facingPages, firstSideLeft) -> bool |
||
1721 | |||
1722 | WARNING: Obsolete procedure! Use newDocument instead. |
||
1723 | |||
1724 | Creates a new document and returns true if successful. The parameters have the |
||
1725 | following meaning: |
||
1726 | |||
1727 | size = A tuple (width, height) describing the size of the document. You can |
||
1728 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
||
1729 | |||
1730 | margins = A tuple (left, right, top, bottom) describing the document |
||
1731 | margins |
||
1732 | |||
1733 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
1734 | |||
1735 | firstPageNumer = is the number of the first page in the document used for |
||
1736 | pagenumbering. While you'll usually want 1, it's useful to have higher |
||
1737 | numbers if you're creating a document in several parts. |
||
1738 | |||
1739 | unit: this value sets the measurement units used by the document. Use a |
||
1740 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
1741 | UNIT_PICAS, UNIT_POINTS. |
||
1742 | |||
1743 | facingPages = FACINGPAGES, NOFACINGPAGES |
||
1744 | |||
1745 | firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT |
||
1746 | |||
1747 | The values for width, height and the margins are expressed in the given unit |
||
1748 | for the document. PAPER_* constants are expressed in points. If your document |
||
1749 | is not in points, make sure to account for this. |
||
1750 | |||
1751 | example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
||
1752 | FACINGPAGES, FIRSTPAGERIGHT) |
||
1753 | </source> |
||
1754 | <translation type="unfinished"></translation> |
||
1755 | </message> |
||
4141 | cbradney | 1756 | <message> |
1757 | <source>closeMasterPage() |
||
1758 | |||
1759 | Closes the currently active master page, if any, and returns editing |
||
1760 | to normal. Begin editing with editMasterPage(). |
||
1761 | </source> |
||
1762 | <translation type="unfinished"></translation> |
||
1763 | </message> |
||
1764 | <message> |
||
1765 | <source>masterPageNames() |
||
1766 | |||
1767 | Returns a list of the names of all master pages in the document. |
||
1768 | </source> |
||
1769 | <translation type="unfinished"></translation> |
||
1770 | </message> |
||
1771 | <message> |
||
1772 | <source>editMasterPage(pageName) |
||
1773 | |||
1774 | Enables master page editing and opens the named master page |
||
1775 | for editing. Finish editing with closeMasterPage(). |
||
1776 | </source> |
||
1777 | <translation type="unfinished"></translation> |
||
1778 | </message> |
||
1779 | <message> |
||
1780 | <source>createMasterPage(pageName) |
||
1781 | |||
1782 | Creates a new master page named pageName and opens it for |
||
1783 | editing. |
||
1784 | </source> |
||
1785 | <translation type="unfinished"></translation> |
||
1786 | </message> |
||
1787 | <message> |
||
1788 | <source>deleteMasterPage(pageName) |
||
1789 | |||
1790 | Delete the named master page. |
||
1791 | </source> |
||
1792 | <translation type="unfinished"></translation> |
||
1793 | </message> |
||
1794 | <message> |
||
1795 | <source>zoomDocument(double) |
||
1796 | |||
1797 | Zoom the document in main GUI window. Actions have whole number |
||
1798 | values like 20.0, 100.0, etc. Zoom to Fit uses -100 as a marker. |
||
1799 | </source> |
||
1800 | <translation type="unfinished"></translation> |
||
1801 | </message> |
||
6261 | cbradney | 1802 | <message> |
1803 | <source>getFillTransparency(["name"]) -> float |
||
1804 | |||
1805 | Returns the fill transparency of the object "name". If "name" |
||
1806 | is not given the currently selected Item is used. |
||
1807 | </source> |
||
1808 | <translation type="unfinished"></translation> |
||
1809 | </message> |
||
1810 | <message> |
||
1811 | <source>getFillBlendmode(["name"]) -> integer |
||
1812 | |||
1813 | Returns the fill blendmode of the object "name". If "name" |
||
1814 | is not given the currently selected Item is used. |
||
1815 | </source> |
||
1816 | <translation type="unfinished"></translation> |
||
1817 | </message> |
||
1818 | <message> |
||
1819 | <source>getLineTransparency(["name"]) -> float |
||
1820 | |||
1821 | Returns the line transparency of the object "name". If "name" |
||
1822 | is not given the currently selected Item is used. |
||
1823 | </source> |
||
1824 | <translation type="unfinished"></translation> |
||
1825 | </message> |
||
1826 | <message> |
||
1827 | <source>getLineBlendmode(["name"]) -> integer |
||
1828 | |||
1829 | Returns the line blendmode of the object "name". If "name" |
||
1830 | is not given the currently selected Item is used. |
||
1831 | </source> |
||
1832 | <translation type="unfinished"></translation> |
||
1833 | </message> |
||
1834 | <message> |
||
1835 | <source>setLayerPrintable("layer", printable) |
||
1836 | |||
1837 | Sets the layer "layer" to be printable or not. If printable is set to |
||
1838 | false the layer won't be printed. |
||
1839 | |||
1840 | May raise NotFoundError if the layer can't be found. |
||
1841 | May raise ValueError if the layer name isn't acceptable. |
||
1842 | </source> |
||
1843 | <translation type="unfinished"></translation> |
||
1844 | </message> |
||
1845 | <message> |
||
1846 | <source>setLayerLocked("layer", locked) |
||
1847 | |||
1848 | Sets the layer "layer" to be locked or not. If locked is set to |
||
1849 | true the layer will be locked. |
||
1850 | |||
1851 | May raise NotFoundError if the layer can't be found. |
||
1852 | May raise ValueError if the layer name isn't acceptable. |
||
1853 | </source> |
||
1854 | <translation type="unfinished"></translation> |
||
1855 | </message> |
||
1856 | <message> |
||
1857 | <source>setLayerOutlined"layer", outline) |
||
1858 | |||
1859 | Sets the layer "layer" to be locked or not. If outline is set to |
||
1860 | true the layer will be displayed outlined. |
||
1861 | |||
1862 | May raise NotFoundError if the layer can't be found. |
||
1863 | May raise ValueError if the layer name isn't acceptable. |
||
1864 | </source> |
||
1865 | <translation type="unfinished"></translation> |
||
1866 | </message> |
||
1867 | <message> |
||
1868 | <source>setLayerFlow"layer", flow) |
||
1869 | |||
1870 | Sets the layers "layer" flowcontrol to flow. If flow is set to |
||
1871 | true text in layers above this one will flow around objects on this layer. |
||
1872 | |||
1873 | May raise NotFoundError if the layer can't be found. |
||
1874 | May raise ValueError if the layer name isn't acceptable. |
||
1875 | </source> |
||
1876 | <translation type="unfinished"></translation> |
||
1877 | </message> |
||
1878 | <message> |
||
1879 | <source>setLayerBlendmode"layer", blend) |
||
1880 | |||
1881 | Sets the layers "layer" blendmode to blend. |
||
1882 | |||
1883 | May raise NotFoundError if the layer can't be found. |
||
1884 | May raise ValueError if the layer name isn't acceptable. |
||
1885 | </source> |
||
1886 | <translation type="unfinished"></translation> |
||
1887 | </message> |
||
1888 | <message> |
||
1889 | <source>setLayerTransparency"layer", trans) |
||
1890 | |||
1891 | Sets the layers "layer" transparency to trans. |
||
1892 | |||
1893 | May raise NotFoundError if the layer can't be found. |
||
1894 | May raise ValueError if the layer name isn't acceptable. |
||
1895 | </source> |
||
1896 | <translation type="unfinished"></translation> |
||
1897 | </message> |
||
1898 | <message> |
||
1899 | <source>isLayerLocked("layer") -> bool |
||
1900 | |||
1901 | Returns whether the layer "layer" is locked or not, a value of True means |
||
1902 | that the layer "layer" is editable, a value of False means that the layer |
||
1903 | "layer" is locked. |
||
1904 | |||
1905 | May raise NotFoundError if the layer can't be found. |
||
1906 | May raise ValueError if the layer name isn't acceptable. |
||
1907 | </source> |
||
1908 | <translation type="unfinished"></translation> |
||
1909 | </message> |
||
1910 | <message> |
||
1911 | <source>isLayerOutlined("layer") -> bool |
||
1912 | |||
1913 | Returns whether the layer "layer" is outlined or not, a value of True means |
||
1914 | that the layer "layer" is outlined, a value of False means that the layer |
||
1915 | "layer" is normal. |
||
1916 | |||
1917 | May raise NotFoundError if the layer can't be found. |
||
1918 | May raise ValueError if the layer name isn't acceptable. |
||
1919 | </source> |
||
1920 | <translation type="unfinished"></translation> |
||
1921 | </message> |
||
1922 | <message> |
||
1923 | <source>isLayerFlow("layer") -> bool |
||
1924 | |||
1925 | Returns whether text flows around objects on layer "layer", a value of True means |
||
1926 | that text flows around, a value of False means that the text does not flow around. |
||
1927 | |||
1928 | May raise NotFoundError if the layer can't be found. |
||
1929 | May raise ValueError if the layer name isn't acceptable. |
||
1930 | </source> |
||
1931 | <translation type="unfinished"></translation> |
||
1932 | </message> |
||
1933 | <message> |
||
1934 | <source>getLayerBlendmode("layer") -> int |
||
1935 | |||
1936 | Returns the "layer" layer blendmode, |
||
1937 | |||
1938 | May raise NotFoundError if the layer can't be found. |
||
1939 | May raise ValueError if the layer name isn't acceptable. |
||
1940 | </source> |
||
1941 | <translation type="unfinished"></translation> |
||
1942 | </message> |
||
1943 | <message> |
||
1944 | <source>getLayerTransparency("layer") -> float |
||
1945 | |||
1946 | Returns the "layer" layer transparency, |
||
1947 | |||
1948 | May raise NotFoundError if the layer can't be found. |
||
1949 | May raise ValueError if the layer name isn't acceptable. |
||
1950 | </source> |
||
1951 | <translation type="unfinished"></translation> |
||
1952 | </message> |
||
1953 | <message> |
||
1954 | <source>createEllipse(x, y, width, height, ["name"]) -> string |
||
1955 | |||
1956 | Creates a new ellipse on the current page and returns its name. |
||
1957 | The coordinates are given in the current measurement units of the document |
||
1958 | (see UNIT constants). "name" should be a unique identifier for the object |
||
1959 | because you need this name for further referencing of that object. If "name" |
||
1960 | is not given Scribus will create one for you. |
||
1961 | |||
1962 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1963 | </source> |
||
1964 | <translation type="unfinished"></translation> |
||
1965 | </message> |
||
1966 | <message> |
||
1967 | <source>textFlowMode("name" [, state]) |
||
1968 | |||
1969 | Enables/disables "Text Flows Around Frame" feature for object "name". |
||
1970 | Called with parameters string name and optional int "state" (0 <= state <= 3). |
||
1971 | Setting "state" to 0 will disable text flow. |
||
1972 | Setting "state" to 1 will make text flow around object frame. |
||
1973 | Setting "state" to 2 will make text flow around bounding box. |
||
1974 | Setting "state" to 3 will make text flow around contour line. |
||
1975 | If "state" is not passed, text flow is toggled. |
||
1976 | </source> |
||
1977 | <translation type="unfinished"></translation> |
||
1978 | </message> |
||
1979 | <message> |
||
1980 | <source>duplicateObject(["name"]) -> string |
||
1981 | |||
1982 | creates a Duplicate of the selected Object (or Selection Group). |
||
1983 | </source> |
||
1984 | <translation type="unfinished"></translation> |
||
1985 | </message> |
||
1986 | <message> |
||
1987 | <source>setFillTransparency(transparency, ["name"]) |
||
1988 | |||
1989 | Sets the fill transparency of the object "name" to transparency |
||
1990 | is the name of one of the defined colors. If "name" is not given the |
||
1991 | currently selected item is used. |
||
1992 | </source> |
||
1993 | <translation type="unfinished"></translation> |
||
1994 | </message> |
||
1995 | <message> |
||
1996 | <source>setFillBlendmode(blendmode, ["name"]) |
||
1997 | |||
1998 | Sets the fill blendmode of the object "name" to blendmode |
||
1999 | is the name of one of the defined colors. If "name" is not given the |
||
2000 | currently selected item is used. |
||
2001 | </source> |
||
2002 | <translation type="unfinished"></translation> |
||
2003 | </message> |
||
2004 | <message> |
||
2005 | <source>setLineTransparency(transparency, ["name"]) |
||
2006 | |||
2007 | Sets the line transparency of the object "name" to transparency |
||
2008 | is the name of one of the defined colors. If "name" is not given the |
||
2009 | currently selected item is used. |
||
2010 | </source> |
||
2011 | <translation type="unfinished"></translation> |
||
2012 | </message> |
||
2013 | <message> |
||
2014 | <source>setLineBlendmode(blendmode, ["name"]) |
||
2015 | |||
2016 | Sets the line blendmode of the object "name" to blendmode |
||
2017 | is the name of one of the defined colors. If "name" is not given the |
||
2018 | currently selected item is used. |
||
2019 | </source> |
||
2020 | <translation type="unfinished"></translation> |
||
2021 | </message> |
||
6434 | cbradney | 2022 | <message> |
2023 | <source>setInfo("author", "info", "description") -> bool |
||
2024 | |||
2025 | Sets the document information. "Author", "Info", "Description" are |
||
2026 | strings. |
||
2027 | </source> |
||
2028 | <translation type="unfinished"></translation> |
||
2029 | </message> |
||
2030 | <message> |
||
2031 | <source>getPageType() -> integer |
||
2032 | |||
2033 | Returns the type of the Page, 0 means left Page, 1 is a middle Page and 2 is a right Page |
||
2034 | </source> |
||
2035 | <translation type="unfinished"></translation> |
||
2036 | </message> |
||
2037 | <message> |
||
2038 | <source>getTextLines(["name"]) -> integer |
||
2039 | |||
2040 | Returns the number of lines of the text in the text frame "name". |
||
2041 | If "name" is not given the currently selected item is used. |
||
2042 | </source> |
||
2043 | <translation type="unfinished"></translation> |
||
2044 | </message> |
||
1135 | cbradney | 2045 | </context> |
2046 | <context> |
||
395 | Franz | 2047 | <name>About</name> |
2048 | <message> |
||
1135 | cbradney | 2049 | <source>About Scribus%1%2</source> |
2050 | <translation type="obsolete">Om Scribus%1%2</translation> |
||
2051 | </message> |
||
2052 | <message> |
||
395 | Franz | 2053 | <source>&About</source> |
2054 | <translation>&Om</translation> |
||
2055 | </message> |
||
2056 | <message> |
||
2057 | <source>Contributions from:</source> |
||
2058 | <translation>Bidrag från:</translation> |
||
2059 | </message> |
||
2060 | <message> |
||
2061 | <source>Windows port:</source> |
||
3064 | cbradney | 2062 | <translation type="obsolete">Portning till Windows:</translation> |
395 | Franz | 2063 | </message> |
2064 | <message> |
||
2065 | <source>A&uthors</source> |
||
2066 | <translation>Skapa&re:</translation> |
||
2067 | </message> |
||
2068 | <message> |
||
2069 | <source>German:</source> |
||
3064 | cbradney | 2070 | <translation type="obsolete">Tyska:</translation> |
395 | Franz | 2071 | </message> |
2072 | <message> |
||
2073 | <source>French:</source> |
||
3064 | cbradney | 2074 | <translation type="obsolete">Franska:</translation> |
395 | Franz | 2075 | </message> |
2076 | <message> |
||
2077 | <source>Italian:</source> |
||
3064 | cbradney | 2078 | <translation type="obsolete">Italienska:</translation> |
395 | Franz | 2079 | </message> |
2080 | <message> |
||
2081 | <source>Hungarian:</source> |
||
3064 | cbradney | 2082 | <translation type="obsolete">Ungerska:</translation> |
395 | Franz | 2083 | </message> |
2084 | <message> |
||
2085 | <source>Ukrainian:</source> |
||
3064 | cbradney | 2086 | <translation type="obsolete">Ukrainska:</translation> |
395 | Franz | 2087 | </message> |
2088 | <message> |
||
2089 | <source>Bulgarian:</source> |
||
3064 | cbradney | 2090 | <translation type="obsolete">Bulgariska:</translation> |
395 | Franz | 2091 | </message> |
2092 | <message> |
||
2093 | <source>Galician:</source> |
||
3064 | cbradney | 2094 | <translation type="obsolete">Galiciska:</translation> |
395 | Franz | 2095 | </message> |
2096 | <message> |
||
2097 | <source>Turkish:</source> |
||
3064 | cbradney | 2098 | <translation type="obsolete">Turkiska:</translation> |
395 | Franz | 2099 | </message> |
2100 | <message> |
||
2101 | <source>Lithuanian:</source> |
||
3064 | cbradney | 2102 | <translation type="obsolete">Litauiska:</translation> |
395 | Franz | 2103 | </message> |
2104 | <message> |
||
2105 | <source>Polish:</source> |
||
3064 | cbradney | 2106 | <translation type="obsolete">Polska:</translation> |
395 | Franz | 2107 | </message> |
2108 | <message> |
||
2109 | <source>Czech:</source> |
||
3064 | cbradney | 2110 | <translation type="obsolete">Tjekiska:</translation> |
395 | Franz | 2111 | </message> |
2112 | <message> |
||
2113 | <source>Slovak:</source> |
||
3064 | cbradney | 2114 | <translation type="obsolete">Slovakiska:</translation> |
395 | Franz | 2115 | </message> |
2116 | <message> |
||
2117 | <source>Danish:</source> |
||
3064 | cbradney | 2118 | <translation type="obsolete">Danska:</translation> |
395 | Franz | 2119 | </message> |
2120 | <message> |
||
2121 | <source>Norwegian:</source> |
||
3064 | cbradney | 2122 | <translation type="obsolete">Norska:</translation> |
395 | Franz | 2123 | </message> |
2124 | <message> |
||
2125 | <source>Welsh:</source> |
||
3064 | cbradney | 2126 | <translation type="obsolete">Walesiska:</translation> |
395 | Franz | 2127 | </message> |
2128 | <message> |
||
2129 | <source>Russian:</source> |
||
3064 | cbradney | 2130 | <translation type="obsolete">Ryska:</translation> |
395 | Franz | 2131 | </message> |
2132 | <message> |
||
2133 | <source>Brazilian:</source> |
||
3064 | cbradney | 2134 | <translation type="obsolete">Brasilianska:</translation> |
395 | Franz | 2135 | </message> |
2136 | <message> |
||
2137 | <source>Finnish:</source> |
||
3064 | cbradney | 2138 | <translation type="obsolete">Finska:</translation> |
395 | Franz | 2139 | </message> |
2140 | <message> |
||
2141 | <source>Slovenian:</source> |
||
3064 | cbradney | 2142 | <translation type="obsolete">Slovenska:</translation> |
395 | Franz | 2143 | </message> |
2144 | <message> |
||
2145 | <source>Basque:</source> |
||
3064 | cbradney | 2146 | <translation type="obsolete">Baskiska:</translation> |
395 | Franz | 2147 | </message> |
2148 | <message> |
||
2149 | <source>&Translations</source> |
||
5874 | mrdocs | 2150 | <translation>Översä&ttningar</translation> |
395 | Franz | 2151 | </message> |
2152 | <message> |
||
2153 | <source>&Online</source> |
||
2154 | <translation>O&nline</translation> |
||
2155 | </message> |
||
2156 | <message> |
||
2157 | <source>&Close</source> |
||
2158 | <translation>&Stäng</translation> |
||
2159 | </message> |
||
2160 | <message> |
||
1135 | cbradney | 2161 | <source>This panel shows the version, build date and |
2162 | compiled in library support in Scribus |
||
2163 | The C-C-T equates to C=CUPS C=littlecms T=TIFF support. |
||
2164 | Missing library support is indicated by a *</source> |
||
1525 | cbradney | 2165 | <translation type="obsolete">Detta fönster visar versionsnummer, byggdatum och |
1135 | cbradney | 2166 | kompilerade stödbibliotek för Scribus. |
2167 | Beteckningen C-C-T betyder stöd för C=CUPS, C=littlecms och T=Tiff. |
||
2168 | Avsaknad av stöd är markerat med *</translation> |
||
2169 | </message> |
||
2170 | <message> |
||
418 | Franz | 2171 | <source>Development Team:</source> |
1135 | cbradney | 2172 | <translation>Utvecklargrupp:</translation> |
418 | Franz | 2173 | </message> |
2174 | <message> |
||
2175 | <source>Official Documentation:</source> |
||
1135 | cbradney | 2176 | <translation>Officiell dokumentation:</translation> |
418 | Franz | 2177 | </message> |
2178 | <message> |
||
2179 | <source>Other Documentation:</source> |
||
5874 | mrdocs | 2180 | <translation>Övrig dokumentation:</translation> |
418 | Franz | 2181 | </message> |
2182 | <message> |
||
2183 | <source>English (British):</source> |
||
3064 | cbradney | 2184 | <translation type="obsolete">Engelska (British):</translation> |
418 | Franz | 2185 | </message> |
2186 | <message> |
||
2187 | <source>Swedish:</source> |
||
3064 | cbradney | 2188 | <translation type="obsolete">Svenska:</translation> |
418 | Franz | 2189 | </message> |
2190 | <message> |
||
2191 | <source>Homepage</source> |
||
1135 | cbradney | 2192 | <translation>Hemsida</translation> |
418 | Franz | 2193 | </message> |
2194 | <message> |
||
2195 | <source>Online Reference</source> |
||
1135 | cbradney | 2196 | <translation>Online referenshandbok</translation> |
418 | Franz | 2197 | </message> |
2198 | <message> |
||
2199 | <source>Bugs and Feature Requests</source> |
||
1135 | cbradney | 2200 | <translation>Felrapporter och önskemål om nya funktioner</translation> |
418 | Franz | 2201 | </message> |
2202 | <message> |
||
2203 | <source>Mailing List</source> |
||
1135 | cbradney | 2204 | <translation>Utsändningslista</translation> |
418 | Franz | 2205 | </message> |
454 | fschmid | 2206 | <message> |
2207 | <source>Official Translations and Translators:</source> |
||
1135 | cbradney | 2208 | <translation>Officiella översättningar och översättare:</translation> |
454 | fschmid | 2209 | </message> |
2210 | <message> |
||
2211 | <source>Esperanto:</source> |
||
3064 | cbradney | 2212 | <translation type="obsolete">Esperanto:</translation> |
454 | fschmid | 2213 | </message> |
2214 | <message> |
||
2215 | <source>Korean:</source> |
||
3064 | cbradney | 2216 | <translation type="obsolete">Koreanska:</translation> |
454 | fschmid | 2217 | </message> |
2218 | <message> |
||
2219 | <source>Serbian:</source> |
||
3064 | cbradney | 2220 | <translation type="obsolete">Serbiska:</translation> |
454 | fschmid | 2221 | </message> |
2222 | <message> |
||
2223 | <source>Spanish:</source> |
||
3064 | cbradney | 2224 | <translation type="obsolete">Spanska:</translation> |
454 | fschmid | 2225 | </message> |
2226 | <message> |
||
2227 | <source>Previous Translation Contributors:</source> |
||
1135 | cbradney | 2228 | <translation>Tidigare översättare:</translation> |
454 | fschmid | 2229 | </message> |
2230 | <message> |
||
2231 | <source>Catalan:</source> |
||
3064 | cbradney | 2232 | <translation type="obsolete">Katalanska:</translation> |
454 | fschmid | 2233 | </message> |
769 | cbradney | 2234 | <message> |
2235 | <source>About Scribus %1</source> |
||
1135 | cbradney | 2236 | <translation>Om Scribus %1</translation> |
769 | cbradney | 2237 | </message> |
1525 | cbradney | 2238 | <message> |
3824 | cbradney | 2239 | <source>Wiki</source> |
5874 | mrdocs | 2240 | <translation>Wiki</translation> |
1525 | cbradney | 2241 | </message> |
2242 | <message> |
||
3824 | cbradney | 2243 | <source>%1 %2 %3</source> |
5874 | mrdocs | 2244 | <translation>%1%2%3</translation> |
3064 | cbradney | 2245 | </message> |
2246 | <message> |
||
3824 | cbradney | 2247 | <source>%3-%2-%1 %4 %5</source> |
5874 | mrdocs | 2248 | <translation>%3-%2-%1 %4 %5</translation> |
3064 | cbradney | 2249 | </message> |
2250 | <message> |
||
3824 | cbradney | 2251 | <source>Using Ghostscript version %1</source> |
5874 | mrdocs | 2252 | <translation>Använder Ghostscript version %1</translation> |
3064 | cbradney | 2253 | </message> |
2254 | <message> |
||
3824 | cbradney | 2255 | <source>No Ghostscript version available</source> |
5874 | mrdocs | 2256 | <translation>Ingen Ghostscript-version tillgänglig</translation> |
3064 | cbradney | 2257 | </message> |
3824 | cbradney | 2258 | <message> |
2259 | <source><b>Scribus Version %1</b><p>%2<br/>%3 %4<br/>%5</p></source> |
||
5874 | mrdocs | 2260 | <translation><b>Scribus Version %1</b><p>%2<br/>%3 %4<br/>%5</p></translation> |
3824 | cbradney | 2261 | </message> |
2262 | <message> |
||
2263 | <source>Build ID:</source> |
||
5874 | mrdocs | 2264 | <translation>Bygg-ID:</translation> |
3824 | cbradney | 2265 | </message> |
2266 | <message> |
||
2267 | <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 | 2268 | <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 | 2269 | </message> |
4141 | cbradney | 2270 | <message> |
4870 | mrdocs | 2271 | <source>Mac OS&#174; X Aqua Port:</source> |
5874 | mrdocs | 2272 | <translation>Mac OS&#174; X Aqua Port:</translation> |
4141 | cbradney | 2273 | </message> |
4759 | cbradney | 2274 | <message> |
4870 | mrdocs | 2275 | <source>Windows&#174; Port:</source> |
5874 | mrdocs | 2276 | <translation>Windows&#174; Port:</translation> |
4759 | cbradney | 2277 | </message> |
2278 | <message> |
||
5328 | cbradney | 2279 | <source>Tango Project Icons:</source> |
5874 | mrdocs | 2280 | <translation>Ikoner från projekt Tango:</translation> |
5328 | cbradney | 2281 | </message> |
6261 | cbradney | 2282 | <message> |
2283 | <source>&Updates</source> |
||
2284 | <translation type="unfinished"></translation> |
||
2285 | </message> |
||
2286 | <message> |
||
2287 | <source>Check for &Updates</source> |
||
2288 | <translation type="unfinished"></translation> |
||
2289 | </message> |
||
2290 | <message> |
||
2291 | <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> |
||
2292 | <translation type="unfinished"></translation> |
||
2293 | </message> |
||
2294 | <message> |
||
2295 | <source>Check for updates to Scribus. No data from your machine will be transferred off it.</source> |
||
2296 | <translation type="unfinished"></translation> |
||
2297 | </message> |
||
395 | Franz | 2298 | </context> |
2299 | <context> |
||
3278 | cbradney | 2300 | <name>AboutPlugins</name> |
2301 | <message> |
||
2302 | <source>Yes</source> |
||
5874 | mrdocs | 2303 | <translation>Ja</translation> |
3278 | cbradney | 2304 | </message> |
2305 | <message> |
||
2306 | <source>No</source> |
||
5874 | mrdocs | 2307 | <translation>Nej</translation> |
3278 | cbradney | 2308 | </message> |
2309 | <message> |
||
4759 | cbradney | 2310 | <source>Filename:</source> |
5874 | mrdocs | 2311 | <translation>Filnamn:</translation> |
3278 | cbradney | 2312 | </message> |
2313 | <message> |
||
2314 | <source>Version:</source> |
||
5874 | mrdocs | 2315 | <translation>Version:</translation> |
3278 | cbradney | 2316 | </message> |
2317 | <message> |
||
2318 | <source>Enabled:</source> |
||
5874 | mrdocs | 2319 | <translation>Aktiverad:</translation> |
3278 | cbradney | 2320 | </message> |
2321 | <message> |
||
2322 | <source>Release Date:</source> |
||
5874 | mrdocs | 2323 | <translation>Publiceringsdatum:</translation> |
3278 | cbradney | 2324 | </message> |
2325 | <message> |
||
4759 | cbradney | 2326 | <source>Description:</source> |
5874 | mrdocs | 2327 | <translation>Beskrivning:</translation> |
3278 | cbradney | 2328 | </message> |
2329 | <message> |
||
2330 | <source>Author(s):</source> |
||
5874 | mrdocs | 2331 | <translation>Författare:</translation> |
3278 | cbradney | 2332 | </message> |
2333 | <message> |
||
4759 | cbradney | 2334 | <source>Copyright:</source> |
5874 | mrdocs | 2335 | <translation>Copyright:</translation> |
3278 | cbradney | 2336 | </message> |
2337 | <message> |
||
2338 | <source>License:</source> |
||
5874 | mrdocs | 2339 | <translation>Licens:</translation> |
3278 | cbradney | 2340 | </message> |
4759 | cbradney | 2341 | </context> |
2342 | <context> |
||
2343 | <name>AboutPluginsBase</name> |
||
3278 | cbradney | 2344 | <message> |
4759 | cbradney | 2345 | <source>Scribus: About Plug-ins</source> |
5874 | mrdocs | 2346 | <translation>Scribus: Om insticksprogram</translation> |
4759 | cbradney | 2347 | </message> |
2348 | <message> |
||
3278 | cbradney | 2349 | <source>&Close</source> |
5874 | mrdocs | 2350 | <translation>&Stäng</translation> |
3278 | cbradney | 2351 | </message> |
2352 | <message> |
||
2353 | <source>Alt+C</source> |
||
5874 | mrdocs | 2354 | <translation>Alt+C</translation> |
3278 | cbradney | 2355 | </message> |
2356 | </context> |
||
2357 | <context> |
||
3064 | cbradney | 2358 | <name>ActionManager</name> |
2359 | <message> |
||
2360 | <source>&New</source> |
||
5874 | mrdocs | 2361 | <translation>&Ny</translation> |
3064 | cbradney | 2362 | </message> |
2363 | <message> |
||
2364 | <source>&Open...</source> |
||
5874 | mrdocs | 2365 | <translation>Ö&ppna...</translation> |
3064 | cbradney | 2366 | </message> |
2367 | <message> |
||
2368 | <source>&Close</source> |
||
5874 | mrdocs | 2369 | <translation>&Stäng</translation> |
3064 | cbradney | 2370 | </message> |
2371 | <message> |
||
2372 | <source>&Save</source> |
||
5874 | mrdocs | 2373 | <translation>&Spara</translation> |
3064 | cbradney | 2374 | </message> |
2375 | <message> |
||
2376 | <source>Save &As...</source> |
||
5874 | mrdocs | 2377 | <translation>Sp&ara som...</translation> |
3064 | cbradney | 2378 | </message> |
2379 | <message> |
||
2380 | <source>Re&vert to Saved</source> |
||
5874 | mrdocs | 2381 | <translation>Åter&gå till senast sparad</translation> |
3064 | cbradney | 2382 | </message> |
2383 | <message> |
||
2384 | <source>Collect for O&utput...</source> |
||
5874 | mrdocs | 2385 | <translation>Samla ihop för &utskrift...</translation> |
3064 | cbradney | 2386 | </message> |
2387 | <message> |
||
2388 | <source>Get Text...</source> |
||
5874 | mrdocs | 2389 | <translation>Hämta text...</translation> |
3064 | cbradney | 2390 | </message> |
2391 | <message> |
||
2392 | <source>Append &Text...</source> |
||
5874 | mrdocs | 2393 | <translation>Lägg &till text...</translation> |
3064 | cbradney | 2394 | </message> |
2395 | <message> |
||
2396 | <source>Get Image...</source> |
||
5874 | mrdocs | 2397 | <translation>Hämta bild...</translation> |
3064 | cbradney | 2398 | </message> |
2399 | <message> |
||
2400 | <source>Save &Text...</source> |
||
5874 | mrdocs | 2401 | <translation>Spara &text...</translation> |
3064 | cbradney | 2402 | </message> |
2403 | <message> |
||
2404 | <source>Save Page as &EPS...</source> |
||
5485 | cbradney | 2405 | <translation type="obsolete">Spara sida som &EPS...</translation> |
3064 | cbradney | 2406 | </message> |
2407 | <message> |
||
2408 | <source>Save as P&DF...</source> |
||
5874 | mrdocs | 2409 | <translation>Spara som P&DF...</translation> |
3064 | cbradney | 2410 | </message> |
2411 | <message> |
||
2412 | <source>Document &Setup...</source> |
||
5874 | mrdocs | 2413 | <translation>Dokumentin&ställningar...</translation> |
3064 | cbradney | 2414 | </message> |
2415 | <message> |
||
2416 | <source>&Print...</source> |
||
5874 | mrdocs | 2417 | <translation>&Skriv ut...</translation> |
3064 | cbradney | 2418 | </message> |
2419 | <message> |
||
2420 | <source>&Quit</source> |
||
5874 | mrdocs | 2421 | <translation>&Avsluta</translation> |
3064 | cbradney | 2422 | </message> |
2423 | <message> |
||
2424 | <source>&Undo</source> |
||
5874 | mrdocs | 2425 | <translation>Ån&gra</translation> |
3064 | cbradney | 2426 | </message> |
2427 | <message> |
||
2428 | <source>&Redo</source> |
||
5874 | mrdocs | 2429 | <translation>Gö&r om</translation> |
3064 | cbradney | 2430 | </message> |
2431 | <message> |
||
2432 | <source>&Item Action Mode</source> |
||
6232 | mrdocs | 2433 | <translation>Akt&ivitetsläge för enhet</translation> |
3064 | cbradney | 2434 | </message> |
2435 | <message> |
||
2436 | <source>Cu&t</source> |
||
5874 | mrdocs | 2437 | <translation>Klipp u&t</translation> |
3064 | cbradney | 2438 | </message> |
2439 | <message> |
||
2440 | <source>&Copy</source> |
||
5874 | mrdocs | 2441 | <translation>&Kopiera</translation> |
3064 | cbradney | 2442 | </message> |
2443 | <message> |
||
2444 | <source>&Paste</source> |
||
5874 | mrdocs | 2445 | <translation>K&listra in</translation> |
3064 | cbradney | 2446 | </message> |
2447 | <message> |
||
2448 | <source>C&lear Contents</source> |
||
5328 | cbradney | 2449 | <translation type="obsolete">Rensa innehå&ll</translation> |
3064 | cbradney | 2450 | </message> |
2451 | <message> |
||
2452 | <source>Select &All</source> |
||
5874 | mrdocs | 2453 | <translation>M&arkera allt</translation> |
3064 | cbradney | 2454 | </message> |
2455 | <message> |
||
2456 | <source>&Deselect All</source> |
||
5874 | mrdocs | 2457 | <translation>Ångra &markering</translation> |
3064 | cbradney | 2458 | </message> |
2459 | <message> |
||
2460 | <source>&Search/Replace...</source> |
||
5874 | mrdocs | 2461 | <translation>&Sök/Ersätt...</translation> |
3064 | cbradney | 2462 | </message> |
2463 | <message> |
||
2464 | <source>Edit Image...</source> |
||
5874 | mrdocs | 2465 | <translation>Redigera bild...</translation> |
3064 | cbradney | 2466 | </message> |
2467 | <message> |
||
2468 | <source>C&olors...</source> |
||
5874 | mrdocs | 2469 | <translation>Fä&rger...</translation> |
3064 | cbradney | 2470 | </message> |
2471 | <message> |
||
2472 | <source>&Paragraph Styles...</source> |
||
5874 | mrdocs | 2473 | <translation>St&yckemallar...</translation> |
3064 | cbradney | 2474 | </message> |
2475 | <message> |
||
2476 | <source>&Line Styles...</source> |
||
5874 | mrdocs | 2477 | <translation>&Linjemallar...</translation> |
3064 | cbradney | 2478 | </message> |
2479 | <message> |
||
2480 | <source>&Master Pages...</source> |
||
5874 | mrdocs | 2481 | <translation>&Mallsidor...</translation> |
3064 | cbradney | 2482 | </message> |
2483 | <message> |
||
2484 | <source>&Javascripts...</source> |
||
3278 | cbradney | 2485 | <translation type="obsolete">&Javascripts...</translation> |
3064 | cbradney | 2486 | </message> |
2487 | <message> |
||
2488 | <source>P&references...</source> |
||
5874 | mrdocs | 2489 | <translation>Inställninga&r...</translation> |
3064 | cbradney | 2490 | </message> |
2491 | <message> |
||
2492 | <source>%1 pt</source> |
||
5874 | mrdocs | 2493 | <translation>%1 pt</translation> |
3064 | cbradney | 2494 | </message> |
2495 | <message> |
||
2496 | <source>&Other...</source> |
||
5874 | mrdocs | 2497 | <translation>&Annan...</translation> |
3064 | cbradney | 2498 | </message> |
2499 | <message> |
||
2500 | <source>&Left</source> |
||
5874 | mrdocs | 2501 | <translation>&Vänster</translation> |
3064 | cbradney | 2502 | </message> |
2503 | <message> |
||
2504 | <source>&Center</source> |
||
5874 | mrdocs | 2505 | <translation>&Centrerat</translation> |
3064 | cbradney | 2506 | </message> |
2507 | <message> |
||
2508 | <source>&Right</source> |
||
5874 | mrdocs | 2509 | <translation>Höge&r</translation> |
3064 | cbradney | 2510 | </message> |
2511 | <message> |
||
2512 | <source>&Block</source> |
||
5874 | mrdocs | 2513 | <translation>&Marginajustera</translation> |
3064 | cbradney | 2514 | </message> |
2515 | <message> |
||
2516 | <source>&Forced</source> |
||
5874 | mrdocs | 2517 | <translation>&Hård marginaljustering</translation> |
3064 | cbradney | 2518 | </message> |
2519 | <message> |
||
2520 | <source>&%1 %</source> |
||
5874 | mrdocs | 2521 | <translation>&%1 %</translation> |
3064 | cbradney | 2522 | </message> |
2523 | <message> |
||
2524 | <source>&Normal</source> |
||
5874 | mrdocs | 2525 | <translation>&Normal</translation> |
3064 | cbradney | 2526 | </message> |
2527 | <message> |
||
2528 | <source>&Underline</source> |
||
5874 | mrdocs | 2529 | <translation>&Understrykning</translation> |
3064 | cbradney | 2530 | </message> |
2531 | <message> |
||
2532 | <source>Underline &Words</source> |
||
5874 | mrdocs | 2533 | <translation>&Understrukna ord</translation> |
3064 | cbradney | 2534 | </message> |
2535 | <message> |
||
2536 | <source>&Strike Through</source> |
||
5874 | mrdocs | 2537 | <translation>&Genomstrykning</translation> |
3064 | cbradney | 2538 | </message> |
2539 | <message> |
||
2540 | <source>&All Caps</source> |
||
5874 | mrdocs | 2541 | <translation>Vers&aler</translation> |
3064 | cbradney | 2542 | </message> |
2543 | <message> |
||
2544 | <source>Small &Caps</source> |
||
5874 | mrdocs | 2545 | <translation>&Kapitäler</translation> |
3064 | cbradney | 2546 | </message> |
2547 | <message> |
||
2548 | <source>Su&perscript</source> |
||
5874 | mrdocs | 2549 | <translation>U&pphöjt</translation> |
3064 | cbradney | 2550 | </message> |
2551 | <message> |
||
2552 | <source>Su&bscript</source> |
||
5874 | mrdocs | 2553 | <translation>Ne&dsänkt</translation> |
3064 | cbradney | 2554 | </message> |
2555 | <message> |
||
2556 | <source>&Outline</source> |
||
4870 | mrdocs | 2557 | <translation type="obsolete">�amp;versikt</translation> |
3064 | cbradney | 2558 | </message> |
2559 | <message> |
||
2560 | <source>S&hadow</source> |
||
5874 | mrdocs | 2561 | <translation>S&kugga</translation> |
3064 | cbradney | 2562 | </message> |
2563 | <message> |
||
2564 | <source>&Image Effects</source> |
||
5874 | mrdocs | 2565 | <translation>B&ildeffekter</translation> |
3064 | cbradney | 2566 | </message> |
2567 | <message> |
||
2568 | <source>&Tabulators...</source> |
||
5874 | mrdocs | 2569 | <translation>&Tabulatorer...</translation> |
3064 | cbradney | 2570 | </message> |
2571 | <message> |
||
2572 | <source>D&uplicate</source> |
||
5874 | mrdocs | 2573 | <translation>D&uplicera</translation> |
3064 | cbradney | 2574 | </message> |
2575 | <message> |
||
2576 | <source>&Multiple Duplicate</source> |
||
5874 | mrdocs | 2577 | <translation>&Duplicera flera gånger</translation> |
3064 | cbradney | 2578 | </message> |
2579 | <message> |
||
2580 | <source>&Delete</source> |
||
5874 | mrdocs | 2581 | <translation>&Ta bort</translation> |
3064 | cbradney | 2582 | </message> |
2583 | <message> |
||
2584 | <source>&Group</source> |
||
5874 | mrdocs | 2585 | <translation>&Gruppera</translation> |
3064 | cbradney | 2586 | </message> |
2587 | <message> |
||
2588 | <source>&Ungroup</source> |
||
5874 | mrdocs | 2589 | <translation>Lås &upp grupp</translation> |
3064 | cbradney | 2590 | </message> |
2591 | <message> |
||
2592 | <source>Is &Locked</source> |
||
5874 | mrdocs | 2593 | <translation>Är &låst</translation> |
3064 | cbradney | 2594 | </message> |
2595 | <message> |
||
2596 | <source>Si&ze is Locked</source> |
||
5874 | mrdocs | 2597 | <translation>Storle&ken är låst</translation> |
3064 | cbradney | 2598 | </message> |
2599 | <message> |
||
2600 | <source>Lower to &Bottom</source> |
||
5874 | mrdocs | 2601 | <translation>Lä&gg underst</translation> |
3064 | cbradney | 2602 | </message> |
2603 | <message> |
||
2604 | <source>Raise to &Top</source> |
||
5874 | mrdocs | 2605 | <translation>Lyf&t till överst</translation> |
3064 | cbradney | 2606 | </message> |
2607 | <message> |
||
2608 | <source>&Lower</source> |
||
5874 | mrdocs | 2609 | <translation>F&lytta ner en nivå</translation> |
3064 | cbradney | 2610 | </message> |
2611 | <message> |
||
2612 | <source>&Raise</source> |
||
5874 | mrdocs | 2613 | <translation>Flytta &upp en nivå</translation> |
3064 | cbradney | 2614 | </message> |
2615 | <message> |
||
2616 | <source>Send to S&crapbook</source> |
||
5874 | mrdocs | 2617 | <translation>Skicka till &klippbok</translation> |
3064 | cbradney | 2618 | </message> |
2619 | <message> |
||
2620 | <source>&Attributes...</source> |
||
5874 | mrdocs | 2621 | <translation>Egensk&aper...</translation> |
3064 | cbradney | 2622 | </message> |
2623 | <message> |
||
2624 | <source>I&mage Visible</source> |
||
5874 | mrdocs | 2625 | <translation>B&ild synlig</translation> |
3064 | cbradney | 2626 | </message> |
2627 | <message> |
||
2628 | <source>&Update Image</source> |
||
5874 | mrdocs | 2629 | <translation>&Uppdatera bild</translation> |
3064 | cbradney | 2630 | </message> |
2631 | <message> |
||
2632 | <source>Adjust Frame to Image</source> |
||
5874 | mrdocs | 2633 | <translation>Justera ramen till bild</translation> |
3064 | cbradney | 2634 | </message> |
2635 | <message> |
||
2636 | <source>Extended Image Properties</source> |
||
5874 | mrdocs | 2637 | <translation>Utökade bildegenskaper</translation> |
3064 | cbradney | 2638 | </message> |
2639 | <message> |
||
2640 | <source>&Low Resolution</source> |
||
5874 | mrdocs | 2641 | <translation>&Låg upplösning</translation> |
3064 | cbradney | 2642 | </message> |
2643 | <message> |
||
2644 | <source>&Normal Resolution</source> |
||
5874 | mrdocs | 2645 | <translation>&Normal upplösning</translation> |
3064 | cbradney | 2646 | </message> |
2647 | <message> |
||
2648 | <source>&Full Resolution</source> |
||
5874 | mrdocs | 2649 | <translation>&Full upplösning</translation> |
3064 | cbradney | 2650 | </message> |
2651 | <message> |
||
2652 | <source>Is PDF &Bookmark</source> |
||
5874 | mrdocs | 2653 | <translation>Är ett PDF-&bokmärke</translation> |
3064 | cbradney | 2654 | </message> |
2655 | <message> |
||
2656 | <source>Is PDF A&nnotation</source> |
||
5874 | mrdocs | 2657 | <translation>Är en PDF-a&nteckning</translation> |
3064 | cbradney | 2658 | </message> |
2659 | <message> |
||
2660 | <source>Annotation P&roperties</source> |
||
5874 | mrdocs | 2661 | <translation>&Egenskaper för anteckning</translation> |
3064 | cbradney | 2662 | </message> |
2663 | <message> |
||
2664 | <source>Field P&roperties</source> |
||
5874 | mrdocs | 2665 | <translation>Fält e&genskaper</translation> |
3064 | cbradney | 2666 | </message> |
2667 | <message> |
||
2668 | <source>&Edit Shape...</source> |
||
5874 | mrdocs | 2669 | <translation>R&edigera form...</translation> |
3064 | cbradney | 2670 | </message> |
2671 | <message> |
||
2672 | <source>&Attach Text to Path</source> |
||
5874 | mrdocs | 2673 | <translation>S&ammanfoga text med kurva</translation> |
3064 | cbradney | 2674 | </message> |
2675 | <message> |
||
2676 | <source>&Detach Text from Path</source> |
||
5874 | mrdocs | 2677 | <translation>Lös&gör text från kurva</translation> |
3064 | cbradney | 2678 | </message> |
2679 | <message> |
||
2680 | <source>&Combine Polygons</source> |
||
5874 | mrdocs | 2681 | <translation>Sammanf&oga polygoner</translation> |
3064 | cbradney | 2682 | </message> |
2683 | <message> |
||
2684 | <source>Split &Polygons</source> |
||
5874 | mrdocs | 2685 | <translation>Dela upp &polygoner</translation> |
3064 | cbradney | 2686 | </message> |
2687 | <message> |
||
2688 | <source>&Bezier Curve</source> |
||
5874 | mrdocs | 2689 | <translation>&Bezierkurva</translation> |
3064 | cbradney | 2690 | </message> |
2691 | <message> |
||
2692 | <source>&Image Frame</source> |
||
5874 | mrdocs | 2693 | <translation>B&ildram</translation> |
3064 | cbradney | 2694 | </message> |
2695 | <message> |
||
2696 | <source>&Outlines</source> |
||
4870 | mrdocs | 2697 | <translation type="obsolete">&Konturer</translation> |
3064 | cbradney | 2698 | </message> |
2699 | <message> |
||
2700 | <source>&Polygon</source> |
||
5874 | mrdocs | 2701 | <translation>&Polygon</translation> |
3064 | cbradney | 2702 | </message> |
2703 | <message> |
||
2704 | <source>&Text Frame</source> |
||
5874 | mrdocs | 2705 | <translation>&Textram</translation> |
3064 | cbradney | 2706 | </message> |
2707 | <message> |
||
2708 | <source>&Glyph...</source> |
||
6232 | mrdocs | 2709 | <translation>&Tecken...</translation> |
3064 | cbradney | 2710 | </message> |
2711 | <message> |
||
2712 | <source>Sample Text</source> |
||
5874 | mrdocs | 2713 | <translation>Exempeltext</translation> |
3064 | cbradney | 2714 | </message> |
2715 | <message> |
||
2716 | <source>&Insert...</source> |
||
5874 | mrdocs | 2717 | <translation>&Infoga...</translation> |
3064 | cbradney | 2718 | </message> |
2719 | <message> |
||
2720 | <source>Im&port...</source> |
||
5874 | mrdocs | 2721 | <translation>Im&portera...</translation> |
3064 | cbradney | 2722 | </message> |
2723 | <message> |
||
2724 | <source>&Delete...</source> |
||
5874 | mrdocs | 2725 | <translation>&Ta bort...</translation> |
3064 | cbradney | 2726 | </message> |
2727 | <message> |
||
2728 | <source>&Copy...</source> |
||
5874 | mrdocs | 2729 | <translation>&Kopiera...</translation> |
3064 | cbradney | 2730 | </message> |
2731 | <message> |
||
2732 | <source>&Move...</source> |
||
5874 | mrdocs | 2733 | <translation>&Flytta...</translation> |
3064 | cbradney | 2734 | </message> |
2735 | <message> |
||
2736 | <source>&Apply Master Page...</source> |
||
5874 | mrdocs | 2737 | <translation>&Använd mallsidor...</translation> |
3064 | cbradney | 2738 | </message> |
2739 | <message> |
||
2740 | <source>Manage &Guides...</source> |
||
5874 | mrdocs | 2741 | <translation>Hantera stö&dlinjer...</translation> |
3064 | cbradney | 2742 | </message> |
2743 | <message> |
||
2744 | <source>Manage Page Properties...</source> |
||
5874 | mrdocs | 2745 | <translation>Hantera sidegenskaper...</translation> |
3064 | cbradney | 2746 | </message> |
2747 | <message> |
||
2748 | <source>&Fit in window</source> |
||
5874 | mrdocs | 2749 | <translation>Anpassa till &fönster</translation> |
3064 | cbradney | 2750 | </message> |
2751 | <message> |
||
2752 | <source>&50%</source> |
||
5874 | mrdocs | 2753 | <translation>&50%</translation> |
3064 | cbradney | 2754 | </message> |
2755 | <message> |
||
2756 | <source>&75%</source> |
||
5874 | mrdocs | 2757 | <translation>&75%</translation> |
3064 | cbradney | 2758 | </message> |
2759 | <message> |
||
2760 | <source>&100%</source> |
||
5874 | mrdocs | 2761 | <translation>&100%</translation> |
3064 | cbradney | 2762 | </message> |
2763 | <message> |
||
2764 | <source>&200%</source> |
||
5874 | mrdocs | 2765 | <translation>&200%</translation> |
3064 | cbradney | 2766 | </message> |
2767 | <message> |
||
2768 | <source>&Thumbnails</source> |
||
5874 | mrdocs | 2769 | <translation>Minia&tyrer</translation> |
3064 | cbradney | 2770 | </message> |
2771 | <message> |
||
2772 | <source>Show &Margins</source> |
||
5874 | mrdocs | 2773 | <translation>Visa &marginaler</translation> |
3064 | cbradney | 2774 | </message> |
2775 | <message> |
||
2776 | <source>Show &Frames</source> |
||
5874 | mrdocs | 2777 | <translation>Visa &ramar</translation> |
3064 | cbradney | 2778 | </message> |
2779 | <message> |
||
2780 | <source>Show &Images</source> |
||
5874 | mrdocs | 2781 | <translation>Visa b&ilder</translation> |
3064 | cbradney | 2782 | </message> |
2783 | <message> |
||
2784 | <source>Show &Grid</source> |
||
5874 | mrdocs | 2785 | <translation>Visa stö&drutor</translation> |
3064 | cbradney | 2786 | </message> |
2787 | <message> |
||
2788 | <source>Show G&uides</source> |
||
5874 | mrdocs | 2789 | <translation>Visa stö&dlinjer</translation> |
3064 | cbradney | 2790 | </message> |
2791 | <message> |
||
2792 | <source>Show &Baseline Grid</source> |
||
5874 | mrdocs | 2793 | <translation>Visa &baslinjerna</translation> |
3064 | cbradney | 2794 | </message> |
2795 | <message> |
||
2796 | <source>Show &Text Chain</source> |
||
5874 | mrdocs | 2797 | <translation>Visa &textflöde</translation> |
3064 | cbradney | 2798 | </message> |
2799 | <message> |
||
2800 | <source>Show Control Characters</source> |
||
5874 | mrdocs | 2801 | <translation>Visa kontrolltecken</translation> |
3064 | cbradney | 2802 | </message> |
2803 | <message> |
||
2804 | <source>Rulers relative to Page</source> |
||
5874 | mrdocs | 2805 | <translation>Linjaler relativt sida</translation> |
3064 | cbradney | 2806 | </message> |
2807 | <message> |
||
2808 | <source>Sn&ap to Grid</source> |
||
5874 | mrdocs | 2809 | <translation>&Lås till rutmönster</translation> |
3064 | cbradney | 2810 | </message> |
2811 | <message> |
||
2812 | <source>Sna&p to Guides</source> |
||
5874 | mrdocs | 2813 | <translation>Lås till stödlin&jerna</translation> |
3064 | cbradney | 2814 | </message> |
2815 | <message> |
||
2816 | <source>&Properties</source> |
||
5874 | mrdocs | 2817 | <translation>Egenska&per</translation> |
3064 | cbradney | 2818 | </message> |
2819 | <message> |
||
2820 | <source>&Scrapbook</source> |
||
5874 | mrdocs | 2821 | <translation>&Klippbok</translation> |
3064 | cbradney | 2822 | </message> |
2823 | <message> |
||
2824 | <source>&Layers</source> |
||
5874 | mrdocs | 2825 | <translation>&Lager</translation> |
3064 | cbradney | 2826 | </message> |
2827 | <message> |
||
2828 | <source>&Arrange Pages</source> |
||
5874 | mrdocs | 2829 | <translation>Ordn&a sidor</translation> |
3064 | cbradney | 2830 | </message> |
2831 | <message> |
||
2832 | <source>&Bookmarks</source> |
||
5874 | mrdocs | 2833 | <translation>&Bokmärken</translation> |
3064 | cbradney | 2834 | </message> |
2835 | <message> |
||
2836 | <source>&Measurements</source> |
||
5874 | mrdocs | 2837 | <translation>&Måttangivelser</translation> |
3064 | cbradney | 2838 | </message> |
2839 | <message> |
||
2840 | <source>Action &History</source> |
||
5874 | mrdocs | 2841 | <translation>&Historik över händelser</translation> |
3064 | cbradney | 2842 | </message> |
2843 | <message> |
||
2844 | <source>Preflight &Verifier</source> |
||
5874 | mrdocs | 2845 | <translation>&Verifiering (Pre-flight)</translation> |
3064 | cbradney | 2846 | </message> |
2847 | <message> |
||
2848 | <source>&Align and Distribute</source> |
||
5874 | mrdocs | 2849 | <translation>Juster&a och fördela</translation> |
3064 | cbradney | 2850 | </message> |
2851 | <message> |
||
2852 | <source>&Tools</source> |
||
5874 | mrdocs | 2853 | <translation>Verk&tyg</translation> |
3064 | cbradney | 2854 | </message> |
2855 | <message> |
||
2856 | <source>P&DF Tools</source> |
||
5874 | mrdocs | 2857 | <translation>P&DF verktyg</translation> |
3064 | cbradney | 2858 | </message> |
2859 | <message> |
||
2860 | <source>Select Item</source> |
||
5874 | mrdocs | 2861 | <translation>Välj objekt</translation> |
3064 | cbradney | 2862 | </message> |
2863 | <message> |
||
2864 | <source>T&able</source> |
||
5874 | mrdocs | 2865 | <translation>T&abell</translation> |
3064 | cbradney | 2866 | </message> |
2867 | <message> |
||
2868 | <source>&Shape</source> |
||
5874 | mrdocs | 2869 | <translation>&Form</translation> |
3064 | cbradney | 2870 | </message> |
2871 | <message> |
||
2872 | <source>&Line</source> |
||
5874 | mrdocs | 2873 | <translation>&Linje</translation> |
3064 | cbradney | 2874 | </message> |
2875 | <message> |
||
2876 | <source>&Freehand Line</source> |
||
5874 | mrdocs | 2877 | <translation>&Frihandslinje</translation> |
3064 | cbradney | 2878 | </message> |
2879 | <message> |
||
2880 | <source>Rotate Item</source> |
||
5874 | mrdocs | 2881 | <translation>Rotera objekt</translation> |
3064 | cbradney | 2882 | </message> |
2883 | <message> |
||
2884 | <source>Zoom in or out</source> |
||
5874 | mrdocs | 2885 | <translation>Förstora eller förminska</translation> |
3064 | cbradney | 2886 | </message> |
2887 | <message> |
||
2888 | <source>Zoom in</source> |
||
5874 | mrdocs | 2889 | <translation>Förstora</translation> |
3064 | cbradney | 2890 | </message> |
2891 | <message> |
||
2892 | <source>Zoom out</source> |
||
5874 | mrdocs | 2893 | <translation>Förminska</translation> |
3064 | cbradney | 2894 | </message> |
2895 | <message> |
||
2896 | <source>Edit Contents of Frame</source> |
||
5874 | mrdocs | 2897 | <translation>Redigera raminnehåll</translation> |
3064 | cbradney | 2898 | </message> |
2899 | <message> |
||
2900 | <source>Edit Text...</source> |
||
5874 | mrdocs | 2901 | <translation>Redigera text...</translation> |
3064 | cbradney | 2902 | </message> |
2903 | <message> |
||
2904 | <source>Link Text Frames</source> |
||
5874 | mrdocs | 2905 | <translation>Länka textramar</translation> |
3064 | cbradney | 2906 | </message> |
2907 | <message> |
||
2908 | <source>Unlink Text Frames</source> |
||
5874 | mrdocs | 2909 | <translation>Avbryt länk mellan textramar</translation> |
3064 | cbradney | 2910 | </message> |
2911 | <message> |
||
2912 | <source>&Eye Dropper</source> |
||
5874 | mrdocs | 2913 | <translation>Droppv&erktyg</translation> |
3064 | cbradney | 2914 | </message> |
2915 | <message> |
||
2916 | <source>Copy Item Properties</source> |
||
5874 | mrdocs | 2917 | <translation>Kopiera objektegenskaper</translation> |
3064 | cbradney | 2918 | </message> |
2919 | <message> |
||
2920 | <source>Edit the text with the Story Editor</source> |
||
5874 | mrdocs | 2921 | <translation>Redigera text med Texthanteraren</translation> |
3064 | cbradney | 2922 | </message> |
2923 | <message> |
||
2924 | <source>Insert Text Frame</source> |
||
5874 | mrdocs | 2925 | <translation>Infoga textram</translation> |
3064 | cbradney | 2926 | </message> |
2927 | <message> |
||
2928 | <source>Insert Image Frame</source> |
||
5874 | mrdocs | 2929 | <translation>Infoga bildram</translation> |
3064 | cbradney | 2930 | </message> |
2931 | <message> |
||
2932 | <source>Insert Table</source> |
||
5874 | mrdocs | 2933 | <translation>Infoga tabell</translation> |
3064 | cbradney | 2934 | </message> |
2935 | <message> |
||
2936 | <source>Insert Shape</source> |
||
5874 | mrdocs | 2937 | <translation>Infoga form</translation> |
3064 | cbradney | 2938 | </message> |
2939 | <message> |
||
2940 | <source>Insert Polygon</source> |
||
5874 | mrdocs | 2941 | <translation>Infoga polygon</translation> |
3064 | cbradney | 2942 | </message> |
2943 | <message> |
||
2944 | <source>Insert Line</source> |
||
5874 | mrdocs | 2945 | <translation>Infoga linje</translation> |
3064 | cbradney | 2946 | </message> |
2947 | <message> |
||
2948 | <source>Insert Bezier Curve</source> |
||
5874 | mrdocs | 2949 | <translation>Infoga Bezierkurva</translation> |
3064 | cbradney | 2950 | </message> |
2951 | <message> |
||
2952 | <source>Insert Freehand Line</source> |
||
5874 | mrdocs | 2953 | <translation>Infoga frihandslinje</translation> |
3064 | cbradney | 2954 | </message> |
2955 | <message> |
||
2956 | <source>&Manage Pictures</source> |
||
5874 | mrdocs | 2957 | <translation>Bild&hantering</translation> |
3064 | cbradney | 2958 | </message> |
2959 | <message> |
||
2960 | <source>&Hyphenate Text</source> |
||
5874 | mrdocs | 2961 | <translation>A&vstava text</translation> |
3064 | cbradney | 2962 | </message> |
2963 | <message> |
||
2964 | <source>Dehyphenate Text</source> |
||
5874 | mrdocs | 2965 | <translation>Ångra avstavning</translation> |
3064 | cbradney | 2966 | </message> |
2967 | <message> |
||
2968 | <source>&Generate Table Of Contents</source> |
||
5874 | mrdocs | 2969 | <translation>Skapa inne&hållsförteckning</translation> |
3064 | cbradney | 2970 | </message> |
2971 | <message> |
||
2972 | <source>&About Scribus</source> |
||
5874 | mrdocs | 2973 | <translation>&Om Scribus</translation> |
3064 | cbradney | 2974 | </message> |
2975 | <message> |
||
2976 | <source>About &Qt</source> |
||
5874 | mrdocs | 2977 | <translation>Om &Qt</translation> |
3064 | cbradney | 2978 | </message> |
2979 | <message> |
||
2980 | <source>Toolti&ps</source> |
||
5874 | mrdocs | 2981 | <translation>Verktygsti&ps</translation> |
3064 | cbradney | 2982 | </message> |
2983 | <message> |
||
2984 | <source>Scribus &Manual...</source> |
||
5874 | mrdocs | 2985 | <translation>Scribus &handbok...</translation> |
3064 | cbradney | 2986 | </message> |
2987 | <message> |
||
2988 | <source>Smart &Hyphen</source> |
||
5874 | mrdocs | 2989 | <translation>Smart avstavnin&g</translation> |
3064 | cbradney | 2990 | </message> |
2991 | <message> |
||
2992 | <source>Non Breaking Dash</source> |
||
5874 | mrdocs | 2993 | <translation>Hårt bindestreck</translation> |
3064 | cbradney | 2994 | </message> |
2995 | <message> |
||
2996 | <source>Non Breaking &Space</source> |
||
5874 | mrdocs | 2997 | <translation>Fast mellan&slag</translation> |
3064 | cbradney | 2998 | </message> |
2999 | <message> |
||
3000 | <source>Page &Number</source> |
||
5874 | mrdocs | 3001 | <translation>Sid&nummer</translation> |
3064 | cbradney | 3002 | </message> |
3003 | <message> |
||
3004 | <source>New Line</source> |
||
5874 | mrdocs | 3005 | <translation>Ny rad</translation> |
3064 | cbradney | 3006 | </message> |
3007 | <message> |
||
3008 | <source>Frame Break</source> |
||
5874 | mrdocs | 3009 | <translation>Bryt ram</translation> |
3064 | cbradney | 3010 | </message> |
3011 | <message> |
||
3012 | <source>Column Break</source> |
||
5874 | mrdocs | 3013 | <translation>Kolumnbryt</translation> |
3064 | cbradney | 3014 | </message> |
3015 | <message> |
||
3016 | <source>Copyright</source> |
||
5874 | mrdocs | 3017 | <translation>Copyright</translation> |
3064 | cbradney | 3018 | </message> |
3019 | <message> |
||
3020 | <source>Registered Trademark</source> |
||
5874 | mrdocs | 3021 | <translation>Registrerat varumärke</translation> |
3064 | cbradney | 3022 | </message> |
3023 | <message> |
||
3024 | <source>Trademark</source> |
||
5874 | mrdocs | 3025 | <translation>Varumärke</translation> |
3064 | cbradney | 3026 | </message> |
3027 | <message> |
||
3028 | <source>Bullet</source> |
||
5874 | mrdocs | 3029 | <translation>Bomber</translation> |
3064 | cbradney | 3030 | </message> |
3031 | <message> |
||
3032 | <source>Em Dash</source> |
||
5874 | mrdocs | 3033 | <translation>Långt tankstreck (helfyrkant)</translation> |
3064 | cbradney | 3034 | </message> |
3035 | <message> |
||
3036 | <source>En Dash</source> |
||
5874 | mrdocs | 3037 | <translation>Kort tankstreck (halvfyrkant)</translation> |
3064 | cbradney | 3038 | </message> |
3039 | <message> |
||
3040 | <source>Figure Dash</source> |
||
3041 | <translation type="unfinished"></translation> |
||
3042 | </message> |
||
3043 | <message> |
||
3044 | <source>Quotation Dash</source> |
||
5874 | mrdocs | 3045 | <translation>Citattecken</translation> |
3064 | cbradney | 3046 | </message> |
3047 | <message> |
||
3048 | <source>Apostrophe</source> |
||
5874 | mrdocs | 3049 | <translation>Apostrof</translation> |
3064 | cbradney | 3050 | </message> |
3051 | <message> |
||
3052 | <source>Straight Double</source> |
||
5874 | mrdocs | 3053 | <translation>Dubbel divis</translation> |
3064 | cbradney | 3054 | </message> |
3055 | <message> |
||
3056 | <source>Single Left</source> |
||
5874 | mrdocs | 3057 | <translation>Enkelt vänster</translation> |
3064 | cbradney | 3058 | </message> |
3059 | <message> |
||
3060 | <source>Single Right</source> |
||
5874 | mrdocs | 3061 | <translation>Enklet höger</translation> |
3064 | cbradney | 3062 | </message> |
3063 | <message> |
||
3064 | <source>Double Left</source> |
||
5874 | mrdocs | 3065 | <translation>Dubbelt vänster</translation> |
3064 | cbradney | 3066 | </message> |
3067 | <message> |
||
3068 | <source>Double Right</source> |
||
5874 | mrdocs | 3069 | <translation>Dubbelt höger</translation> |
3064 | cbradney | 3070 | </message> |
3071 | <message> |
||
3072 | <source>Single Reversed</source> |
||
5874 | mrdocs | 3073 | <translation>Enkelt omvänt</translation> |
3064 | cbradney | 3074 | </message> |
3075 | <message> |
||
3076 | <source>Double Reversed</source> |
||
5874 | mrdocs | 3077 | <translation>Dubbelt omvänt</translation> |
3064 | cbradney | 3078 | </message> |
3079 | <message> |
||
3080 | <source>Single Left Guillemet</source> |
||
5874 | mrdocs | 3081 | <translation>Enkelt vänster gåsöga</translation> |
3064 | cbradney | 3082 | </message> |
3083 | <message> |
||
3084 | <source>Single Right Guillemet</source> |
||
5874 | mrdocs | 3085 | <translation>Enkelt höger gåsöga</translation> |
3064 | cbradney | 3086 | </message> |
3087 | <message> |
||
3088 | <source>Double Left Guillemet</source> |
||
5874 | mrdocs | 3089 | <translation>Dubbelt vänster gåsöga</translation> |
3064 | cbradney | 3090 | </message> |
3091 | <message> |
||
3092 | <source>Double Right Guillemet</source> |
||
5874 | mrdocs | 3093 | <translation>Dubbelt höger gåsöga</translation> |
3064 | cbradney | 3094 | </message> |
3095 | <message> |
||
3096 | <source>Low Single Comma</source> |
||
5874 | mrdocs | 3097 | <translation>Enkelt komma</translation> |
3064 | cbradney | 3098 | </message> |
3099 | <message> |
||
3100 | <source>Low Double Comma</source> |
||
5874 | mrdocs | 3101 | <translation>Dubbelt komma</translation> |
3064 | cbradney | 3102 | </message> |
3103 | <message> |
||
3104 | <source>CJK Single Left</source> |
||
5874 | mrdocs | 3105 | <translation>CJK Enkelt vänster</translation> |
3064 | cbradney | 3106 | </message> |
3107 | <message> |
||
3108 | <source>CJK Single Right</source> |
||
5874 | mrdocs | 3109 | <translation>CJK Enkelt höger</translation> |
3064 | cbradney | 3110 | </message> |
3111 | <message> |
||
3112 | <source>CJK Double Left</source> |
||
5874 | mrdocs | 3113 | <translation>CJL Dubbelt vänster</translation> |
3064 | cbradney | 3114 | </message> |
3115 | <message> |
||
3116 | <source>CJK Double Right</source> |
||
5874 | mrdocs | 3117 | <translation>CJK Dubbelt höger</translation> |
3064 | cbradney | 3118 | </message> |
3119 | <message> |
||
3120 | <source>Toggle Palettes</source> |
||
5874 | mrdocs | 3121 | <translation>Växla paletter</translation> |
3064 | cbradney | 3122 | </message> |
3123 | <message> |
||
3124 | <source>Toggle Guides</source> |
||
5874 | mrdocs | 3125 | <translation>Växla hjälplinjer</translation> |
3064 | cbradney | 3126 | </message> |
3278 | cbradney | 3127 | <message> |
3128 | <source>Print Previe&w</source> |
||
5874 | mrdocs | 3129 | <translation>Skriv ut förhands&visning</translation> |
3278 | cbradney | 3130 | </message> |
3131 | <message> |
||
3132 | <source>&JavaScripts...</source> |
||
5874 | mrdocs | 3133 | <translation>&JavaScripts...</translation> |
3278 | cbradney | 3134 | </message> |
3135 | <message> |
||
3136 | <source>Convert to Master Page...</source> |
||
5874 | mrdocs | 3137 | <translation>Omvandla till mallsidor...</translation> |
3278 | cbradney | 3138 | </message> |
3139 | <message> |
||
3140 | <source>&Cascade</source> |
||
5874 | mrdocs | 3141 | <translation>&Kaskad</translation> |
3278 | cbradney | 3142 | </message> |
3143 | <message> |
||
3144 | <source>&Tile</source> |
||
5874 | mrdocs | 3145 | <translation>&Sida vid sida</translation> |
3278 | cbradney | 3146 | </message> |
3147 | <message> |
||
3148 | <source>&About Plug-ins</source> |
||
5874 | mrdocs | 3149 | <translation>Om insticksprogr&am</translation> |
3278 | cbradney | 3150 | </message> |
3824 | cbradney | 3151 | <message> |
3152 | <source>More Info...</source> |
||
5874 | mrdocs | 3153 | <translation>Mer info...</translation> |
3824 | cbradney | 3154 | </message> |
4759 | cbradney | 3155 | <message> |
3156 | <source>&Printing Enabled</source> |
||
5874 | mrdocs | 3157 | <translation>&Utskrift aktiverad</translation> |
4759 | cbradney | 3158 | </message> |
3159 | <message> |
||
3160 | <source>&Flip Horizontally</source> |
||
5874 | mrdocs | 3161 | <translation>&Vänd horisontellt</translation> |
4759 | cbradney | 3162 | </message> |
3163 | <message> |
||
3164 | <source>&Flip Vertically</source> |
||
5874 | mrdocs | 3165 | <translation>&Vänd vertikalt</translation> |
4759 | cbradney | 3166 | </message> |
3167 | <message> |
||
3168 | <source>Show Rulers</source> |
||
5874 | mrdocs | 3169 | <translation>Visa linjaler</translation> |
4759 | cbradney | 3170 | </message> |
3171 | <message> |
||
3172 | <source>&Outline</source> |
||
3173 | <comment>Document Outline Palette</comment> |
||
5874 | mrdocs | 3174 | <translation>Öve&rsikt</translation> |
4759 | cbradney | 3175 | </message> |
3176 | <message> |
||
3177 | <source>Solidus</source> |
||
5874 | mrdocs | 3178 | <translation>Snedstreck</translation> |
4759 | cbradney | 3179 | </message> |
3180 | <message> |
||
3181 | <source>Middle Dot</source> |
||
5874 | mrdocs | 3182 | <translation>Mager punkt</translation> |
4759 | cbradney | 3183 | </message> |
3184 | <message> |
||
3185 | <source>En Space</source> |
||
5874 | mrdocs | 3186 | <translation>Halv fyrkant</translation> |
4759 | cbradney | 3187 | </message> |
3188 | <message> |
||
3189 | <source>Em Space</source> |
||
5874 | mrdocs | 3190 | <translation>Hel fyrkant</translation> |
4759 | cbradney | 3191 | </message> |
3192 | <message> |
||
3193 | <source>Thin Space</source> |
||
5874 | mrdocs | 3194 | <translation>Smalt mellanslag</translation> |
4759 | cbradney | 3195 | </message> |
3196 | <message> |
||
3197 | <source>Thick Space</source> |
||
5874 | mrdocs | 3198 | <translation>Tjockt mellanslag</translation> |
4759 | cbradney | 3199 | </message> |
3200 | <message> |
||
3201 | <source>Mid Space</source> |
||
5874 | mrdocs | 3202 | <translation>Normalt mellanslag</translation> |
4759 | cbradney | 3203 | </message> |
3204 | <message> |
||
3205 | <source>Hair Space</source> |
||
5874 | mrdocs | 3206 | <translation>Hårtunnt mellanslag</translation> |
4759 | cbradney | 3207 | </message> |
3208 | <message> |
||
3209 | <source>Insert Smart Hyphen</source> |
||
5874 | mrdocs | 3210 | <translation>Infoga smart avstavning</translation> |
4759 | cbradney | 3211 | </message> |
3212 | <message> |
||
3213 | <source>Insert Non Breaking Dash</source> |
||
5874 | mrdocs | 3214 | <translation>Infoga icke-brytande bindestreck</translation> |
4759 | cbradney | 3215 | </message> |
3216 | <message> |
||
3217 | <source>Insert Non Breaking Space</source> |
||
5874 | mrdocs | 3218 | <translation>Infoga icke-brytande mellanslag</translation> |
4759 | cbradney | 3219 | </message> |
3220 | <message> |
||
3221 | <source>Insert Page Number</source> |
||
5874 | mrdocs | 3222 | <translation>Infoga sidnummer</translation> |
4759 | cbradney | 3223 | </message> |
3224 | <message> |
||
3225 | <source>ff</source> |
||
5874 | mrdocs | 3226 | <translation>ff</translation> |
4759 | cbradney | 3227 | </message> |
3228 | <message> |
||
3229 | <source>fi</source> |
||
5874 | mrdocs | 3230 | <translation>fi</translation> |
4759 | cbradney | 3231 | </message> |
3232 | <message> |
||
3233 | <source>fl</source> |
||
5874 | mrdocs | 3234 | <translation>fl</translation> |
4759 | cbradney | 3235 | </message> |
3236 | <message> |
||
3237 | <source>ffi</source> |
||
5874 | mrdocs | 3238 | <translation>ffi</translation> |
4759 | cbradney | 3239 | </message> |
3240 | <message> |
||
3241 | <source>ffl</source> |
||
5874 | mrdocs | 3242 | <translation>ffl</translation> |
4759 | cbradney | 3243 | </message> |
3244 | <message> |
||
3245 | <source>ft</source> |
||
5874 | mrdocs | 3246 | <translation>ft</translation> |
4759 | cbradney | 3247 | </message> |
3248 | <message> |
||
3249 | <source>st</source> |
||
5874 | mrdocs | 3250 | <translation>st</translation> |
4759 | cbradney | 3251 | </message> |
4870 | mrdocs | 3252 | <message> |
3253 | <source>S&tyles...</source> |
||
5874 | mrdocs | 3254 | <translation>S&tilmallar...</translation> |
4870 | mrdocs | 3255 | </message> |
3256 | <message> |
||
3257 | <source>&Outline</source> |
||
3258 | <comment>type effect</comment> |
||
5874 | mrdocs | 3259 | <translation>K&ontur</translation> |
4870 | mrdocs | 3260 | </message> |
3261 | <message> |
||
3262 | <source>&Outlines</source> |
||
3263 | <comment>Convert to oulines</comment> |
||
5874 | mrdocs | 3264 | <translation>&Konturer</translation> |
4870 | mrdocs | 3265 | </message> |
5328 | cbradney | 3266 | <message> |
3267 | <source>Paste (&Absolute)</source> |
||
5874 | mrdocs | 3268 | <translation>Klistra in (&Absolut)</translation> |
5328 | cbradney | 3269 | </message> |
3270 | <message> |
||
3271 | <source>C&lear</source> |
||
5874 | mrdocs | 3272 | <translation>Ra&dera</translation> |
5328 | cbradney | 3273 | </message> |
3274 | <message> |
||
3275 | <source>Insert PDF Push Button</source> |
||
5874 | mrdocs | 3276 | <translation>Infoga PDF tryckknapp</translation> |
5328 | cbradney | 3277 | </message> |
3278 | <message> |
||
3279 | <source>Insert PDF Text Field</source> |
||
5874 | mrdocs | 3280 | <translation>Infoga PDF textfält</translation> |
5328 | cbradney | 3281 | </message> |
3282 | <message> |
||
3283 | <source>Insert PDF Check Box</source> |
||
5874 | mrdocs | 3284 | <translation>Infoga PDF kryssruta</translation> |
5328 | cbradney | 3285 | </message> |
3286 | <message> |
||
3287 | <source>Insert PDF Combo Box</source> |
||
5874 | mrdocs | 3288 | <translation>Infoga PDF kombobox</translation> |
5328 | cbradney | 3289 | </message> |
3290 | <message> |
||
3291 | <source>Insert PDF List Box</source> |
||
5874 | mrdocs | 3292 | <translation>Infoga PDF listbox</translation> |
5328 | cbradney | 3293 | </message> |
3294 | <message> |
||
3295 | <source>Insert Text Annotation</source> |
||
5874 | mrdocs | 3296 | <translation>Infoga Textmarkering</translation> |
5328 | cbradney | 3297 | </message> |
3298 | <message> |
||
3299 | <source>Insert Link Annotation</source> |
||
5874 | mrdocs | 3300 | <translation>Infoga länkmarkering</translation> |
5328 | cbradney | 3301 | </message> |
5485 | cbradney | 3302 | <message> |
3303 | <source>Save as &EPS...</source> |
||
5874 | mrdocs | 3304 | <translation>Spara som &EPS...</translation> |
5485 | cbradney | 3305 | </message> |
3306 | <message> |
||
3307 | <source>Show Text Frame Columns</source> |
||
5874 | mrdocs | 3308 | <translation>Visa kolumner i textram</translation> |
5485 | cbradney | 3309 | </message> |
6261 | cbradney | 3310 | <message> |
3311 | <source>Get Text 2...</source> |
||
3312 | <translation type="unfinished"></translation> |
||
3313 | </message> |
||
3314 | <message> |
||
3315 | <source>&Frame...</source> |
||
3316 | <translation type="unfinished"></translation> |
||
3317 | </message> |
||
3318 | <message> |
||
3319 | <source>Preview Mode</source> |
||
3320 | <translation type="unfinished"></translation> |
||
3321 | </message> |
||
3322 | <message> |
||
3323 | <source>Show Layer Indicators</source> |
||
3324 | <translation type="unfinished"></translation> |
||
3325 | </message> |
||
6434 | cbradney | 3326 | <message> |
3327 | <source>Patterns...</source> |
||
3328 | <translation type="unfinished"></translation> |
||
3329 | </message> |
||
3330 | <message> |
||
3331 | <source>Send to Patterns</source> |
||
3332 | <translation type="unfinished"></translation> |
||
3333 | </message> |
||
3064 | cbradney | 3334 | </context> |
3335 | <context> |
||
395 | Franz | 3336 | <name>AdvOptions</name> |
3337 | <message> |
||
3338 | <source>Advanced Options</source> |
||
3278 | cbradney | 3339 | <translation type="obsolete">Avancerat</translation> |
395 | Franz | 3340 | </message> |
3341 | <message> |
||
3342 | <source>Mirror Page(s) &Horizontal</source> |
||
3278 | cbradney | 3343 | <translation type="obsolete">Spegla sida(sidor) &horisontellt</translation> |
395 | Franz | 3344 | </message> |
3345 | <message> |
||
3346 | <source>Mirror Page(s) &Vertical</source> |
||
3278 | cbradney | 3347 | <translation type="obsolete">Spegla sida(sidor) &vertikalt</translation> |
395 | Franz | 3348 | </message> |
3349 | <message> |
||
3350 | <source>Apply Under Color &Removal</source> |
||
3278 | cbradney | 3351 | <translation type="obsolete">Applicera &UCR (Underfärgsborttagning)</translation> |
395 | Franz | 3352 | </message> |
3353 | <message> |
||
3354 | <source>Apply &ICC Profiles</source> |
||
3278 | cbradney | 3355 | <translation type="obsolete">Applicera &ICC profiler</translation> |
395 | Franz | 3356 | </message> |
3357 | <message> |
||
3358 | <source>PostScript Level &1</source> |
||
3278 | cbradney | 3359 | <translation type="obsolete">Postscript Nivå &1</translation> |
395 | Franz | 3360 | </message> |
3361 | <message> |
||
3362 | <source>PostScript Level &2</source> |
||
3278 | cbradney | 3363 | <translation type="obsolete">Postscript Nivå &2</translation> |
395 | Franz | 3364 | </message> |
3365 | <message> |
||
3366 | <source>PostScript Level &3</source> |
||
3278 | cbradney | 3367 | <translation type="obsolete">Postscript Nivå &3</translation> |
395 | Franz | 3368 | </message> |
3369 | <message> |
||
3370 | <source>&OK</source> |
||
3064 | cbradney | 3371 | <translation type="obsolete">&OK</translation> |
395 | Franz | 3372 | </message> |
3373 | <message> |
||
3374 | <source>&Cancel</source> |
||
3064 | cbradney | 3375 | <translation type="obsolete">&Avbryt</translation> |
395 | Franz | 3376 | </message> |
3377 | <message> |
||
3378 | <source>Creates PostScript Level 3</source> |
||
3278 | cbradney | 3379 | <translation type="obsolete">Skapar Postscript Nivå 3</translation> |
395 | Franz | 3380 | </message> |
3381 | <message> |
||
3382 | <source>Creates PostScript Level 2 only, beware, |
||
3383 | this can create huge files</source> |
||
3278 | cbradney | 3384 | <translation type="obsolete">Skapar endast Postscript Nivå 2. |
395 | Franz | 3385 | OBS! Detta kan skapa stora filer.</translation> |
3386 | </message> |
||
3387 | <message> |
||
3388 | <source>Creates PostScript Level 1 only, beware, |
||
3389 | this can create huge files</source> |
||
3278 | cbradney | 3390 | <translation type="obsolete">Skapar endast Postscript Nivå 1. |
395 | Franz | 3391 | OBS! Detta kan skapa stora filer.</translation> |
3392 | </message> |
||
3393 | <message> |
||
3394 | <source>A way of switching off some of the gray shades which are composed |
||
3395 | of cyan, yellow and magenta and using black instead. |
||
3396 | UCR most affects parts of images which are neutral and/or dark tones |
||
3397 | which are close to the gray. Use of this may improve printing some images |
||
3398 | and some experimentation and testing is need on a case by case basis. |
||
3399 | UCR reduces the possibility of over saturation with CMY inks.</source> |
||
3278 | cbradney | 3400 | <translation type="obsolete">En metod för att ta bort en del av de gråtoner som kan uppstå (new line) |
395 | Franz | 3401 | vid blandning av cyan, gult och magenta genom att ersätta med svart.(new line) |
3402 | UCR påverkar de delar av bilden som är neutrala och/eller har mörka toner(new line) |
||
3403 | i närheten av grått. Användande av UCR kan förbättra tryckkvalitetn för en del bilder(new line) |
||
3404 | och för bästa resultat krävs testning och experiment från fall till fall.(new line) |
||
3405 | UCR förhindrar risken för övermättnad med CMG färger</translation> |
||
3406 | </message> |
||
3407 | </context> |
||
3408 | <context> |
||
3409 | <name>Align</name> |
||
3410 | <message> |
||
3411 | <source>Distribute/Align</source> |
||
3064 | cbradney | 3412 | <translation type="obsolete">Fördela/Justera</translation> |
395 | Franz | 3413 | </message> |
3414 | <message> |
||
3415 | <source>Align</source> |
||
3064 | cbradney | 3416 | <translation type="obsolete">Justera</translation> |
395 | Franz | 3417 | </message> |
3418 | <message> |
||
3419 | <source>Horizontal</source> |
||
3064 | cbradney | 3420 | <translation type="obsolete">Horisontellt</translation> |
395 | Franz | 3421 | </message> |
3422 | <message> |
||
3423 | <source>Left Sides</source> |
||
3064 | cbradney | 3424 | <translation type="obsolete">Vänsterkant</translation> |
395 | Franz | 3425 | </message> |
3426 | <message> |
||
3427 | <source>Middles</source> |
||
3064 | cbradney | 3428 | <translation type="obsolete">Centrerat</translation> |
395 | Franz | 3429 | </message> |
3430 | <message> |
||
3431 | <source>Right Sides</source> |
||
3064 | cbradney | 3432 | <translation type="obsolete">Högerkant</translation> |
395 | Franz | 3433 | </message> |
3434 | <message> |
||
3435 | <source>&Between:</source> |
||
3064 | cbradney | 3436 | <translation type="obsolete">&Mellan:</translation> |
395 | Franz | 3437 | </message> |
3438 | <message> |
||
3439 | <source>&Do Not Change</source> |
||
3064 | cbradney | 3440 | <translation type="obsolete">�amp;ndra inte</translation> |
395 | Franz | 3441 | </message> |
3442 | <message> |
||
3443 | <source>A&lign</source> |
||
3064 | cbradney | 3444 | <translation type="obsolete">&Justera</translation> |
395 | Franz | 3445 | </message> |
3446 | <message> |
||
3447 | <source>Di&splacement</source> |
||
3064 | cbradney | 3448 | <translation type="obsolete">&Förflyttning</translation> |
395 | Franz | 3449 | </message> |
3450 | <message> |
||
3451 | <source>Distribute &Evenly</source> |
||
3064 | cbradney | 3452 | <translation type="obsolete">Fördela &jämnt</translation> |
395 | Franz | 3453 | </message> |
3454 | <message> |
||
3455 | <source>Vertical</source> |
||
3064 | cbradney | 3456 | <translation type="obsolete">Vertikalt</translation> |
395 | Franz | 3457 | </message> |
3458 | <message> |
||
3459 | <source>Top Sides</source> |
||
3064 | cbradney | 3460 | <translation type="obsolete">�erkant</translation> |
395 | Franz | 3461 | </message> |
3462 | <message> |
||
3463 | <source>Bottom Sides</source> |
||
3064 | cbradney | 3464 | <translation type="obsolete">Nederkant</translation> |
395 | Franz | 3465 | </message> |
3466 | <message> |
||
3467 | <source>Bet&ween:</source> |
||
3064 | cbradney | 3468 | <translation type="obsolete">Me&llan</translation> |
395 | Franz | 3469 | </message> |
3470 | <message> |
||
3471 | <source>Do &Not Change</source> |
||
3064 | cbradney | 3472 | <translation type="obsolete">�amp;ndra inte</translation> |
395 | Franz | 3473 | </message> |
3474 | <message> |
||
3475 | <source>Al&ign</source> |
||
3064 | cbradney | 3476 | <translation type="obsolete">&Justera</translation> |
395 | Franz | 3477 | </message> |
3478 | <message> |
||
3479 | <source>Dis&placement</source> |
||
3064 | cbradney | 3480 | <translation type="obsolete">&Förflyttning</translation> |
395 | Franz | 3481 | </message> |
3482 | <message> |
||
3483 | <source> pt</source> |
||
1525 | cbradney | 3484 | <translation type="obsolete">pt</translation> |
395 | Franz | 3485 | </message> |
3486 | <message> |
||
3487 | <source> mm</source> |
||
1525 | cbradney | 3488 | <translation type="obsolete">mm</translation> |
395 | Franz | 3489 | </message> |
3490 | <message> |
||
3491 | <source> in</source> |
||
1525 | cbradney | 3492 | <translation type="obsolete">tum</translation> |
395 | Franz | 3493 | </message> |
3494 | <message> |
||
3495 | <source> p</source> |
||
1525 | cbradney | 3496 | <translation type="obsolete">p</translation> |
395 | Franz | 3497 | </message> |
3498 | <message> |
||
3499 | <source>Distribute E&venly</source> |
||
3064 | cbradney | 3500 | <translation type="obsolete">Fördela &jämnt</translation> |
395 | Franz | 3501 | </message> |
3502 | <message> |
||
3503 | <source>&OK</source> |
||
3064 | cbradney | 3504 | <translation type="obsolete">&OK</translation> |
395 | Franz | 3505 | </message> |
3506 | <message> |
||
3507 | <source>&Apply</source> |
||
3064 | cbradney | 3508 | <translation type="obsolete">A&nvänd</translation> |
395 | Franz | 3509 | </message> |
3510 | <message> |
||
3511 | <source>&Cancel</source> |
||
3064 | cbradney | 3512 | <translation type="obsolete">&Avbryt</translation> |
395 | Franz | 3513 | </message> |
3514 | </context> |
||
3515 | <context> |
||
6530 | cbradney | 3516 | <name>AlignDistributeBase</name> |
3517 | <message> |
||
3518 | <source>Align and Distribute</source> |
||
3519 | <translation type="unfinished">Justera och fördela</translation> |
||
3520 | </message> |
||
3521 | <message> |
||
3522 | <source>Align</source> |
||
3523 | <translation type="unfinished">Justera</translation> |
||
3524 | </message> |
||
3525 | <message> |
||
3526 | <source>&Selected Guide:</source> |
||
3527 | <translation type="unfinished">Vald hjälp&linje:</translation> |
||
3528 | </message> |
||
3529 | <message> |
||
3530 | <source>&Relative To:</source> |
||
3531 | <translation type="unfinished"></translation> |
||
3532 | </message> |
||
3533 | <message> |
||
3534 | <source>...</source> |
||
3535 | <translation type="unfinished"></translation> |
||
3536 | </message> |
||
3537 | <message> |
||
3538 | <source>Distribute</source> |
||
3539 | <translation type="unfinished">Fördela</translation> |
||
3540 | </message> |
||
3541 | <message> |
||
3542 | <source>&Distance:</source> |
||
3543 | <translation type="unfinished">Avstån&d:</translation> |
||
3544 | </message> |
||
3545 | </context> |
||
3546 | <context> |
||
3064 | cbradney | 3547 | <name>AlignDistributePalette</name> |
3548 | <message> |
||
3549 | <source>Align and Distribute</source> |
||
5874 | mrdocs | 3550 | <translation>Justera och fördela</translation> |
3064 | cbradney | 3551 | </message> |
3552 | <message> |
||
3553 | <source>Align</source> |
||
6530 | cbradney | 3554 | <translation type="obsolete">Justera</translation> |
3064 | cbradney | 3555 | </message> |
3556 | <message> |
||
3557 | <source>&Relative to:</source> |
||
5874 | mrdocs | 3558 | <translation>&Relativt:</translation> |
3064 | cbradney | 3559 | </message> |
3560 | <message> |
||
3561 | <source>First Selected</source> |
||
5874 | mrdocs | 3562 | <translation>Först valda</translation> |
3064 | cbradney | 3563 | </message> |
3564 | <message> |
||
3565 | <source>Last Selected</source> |
||
5874 | mrdocs | 3566 | <translation>Sist valda</translation> |
3064 | cbradney | 3567 | </message> |
3568 | <message> |
||
3569 | <source>Page</source> |
||
5874 | mrdocs | 3570 | <translation>Sida</translation> |
3064 | cbradney | 3571 | </message> |
3572 | <message> |
||
3573 | <source>Margins</source> |
||
5874 | mrdocs | 3574 | <translation>Marginaler</translation> |
3064 | cbradney | 3575 | </message> |
3576 | <message> |
||
3577 | <source>Guide</source> |
||
5874 | mrdocs | 3578 | <translation>Hjälplinje</translation> |
3064 | cbradney | 3579 | </message> |
3580 | <message> |
||
3581 | <source>Selection</source> |
||
5874 | mrdocs | 3582 | <translation>Urval</translation> |
3064 | cbradney | 3583 | </message> |
3584 | <message> |
||
3585 | <source>Align right sides of objects to left side of anchor</source> |
||
5874 | mrdocs | 3586 | <translation>Justera höger kanter av objekt till vänster kant på fästpunkten</translation> |
3064 | cbradney | 3587 | </message> |
3588 | <message> |
||
3589 | <source>Align left sides of objects to right side of anchor</source> |
||
5874 | mrdocs | 3590 | <translation>Justera vänster kanter av objekt till höger kant på fästpunkten</translation> |
3064 | cbradney | 3591 | </message> |
3592 | <message> |
||
3593 | <source>Align bottoms</source> |
||
5874 | mrdocs | 3594 | <translation>Justera nederkanter</translation> |
3064 | cbradney | 3595 | </message> |
3596 | <message> |
||
3597 | <source>Align right sides</source> |
||
5874 | mrdocs | 3598 | <translation>Justera höger kanter</translation> |
3064 | cbradney | 3599 | </message> |
3600 | <message> |
||
3601 | <source>Align tops of objects to bottom of anchor</source> |
||
5874 | mrdocs | 3602 | <translation>Justera överkant på objekt till nederkant på fästpunkt</translation> |
3064 | cbradney | 3603 | </message> |
3604 | <message> |
||
3605 | <source>Center on vertical axis</source> |
||
5874 | mrdocs | 3606 | <translation>Centrera runt vertikal axel</translation> |
3064 | cbradney | 3607 | </message> |
3608 | <message> |
||
3609 | <source>Align left sides</source> |
||
5874 | mrdocs | 3610 | <translation>Justera vänsterkanter</translation> |
3064 | cbradney | 3611 | </message> |
3612 | <message> |
||
3613 | <source>Center on horizontal axis</source> |
||
5874 | mrdocs | 3614 | <translation>Centrera runt horisontell axel</translation> |
3064 | cbradney | 3615 | </message> |
3616 | <message> |
||
3617 | <source>Align bottoms of objects to top of anchor</source> |
||
5874 | mrdocs | 3618 | <translation>Justera nederkant på objekt till överkant på fästpunkt</translation> |
3064 | cbradney | 3619 | </message> |
3620 | <message> |
||
3621 | <source>Align tops</source> |
||
5874 | mrdocs | 3622 | <translation>Justera överkanter</translation> |
3064 | cbradney | 3623 | </message> |
3624 | <message> |
||
3625 | <source>&Selected Guide:</source> |
||
5874 | mrdocs | 3626 | <translation>Vald hjälp&linje:</translation> |
3064 | cbradney | 3627 | </message> |
3628 | <message> |
||
3629 | <source>Distribute</source> |
||
6530 | cbradney | 3630 | <translation type="obsolete">Fördela</translation> |
3064 | cbradney | 3631 | </message> |
3632 | <message> |
||
3633 | <source>Make horizontal gaps between objects equal</source> |
||
5874 | mrdocs | 3634 | <translation>Gör det horisontella avståndet mellan objekten lika</translation> |
3064 | cbradney | 3635 | </message> |
3636 | <message> |
||
3637 | <source>Make horizontal gaps between objects equal to the value specified</source> |
||
5874 | mrdocs | 3638 | <translation>Gör det horisontella avståndet mellan objekten lika med angivet värde</translation> |
3064 | cbradney | 3639 | </message> |
3640 | <message> |
||
3641 | <source>Distribute right sides equidistantly</source> |
||
5874 | mrdocs | 3642 | <translation>Fördela höger kanter på lika avstånd</translation> |
3064 | cbradney | 3643 | </message> |
3644 | <message> |
||
3645 | <source>Distribute bottoms equidistantly</source> |
||
5874 | mrdocs | 3646 | <translation>Fördela nederkanterna på lika avstånd</translation> |
3064 | cbradney | 3647 | </message> |
3648 | <message> |
||
3649 | <source>Distribute centers equidistantly horizontally</source> |
||
5874 | mrdocs | 3650 | <translation>Fördela mittpunkterna på lika avstånd horisontellt</translation> |
3064 | cbradney | 3651 | </message> |
3652 | <message> |
||
3653 | <source>Make vertical gaps between objects equal</source> |
||
5874 | mrdocs | 3654 | <translation>Gör det vertikala avståndet mellan objekten lika</translation> |
3064 | cbradney | 3655 | </message> |
3656 | <message> |
||
3657 | <source>Make vertical gaps between objects equal to the value specified</source> |
||
5874 | mrdocs | 3658 | <translation>Gör det vertikala avståndet mellan objekten lika med angivet värde</translation> |
3064 | cbradney | 3659 | </message> |
3660 | <message> |
||
3661 | <source>Distribute left sides equidistantly</source> |
||
5874 | mrdocs | 3662 | <translation>Fördela vänster kanter på lika avstånd</translation> |
3064 | cbradney | 3663 | </message> |
3664 | <message> |
||
3665 | <source>Distribute centers equidistantly vertically</source> |
||
5874 | mrdocs | 3666 | <translation>Fördela mittpunklterna på lika avstånd vertikalt</translation> |
3064 | cbradney | 3667 | </message> |
3668 | <message> |
||
3669 | <source>Distribute tops equidistantly</source> |
||
5874 | mrdocs | 3670 | <translation>Fördela överkanterna på lika avstånd</translation> |
3064 | cbradney | 3671 | </message> |
3672 | <message> |
||
3673 | <source>&Distance:</source> |
||
5874 | mrdocs | 3674 | <translation>Avstån&d:</translation> |
3064 | cbradney | 3675 | </message> |
3676 | <message> |
||
3677 | <source>Distribute the items with the distance specified</source> |
||
5874 | mrdocs | 3678 | <translation>Fördela objekten med angivet avstånd</translation> |
3064 | cbradney | 3679 | </message> |
3680 | <message> |
||
3681 | <source>None Selected</source> |
||
5874 | mrdocs | 3682 | <translation>Inget valt</translation> |
3064 | cbradney | 3683 | </message> |
3684 | <message> |
||
3685 | <source>Warning</source> |
||
3824 | cbradney | 3686 | <translation type="obsolete">Varning</translation> |
3064 | cbradney | 3687 | </message> |
3688 | <message> |
||
3689 | <source>Y: %1%2</source> |
||
5874 | mrdocs | 3690 | <translation>Y: %1%2</translation> |
3064 | cbradney | 3691 | </message> |
3692 | <message> |
||
3693 | <source>X: %1%2</source> |
||
5874 | mrdocs | 3694 | <translation>X: %1%2</translation> |
3064 | cbradney | 3695 | </message> |
6530 | cbradney | 3696 | <message> |
3697 | <source>Make horizontal gaps between objects and sides of page equal</source> |
||
3698 | <translation type="unfinished"></translation> |
||
3699 | </message> |
||
3700 | <message> |
||
3701 | <source>Make vertical gaps between objects and the top and bottom of page margins equal</source> |
||
3702 | <translation type="unfinished"></translation> |
||
3703 | </message> |
||
3704 | <message> |
||
3705 | <source>Make horizontal gaps between objects and sides of page margins equal</source> |
||
3706 | <translation type="unfinished"></translation> |
||
3707 | </message> |
||
3708 | <message> |
||
3709 | <source>Make vertical gaps between objects and the top and bottom of page equal</source> |
||
3710 | <translation type="unfinished"></translation> |
||
3711 | </message> |
||
3064 | cbradney | 3712 | </context> |
3713 | <context> |
||
395 | Franz | 3714 | <name>AlignSelect</name> |
3715 | <message> |
||
3716 | <source>Align Text Left</source> |
||
3717 | <translation>Vänsterjustera text</translation> |
||
3718 | </message> |
||
3719 | <message> |
||
3720 | <source>Align Text Right</source> |
||
3721 | <translation>Högerjustera text</translation> |
||
3722 | </message> |
||
3723 | <message> |
||
3724 | <source>Align Text Center</source> |
||
3725 | <translation>Centrera text</translation> |
||
3726 | </message> |
||
3727 | <message> |
||
3728 | <source>Align Text Justified</source> |
||
3729 | <translation>Marginaljustering</translation> |
||
3730 | </message> |
||
3731 | <message> |
||
3732 | <source>Align Text Forced Justified</source> |
||
3733 | <translation>Hård marginaljustering</translation> |
||
3734 | </message> |
||
3735 | </context> |
||
3736 | <context> |
||
3737 | <name>Annot</name> |
||
3738 | <message> |
||
3739 | <source>Field Properties</source> |
||
3740 | <translation>Fältegenskaper</translation> |
||
3741 | </message> |
||
3742 | <message> |
||
3743 | <source>Type:</source> |
||
3744 | <translation>Typ:</translation> |
||
3745 | </message> |
||
3746 | <message> |
||
3747 | <source>Button</source> |
||
3748 | <translation>Knapp:</translation> |
||
3749 | </message> |
||
3750 | <message> |
||
3751 | <source>Text Field</source> |
||
3752 | <translation>Textfält:</translation> |
||
3753 | </message> |
||
3754 | <message> |
||
3755 | <source>Check Box</source> |
||
3756 | <translation>Kryssruta:</translation> |
||
3757 | </message> |
||
3758 | <message> |
||
3759 | <source>Combo Box</source> |
||
3760 | <translation>Radioknapp:</translation> |
||
3761 | </message> |
||
3762 | <message> |
||
3763 | <source>List Box</source> |
||
3764 | <translation>Lista</translation> |
||
3765 | </message> |
||
3766 | <message> |
||
3767 | <source>Properties</source> |
||
3768 | <translation>Egenskaper</translation> |
||
3769 | </message> |
||
3770 | <message> |
||
3771 | <source>Name:</source> |
||
3772 | <translation>Namn:</translation> |
||
3773 | </message> |
||
3774 | <message> |
||
3775 | <source>Tool-Tip:</source> |
||
6434 | cbradney | 3776 | <translation type="obsolete">Verktygstips:</translation> |
395 | Franz | 3777 | </message> |
3778 | <message> |
||
3779 | <source>Text</source> |
||
3780 | <translation>Text</translation> |
||
3781 | </message> |
||
3782 | <message> |
||
3783 | <source>Font for use with PDF 1.3:</source> |
||
1135 | cbradney | 3784 | <translation>Teckensnitt att använda med PDF 1.3:</translation> |
395 | Franz | 3785 | </message> |
3786 | <message> |
||
3787 | <source>Border</source> |
||
3788 | <translation>Ram</translation> |
||
3789 | </message> |
||
3790 | <message> |
||
3791 | <source>Color:</source> |
||
3792 | <translation>Färg:</translation> |
||
3793 | </message> |
||
3794 | <message> |
||
3795 | <source>None</source> |
||
3796 | <translation>Inget</translation> |
||
3797 | </message> |
||
3798 | <message> |
||
3799 | <source>Width:</source> |
||
3800 | <translation>Bredd:</translation> |
||
3801 | </message> |
||
3802 | <message> |
||
3803 | <source>Thin</source> |
||
3804 | <translation>Tunn</translation> |
||
3805 | </message> |
||
3806 | <message> |
||
3807 | <source>Normal</source> |
||
3808 | <translation>Normal</translation> |
||
3809 | </message> |
||
3810 | <message> |
||
3811 | <source>Wide</source> |
||
3812 | <translation>Bred |
||
3813 | </translation> |
||
3814 | </message> |
||
3815 | <message> |
||
3816 | <source>Style:</source> |
||
3817 | <translation>Stil:</translation> |
||
3818 | </message> |
||
3819 | <message> |
||
3820 | <source>Solid</source> |
||
3821 | <translation>Heldragen</translation> |
||
3822 | </message> |
||
3823 | <message> |
||
3824 | <source>Dashed</source> |
||
3825 | <translation>Streckad</translation> |
||
3826 | </message> |
||
3827 | <message> |
||
3828 | <source>Underline</source> |
||
3829 | <translation>Understruken</translation> |
||
3830 | </message> |
||
3831 | <message> |
||
3832 | <source>Beveled</source> |
||
3833 | <translation>Fasad</translation> |
||
3834 | </message> |
||
3835 | <message> |
||
3836 | <source>Inset</source> |
||
3837 | <translation>Infälld</translation> |
||
3838 | </message> |
||
3839 | <message> |
||
3840 | <source>Other</source> |
||
3841 | <translation>Annan</translation> |
||
3842 | </message> |
||
3843 | <message> |
||
3844 | <source>Read Only</source> |
||
3845 | <translation>Endast läsning</translation> |
||
3846 | </message> |
||
3847 | <message> |
||
3848 | <source>Required</source> |
||
3849 | <translation>Nödvändigt</translation> |
||
3850 | </message> |
||
3851 | <message> |
||
3852 | <source>Don't Export Value</source> |
||
6434 | cbradney | 3853 | <translation type="obsolete">Exportera inte värdet</translation> |
395 | Franz | 3854 | </message> |
3855 | <message> |
||
3856 | <source>Visibility:</source> |
||
3857 | <translation>Synlighet:</translation> |
||
3858 | </message> |
||
3859 | <message> |
||
3860 | <source>Visible</source> |
||
3861 | <translation>Synlig</translation> |
||
3862 | </message> |
||
3863 | <message> |
||
3864 | <source>Hidden</source> |
||
3865 | <translation>Dold</translation> |
||
3866 | </message> |
||
3867 | <message> |
||
3868 | <source>No Print</source> |
||
3869 | <translation>Ingen utskrift</translation> |
||
3870 | </message> |
||
3871 | <message> |
||
3872 | <source>No View</source> |
||
3873 | <translation>Visas inte</translation> |
||
3874 | </message> |
||
3875 | <message> |
||
3876 | <source>Appearance</source> |
||
3877 | <translation>Utseende</translation> |
||
3878 | </message> |
||
3879 | <message> |
||
3880 | <source>Text for Button Down</source> |
||
3881 | <translation>Text när knapp trycks ner</translation> |
||
3882 | </message> |
||
3883 | <message> |
||
3884 | <source>Text for Roll Over</source> |
||
3885 | <translation>Text som visas vid Mus-över</translation> |
||
3886 | </message> |
||
3887 | <message> |
||
3888 | <source>Icons</source> |
||
3889 | <translation>Ikoner</translation> |
||
3890 | </message> |
||
3891 | <message> |
||
3892 | <source>Use Icons</source> |
||
3893 | <translation>Använd ikoner</translation> |
||
3894 | </message> |
||
3895 | <message> |
||
3896 | <source>Remove</source> |
||
3897 | <translation>Ta bort</translation> |
||
3898 | </message> |
||
3899 | <message> |
||
3900 | <source>Pressed</source> |
||
3901 | <translation>Tryckt</translation> |
||
3902 | </message> |
||
3903 | <message> |
||
3904 | <source>Roll Over</source> |
||
3905 | <translation>Mus-över</translation> |
||
3906 | </message> |
||
3907 | <message> |
||
3908 | <source>Icon Placement...</source> |
||
3909 | <translation>Ikonplacering...</translation> |
||
3910 | </message> |
||
3911 | <message> |
||
3912 | <source>Highlight</source> |
||
3913 | <translation>Markera</translation> |
||
3914 | </message> |
||
3915 | <message> |
||
3916 | <source>Invert</source> |
||
3917 | <translation>Invertera</translation> |
||
3918 | </message> |
||
3919 | <message> |
||
3920 | <source>Outlined</source> |
||
3921 | <translation>Konturerad</translation> |
||
3922 | </message> |
||
3923 | <message> |
||
3924 | <source>Push</source> |
||
3925 | <translation>Tryck</translation> |
||
3926 | </message> |
||
3927 | <message> |
||
3928 | <source>Multi-Line</source> |
||
3929 | <translation>Flerradig</translation> |
||
3930 | </message> |
||
3931 | <message> |
||
3932 | <source>Password</source> |
||
3933 | <translation>Lösenord</translation> |
||
3934 | </message> |
||
3935 | <message> |
||
3936 | <source>Limit of</source> |
||
3937 | <translation>Begränsning</translation> |
||
3938 | </message> |
||
3939 | <message> |
||
3940 | <source>Characters</source> |
||
3941 | <translation>Tecken</translation> |
||
3942 | </message> |
||
3943 | <message> |
||
3944 | <source>Do Not Scroll</source> |
||
3945 | <translation>Rulla (scrolla) inte</translation> |
||
3946 | </message> |
||
3947 | <message> |
||
3948 | <source>Do Not Spell Check</source> |
||
3949 | <translation>Kör inte Rättstavning</translation> |
||
3950 | </message> |
||
3951 | <message> |
||
3952 | <source>Check Style:</source> |
||
3953 | <translation>Kontrollera stil:</translation> |
||
3954 | </message> |
||
3955 | <message> |
||
3956 | <source>Check</source> |
||
3957 | <translation>Kontrollera</translation> |
||
3958 | </message> |
||
3959 | <message> |
||
3960 | <source>Cross</source> |
||
3961 | <translation>Kors</translation> |
||
3962 | </message> |
||
3963 | <message> |
||
3964 | <source>Diamond</source> |
||
3965 | <translation>Diamant</translation> |
||
3966 | </message> |
||
3967 | <message> |
||
3968 | <source>Circle</source> |
||
3969 | <translation>Cirkel</translation> |
||
3970 | </message> |
||
3971 | <message> |
||
3972 | <source>Star</source> |
||
3973 | <translation>Stjärna</translation> |
||
3974 | </message> |
||
3975 | <message> |
||
3976 | <source>Square</source> |
||
3977 | <translation>Kvadrat</translation> |
||
3978 | </message> |
||
3979 | <message> |
||
3980 | <source>Default is Checked</source> |
||
3981 | <translation>Startvärde markerat</translation> |
||
3982 | </message> |
||
3983 | <message> |
||
3984 | <source>Editable</source> |
||
3985 | <translation>Redigerbar</translation> |
||
3986 | </message> |
||
3987 | <message> |
||
3988 | <source>Options</source> |
||
3989 | <translation>Alternativ</translation> |
||
3990 | </message> |
||
3991 | <message> |
||
3992 | <source>Java Script</source> |
||
3278 | cbradney | 3993 | <translation type="obsolete">Java Script</translation> |
395 | Franz | 3994 | </message> |
3995 | <message> |
||
3996 | <source>Go To</source> |
||
3997 | <translation>Gå till</translation> |
||
3998 | </message> |
||
3999 | <message> |
||
4000 | <source>Submit Form</source> |
||
4001 | <translation>Skicka formulär</translation> |
||
4002 | </message> |
||
4003 | <message> |
||
4004 | <source>Reset Form</source> |
||
5874 | mrdocs | 4005 | <translation>Återställ</translation> |
395 | Franz | 4006 | </message> |
4007 | <message> |
||
4008 | <source>Import Data</source> |
||
4009 | <translation>Importera data</translation> |
||
4010 | </message> |
||
4011 | <message> |
||
4012 | <source>Event:</source> |
||
4013 | <translation>Händelse:</translation> |
||
4014 | </message> |
||
4015 | <message> |
||
4016 | <source>Mouse Up</source> |
||
4017 | <translation>Mus upp</translation> |
||
4018 | </message> |
||
4019 | <message> |
||
4020 | <source>Mouse Down</source> |
||
4021 | <translation>Mus ner</translation> |
||
4022 | </message> |
||
4023 | <message> |
||
4024 | <source>Mouse Enter</source> |
||
1135 | cbradney | 4025 | <translation>Mus aktiverar</translation> |
395 | Franz | 4026 | </message> |
4027 | <message> |
||
4028 | <source>Mouse Exit</source> |
||
1135 | cbradney | 4029 | <translation>Mus avslutar</translation> |
395 | Franz | 4030 | </message> |
4031 | <message> |
||
4032 | <source>On Focus</source> |
||
4033 | <translation>I fokus</translation> |
||
4034 | </message> |
||
4035 | <message> |
||
4036 | <source>On Blur</source> |
||
4037 | <translation>Ej i fokus</translation> |
||
4038 | </message> |
||
4039 | <message> |
||
4040 | <source>Script:</source> |
||
4041 | <translation>Skript:</translation> |
||
4042 | </message> |
||