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