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