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