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