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