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