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