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