Rev 861 | Rev 1135 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
798 | cbradney | 1 | <!DOCTYPE TS> |
2 | <TS> |
||
3 | <context> |
||
902 | mrdocs | 4 | <name></name> |
5 | <message> |
||
6 | <source>getColorNames() -> list |
||
7 | |||
8 | Returns a list containing the names of all defined colors in the document. |
||
9 | If no document is open, returns a list of the default document colors. |
||
10 | </source> |
||
11 | <translation type="unfinished" /> |
||
12 | </message> |
||
13 | <message> |
||
14 | <source>newDocDialog() -> bool |
||
15 | |||
16 | Displays the "New Document" dialog box. Creates a new document if the user |
||
17 | accepts the settings. Does not create a document if the user presses cancel. |
||
18 | Returns true if a new document was created. |
||
19 | </source> |
||
20 | <translation type="unfinished" /> |
||
21 | </message> |
||
22 | <message> |
||
23 | <source>getFillColor(["name"]) -> string |
||
24 | |||
25 | Returns the name of the fill color of the object "name". |
||
26 | If "name" is not given the currently selected item is used. |
||
27 | </source> |
||
28 | <translation type="unfinished" /> |
||
29 | </message> |
||
30 | <message> |
||
31 | <source>moveObject(dx, dy [, "name"]) |
||
32 | |||
33 | Moves the object "name" by dx and dy relative to its current position. The |
||
34 | distances are expressed in the current measurement unit of the document (see |
||
35 | UNIT constants). If "name" is not given the currently selected item is used. |
||
36 | If the object "name" belongs to a group, the whole group is moved. |
||
37 | </source> |
||
38 | <translation type="unfinished" /> |
||
39 | </message> |
||
40 | <message> |
||
41 | <source>setRedraw(bool) |
||
42 | |||
43 | Disables page redraw when bool = False, otherwise redrawing is enabled. |
||
44 | This change will persist even after the script exits, so make sure to call |
||
45 | setRedraw(True) in a finally: clause at the top level of your script. |
||
46 | </source> |
||
47 | <translation type="unfinished" /> |
||
48 | </message> |
||
49 | <message> |
||
50 | <source>createRect(x, y, width, height, ["name"]) -> string |
||
51 | |||
52 | Creates a new rectangle on the current page and returns its name. The |
||
53 | coordinates are given in the current measurement units of the document |
||
54 | (see UNIT constants). "name" should be a unique identifier for the object |
||
55 | because you need this name to reference that object in future. If "name" |
||
56 | is not given Scribus will create one for you. |
||
57 | |||
58 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
59 | </source> |
||
60 | <translation type="unfinished" /> |
||
61 | </message> |
||
62 | <message> |
||
63 | <source>newPage(where [,"template"]) |
||
64 | |||
65 | Creates a new page. If "where" is -1 the new Page is appended to the |
||
66 | document, otherwise the new page is inserted before "where". Page numbers are |
||
67 | counted from 1 upwards, no matter what the displayed first page number of your |
||
68 | document is. The optional parameter "template" specifies the name of the |
||
69 | template page for the new page. |
||
70 | |||
71 | May raise IndexError if the page number is out of range |
||
72 | </source> |
||
73 | <translation type="unfinished" /> |
||
74 | </message> |
||
75 | <message> |
||
76 | <source>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"]) |
||
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 |
||
80 | available types (FILL_<type>). |
||
81 | </source> |
||
82 | <translation type="unfinished" /> |
||
83 | </message> |
||
84 | <message> |
||
85 | <source>getFontSize(["name"]) -> float |
||
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> |
||
92 | <translation type="unfinished" /> |
||
93 | </message> |
||
94 | <message> |
||
95 | <source>messagebarText("string") |
||
96 | |||
97 | Writes the "string" into the Scribus message bar (status line). The text |
||
98 | must be UTF8 encoded or 'unicode' string(recommended). |
||
99 | </source> |
||
100 | <translation type="unfinished" /> |
||
101 | </message> |
||
102 | <message> |
||
103 | <source>newDoc(size, margins, orientation, firstPageNumber, |
||
104 | unit, facingPages, firstSideLeft) -> bool |
||
105 | |||
106 | Creates a new document and returns true if successful. The parameters have the |
||
107 | following meaning: |
||
108 | |||
109 | size = A tuple (width, height) describing the size of the document. You can |
||
110 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
||
111 | |||
112 | margins = A tuple (left, right, top, bottom) describing the document |
||
113 | margins |
||
114 | |||
115 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
116 | |||
117 | firstPageNumber = is the number of the first page in the document used for |
||
118 | pagenumbering. While you'll usually want 1, it's useful to have higher |
||
119 | numbers if you're creating a document in several parts. |
||
120 | |||
121 | unit: this value sets the measurement units used by the document. Use a |
||
122 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
123 | UNIT_PICAS, UNIT_POINTS. |
||
124 | |||
125 | facingPages = FACINGPAGES, NOFACINGPAGES |
||
126 | |||
127 | firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT |
||
128 | |||
129 | The values for width, height and the margins are expressed in the given unit |
||
130 | for the document. PAPER_* constants are expressed in points. If your document |
||
131 | is not in points, make sure to account for this. |
||
132 | |||
133 | example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
||
134 | FACINGPAGES, FIRSTPAGERIGHT) |
||
135 | </source> |
||
136 | <translation type="unfinished" /> |
||
137 | </message> |
||
138 | </context> |
||
139 | <context> |
||
140 | <name>@default</name> |
||
141 | <message> |
||
142 | <source>getColor("name") -> tuple |
||
143 | |||
144 | Returns a tuple (C, M, Y, K) containing the four color components of the |
||
145 | color "name" from the current document. If no document is open, returns |
||
146 | the value of the named color from the default document colors. |
||
147 | |||
148 | May raise NotFoundError if the named color wasn't found. |
||
149 | May raise ValueError if an invalid color name is specified. |
||
150 | </source> |
||
151 | <translation type="unfinished" /> |
||
152 | </message> |
||
153 | <message> |
||
154 | <source>changeColor("name", c, m, y, k) |
||
155 | |||
156 | Changes the color "name" to the specified CMYK value. The color value is |
||
157 | defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black. |
||
158 | Color components should be in the range from 0 to 255. |
||
159 | |||
160 | May raise NotFoundError if the named color wasn't found. |
||
161 | May raise ValueError if an invalid color name is specified. |
||
162 | </source> |
||
163 | <translation type="unfinished" /> |
||
164 | </message> |
||
165 | <message> |
||
166 | <source>deleteColor("name", "replace") |
||
167 | |||
168 | Deletes the color "name". Every occurence of that color is replaced by the |
||
169 | color "replace". If not specified, "replace" defaults to the color |
||
170 | "None" - transparent. |
||
171 | |||
172 | deleteColor works on the default document colors if there is no document open. |
||
173 | In that case, "replace", if specified, has no effect. |
||
174 | |||
175 | May raise NotFoundError if a named color wasn't found. |
||
176 | May raise ValueError if an invalid color name is specified. |
||
177 | </source> |
||
178 | <translation type="unfinished" /> |
||
179 | </message> |
||
180 | <message> |
||
181 | <source>replaceColor("name", "replace") |
||
182 | |||
183 | Every occurence of the color "name" is replaced by the color "replace". |
||
184 | |||
185 | May raise NotFoundError if a named color wasn't found. |
||
186 | May raise ValueError if an invalid color name is specified. |
||
187 | </source> |
||
188 | <translation type="unfinished" /> |
||
189 | </message> |
||
190 | <message> |
||
191 | <source>fileDialog("caption", ["filter", "defaultname" ,haspreview, issave]) -> string with filename |
||
192 | |||
193 | Shows a File Open dialog box with the caption "caption". Files are filtered |
||
194 | with the filter string "filter". A default filename or file path can also |
||
195 | supplied, leave this string empty when you don't want to use it. A value of |
||
196 | True for haspreview enables a small preview widget in the FileSelect box. When |
||
197 | the issave parameter is set to True the dialog acts like a "Save As" dialog |
||
198 | otherwise it acts like a "File Open Dialog". The default for both of the |
||
199 | opional parameters is False. |
||
200 | |||
201 | The filter, if specified, takes the form 'comment (*.type *.type2 ...)'. |
||
202 | For example 'Images (*.png *.xpm *.jpg)'. |
||
203 | |||
204 | Refer to the Qt-Documentation for QFileDialog for details on filters. |
||
205 | |||
206 | Example: fileDialog('Open input', 'CSV files (*.csv)') |
||
207 | Example: fileDialog('Save report', defaultname='report.txt', issave=True) |
||
208 | </source> |
||
209 | <translation type="unfinished" /> |
||
210 | </message> |
||
211 | <message> |
||
212 | <source>messageBox("caption", "message", |
||
213 | icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT, |
||
214 | button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer |
||
215 | |||
216 | Displays a message box with the title "caption", the message "message", and |
||
217 | an icon "icon" and up to 3 buttons. By default no icon is used and a single |
||
218 | button, OK, is displayed. Only the caption and message arguments are required, |
||
219 | though setting an icon and appropriate button(s) is strongly |
||
220 | recommended. The message text may contain simple HTML-like markup. |
||
221 | |||
222 | Returns the number of the button the user pressed. Button numbers start |
||
223 | at 1. |
||
224 | |||
225 | For the icon and the button parameters there are predefined constants available |
||
226 | with the same names as in the Qt Documentation. These are the BUTTON_* and |
||
227 | ICON_* constants defined in the module. There are also two extra constants that |
||
228 | can be binary-ORed with button constants: |
||
229 | BUTTONOPT_DEFAULT Pressing enter presses this button. |
||
230 | BUTTONOPT_ESCAPE Pressing escape presses this button. |
||
231 | |||
232 | Usage examples: |
||
233 | result = messageBox('Script failed', |
||
234 | 'This script only works when you have a text frame selected.', |
||
235 | ICON_ERROR) |
||
236 | result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>', |
||
237 | ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
||
238 | BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
||
239 | |||
240 | Defined button and icon constants: |
||
241 | BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO, |
||
242 | BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
||
243 | ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL. |
||
244 | </source> |
||
245 | <translation type="unfinished" /> |
||
246 | </message> |
||
247 | <message> |
||
248 | <source>valueDialog(caption, message [,defaultvalue]) -> string |
||
249 | |||
250 | Shows the common 'Ask for string' dialog and returns its value as a string |
||
251 | Parameters: window title, text in the window and optional 'default' value. |
||
252 | |||
253 | Example: valueDialog('title', 'text in the window', 'optional') |
||
254 | </source> |
||
255 | <translation type="unfinished" /> |
||
256 | </message> |
||
257 | <message> |
||
258 | <source>closeDoc() |
||
259 | |||
260 | Closes the current document without prompting to save. |
||
261 | |||
262 | May throw NoDocOpenError if there is no document to close |
||
263 | </source> |
||
264 | <translation type="unfinished" /> |
||
265 | </message> |
||
266 | <message> |
||
267 | <source>haveDoc() -> bool |
||
268 | |||
269 | Returns true if there is a document open. |
||
270 | </source> |
||
271 | <translation type="unfinished" /> |
||
272 | </message> |
||
273 | <message> |
||
274 | <source>openDoc("name") |
||
275 | |||
276 | Opens the document "name". |
||
277 | |||
278 | May raise ScribusError if the document could not be opened. |
||
279 | </source> |
||
280 | <translation type="unfinished" /> |
||
281 | </message> |
||
282 | <message> |
||
283 | <source>saveDoc() |
||
284 | |||
285 | Saves the current document with its current name, returns true if successful. |
||
286 | If the document has not already been saved, this may bring up an interactive |
||
287 | save file dialog. |
||
288 | |||
289 | If the save fails, there is currently no way to tell. |
||
290 | </source> |
||
291 | <translation type="unfinished" /> |
||
292 | </message> |
||
293 | <message> |
||
294 | <source>saveDocAs("name") |
||
295 | |||
296 | Saves the current document under the new name "name" (which may be a full or |
||
297 | relative path). |
||
298 | |||
299 | May raise ScribusError if the save fails. |
||
300 | </source> |
||
301 | <translation type="unfinished" /> |
||
302 | </message> |
||
303 | <message> |
||
304 | <source>saveDocAs("author", "info", "description") -> bool |
||
305 | |||
306 | Sets the document information. "Author", "Info", "Description" are |
||
307 | strings. |
||
308 | </source> |
||
309 | <translation type="unfinished" /> |
||
310 | </message> |
||
311 | <message> |
||
312 | <source>setMargins(lr, rr, tr, br) |
||
313 | |||
314 | Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br) |
||
315 | margins are given in the measurement units of the document - see UNIT_<type> |
||
316 | constants. |
||
317 | </source> |
||
318 | <translation type="unfinished" /> |
||
319 | </message> |
||
320 | <message> |
||
321 | <source>setUnit(type) |
||
322 | |||
323 | Changes the measurement unit of the document. Possible values for "unit" are |
||
324 | defined as constants UNIT_<type>. |
||
325 | |||
326 | May raise ValueError if an invalid unit is passed. |
||
327 | </source> |
||
328 | <translation type="unfinished" /> |
||
329 | </message> |
||
330 | <message> |
||
331 | <source>getUnit() -> integer (Scribus unit constant) |
||
332 | |||
333 | Returns the measurement units of the document. The returned value will be one |
||
334 | of the UNIT_* constants: |
||
335 | UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS. |
||
336 | </source> |
||
337 | <translation type="unfinished" /> |
||
338 | </message> |
||
339 | <message> |
||
340 | <source>loadStylesFromFile("filename") |
||
341 | |||
342 | Loads paragraph styles from the Scribus document at "filename" into the |
||
343 | current document. |
||
344 | </source> |
||
345 | <translation type="unfinished" /> |
||
346 | </message> |
||
347 | <message> |
||
348 | <source>setDocType(facingPages, firstPageLeft) |
||
349 | |||
350 | Sets the document type. To get facing pages set the first parameter to |
||
351 | FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead. If you want |
||
352 | to be the first page a left side set the second parameter to FIRSTPAGELEFT, for |
||
353 | a right page use FIRSTPAGERIGHT. |
||
354 | </source> |
||
355 | <translation type="unfinished" /> |
||
356 | </message> |
||
357 | <message> |
||
358 | <source>getLineColor(["name"]) -> string |
||
359 | |||
360 | Returns the name of the line color of the object "name". |
||
361 | If "name" is not given the currently selected item is used. |
||
362 | </source> |
||
363 | <translation type="unfinished" /> |
||
364 | </message> |
||
365 | <message> |
||
366 | <source>getLineWidth(["name"]) -> integer |
||
367 | |||
368 | Returns the line width of the object "name". If "name" |
||
369 | is not given the currently selected Item is used. |
||
370 | </source> |
||
371 | <translation type="unfinished" /> |
||
372 | </message> |
||
373 | <message> |
||
374 | <source>getLineShade(["name"]) -> integer |
||
375 | |||
376 | Returns the shading value of the line color of the object "name". |
||
377 | If "name" is not given the currently selected item is used. |
||
378 | </source> |
||
379 | <translation type="unfinished" /> |
||
380 | </message> |
||
381 | <message> |
||
382 | <source>getLineJoin(["name"]) -> integer (see contants) |
||
383 | |||
384 | Returns the line join style of the object "name". If "name" is not given |
||
385 | the currently selected item is used. The join types are: |
||
386 | JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND |
||
387 | </source> |
||
388 | <translation type="unfinished" /> |
||
389 | </message> |
||
390 | <message> |
||
391 | <source>getLineEnd(["name"]) -> integer (see constants) |
||
392 | |||
393 | Returns the line cap style of the object "name". If "name" is not given the |
||
394 | currently selected item is used. The cap types are: |
||
395 | CAP_FLAT, CAP_ROUND, CAP_SQUARE |
||
396 | </source> |
||
397 | <translation type="unfinished" /> |
||
398 | </message> |
||
399 | <message> |
||
400 | <source>getLineStyle(["name"]) -> integer (see constants) |
||
401 | |||
402 | Returns the line style of the object "name". If "name" is not given the |
||
403 | currently selected item is used. Line style constants are: |
||
404 | LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID |
||
405 | </source> |
||
406 | <translation type="unfinished" /> |
||
407 | </message> |
||
408 | <message> |
||
409 | <source>getFillShade(["name"]) -> integer |
||
410 | |||
411 | Returns the shading value of the fill color of the object "name". |
||
412 | If "name" is not given the currently selected item is used. |
||
413 | </source> |
||
414 | <translation type="unfinished" /> |
||
415 | </message> |
||
416 | <message> |
||
417 | <source>getImageScale(["name"]) -> (x,y) |
||
418 | |||
419 | Returns a (x, y) tuple containing the scaling values of the image frame |
||
420 | "name". If "name" is not given the currently selected item is used. |
||
421 | </source> |
||
422 | <translation type="unfinished" /> |
||
423 | </message> |
||
424 | <message> |
||
425 | <source>getImageName(["name"]) -> string |
||
426 | |||
427 | Returns the filename for the image in the image frame. If "name" is not |
||
428 | given the currently selected item is used. |
||
429 | </source> |
||
430 | <translation type="unfinished" /> |
||
431 | </message> |
||
432 | <message> |
||
433 | <source>getSize(["name"]) -> (width,height) |
||
434 | |||
435 | Returns a (width, height) tuple with the size of the object "name". |
||
436 | If "name" is not given the currently selected item is used. The size is |
||
437 | expressed in the current measurement unit of the document - see UNIT_<type> |
||
438 | for reference. |
||
439 | </source> |
||
440 | <translation type="unfinished" /> |
||
441 | </message> |
||
442 | <message> |
||
443 | <source>getRotation(["name"]) -> integer |
||
444 | |||
445 | Returns the rotation of the object "name". The value is expressed in degrees, |
||
446 | and clockwise is positive. If "name" is not given the currently selected item |
||
447 | is used. |
||
448 | </source> |
||
449 | <translation type="unfinished" /> |
||
450 | </message> |
||
451 | <message> |
||
452 | <source>getAllObjects() -> list |
||
453 | |||
454 | Returns a list containing the names of all objects on the current page. |
||
455 | </source> |
||
456 | <translation type="unfinished" /> |
||
457 | </message> |
||
458 | <message> |
||
459 | <source>moveObjectAbs(x, y [, "name"]) |
||
460 | |||
461 | Moves the object "name" to a new location. The coordinates are expressed in |
||
462 | the current measurement unit of the document (see UNIT constants). If "name" |
||
463 | is not given the currently selected item is used. If the object "name" |
||
464 | belongs to a group, the whole group is moved. |
||
465 | </source> |
||
466 | <translation type="unfinished" /> |
||
467 | </message> |
||
468 | <message> |
||
469 | <source>rotateObject(rot [, "name"]) |
||
470 | |||
471 | Rotates the object "name" by "rot" degrees relatively. The object is |
||
472 | rotated by the vertex that is currently selected as the rotation point - by |
||
473 | default, the top left vertext at zero rotation. Positive values mean counter |
||
474 | clockwise rotation when the default rotation point is used. If "name" is not |
||
475 | given the currently selected item is used. |
||
476 | </source> |
||
477 | <translation type="unfinished" /> |
||
478 | </message> |
||
479 | <message> |
||
480 | <source>sizeObject(width, height [, "name"]) |
||
481 | |||
482 | Resizes the object "name" to the given width and height. If "name" |
||
483 | is not given the currently selected item is used. |
||
484 | </source> |
||
485 | <translation type="unfinished" /> |
||
486 | </message> |
||
487 | <message> |
||
488 | <source>getSelectedObject([nr]) -> string |
||
489 | |||
490 | Returns the name of the selected object. "nr" if given indicates the number |
||
491 | of the selected object, e.g. 0 means the first selected object, 1 means the |
||
492 | second selected Object and so on. |
||
493 | </source> |
||
494 | <translation type="unfinished" /> |
||
495 | </message> |
||
496 | <message> |
||
497 | <source>selectionCount() -> integer |
||
498 | |||
499 | Returns the number of selected objects. |
||
500 | </source> |
||
501 | <translation type="unfinished" /> |
||
502 | </message> |
||
503 | <message> |
||
504 | <source>selectObject("name") |
||
505 | |||
506 | Selects the object with the given "name". |
||
507 | </source> |
||
508 | <translation type="unfinished" /> |
||
509 | </message> |
||
510 | <message> |
||
511 | <source>deselectAll() |
||
512 | |||
513 | Deselects all objects in the whole document. |
||
514 | </source> |
||
515 | <translation type="unfinished" /> |
||
516 | </message> |
||
517 | <message> |
||
518 | <source>groupObjects(list) |
||
519 | |||
520 | Groups the objects named in "list" together. "list" must contain the names |
||
521 | of the objects to be grouped. If "list" is not given the currently selected |
||
522 | items are used. |
||
523 | </source> |
||
524 | <translation type="unfinished" /> |
||
525 | </message> |
||
526 | <message> |
||
527 | <source>unGroupObjects("name") |
||
528 | |||
529 | Destructs the group the object "name" belongs to.If "name" is not given the currently selected item is used.</source> |
||
530 | <translation type="unfinished" /> |
||
531 | </message> |
||
532 | <message> |
||
533 | <source>scaleGroup(factor [,"name"]) |
||
534 | |||
535 | Scales the group the object "name" belongs to. Values greater than 1 enlarge |
||
536 | the group, values smaller than 1 make the group smaller e.g a value of 0.5 |
||
537 | scales the group to 50 % of its original size, a value of 1.5 scales the group |
||
538 | to 150 % of its original size. The value for "factor" must be greater than |
||
539 | 0. If "name" is not given the currently selected item is used. |
||
540 | |||
541 | May raise ValueError if an invalid scale factor is passed. |
||
542 | </source> |
||
543 | <translation type="unfinished" /> |
||
544 | </message> |
||
545 | <message> |
||
546 | <source>loadImage("filename" [, "name"]) |
||
547 | |||
548 | Loads the picture "picture" into the image frame "name". If "name" is |
||
549 | not given the currently selected item is used. |
||
550 | |||
551 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
552 | </source> |
||
553 | <translation type="unfinished" /> |
||
554 | </message> |
||
555 | <message> |
||
556 | <source>scaleImage(x, y [, "name"]) |
||
557 | |||
558 | Sets the scaling factors of the picture in the image frame "name". |
||
559 | If "name" is not given the currently selected item is used. A number of 1 |
||
560 | means 100 %. |
||
561 | |||
562 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
563 | </source> |
||
564 | <translation type="unfinished" /> |
||
565 | </message> |
||
566 | <message> |
||
567 | <source>lockObject(["name"]) -> bool |
||
568 | |||
569 | Locks the object "name" if it's unlocked or unlock it if it's locked. |
||
570 | If "name" is not given the currently selected item is used. Returns true |
||
571 | if locked. |
||
572 | </source> |
||
573 | <translation type="unfinished" /> |
||
574 | </message> |
||
575 | <message> |
||
576 | <source>isLocked(["name"]) -> bool |
||
577 | |||
578 | Returns true if is the object "name" locked. If "name" is not given the |
||
579 | currently selected item is used. |
||
580 | </source> |
||
581 | <translation type="unfinished" /> |
||
582 | </message> |
||
583 | <message> |
||
584 | <source>getFontNames() -> list |
||
585 | |||
586 | Returns a list with the names of all available fonts. |
||
587 | </source> |
||
588 | <translation type="unfinished" /> |
||
589 | </message> |
||
590 | <message> |
||
591 | <source>getXFontNames() -> list of tuples |
||
592 | |||
593 | Returns a larger font info. It's a list of the tuples with: |
||
594 | [ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ] |
||
595 | </source> |
||
596 | <translation type="unfinished" /> |
||
597 | </message> |
||
598 | <message> |
||
599 | <source>rendeFont("name", "filename", "sample", size) -> bool |
||
600 | |||
601 | Creates an image preview of font "name" with given text "sample" and size. |
||
602 | Image is saved into "filename". Returns true when success. |
||
603 | |||
604 | May raise NotFoundError if the specified font can't be found. |
||
605 | May raise ValueError if an empty sample or filename is passed. |
||
606 | </source> |
||
607 | <translation type="unfinished" /> |
||
608 | </message> |
||
609 | <message> |
||
610 | <source>getLayers() -> list |
||
611 | |||
612 | Returns a list with the names of all defined layers. |
||
613 | </source> |
||
614 | <translation type="unfinished" /> |
||
615 | </message> |
||
616 | <message> |
||
617 | <source>setActiveLayer("name") |
||
618 | |||
619 | Sets the active layer to the layer named "name". |
||
620 | |||
621 | May raise NotFoundError if the layer can't be found. |
||
622 | May raise ValueError if the layer name isn't acceptable. |
||
623 | </source> |
||
624 | <translation type="unfinished" /> |
||
625 | </message> |
||
626 | <message> |
||
627 | <source>getActiveLayer() -> string |
||
628 | |||
629 | Returns the name of the current active layer. |
||
630 | </source> |
||
631 | <translation type="unfinished" /> |
||
632 | </message> |
||
633 | <message> |
||
634 | <source>sentToLayer("layer" [, "name"]) |
||
635 | |||
636 | Sends the object "name" to the layer "layer". The layer must exist. |
||
637 | If "name" is not given the currently selected item is used. |
||
638 | |||
639 | May raise NotFoundError if the layer can't be found. |
||
640 | May raise ValueError if the layer name isn't acceptable. |
||
641 | </source> |
||
642 | <translation type="unfinished" /> |
||
643 | </message> |
||
644 | <message> |
||
645 | <source>setLayerVisible("layer", visible) |
||
646 | |||
647 | Sets the layer "layer" to be visible or not. If is the visible set to false |
||
648 | the layer is invisible. |
||
649 | |||
650 | May raise NotFoundError if the layer can't be found. |
||
651 | May raise ValueError if the layer name isn't acceptable. |
||
652 | </source> |
||
653 | <translation type="unfinished" /> |
||
654 | </message> |
||
655 | <message> |
||
656 | <source>setLayerPrintable("layer", printable) |
||
657 | |||
658 | Sets the layer "layer" to be printable or not. If is the printable set to |
||
659 | false the layer won't be printed. |
||
660 | |||
661 | May raise NotFoundError if the layer can't be found. |
||
662 | May raise ValueError if the layer name isn't acceptable. |
||
663 | </source> |
||
664 | <translation type="unfinished" /> |
||
665 | </message> |
||
666 | <message> |
||
667 | <source>isLayerPrintable("layer") -> bool |
||
668 | |||
669 | Returns wether the Layer "layer" is visible or not, a value of True means |
||
670 | that the layer "layer" is visible, a value of False means that the layer |
||
671 | "layer" is invisible. |
||
672 | |||
673 | May raise NotFoundError if the layer can't be found. |
||
674 | May raise ValueError if the layer name isn't acceptable. |
||
675 | </source> |
||
676 | <translation type="unfinished" /> |
||
677 | </message> |
||
678 | <message> |
||
679 | <source>isLayerPrintable("layer") -> bool |
||
680 | |||
681 | Returns wether the layer "layer" is printable or not, a value of True means |
||
682 | that the layer "layer" can be printed, a value of False means that printing |
||
683 | the layer "layer" is disabled. |
||
684 | |||
685 | May raise NotFoundError if the layer can't be found. |
||
686 | May raise ValueError if the layer name isn't acceptable. |
||
687 | </source> |
||
688 | <translation type="unfinished" /> |
||
689 | </message> |
||
690 | <message> |
||
691 | <source>deleteLayer("layer") |
||
692 | |||
693 | Deletes the layer with the name "layer". Nothing happens if the layer doesn't |
||
694 | exists or if it's the only layer in the document. |
||
695 | |||
696 | May raise NotFoundError if the layer can't be found. |
||
697 | May raise ValueError if the layer name isn't acceptable. |
||
698 | </source> |
||
699 | <translation type="unfinished" /> |
||
700 | </message> |
||
701 | <message> |
||
702 | <source>createLayer(layer) |
||
703 | |||
704 | Creates a new layer with the name "name". |
||
705 | |||
706 | May raise ValueError if the layer name isn't acceptable. |
||
707 | </source> |
||
708 | <translation type="unfinished" /> |
||
709 | </message> |
||
710 | <message> |
||
711 | <source>getGuiLanguage() -> string |
||
712 | |||
713 | Returns a string with the -lang value. |
||
714 | </source> |
||
715 | <translation type="unfinished" /> |
||
716 | </message> |
||
717 | <message> |
||
718 | <source>createEllipse(x, y, width, height, ["name"]) -> string |
||
719 | |||
720 | Creates a new ellipse on the current page and returns its name. |
||
721 | The coordinates are given in the current measurement units of the document |
||
722 | (see UNIT constants). "name" should be a unique identifier for the object |
||
723 | because you need this name for further referencing of that object. If "name" |
||
724 | is not given Scribus will create one for you. |
||
725 | |||
726 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
727 | </source> |
||
728 | <translation type="unfinished" /> |
||
729 | </message> |
||
730 | <message> |
||
731 | <source>createImage(x, y, width, height, ["name"]) -> string |
||
732 | |||
733 | Creates a new picture frame on the current page and returns its name. The |
||
734 | coordinates are given in the current measurement units of the document. |
||
735 | "name" should be a unique identifier for the object because you need this |
||
736 | name for further access to that object. If "name" is not given Scribus will |
||
737 | create one for you. |
||
738 | |||
739 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
740 | </source> |
||
741 | <translation type="unfinished" /> |
||
742 | </message> |
||
743 | <message> |
||
744 | <source>createText(x, y, width, height, ["name"]) -> string |
||
745 | |||
746 | Creates a new text frame on the actual page and returns its name. |
||
747 | The coordinates are given in the actual measurement unit of the document (see |
||
748 | UNIT constants). "name" should be a unique identifier for the object because |
||
749 | you need this name for further referencing of that object. If "name" is not |
||
750 | given Scribus will create one for you. |
||
751 | |||
752 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
753 | </source> |
||
754 | <translation type="unfinished" /> |
||
755 | </message> |
||
756 | <message> |
||
757 | <source>createLine(x1, y1, x2, y2, ["name"]) -> string |
||
758 | |||
759 | Creates a new line from the point(x1, y1) to the point(x2, y2) and returns |
||
760 | its name. The coordinates are given in the current measurement unit of the |
||
761 | document (see UNIT constants). "name" should be a unique identifier for the |
||
762 | object because you need this name for further access to that object. If |
||
763 | "name" is not given Scribus will create one for you. |
||
764 | |||
765 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
766 | </source> |
||
767 | <translation type="unfinished" /> |
||
768 | </message> |
||
769 | <message> |
||
770 | <source>createPolyLine(list, ["name"]) -> string |
||
771 | |||
772 | Creates a new polyline and returns its name. The points for the polyline are |
||
773 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
774 | The coordinates are given in the current measurement units of the document (see |
||
775 | UNIT constants). "name" should be a unique identifier for the object because |
||
776 | you need this name for further access to that object. If "name" is not given |
||
777 | Scribus will create one for you. |
||
778 | |||
779 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
780 | May raise ValueError if an insufficient number of points is passed or if |
||
781 | the number of values passed don't group into points without leftovers. |
||
782 | </source> |
||
783 | <translation type="unfinished" /> |
||
784 | </message> |
||
785 | <message> |
||
786 | <source>createPolygon(list, ["name"]) -> string |
||
787 | |||
788 | Creates a new polygon and returns its name. The points for the polygon are |
||
789 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
790 | At least three points are required. There is no need to repeat the first point |
||
791 | to close the polygon. The polygon is automatically closed by connecting the |
||
792 | first and the last point. The coordinates are given in the current measurement |
||
793 | units of the document (see UNIT constants). "name" should be a unique |
||
794 | identifier for the object because you need this name for further access to that |
||
795 | object. If "name" is not given Scribus will create one for you. |
||
796 | |||
797 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
798 | May raise ValueError if an insufficient number of points is passed or if |
||
799 | the number of values passed don't group into points without leftovers. |
||
800 | </source> |
||
801 | <translation type="unfinished" /> |
||
802 | </message> |
||
803 | <message> |
||
804 | <source>createBezierLine(list, ["name"]) -> string |
||
805 | |||
806 | Creates a new bezier curve and returns its name. The points for the bezier |
||
807 | curve are stored in the list "list" in the following order: |
||
808 | [x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn] |
||
809 | In the points list, x and y mean the x and y coordinates of the point and kx |
||
810 | and ky meaning the control point for the curve. The coordinates are given in |
||
811 | the current measurement units of the document (see UNIT constants). "name" |
||
812 | should be a unique identifier for the object because you need this name for |
||
813 | further access to that object. If "name" is not given Scribus will create one |
||
814 | for you. |
||
815 | |||
816 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
817 | May raise ValueError if an insufficient number of points is passed or if |
||
818 | the number of values passed don't group into points without leftovers. |
||
819 | </source> |
||
820 | <translation type="unfinished" /> |
||
821 | </message> |
||
822 | <message> |
||
823 | <source>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string |
||
824 | |||
825 | Creates a new pathText by merging the two objects "textbox" and |
||
826 | "beziercurve" and returns its name. The coordinates are given in the current |
||
827 | measurement unit of the document (see UNIT constants). "name" should be a |
||
828 | unique identifier for the object because you need this name for further access |
||
829 | to that object. If "name" is not given Scribus will create one for you. |
||
830 | |||
831 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
832 | May raise NotFoundError if one or both of the named base object don't exist. |
||
833 | </source> |
||
834 | <translation type="unfinished" /> |
||
835 | </message> |
||
836 | <message> |
||
837 | <source>deleteObject(["name"]) |
||
838 | |||
839 | Deletes the item with the name "name". If "name" is not given the currently |
||
840 | selected item is deleted. |
||
841 | </source> |
||
842 | <translation type="unfinished" /> |
||
843 | </message> |
||
844 | <message> |
||
845 | <source>textFlowsAroundFrame("name" [, state]) |
||
846 | |||
847 | Enables/disables "Text Flows Around Frame" feature for object "name". |
||
848 | Called with parameters string name and optional boolean "state". If "state" |
||
849 | is not passed, text flow is toggled. |
||
850 | </source> |
||
851 | <translation type="unfinished" /> |
||
852 | </message> |
||
853 | <message> |
||
854 | <source>objectExists(["name"]) -> bool |
||
855 | |||
856 | Test if an object with specified name really exists in the document. |
||
857 | The optional parameter is the object name. When no object name is given, |
||
858 | returns True if there is something selected. |
||
859 | </source> |
||
860 | <translation type="unfinished" /> |
||
861 | </message> |
||
862 | <message> |
||
863 | <source>setStyle("style" [, "name"]) |
||
864 | |||
865 | Apply the named "style" to the object named "name". If is no object name |
||
866 | given, it's applied on the selected object. |
||
867 | </source> |
||
868 | <translation type="unfinished" /> |
||
869 | </message> |
||
870 | <message> |
||
871 | <source>getAllStyles() -> list |
||
872 | |||
873 | Return a list of the names of all paragraph styles in the current document. |
||
874 | </source> |
||
875 | <translation type="unfinished" /> |
||
876 | </message> |
||
877 | <message> |
||
878 | <source>currentPage() -> integer |
||
879 | |||
880 | Returns the number of the current working page. Page numbers are counted from 1 |
||
881 | upwards, no matter what the displayed first page number of your document is. |
||
882 | </source> |
||
883 | <translation type="unfinished" /> |
||
884 | </message> |
||
885 | <message> |
||
886 | <source>redrawAll() |
||
887 | |||
888 | Redraws all pages. |
||
889 | </source> |
||
890 | <translation type="unfinished" /> |
||
891 | </message> |
||
892 | <message> |
||
893 | <source>savePageAsEPS("name") |
||
894 | |||
895 | Saves the current page as an EPS to the file "name". |
||
896 | |||
897 | May raise ScribusError if the save failed. |
||
898 | </source> |
||
899 | <translation type="unfinished" /> |
||
900 | </message> |
||
901 | <message> |
||
902 | <source>deletePage(nr) |
||
903 | |||
904 | Deletes the given page. Does nothing if the document contains only one page. |
||
905 | Page numbers are counted from 1 upwards, no matter what the displayed first |
||
906 | page number is. |
||
907 | |||
908 | May raise IndexError if the page number is out of range |
||
909 | </source> |
||
910 | <translation type="unfinished" /> |
||
911 | </message> |
||
912 | <message> |
||
913 | <source>gotoPage(nr) |
||
914 | |||
915 | Moves to the page "nr" (that is, makes the current page "nr"). Note that |
||
916 | gotoPage doesn't (curently) change the page the user's view is displaying, it |
||
917 | just sets the page that script commands will operates on. |
||
918 | |||
919 | May raise IndexError if the page number is out of range. |
||
920 | </source> |
||
921 | <translation type="unfinished" /> |
||
922 | </message> |
||
923 | <message> |
||
924 | <source>pageCount() -> integer |
||
925 | |||
926 | Returns the number of pages in the document. |
||
927 | </source> |
||
928 | <translation type="unfinished" /> |
||
929 | </message> |
||
930 | <message> |
||
931 | <source>getHGuides() -> list |
||
932 | |||
933 | Returns a list containing positions of the horizontal guides. Values are in the |
||
934 | document's current units - see UNIT_<type> constants. |
||
935 | </source> |
||
936 | <translation type="unfinished" /> |
||
937 | </message> |
||
938 | <message> |
||
939 | <source>setHGuides(list) |
||
940 | |||
941 | Sets horizontal guides. Input parameter must be a list of guide positions |
||
942 | measured in the current document units - see UNIT_<type> constants. |
||
943 | |||
944 | Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost |
||
945 | setHGuides([90,250]) # replace current guides entirely |
||
946 | </source> |
||
947 | <translation type="unfinished" /> |
||
948 | </message> |
||
949 | <message> |
||
950 | <source>getVGuides() |
||
951 | |||
952 | See getHGuides. |
||
953 | </source> |
||
954 | <translation type="unfinished" /> |
||
955 | </message> |
||
956 | <message> |
||
957 | <source>setVGuides() |
||
958 | |||
959 | See setHGuides. |
||
960 | </source> |
||
961 | <translation type="unfinished" /> |
||
962 | </message> |
||
963 | <message> |
||
964 | <source>getPageSize() -> tuple |
||
965 | |||
966 | Returns a tuple with page dimensions measured in the document's current units. |
||
967 | See UNIT_<type> constants and getPageMargins() |
||
968 | </source> |
||
969 | <translation type="unfinished" /> |
||
970 | </message> |
||
971 | <message> |
||
972 | <source>getPageItems() -> list |
||
973 | |||
974 | Returns a list of tuples with items on the current page. The tuple is: |
||
975 | (name, objectType, order) E.g. [('Text1', 4, 0), ('Image1', 2, 1)] |
||
976 | means that object named 'Text1' is a text frame (type 4) and is the first at |
||
977 | the page... |
||
978 | </source> |
||
979 | <translation type="unfinished" /> |
||
980 | </message> |
||
981 | <message> |
||
982 | <source>getPageMargins() |
||
983 | |||
984 | Returns the page margins as a (left, right, top, bottom) tuple in the current |
||
985 | units. See UNIT_<type> constants and getPageSize(). |
||
986 | </source> |
||
987 | <translation type="unfinished" /> |
||
988 | </message> |
||
989 | <message> |
||
990 | <source>setFillColor("color", ["name"]) |
||
991 | |||
992 | Sets the fill color of the object "name" to the color "color". "color" |
||
993 | is the name of one of the defined colors. If "name" is not given the |
||
994 | currently selected item is used. |
||
995 | </source> |
||
996 | <translation type="unfinished" /> |
||
997 | </message> |
||
998 | <message> |
||
999 | <source>setLineColor("color", ["name"]) |
||
1000 | |||
1001 | Sets the line color of the object "name" to the color "color". If "name" |
||
1002 | is not given the currently selected item is used. |
||
1003 | </source> |
||
1004 | <translation type="unfinished" /> |
||
1005 | </message> |
||
1006 | <message> |
||
1007 | <source>setLineWidth(width, ["name"]) |
||
1008 | |||
1009 | Sets line width of the object "name" to "width". "width" must be in the |
||
1010 | range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not |
||
1011 | given the currently selected item is used. |
||
1012 | |||
1013 | May raise ValueError if the line width is out of bounds. |
||
1014 | </source> |
||
1015 | <translation type="unfinished" /> |
||
1016 | </message> |
||
1017 | <message> |
||
1018 | <source>setLineShade(shade, ["name"]) |
||
1019 | |||
1020 | Sets the shading of the line color of the object "name" to "shade". |
||
1021 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
1022 | (full color intensity). If "name" is not given the currently selected item |
||
1023 | is used. |
||
1024 | |||
1025 | May raise ValueError if the line shade is out of bounds. |
||
1026 | </source> |
||
1027 | <translation type="unfinished" /> |
||
1028 | </message> |
||
1029 | <message> |
||
1030 | <source>setLineJoin(join, ["name"]) |
||
1031 | |||
1032 | Sets the line join style of the object "name" to the style "join". |
||
1033 | If "name" is not given the currently selected item is used. There are |
||
1034 | predefined constants for join - JOIN_<type>. |
||
1035 | </source> |
||
1036 | <translation type="unfinished" /> |
||
1037 | </message> |
||
1038 | <message> |
||
1039 | <source>setLineEnd(endtype, ["name"]) |
||
1040 | |||
1041 | Sets the line cap style of the object "name" to the style "cap". |
||
1042 | If "name" is not given the currently selected item is used. There are |
||
1043 | predefined constants for "cap" - CAP_<type>. |
||
1044 | </source> |
||
1045 | <translation type="unfinished" /> |
||
1046 | </message> |
||
1047 | <message> |
||
1048 | <source>setLineStyle(style, ["name"]) |
||
1049 | |||
1050 | Sets the line style of the object "name" to the style "style". If "name" |
||
1051 | is not given the currently selected item is used. There are predefined |
||
1052 | constants for "style" - LINE_<style>. |
||
1053 | </source> |
||
1054 | <translation type="unfinished" /> |
||
1055 | </message> |
||
1056 | <message> |
||
1057 | <source>setFillShade(shade, ["name"]) |
||
1058 | |||
1059 | Sets the shading of the fill color of the object "name" to "shade". |
||
1060 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
1061 | (full Color intensity). If "name" is not given the currently selected |
||
1062 | Item is used. |
||
1063 | |||
1064 | May raise ValueError if the fill shade is out of bounds. |
||
1065 | </source> |
||
1066 | <translation type="unfinished" /> |
||
1067 | </message> |
||
1068 | <message> |
||
1069 | <source>setCornerRadius(radius, ["name"]) |
||
1070 | |||
1071 | Sets the corner radius of the object "name". The radius is expressed |
||
1072 | in points. If "name" is not given the currently selected item is used. |
||
1073 | |||
1074 | May raise ValueError if the corner radius is negative. |
||
1075 | </source> |
||
1076 | <translation type="unfinished" /> |
||
1077 | </message> |
||
1078 | <message> |
||
1079 | <source>setMultiLine("namedStyle", ["name"]) |
||
1080 | |||
1081 | Sets the line style of the object "name" to the named style "namedStyle". |
||
1082 | If "name" is not given the currently selected item is used. |
||
1083 | |||
1084 | May raise NotFoundError if the line style doesn't exist. |
||
1085 | </source> |
||
1086 | <translation type="unfinished" /> |
||
1087 | </message> |
||
1088 | <message> |
||
1089 | <source>getFont(["name"]) -> string |
||
1090 | |||
1091 | Returns the font name for the text frame "name". If this text frame |
||
1092 | has some text selected the value assigned to the first character |
||
1093 | of the selection is returned. If "name" is not given the currently |
||
1094 | selected item is used. |
||
1095 | </source> |
||
1096 | <translation type="unfinished" /> |
||
1097 | </message> |
||
1098 | <message> |
||
1099 | <source>getTextLength(["name"]) -> integer |
||
1100 | |||
1101 | Returns the length of the text in the text frame "name". |
||
1102 | If "name" is not given the currently selected item is used. |
||
1103 | </source> |
||
1104 | <translation type="unfinished" /> |
||
1105 | </message> |
||
1106 | <message> |
||
1107 | <source>getText(["name"]) -> string |
||
1108 | |||
1109 | Returns the text of the text frame "name". If this text frame has some text |
||
1110 | selected, the selected text is returned. All text in the frame, not just |
||
1111 | currently visible text, is returned. If "name" is not given the currently |
||
1112 | selected item is used. |
||
1113 | </source> |
||
1114 | <translation type="unfinished" /> |
||
1115 | </message> |
||
1116 | <message> |
||
1117 | <source>getAllText(["name"]) -> string |
||
1118 | |||
1119 | Returns the text of the text frame "name" and of all text frames which are |
||
1120 | linked with this frame. If this textframe has some text selected, the selected |
||
1121 | text is returned. If "name" is not given the currently selected item is |
||
1122 | used. |
||
1123 | </source> |
||
1124 | <translation type="unfinished" /> |
||
1125 | </message> |
||
1126 | <message> |
||
1127 | <source>getLineSpacing(["name"]) -> float |
||
1128 | |||
1129 | Returns the line spacing ("leading") of the text frame "name" expressed in |
||
1130 | points. If "name" is not given the currently selected item is used. |
||
1131 | </source> |
||
1132 | <translation type="unfinished" /> |
||
1133 | </message> |
||
1134 | <message> |
||
1135 | <source>getColumnGap(["name"]) -> float |
||
1136 | |||
1137 | Returns the column gap size of the text frame "name" expressed in points. If |
||
1138 | "name" is not given the currently selected item is used. |
||
1139 | </source> |
||
1140 | <translation type="unfinished" /> |
||
1141 | </message> |
||
1142 | <message> |
||
1143 | <source>getColumns(["name"]) -> integer |
||
1144 | |||
1145 | Gets the number of columns of the text frame "name". If "name" is not |
||
1146 | given the currently selected item is used. |
||
1147 | </source> |
||
1148 | <translation type="unfinished" /> |
||
1149 | </message> |
||
1150 | <message> |
||
1151 | <source>setText("text", ["name"]) |
||
1152 | |||
1153 | Sets the text of the text frame "name" to the text of the string "text". |
||
1154 | Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ |
||
1155 | for more details. If "name" is not given the currently selected item is |
||
1156 | used. |
||
1157 | </source> |
||
1158 | <translation type="unfinished" /> |
||
1159 | </message> |
||
1160 | <message> |
||
1161 | <source>insertText("text", pos, ["name"]) |
||
1162 | |||
1163 | Inserts the text "text" at the position "pos" into the text frame. Text |
||
1164 | must be UTF encoded (see setText() as reference) The first character has an |
||
1165 | index of 0. "name" If "name" is not given the currently selected Item is |
||
1166 | used. |
||
1167 | |||
1168 | May throw IndexError for an insertion out of bounds. |
||
1169 | </source> |
||
1170 | <translation type="unfinished" /> |
||
1171 | </message> |
||
1172 | <message> |
||
1173 | <source>setFont("font", ["name"]) |
||
1174 | |||
1175 | Sets the font of the text frame "name" to "font". If there is some text |
||
1176 | selected only the selected text is changed. If "name" is not given the |
||
1177 | currently selected item is used. |
||
1178 | |||
1179 | May throw ValueError if the font cannot be found. |
||
1180 | </source> |
||
1181 | <translation type="unfinished" /> |
||
1182 | </message> |
||
1183 | <message> |
||
1184 | <source>setFontSize(size, ["name"]) |
||
1185 | |||
1186 | Sets the font size of the text frame "name" to "size". "size" is treated |
||
1187 | as a value in points. If there is some text selected only the selected text is |
||
1188 | changed. "size" must be in the range 1 to 512. If "name" is not given the |
||
1189 | currently selected item is used. |
||
1190 | |||
1191 | May throw ValueError for a font size that's out of bounds. |
||
1192 | </source> |
||
1193 | <translation type="unfinished" /> |
||
1194 | </message> |
||
1195 | <message> |
||
1196 | <source>setLineSpacing(size, ["name"]) |
||
1197 | |||
1198 | Sets the line spacing ("leading") of the text frame "name" to "size". |
||
1199 | "size" is a value in points. If "name" is not given the currently selected |
||
1200 | item is used. |
||
1201 | |||
1202 | May throw ValueError if the line spacing is out of bounds. |
||
1203 | </source> |
||
1204 | <translation type="unfinished" /> |
||
1205 | </message> |
||
1206 | <message> |
||
1207 | <source>setColumnGap(size, ["name"]) |
||
1208 | |||
1209 | Sets the column gap of the text frame "name" to the value "size". If |
||
1210 | "name" is not given the currently selected item is used. |
||
1211 | |||
1212 | May throw ValueError if the column gap is out of bounds (must be positive). |
||
1213 | </source> |
||
1214 | <translation type="unfinished" /> |
||
1215 | </message> |
||
1216 | <message> |
||
1217 | <source>setColumns(nr, ["name"]) |
||
1218 | |||
1219 | Sets the number of columns of the text frame "name" to the integer "nr". |
||
1220 | If "name" is not given the currently selected item is used. |
||
1221 | |||
1222 | May throw ValueError if number of columns is not at least one. |
||
1223 | </source> |
||
1224 | <translation type="unfinished" /> |
||
1225 | </message> |
||
1226 | <message> |
||
1227 | <source>setTextAlignment(align, ["name"]) |
||
1228 | |||
1229 | Sets the text alignment of the text frame "name" to the specified alignment. |
||
1230 | If "name" is not given the currently selected item is used. "align" should |
||
1231 | be one of the ALIGN_ constants defined in this module - see dir(scribus). |
||
1232 | |||
1233 | May throw ValueError for an invalid alignment constant. |
||
1234 | </source> |
||
1235 | <translation type="unfinished" /> |
||
1236 | </message> |
||
1237 | <message> |
||
1238 | <source>selectText(start, count, ["name"]) |
||
1239 | |||
1240 | Selects "count" characters of text in the text frame "name" starting from the |
||
1241 | character "start". Character counting starts at 0. If "count" is zero, any |
||
1242 | text selection will be cleared. If "name" is not given the currently |
||
1243 | selected item is used. |
||
1244 | |||
1245 | May throw IndexError if the selection is outside the bounds of the text. |
||
1246 | </source> |
||
1247 | <translation type="unfinished" /> |
||
1248 | </message> |
||
1249 | <message> |
||
1250 | <source>deleteText(["name"]) |
||
1251 | |||
1252 | Deletes any text in the text frame "name". If there is some text selected, |
||
1253 | only the selected text will be deleted. If "name" is not given the currently |
||
1254 | selected item is used. |
||
1255 | </source> |
||
1256 | <translation type="unfinished" /> |
||
1257 | </message> |
||
1258 | <message> |
||
1259 | <source>setTextColor("color", ["name"]) |
||
1260 | |||
1261 | Sets the text color of the text frame "name" to the color "color". If there |
||
1262 | is some text selected only the selected text is changed. If "name" is not |
||
1263 | given the currently selected item is used. |
||
1264 | </source> |
||
1265 | <translation type="unfinished" /> |
||
1266 | </message> |
||
1267 | <message> |
||
1268 | <source>setTextStroke("color", ["name"]) |
||
1269 | |||
1270 | Set "color" of the text stroke. If "name" is not given the currently |
||
1271 | selected item is used. |
||
1272 | </source> |
||
1273 | <translation type="unfinished" /> |
||
1274 | </message> |
||
1275 | <message> |
||
1276 | <source>setTextShade(shade, ["name"]) |
||
1277 | |||
1278 | Sets the shading of the text color of the object "name" to "shade". If |
||
1279 | there is some text selected only the selected text is changed. "shade" must |
||
1280 | be an integer value in the range from 0 (lightest) to 100 (full color |
||
1281 | intensity). If "name" is not given the currently selected item is |
||
1282 | used. |
||
1283 | </source> |
||
1284 | <translation type="unfinished" /> |
||
1285 | </message> |
||
1286 | <message> |
||
1287 | <source>linkTextFrames("fromname", "toname") |
||
1288 | |||
1289 | Link two text frames. The frame named "fromname" is linked to the |
||
1290 | frame named "toname". The target frame must be an empty text frame |
||
1291 | and must not link to or be linked from any other frames already. |
||
1292 | |||
1293 | May throw ScribusException if linking rules are violated. |
||
1294 | </source> |
||
1295 | <translation type="unfinished" /> |
||
1296 | </message> |
||
1297 | <message> |
||
1298 | <source>unlinkTextFrames("name") |
||
1299 | |||
1300 | Remove the specified (named) object from the text frame flow/linkage. If the |
||
1301 | frame was in the middle of a chain, the previous and next frames will be |
||
1302 | connected, eg 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)' |
||
1303 | |||
1304 | May throw ScribusException if linking rules are violated. |
||
1305 | </source> |
||
1306 | <translation type="unfinished" /> |
||
1307 | </message> |
||
1308 | <message> |
||
1309 | <source>traceText(["name"]) |
||
1310 | |||
1311 | Convert the text frame "name" to outlines. If "name" is not given the |
||
1312 | currently selected item is used.</source> |
||
1313 | <translation type="unfinished" /> |
||
1314 | </message> |
||
1315 | <message> |
||
1316 | <source>progressReset() |
||
1317 | |||
1318 | Cleans up the Scribus progress bar previous settings. It is called before the |
||
1319 | new progress bar use. See progressSet. |
||
1320 | </source> |
||
1321 | <translation type="unfinished" /> |
||
1322 | </message> |
||
1323 | <message> |
||
1324 | <source>progressTotal(max) |
||
1325 | |||
1326 | Sets the progress bar's maximum steps value to the specified number. |
||
1327 | See progressSet. |
||
1328 | </source> |
||
1329 | <translation type="unfinished" /> |
||
1330 | </message> |
||
1331 | <message> |
||
1332 | <source>progressSet(nr) |
||
1333 | |||
1334 | Set the progress bar position to "nr", a value relative to the previously set |
||
1335 | progressTotal. The progress bar uses the concept of steps; you give it the |
||
1336 | total number of steps and the number of steps completed so far and it will |
||
1337 | display the percentage of steps that have been completed. You can specify the |
||
1338 | total number of steps with progressTotal(). The current number of steps is set |
||
1339 | with progressSet(). The progress bar can be rewound to the beginning with |
||
1340 | progressReset(). [based on info taken from Trolltech's Qt docs] |
||
1341 | </source> |
||
1342 | <translation type="unfinished" /> |
||
1343 | </message> |
||
1344 | <message> |
||
1345 | <source>setCursor() |
||
1346 | |||
1347 | [UNSUPPORTED!] This might break things, so steer clear for now. |
||
1348 | </source> |
||
1349 | <translation type="unfinished" /> |
||
1350 | </message> |
||
1351 | <message> |
||
1352 | <source>docChanged(bool) |
||
1353 | |||
1354 | Enable/disable save icon in the Scribus icon bar and the Save menu item. It's |
||
1355 | useful to call this procedure when you're changing the document, because Scribus |
||
1356 | won't automatically notice when you change the document using a script. |
||
1357 | </source> |
||
1358 | <translation type="unfinished" /> |
||
1359 | </message> |
||
1360 | <message> |
||
1361 | <source>defineColor("name", c, m, y, k) |
||
1362 | |||
1363 | Defines a new color "name". The color Value is defined via four components: |
||
1364 | c = Cyan, m = Magenta, y = Yellow and k = Black. Color components should be in |
||
1365 | the range from 0 to 255. |
||
1366 | |||
1367 | May raise ValueError if an invalid color name is specified. |
||
1368 | </source> |
||
1369 | <translation type="unfinished" /> |
||
1370 | </message> |
||
1371 | <message> |
||
1372 | <source>getCornerRadius(["name"]) -> integer |
||
1373 | |||
1374 | Returns the corner radius of the object "name". The radius is |
||
1375 | expressed in points. If "name" is not given the currently |
||
1376 | selected item is used. |
||
1377 | </source> |
||
1378 | <translation type="unfinished" /> |
||
1379 | </message> |
||
1380 | <message> |
||
1381 | <source>getPosition(["name"]) -> (x,y) |
||
1382 | |||
1383 | Returns a (x, y) tuple with the position of the object "name". |
||
1384 | If "name" is not given the currently selected item is used. |
||
1385 | The position is expressed in the actual measurement unit of the document |
||
1386 | - see UNIT_<type> for reference. |
||
1387 | </source> |
||
1388 | <translation type="unfinished" /> |
||
1389 | </message> |
||
1390 | <message> |
||
1391 | <source>rotateObjectAbs(rot [, "name"]) |
||
1392 | |||
1393 | Sets the rotation of the object "name" to "rot". Positive values |
||
1394 | mean counter clockwise rotation. If "name" is not given the currently |
||
1395 | selected item is used. |
||
1396 | </source> |
||
1397 | <translation type="unfinished" /> |
||
1398 | </message> |
||
1399 | </context> |
||
1400 | <context> |
||
377 | Franz | 1401 | <name>About</name> |
1402 | <message> |
||
798 | cbradney | 1403 | <source>%1. %2 %3 </source> |
1404 | <translation>%1.%2 %3</translation> |
||
377 | Franz | 1405 | </message> |
1406 | <message> |
||
798 | cbradney | 1407 | <source>Scribus Version %1 |
377 | Franz | 1408 | %2 %3</source> |
798 | cbradney | 1409 | <translation>Scribus versjon %1 |
377 | Franz | 1410 | %2 %3</translation> |
1411 | </message> |
||
1412 | <message> |
||
798 | cbradney | 1413 | <source>Build-ID:</source> |
1414 | <translation>Build-ID:</translation> |
||
377 | Franz | 1415 | </message> |
1416 | <message> |
||
798 | cbradney | 1417 | <source>Contributions from:</source> |
1418 | <translation>Bidrag fra:</translation> |
||
377 | Franz | 1419 | </message> |
1420 | <message> |
||
798 | cbradney | 1421 | <source>Windows port:</source> |
1422 | <translation>Windows versjon:</translation> |
||
377 | Franz | 1423 | </message> |
1424 | <message> |
||
798 | cbradney | 1425 | <source>German:</source> |
1426 | <translation>Tysk:</translation> |
||
377 | Franz | 1427 | </message> |
1428 | <message> |
||
798 | cbradney | 1429 | <source>French:</source> |
1430 | <translation>Fransk:</translation> |
||
377 | Franz | 1431 | </message> |
1432 | <message> |
||
798 | cbradney | 1433 | <source>Italian:</source> |
1434 | <translation>Italiensk:</translation> |
||
377 | Franz | 1435 | </message> |
1436 | <message> |
||
798 | cbradney | 1437 | <source>Hungarian:</source> |
1438 | <translation>Ungarsk:</translation> |
||
377 | Franz | 1439 | </message> |
1440 | <message> |
||
798 | cbradney | 1441 | <source>Ukrainian:</source> |
1442 | <translation>Ukrainsk:</translation> |
||
377 | Franz | 1443 | </message> |
1444 | <message> |
||
798 | cbradney | 1445 | <source>Bulgarian:</source> |
1446 | <translation>Bulgarsk:</translation> |
||
377 | Franz | 1447 | </message> |
1448 | <message> |
||
798 | cbradney | 1449 | <source>Galician:</source> |
1450 | <translation>Galisk:</translation> |
||
377 | Franz | 1451 | </message> |
1452 | <message> |
||
798 | cbradney | 1453 | <source>Turkish:</source> |
1454 | <translation>Tyrkisk:</translation> |
||
377 | Franz | 1455 | </message> |
1456 | <message> |
||
798 | cbradney | 1457 | <source>Lithuanian:</source> |
1458 | <translation>Litauisk:</translation> |
||
377 | Franz | 1459 | </message> |
1460 | <message> |
||
798 | cbradney | 1461 | <source>Polish:</source> |
1462 | <translation>Polsk:</translation> |
||
377 | Franz | 1463 | </message> |
1464 | <message> |
||
798 | cbradney | 1465 | <source>Czech:</source> |
1466 | <translation>Tsjekkisk:</translation> |
||
377 | Franz | 1467 | </message> |
1468 | <message> |
||
798 | cbradney | 1469 | <source>Slovak:</source> |
1470 | <translation>Slovakisk:</translation> |
||
377 | Franz | 1471 | </message> |
1472 | <message> |
||
798 | cbradney | 1473 | <source>Danish:</source> |
1474 | <translation>Dansk:</translation> |
||
377 | Franz | 1475 | </message> |
1476 | <message> |
||
798 | cbradney | 1477 | <source>Norwegian:</source> |
1478 | <translation>Norsk:</translation> |
||
377 | Franz | 1479 | </message> |
1480 | <message> |
||
798 | cbradney | 1481 | <source>Welsh:</source> |
1482 | <translation>Welsk:</translation> |
||
377 | Franz | 1483 | </message> |
1484 | <message> |
||
798 | cbradney | 1485 | <source>Russian:</source> |
1486 | <translation>Russisk:</translation> |
||
377 | Franz | 1487 | </message> |
1488 | <message> |
||
798 | cbradney | 1489 | <source>Brazilian:</source> |
1490 | <translation>Brasiliansk:</translation> |
||
377 | Franz | 1491 | </message> |
1492 | <message> |
||
798 | cbradney | 1493 | <source>Finnish:</source> |
1494 | <translation>Finsk:</translation> |
||
377 | Franz | 1495 | </message> |
1496 | <message> |
||
798 | cbradney | 1497 | <source>Slovenian:</source> |
1498 | <translation>Slovensk:</translation> |
||
377 | Franz | 1499 | </message> |
1500 | <message> |
||
798 | cbradney | 1501 | <source>Basque:</source> |
1502 | <translation>Baskisk:</translation> |
||
377 | Franz | 1503 | </message> |
1504 | <message> |
||
798 | cbradney | 1505 | <source>This panel shows the version, build date and |
1506 | compiled in library support in Scribus |
||
1507 | The C-C-T equates to C=CUPS C=littlecms T=TIFF support. |
||
1508 | Missing library support is indicated by a *</source> |
||
1509 | <translation>Dette panelet viser versjonen, datoen den ble |
||
1510 | laget og inkompilert bibliotekstøtte i Scribus |
||
1511 | C-C-T står for C=CUPS C=littlecms T=TIFF større. |
||
1512 | Manglende bibliotekstøtte er angitt ved *</translation> |
||
377 | Franz | 1513 | </message> |
1514 | <message> |
||
798 | cbradney | 1515 | <source>&About</source> |
1516 | <translation>&Om</translation> |
||
377 | Franz | 1517 | </message> |
1518 | <message> |
||
798 | cbradney | 1519 | <source>A&uthors</source> |
1520 | <translation>&Forfattere</translation> |
||
377 | Franz | 1521 | </message> |
1522 | <message> |
||
798 | cbradney | 1523 | <source>&Translations</source> |
1524 | <translation>&Oversettelser</translation> |
||
377 | Franz | 1525 | </message> |
1526 | <message> |
||
798 | cbradney | 1527 | <source>&Online</source> |
1528 | <translation>&Nett</translation> |
||
377 | Franz | 1529 | </message> |
418 | Franz | 1530 | <message> |
798 | cbradney | 1531 | <source>&Close</source> |
1532 | <translation>&Lukk</translation> |
||
454 | fschmid | 1533 | </message> |
1534 | <message> |
||
798 | cbradney | 1535 | <source>Development Team:</source> |
1536 | <translation>Utviklingslag:</translation> |
||
454 | fschmid | 1537 | </message> |
1538 | <message> |
||
798 | cbradney | 1539 | <source>Official Documentation:</source> |
1540 | <translation>Offisiell dokumentasjon:</translation> |
||
454 | fschmid | 1541 | </message> |
1542 | <message> |
||
798 | cbradney | 1543 | <source>Other Documentation:</source> |
1544 | <translation>Annen dokumentasjon:</translation> |
||
454 | fschmid | 1545 | </message> |
1546 | <message> |
||
798 | cbradney | 1547 | <source>Official Translations and Translators:</source> |
1548 | <translation>Offisielle oversettelser og oversettere:</translation> |
||
454 | fschmid | 1549 | </message> |
1550 | <message> |
||
798 | cbradney | 1551 | <source>English (British):</source> |
1552 | <translation>Engelsk (Britisk):</translation> |
||
454 | fschmid | 1553 | </message> |
1554 | <message> |
||
798 | cbradney | 1555 | <source>Esperanto:</source> |
1556 | <translation>Esperanto:</translation> |
||
454 | fschmid | 1557 | </message> |
1558 | <message> |
||
798 | cbradney | 1559 | <source>Korean:</source> |
1560 | <translation>Koreansk:</translation> |
||
454 | fschmid | 1561 | </message> |
1562 | <message> |
||
798 | cbradney | 1563 | <source>Serbian:</source> |
1564 | <translation>Serbisk:</translation> |
||
454 | fschmid | 1565 | </message> |
1566 | <message> |
||
798 | cbradney | 1567 | <source>Spanish:</source> |
1568 | <translation>Spansk:</translation> |
||
454 | fschmid | 1569 | </message> |
1570 | <message> |
||
798 | cbradney | 1571 | <source>Swedish:</source> |
1572 | <translation>Svensk:</translation> |
||
454 | fschmid | 1573 | </message> |
1574 | <message> |
||
798 | cbradney | 1575 | <source>Previous Translation Contributors:</source> |
1576 | <translation>Tidligere oversettere:</translation> |
||
454 | fschmid | 1577 | </message> |
1578 | <message> |
||
798 | cbradney | 1579 | <source>Catalan:</source> |
1580 | <translation>Katalansk:</translation> |
||
454 | fschmid | 1581 | </message> |
1582 | <message> |
||
798 | cbradney | 1583 | <source>Homepage</source> |
1584 | <translation>Hjemmeside</translation> |
||
454 | fschmid | 1585 | </message> |
1586 | <message> |
||
798 | cbradney | 1587 | <source>Online Reference</source> |
1588 | <translation>Online referanse</translation> |
||
454 | fschmid | 1589 | </message> |
1590 | <message> |
||
798 | cbradney | 1591 | <source>Bugs and Feature Requests</source> |
1592 | <translation>Feil og ønsker</translation> |
||
454 | fschmid | 1593 | </message> |
769 | cbradney | 1594 | <message> |
798 | cbradney | 1595 | <source>Mailing List</source> |
1596 | <translation>E-postliste</translation> |
||
769 | cbradney | 1597 | </message> |
776 | fschmid | 1598 | <message> |
798 | cbradney | 1599 | <source>About Scribus %1</source> |
1600 | <translation>Om Scribus %1</translation> |
||
776 | fschmid | 1601 | </message> |
798 | cbradney | 1602 | </context> |
1603 | <context> |
||
377 | Franz | 1604 | <name>AdvOptions</name> |
1605 | <message> |
||
798 | cbradney | 1606 | <source>Advanced Options</source> |
1607 | <translation>Flere valg</translation> |
||
377 | Franz | 1608 | </message> |
1609 | <message> |
||
798 | cbradney | 1610 | <source>Creates PostScript Level 3</source> |
1611 | <translation>Lager PostScript Nivå 3</translation> |
||
377 | Franz | 1612 | </message> |
1613 | <message> |
||
798 | cbradney | 1614 | <source>Creates PostScript Level 2 only, beware, |
377 | Franz | 1615 | this can create huge files</source> |
798 | cbradney | 1616 | <translation>Lager kun PostScript Nivå 2, |
377 | Franz | 1617 | OBS! Dette kan føre til store filer</translation> |
1618 | </message> |
||
1619 | <message> |
||
798 | cbradney | 1620 | <source>Creates PostScript Level 1 only, beware, |
377 | Franz | 1621 | this can create huge files</source> |
798 | cbradney | 1622 | <translation>Lager kun PostScript Nivå 1, |
377 | Franz | 1623 | OBS! Dette kan føre til store filer</translation> |
1624 | </message> |
||
1625 | <message> |
||
798 | cbradney | 1626 | <source>Mirror Page(s) &Horizontal</source> |
1627 | <translation>Speil siden(e) &horisontalt</translation> |
||
377 | Franz | 1628 | </message> |
1629 | <message> |
||
798 | cbradney | 1630 | <source>Mirror Page(s) &Vertical</source> |
1631 | <translation>Speil siden(e) &vertikalt</translation> |
||
377 | Franz | 1632 | </message> |
1633 | <message> |
||
798 | cbradney | 1634 | <source>Apply &ICC Profiles</source> |
1635 | <translation>Bruk &ICC profiler</translation> |
||
377 | Franz | 1636 | </message> |
1637 | <message> |
||
798 | cbradney | 1638 | <source>PostScript Level &1</source> |
1639 | <translation>PostScript Nivå &1</translation> |
||
377 | Franz | 1640 | </message> |
1641 | <message> |
||
798 | cbradney | 1642 | <source>PostScript Level &2</source> |
1643 | <translation>PostScript Nivå &2</translation> |
||
377 | Franz | 1644 | </message> |
1645 | <message> |
||
798 | cbradney | 1646 | <source>PostScript Level &3</source> |
1647 | <translation>PostScript Nivå &3</translation> |
||
377 | Franz | 1648 | </message> |
1649 | <message> |
||
798 | cbradney | 1650 | <source>&OK</source> |
1651 | <translation>&Greit</translation> |
||
377 | Franz | 1652 | </message> |
1653 | <message> |
||
798 | cbradney | 1654 | <source>&Cancel</source> |
1655 | <translation>&Avbryt</translation> |
||
377 | Franz | 1656 | </message> |
1657 | <message> |
||
798 | cbradney | 1658 | <source>Apply Under Color &Removal</source> |
1659 | <translation>Bruk under fje&rning av farge</translation> |
||
377 | Franz | 1660 | </message> |
1661 | <message> |
||
798 | cbradney | 1662 | <source>A way of switching off some of the gray shades which are composed |
377 | Franz | 1663 | of cyan, yellow and magenta and using black instead. |
1664 | UCR most affects parts of images which are neutral and/or dark tones |
||
1665 | which are close to the gray. Use of this may improve printing some images |
||
1666 | and some experimentation and testing is need on a case by case basis. |
||
1667 | UCR reduces the possibility of over saturation with CMY inks.</source> |
||
798 | cbradney | 1668 | <translation>En måte å skru av noen av de gråskygger som er laget |
444 | fschmid | 1669 | av cyan, gult og magenta rød ved å bruke svart istedenfor. |
798 | cbradney | 1670 | UCR virker best på deler av bilder som er nøytrale og/eller mørke toner |
444 | fschmid | 1671 | som ligger nært opptil grått. Bruk dette for å få utsftening enkelteoen bilder til å se bedre; |
1672 | og noe eksperimentering og testing er nødvendig neste gang. |
||
1673 | UCR reduserer muligheten for overmettning med CMY farger.</translation> |
||
377 | Franz | 1674 | </message> |
798 | cbradney | 1675 | </context> |
1676 | <context> |
||
377 | Franz | 1677 | <name>Align</name> |
1678 | <message> |
||
798 | cbradney | 1679 | <source>Distribute/Align</source> |
1680 | <translation>Fordel/Still opp på linje</translation> |
||
377 | Franz | 1681 | </message> |
1682 | <message> |
||
798 | cbradney | 1683 | <source>Align</source> |
1684 | <translation>Stil opp</translation> |
||
377 | Franz | 1685 | </message> |
1686 | <message> |
||
798 | cbradney | 1687 | <source>Horizontal</source> |
1688 | <translation>Vannrett</translation> |
||
377 | Franz | 1689 | </message> |
1690 | <message> |
||
798 | cbradney | 1691 | <source>Left Sides</source> |
1692 | <translation>Venstre sider</translation> |
||
377 | Franz | 1693 | </message> |
1694 | <message> |
||
798 | cbradney | 1695 | <source>Middles</source> |
1696 | <translation>Midten</translation> |
||
377 | Franz | 1697 | </message> |
1698 | <message> |
||
798 | cbradney | 1699 | <source>Right Sides</source> |
1700 | <translation>Høyre sider</translation> |
||
377 | Franz | 1701 | </message> |
1702 | <message> |
||
798 | cbradney | 1703 | <source>Vertical</source> |
1704 | <translation>Loddrett</translation> |
||
377 | Franz | 1705 | </message> |
1706 | <message> |
||
798 | cbradney | 1707 | <source>Top Sides</source> |
1708 | <translation>Øverste sider</translation> |
||
377 | Franz | 1709 | </message> |
1710 | <message> |
||
798 | cbradney | 1711 | <source>Bottom Sides</source> |
1712 | <translation>Nederste sider</translation> |
||
377 | Franz | 1713 | </message> |
1714 | <message> |
||
798 | cbradney | 1715 | <source> mm</source> |
1716 | <translation> mm</translation> |
||
377 | Franz | 1717 | </message> |
1718 | <message> |
||
798 | cbradney | 1719 | <source> in</source> |
1720 | <translation> i</translation> |
||
377 | Franz | 1721 | </message> |
1722 | <message> |
||
798 | cbradney | 1723 | <source> p</source> |
1724 | <translation> p</translation> |
||
377 | Franz | 1725 | </message> |
1726 | <message> |
||
798 | cbradney | 1727 | <source>&OK</source> |
1728 | <translation>&Greit</translation> |
||
377 | Franz | 1729 | </message> |
1730 | <message> |
||
798 | cbradney | 1731 | <source>&Apply</source> |
1732 | <translation>&Bruk</translation> |
||
377 | Franz | 1733 | </message> |
1734 | <message> |
||
798 | cbradney | 1735 | <source>&Cancel</source> |
1736 | <translation>&Avbryt</translation> |
||
377 | Franz | 1737 | </message> |
1738 | <message> |
||
798 | cbradney | 1739 | <source>&Between:</source> |
1740 | <translation>&Mellom:</translation> |
||
377 | Franz | 1741 | </message> |
1742 | <message> |
||
798 | cbradney | 1743 | <source>A&lign</source> |
1744 | <translation>St&il opp</translation> |
||
377 | Franz | 1745 | </message> |
1746 | <message> |
||
798 | cbradney | 1747 | <source>Di&splacement</source> |
1748 | <translation>For&skyvning</translation> |
||
377 | Franz | 1749 | </message> |
1750 | <message> |
||
798 | cbradney | 1751 | <source>Distribute &Evenly</source> |
1752 | <translation>Fordel &jevnt</translation> |
||
377 | Franz | 1753 | </message> |
1754 | <message> |
||
798 | cbradney | 1755 | <source>Bet&ween:</source> |
1756 | <translation>&Mellom:</translation> |
||
377 | Franz | 1757 | </message> |
1758 | <message> |
||
798 | cbradney | 1759 | <source>Do &Not Change</source> |
1760 | <translation>Gjør i&ngen endringer</translation> |
||
377 | Franz | 1761 | </message> |
1762 | <message> |
||
798 | cbradney | 1763 | <source>Al&ign</source> |
1764 | <translation>S&til opp</translation> |
||
377 | Franz | 1765 | </message> |
1766 | <message> |
||
798 | cbradney | 1767 | <source>Dis&placement</source> |
1768 | <translation>For&skyvning</translation> |
||
377 | Franz | 1769 | </message> |
1770 | <message> |
||
798 | cbradney | 1771 | <source> pt</source> |
1772 | <translation> pt</translation> |
||
377 | Franz | 1773 | </message> |
1774 | <message> |
||
798 | cbradney | 1775 | <source>Distribute E&venly</source> |
1776 | <translation>Fordel &jevnt</translation> |
||
377 | Franz | 1777 | </message> |
1778 | <message> |
||
798 | cbradney | 1779 | <source>&Do Not Change</source> |
1780 | <translation>&Gjør ingen endringer</translation> |
||
377 | Franz | 1781 | </message> |
798 | cbradney | 1782 | </context> |
1783 | <context> |
||
377 | Franz | 1784 | <name>AlignSelect</name> |
1785 | <message> |
||
798 | cbradney | 1786 | <source>Align Text Left</source> |
1787 | <translation>Juster tekst mot venstre</translation> |
||
377 | Franz | 1788 | </message> |
1789 | <message> |
||
798 | cbradney | 1790 | <source>Align Text Right</source> |
1791 | <translation>Juster tekst mot høyre</translation> |
||
377 | Franz | 1792 | </message> |
1793 | <message> |
||
798 | cbradney | 1794 | <source>Align Text Center</source> |
1795 | <translation>Midtstill tekst</translation> |
||
377 | Franz | 1796 | </message> |
1797 | <message> |
||
798 | cbradney | 1798 | <source>Align Text Justified</source> |
1799 | <translation>Juster tekstfyll</translation> |
||
377 | Franz | 1800 | </message> |
1801 | <message> |
||
798 | cbradney | 1802 | <source>Align Text Forced Justified</source> |
1803 | <translation>Juster tekst tvungen fyll</translation> |
||
377 | Franz | 1804 | </message> |
798 | cbradney | 1805 | </context> |
1806 | <context> |
||
377 | Franz | 1807 | <name>Annot</name> |
1808 | <message> |
||
798 | cbradney | 1809 | <source>Field Properties</source> |
1810 | <translation>Felt egenskaper</translation> |
||
377 | Franz | 1811 | </message> |
1812 | <message> |
||
798 | cbradney | 1813 | <source>Type:</source> |
1814 | <translation>Type:</translation> |
||
377 | Franz | 1815 | </message> |
1816 | <message> |
||
798 | cbradney | 1817 | <source>Button</source> |
1818 | <translation>Knapp</translation> |
||
377 | Franz | 1819 | </message> |
1820 | <message> |
||
798 | cbradney | 1821 | <source>Text Field</source> |
1822 | <translation>Tekstfelt</translation> |
||
377 | Franz | 1823 | </message> |
1824 | <message> |
||
798 | cbradney | 1825 | <source>Check Box</source> |
1826 | <translation>Avkryssingsboks</translation> |
||
377 | Franz | 1827 | </message> |
1828 | <message> |
||
798 | cbradney | 1829 | <source>Combo Box</source> |
1830 | <translation>Kombiboks</translation> |
||
377 | Franz | 1831 | </message> |
1832 | <message> |
||
798 | cbradney | 1833 | <source>List Box</source> |
1834 | <translation>Listeboks</translation> |
||
377 | Franz | 1835 | </message> |
1836 | <message> |
||
798 | cbradney | 1837 | <source>Properties</source> |
1838 | <translation>Egenskaper</translation> |
||
377 | Franz | 1839 | </message> |
1840 | <message> |
||
798 | cbradney | 1841 | <source>Name:</source> |
1842 | <translation>Navn:</translation> |
||
377 | Franz | 1843 | </message> |
1844 | <message> |
||
798 | cbradney | 1845 | <source>Tool-Tip:</source> |
1846 | <translation>Hjelpetekst:</translation> |
||
377 | Franz | 1847 | </message> |
1848 | <message> |
||
798 | cbradney | 1849 | <source>Text</source> |
1850 | <translation>Tekst</translation> |
||
377 | Franz | 1851 | </message> |
1852 | <message> |
||
798 | cbradney | 1853 | <source>Border</source> |
1854 | <translation>Grense</translation> |
||
377 | Franz | 1855 | </message> |
1856 | <message> |
||
798 | cbradney | 1857 | <source>Color:</source> |
1858 | <translation>Farge:</translation> |
||
377 | Franz | 1859 | </message> |
1860 | <message> |
||
798 | cbradney | 1861 | <source>None</source> |
1862 | <translation>Ingen</translation> |
||
377 | Franz | 1863 | </message> |
1864 | <message> |
||
798 | cbradney | 1865 | <source>Width:</source> |
1866 | <translation>Bredde:</translation> |
||
377 | Franz | 1867 | </message> |
1868 | <message> |
||
798 | cbradney | 1869 | <source>Thin</source> |
1870 | <translation>Tynn</translation> |
||
377 | Franz | 1871 | </message> |
1872 | <message> |
||
798 | cbradney | 1873 | <source>Normal</source> |
1874 | <translation>Normal</translation> |
||
377 | Franz | 1875 | </message> |
1876 | <message> |
||
798 | cbradney | 1877 | <source>Wide</source> |
1878 | <translation>Bred</translation> |
||
377 | Franz | 1879 | </message> |
1880 | <message> |
||
798 | cbradney | 1881 | <source>Style:</source> |
1882 | <translation>Stil:</translation> |
||
377 | Franz | 1883 | </message> |
1884 | <message> |
||
798 | cbradney | 1885 | <source>Solid</source> |
1886 | <translation>Solid</translation> |
||
377 | Franz | 1887 | </message> |
1888 | <message> |
||
798 | cbradney | 1889 | <source>Dashed</source> |
1890 | <translation>Punktet</translation> |
||
377 | Franz | 1891 | </message> |
1892 | <message> |
||
798 | cbradney | 1893 | <source>Underline</source> |
1894 | <translation>Understreket</translation> |
||
377 | Franz | 1895 | </message> |
1896 | <message> |
||
798 | cbradney | 1897 | <source>Beveled</source> |
1898 | <translation>Med skrå kanter</translation> |
||
377 | Franz | 1899 | </message> |
1900 | <message> |
||
798 | cbradney | 1901 | <source>Inset</source> |
1902 | <translation>Sett inn</translation> |
||
377 | Franz | 1903 | </message> |
1904 | <message> |
||
798 | cbradney | 1905 | <source>Other</source> |
1906 | <translation>Andre</translation> |
||
377 | Franz | 1907 | </message> |
1908 | <message> |
||
798 | cbradney | 1909 | <source>Read Only</source> |
1910 | <translation>Skrivebeskyttet</translation> |
||
377 | Franz | 1911 | </message> |
1912 | <message> |
||
798 | cbradney | 1913 | <source>Required</source> |
1914 | <translation>Nødvendig</translation> |
||
377 | Franz | 1915 | </message> |
1916 | <message> |
||
798 | cbradney | 1917 | <source>Don't Export Value</source> |
1918 | <translation>Ikke eksporter verdi</translation> |
||
377 | Franz | 1919 | </message> |
1920 | <message> |
||
798 | cbradney | 1921 | <source>Visibility:</source> |
1922 | <translation>Synlighet:</translation> |
||
377 | Franz | 1923 | </message> |
1924 | <message> |
||
798 | cbradney | 1925 | <source>Visible</source> |
1926 | <translation>Synlig</translation> |
||
377 | Franz | 1927 | </message> |
1928 | <message> |
||
798 | cbradney | 1929 | <source>Hidden</source> |
1930 | <translation>Skjult</translation> |
||
377 | Franz | 1931 | </message> |
1932 | <message> |
||
798 | cbradney | 1933 | <source>No Print</source> |
1934 | <translation>Ingen utskrift</translation> |
||
377 | Franz | 1935 | </message> |
1936 | <message> |
||
798 | cbradney | 1937 | <source>No View</source> |
1938 | <translation>Ingen visning</translation> |
||
377 | Franz | 1939 | </message> |
1940 | <message> |
||
798 | cbradney | 1941 | <source>Appearance</source> |
1942 | <translation>Utseende</translation> |
||
377 | Franz | 1943 | </message> |
1944 | <message> |
||
798 | cbradney | 1945 | <source>Text for Button Down</source> |
1946 | <translation>Tekst for knapp ned</translation> |
||
377 | Franz | 1947 | </message> |
1948 | <message> |
||
798 | cbradney | 1949 | <source>Text for Roll Over</source> |
1950 | <translation>Tekst for rull rundt</translation> |
||
377 | Franz | 1951 | </message> |
1952 | <message> |
||
798 | cbradney | 1953 | <source>Icons</source> |
1954 | <translation>Ikoner</translation> |
||
377 | Franz | 1955 | </message> |
1956 | <message> |
||
798 | cbradney | 1957 | <source>Use Icons</source> |
1958 | <translation>Bruk ikoner</translation> |
||
377 | Franz | 1959 | </message> |
1960 | <message> |
||
798 | cbradney | 1961 | <source>Remove</source> |
1962 | <translation>Fjern</translation> |
||
377 | Franz | 1963 | </message> |
1964 | <message> |
||
798 | cbradney | 1965 | <source>Pressed</source> |
1966 | <translation>Trykket ned</translation> |
||
377 | Franz | 1967 | </message> |
1968 | <message> |
||
798 | cbradney | 1969 | <source>Roll Over</source> |
1970 | <translation>Rull rundt</translation> |
||
377 | Franz | 1971 | </message> |
1972 | <message> |
||
798 | cbradney | 1973 | <source>Icon Placement...</source> |
1974 | <translation>Ikon plassering ...</translation> |
||
377 | Franz | 1975 | </message> |
1976 | <message> |
||
798 | cbradney | 1977 | <source>Highlight</source> |
1978 | <translation>Markert</translation> |
||
377 | Franz | 1979 | </message> |
1980 | <message> |
||
798 | cbradney | 1981 | <source>Invert</source> |
1982 | <translation>Inverter</translation> |
||
377 | Franz | 1983 | </message> |
1984 | <message> |
||
798 | cbradney | 1985 | <source>Outlined</source> |
1986 | <translation>Utlinjet</translation> |
||
377 | Franz | 1987 | </message> |
1988 | <message> |
||
798 | cbradney | 1989 | <source>Push</source> |
1990 | <translation>Dytt</translation> |
||
377 | Franz | 1991 | </message> |
1992 | <message> |
||
798 | cbradney | 1993 | <source>Multi-Line</source> |
1994 | <translation>Multi-Linje</translation> |
||
377 | Franz | 1995 | </message> |
1996 | <message> |
||
798 | cbradney | 1997 | <source>Password</source> |
1998 | <translation>Passord</translation> |
||
377 | Franz | 1999 | </message> |
2000 | <message> |
||
798 | cbradney | 2001 | <source>Limit of</source> |
2002 | <translation>Maksimalt</translation> |
||
377 | Franz | 2003 | </message> |
2004 | <message> |
||
798 | cbradney | 2005 | <source>Characters</source> |
2006 | <translation>Tegn</translation> |
||
377 | Franz | 2007 | </message> |
2008 | <message> |
||
798 | cbradney | 2009 | <source>Do Not Scroll</source> |
2010 | <translation>Ingen rulling</translation> |
||
377 | Franz | 2011 | </message> |
2012 | <message> |
||
798 | cbradney | 2013 | <source>Do Not Spell Check</source> |
2014 | <translation>Ingen stavekontroll</translation> |
||
377 | Franz | 2015 | </message> |
2016 | <message> |
||
798 | cbradney | 2017 | <source>Check Style:</source> |
2018 | <translation>Sjekk stil:</translation> |
||
377 | Franz | 2019 | </message> |
2020 | <message> |
||
798 | cbradney | 2021 | <source>Check</source> |
2022 | <translation>Sjekk</translation> |
||
377 | Franz | 2023 | </message> |
2024 | <message> |
||
798 | cbradney | 2025 | <source>Cross</source> |
2026 | <translation>Kryss</translation> |
||
377 | Franz | 2027 | </message> |
2028 | <message> |
||
798 | cbradney | 2029 | <source>Diamond</source> |
2030 | <translation>Diamant</translation> |
||
377 | Franz | 2031 | </message> |
2032 | <message> |
||
798 | cbradney | 2033 | <source>Circle</source> |
2034 | <translation>Sirkel</translation> |
||
377 | Franz | 2035 | </message> |
2036 | <message> |
||
798 | cbradney | 2037 | <source>Star</source> |
2038 | <translation>Stjerne</translation> |
||
377 | Franz | 2039 | </message> |
2040 | <message> |
||
798 | cbradney | 2041 | <source>Square</source> |
2042 | <translation>Firkant</translation> |
||
377 | Franz | 2043 | </message> |
2044 | <message> |
||
798 | cbradney | 2045 | <source>Default is Checked</source> |
2046 | <translation>Standard er aktiv</translation> |
||
377 | Franz | 2047 | </message> |
2048 | <message> |
||
798 | cbradney | 2049 | <source>Editable</source> |
2050 | <translation>Redigerbar</translation> |
||
377 | Franz | 2051 | </message> |
2052 | <message> |
||
798 | cbradney | 2053 | <source>Options</source> |
2054 | <translation>Innstillinger</translation> |
||
377 | Franz | 2055 | </message> |
2056 | <message> |
||
798 | cbradney | 2057 | <source>Java Script</source> |
2058 | <translation>Java Script</translation> |
||
377 | Franz | 2059 | </message> |
2060 | <message> |
||
798 | cbradney | 2061 | <source>Go To</source> |
2062 | <translation>Gå til</translation> |
||
377 | Franz | 2063 | </message> |
2064 | <message> |
||
798 | cbradney | 2065 | <source>Submit Form</source> |
2066 | <translation>Send inn skjema</translation> |
||
377 | Franz | 2067 | </message> |
2068 | <message> |
||
798 | cbradney | 2069 | <source>Reset Form</source> |
2070 | <translation>Nullstill skjema</translation> |
||
377 | Franz | 2071 | </message> |
2072 | <message> |
||
798 | cbradney | 2073 | <source>Import Data</source> |
2074 | <translation>Importer data</translation> |
||
377 | Franz | 2075 | </message> |
2076 | <message> |
||
798 | cbradney | 2077 | <source>Event:</source> |
2078 | <translation>Hendelse:</translation> |
||
377 | Franz | 2079 | </message> |
2080 | <message> |
||
798 | cbradney | 2081 | <source>Mouse Up</source> |
2082 | <translation>Mus opp</translation> |
||
377 | Franz | 2083 | </message> |
2084 | <message> |
||
798 | cbradney | 2085 | <source>Mouse Down</source> |
2086 | <translation>Mus ned</translation> |
||
377 | Franz | 2087 | </message> |
2088 | <message> |
||
798 | cbradney | 2089 | <source>Mouse Enter</source> |
2090 | <translation>Mus Enter</translation> |
||
377 | Franz | 2091 | </message> |
2092 | <message> |
||
798 | cbradney | 2093 | <source>Mouse Exit</source> |
2094 | <translation>Mus avslutt</translation> |
||
377 | Franz | 2095 | </message> |
2096 | <message> |
||
798 | cbradney | 2097 | <source>On Focus</source> |
2098 | <translation>På fokus</translation> |
||
377 | Franz | 2099 | </message> |
2100 | <message> |
||
798 | cbradney | 2101 | <source>On Blur</source> |
2102 | <translation>På Blur</translation> |
||
377 | Franz | 2103 | </message> |
2104 | <message> |
||
798 | cbradney | 2105 | <source>Script:</source> |
2106 | <translation>Skript:</translation> |
||
377 | Franz | 2107 | </message> |
2108 | <message> |
||
798 | cbradney | 2109 | <source>Edit...</source> |
2110 | <translation>Rediger ...</translation> |
||
377 | Franz | 2111 | </message> |
2112 | <message> |
||
798 | cbradney | 2113 | <source>Submit to URL:</source> |
2114 | <translation>Send til URL:</translation> |
||
377 | Franz | 2115 | </message> |
2116 | <message> |
||
798 | cbradney | 2117 | <source>Submit Data as HTML</source> |
2118 | <translation>Send data som HTML</translation> |
||
377 | Franz | 2119 | </message> |
2120 | <message> |
||
798 | cbradney | 2121 | <source>Import Data from:</source> |
2122 | <translation>Importer data fra:</translation> |
||
377 | Franz | 2123 | </message> |
2124 | <message> |
||
798 | cbradney | 2125 | <source>Destination</source> |
2126 | <translation>Bestemmelsessted</translation> |
||
377 | Franz | 2127 | </message> |
2128 | <message> |
||
798 | cbradney | 2129 | <source>To File:</source> |
2130 | <translation>Til fil:</translation> |
||
377 | Franz | 2131 | </message> |
2132 | <message> |
||
798 | cbradney | 2133 | <source>Change...</source> |
2134 | <translation>Endre ...</translation> |
||
377 | Franz | 2135 | </message> |
2136 | <message> |
||
798 | cbradney | 2137 | <source>Page:</source> |
2138 | <translation>Side:</translation> |
||
377 | Franz | 2139 | </message> |
2140 | <message> |
||
798 | cbradney | 2141 | <source>X-Pos:</source> |
2142 | <translation>X-Pos:</translation> |
||
377 | Franz | 2143 | </message> |
2144 | <message> |
||
798 | cbradney | 2145 | <source> pt</source> |
2146 | <translation> pt</translation> |
||
377 | Franz | 2147 | </message> |
2148 | <message> |
||
798 | cbradney | 2149 | <source>Y-Pos:</source> |
2150 | <translation>Y-Pos:</translation> |
||
377 | Franz | 2151 | </message> |
2152 | <message> |
||
798 | cbradney | 2153 | <source>Action</source> |
2154 | <translation>Handling</translation> |
||
377 | Franz | 2155 | </message> |
2156 | <message> |
||
798 | cbradney | 2157 | <source>Field is formatted as:</source> |
2158 | <translation>Felt er formatert som:</translation> |
||
377 | Franz | 2159 | </message> |
2160 | <message> |
||
798 | cbradney | 2161 | <source>Plain</source> |
2162 | <translation>Enkel</translation> |
||
377 | Franz | 2163 | </message> |
2164 | <message> |
||
798 | cbradney | 2165 | <source>Number</source> |
2166 | <translation>Nummer</translation> |
||
377 | Franz | 2167 | </message> |
2168 | <message> |
||
798 | cbradney | 2169 | <source>Percentage</source> |
2170 | <translation>Prosentdel</translation> |
||
377 | Franz | 2171 | </message> |
2172 | <message> |
||
798 | cbradney | 2173 | <source>Date</source> |
2174 | <translation>Dato</translation> |
||
377 | Franz | 2175 | </message> |
2176 | <message> |
||
798 | cbradney | 2177 | <source>Time</source> |
2178 | <translation>Tid</translation> |
||
377 | Franz | 2179 | </message> |
2180 | <message> |
||
798 | cbradney | 2181 | <source>Custom</source> |
2182 | <translation>Brukerdefinert</translation> |
||
377 | Franz | 2183 | </message> |
2184 | <message> |
||
798 | cbradney | 2185 | <source>Number Format</source> |
2186 | <translation>Nummerformat</translation> |
||
377 | Franz | 2187 | </message> |
2188 | <message> |
||
798 | cbradney | 2189 | <source>Decimals:</source> |
2190 | <translation>Desimaler:</translation> |
||
377 | Franz | 2191 | </message> |
2192 | <message> |
||
798 | cbradney | 2193 | <source>Use Currency Symbol</source> |
2194 | <translation>Bruk valutasymbol</translation> |
||
377 | Franz | 2195 | </message> |
2196 | <message> |
||
798 | cbradney | 2197 | <source>Prepend Currency Symbol</source> |
2198 | <translation>Sett valutasymbol foran</translation> |
||
377 | Franz | 2199 | </message> |
2200 | <message> |
||
798 | cbradney | 2201 | <source>Formatting</source> |
2202 | <translation>Formatering</translation> |
||
377 | Franz | 2203 | </message> |
2204 | <message> |
||
798 | cbradney | 2205 | <source>Percent Format</source> |
2206 | <translation>Prosentformat</translation> |
||
377 | Franz | 2207 | </message> |
2208 | <message> |
||
798 | cbradney | 2209 | <source>Date Format</source> |
2210 | <translation>Datoformat</translation> |
||
377 | Franz | 2211 | </message> |
2212 | <message> |
||
798 | cbradney | 2213 | <source>Time Format</source> |
2214 | <translation>Tidsformat</translation> |
||
377 | Franz | 2215 | </message> |
2216 | <message> |
||
798 | cbradney | 2217 | <source>Custom Scripts</source> |
2218 | <translation>Brukerdefinerte skript</translation> |
||
377 | Franz | 2219 | </message> |
2220 | <message> |
||
798 | cbradney | 2221 | <source>Format:</source> |
2222 | <translation>Format:</translation> |
||
377 | Franz | 2223 | </message> |
2224 | <message> |
||
798 | cbradney | 2225 | <source>Keystroke:</source> |
2226 | <translation>Tasteanslag:</translation> |
||
377 | Franz | 2227 | </message> |
2228 | <message> |
||
798 | cbradney | 2229 | <source>Format</source> |
2230 | <translation>Format</translation> |
||
377 | Franz | 2231 | </message> |
2232 | <message> |
||
798 | cbradney | 2233 | <source>Value is not validated</source> |
2234 | <translation>Verdi er ikke kontrollert</translation> |
||
377 | Franz | 2235 | </message> |
2236 | <message> |
||
798 | cbradney | 2237 | <source>Value must be greater than or equal to:</source> |
2238 | <translation>Verdi skal være lik med eller større enn:</translation> |
||
377 | Franz | 2239 | </message> |
2240 | <message> |
||
798 | cbradney | 2241 | <source>and less or equal to:</source> |
2242 | <translation>og lik med eller mindre enn:</translation> |
||
377 | Franz | 2243 | </message> |
2244 | <message> |
||
798 | cbradney | 2245 | <source>Custom validate script:</source> |
2246 | <translation>Brukerdefinert valideringsscript:</translation> |
||
377 | Franz | 2247 | </message> |
2248 | <message> |
||
798 | cbradney | 2249 | <source>Validate</source> |
2250 | <translation>Valider</translation> |
||
377 | Franz | 2251 | </message> |
2252 | <message> |
||
798 | cbradney | 2253 | <source>Value is not calculated</source> |
2254 | <translation>Verdi er ikke utregnet</translation> |
||
377 | Franz | 2255 | </message> |
2256 | <message> |
||
798 | cbradney | 2257 | <source>Value is the</source> |
2258 | <translation>Verdien er</translation> |
||
377 | Franz | 2259 | </message> |
2260 | <message> |
||
798 | cbradney | 2261 | <source>sum</source> |
2262 | <translation>sum</translation> |
||
377 | Franz | 2263 | </message> |
2264 | <message> |
||
798 | cbradney | 2265 | <source>product</source> |
2266 | <translation>produkt</translation> |
||
377 | Franz | 2267 | </message> |
2268 | <message> |
||
798 | cbradney | 2269 | <source>average</source> |
2270 | <translation>gjennomsnitt</translation> |
||
377 | Franz | 2271 | </message> |
2272 | <message> |
||
798 | cbradney | 2273 | <source>minimum</source> |
2274 | <translation>minimum</translation> |
||
377 | Franz | 2275 | </message> |
2276 | <message> |
||
798 | cbradney | 2277 | <source>maximum</source> |
2278 | <translation>maksimum</translation> |
||
377 | Franz | 2279 | </message> |
2280 | <message> |
||
798 | cbradney | 2281 | <source>of the following fields:</source> |
2282 | <translation>av de følgende felter:</translation> |
||
377 | Franz | 2283 | </message> |
2284 | <message> |
||
798 | cbradney | 2285 | <source>Pick...</source> |
2286 | <translation>Velg ...</translation> |
||
377 | Franz | 2287 | </message> |
2288 | <message> |
||
798 | cbradney | 2289 | <source>Custom calculation script:</source> |
2290 | <translation>Brukerdefinert utregningsskript:</translation> |
||
377 | Franz | 2291 | </message> |
2292 | <message> |
||
798 | cbradney | 2293 | <source>Calculate</source> |
2294 | <translation>Regn ut</translation> |
||
377 | Franz | 2295 | </message> |
2296 | <message> |
||
798 | cbradney | 2297 | <source>OK</source> |
2298 | <translation>Greit</translation> |
||
377 | Franz | 2299 | </message> |
2300 | <message> |
||
798 | cbradney | 2301 | <source>Cancel</source> |
2302 | <translation>Avbryt</translation> |
||
377 | Franz | 2303 | </message> |
2304 | <message> |
||
798 | cbradney | 2305 | <source>Enter a comma separated list of fields here</source> |
2306 | <translation>Tast inn en kommaseparert liste med felter her</translation> |
||
377 | Franz | 2307 | </message> |
2308 | <message> |
||
798 | cbradney | 2309 | <source>You need at least the Icon for Normal to use Icons for Buttons</source> |
2310 | <translation>Du behøver i det minste Normal-Ikonet for å bruke ikoner på knapper</translation> |
||
377 | Franz | 2311 | </message> |
2312 | <message> |
||
798 | cbradney | 2313 | <source>Open</source> |
2314 | <translation>Åpne</translation> |
||
377 | Franz | 2315 | </message> |
2316 | <message> |
||
798 | cbradney | 2317 | <source>Images (*.tif *.png *.jpg *.xpm);;Postscript (*.eps);;All Files (*)</source> |
2318 | <translation>Bilder (*.tif *.png *.jpg *.xpm);;Postscript (*.eps);;Alle filtyper (*)</translation> |
||
377 | Franz | 2319 | </message> |
2320 | <message> |
||
798 | cbradney | 2321 | <source>Example:</source> |
2322 | <translation>Eksempel:</translation> |
||
377 | Franz | 2323 | </message> |
2324 | <message> |
||
798 | cbradney | 2325 | <source>Selection Change</source> |
2326 | <translation>Endring av valg</translation> |
||
377 | Franz | 2327 | </message> |
2328 | <message> |
||
798 | cbradney | 2329 | <source>Font for use with PDF 1.3:</source> |
902 | mrdocs | 2330 | <translation>Skrifttyper som skal brukes med PDF 1.3:</translation> |
377 | Franz | 2331 | </message> |
2332 | <message> |
||
798 | cbradney | 2333 | <source>Flag is ignored for PDF 1.3</source> |
2334 | <translation>Dette valget blir ikke brukt i PDF 1.3</translation> |
||
377 | Franz | 2335 | </message> |
2336 | <message> |
||
798 | cbradney | 2337 | <source>PDF Files (*.pdf);;All Files (*)</source> |
2338 | <translation>PDF Filer (*.pdf);;Alle filtyper (*)</translation> |
||
377 | Franz | 2339 | </message> |
798 | cbradney | 2340 | </context> |
2341 | <context> |
||
377 | Franz | 2342 | <name>Annota</name> |
2343 | <message> |
||
798 | cbradney | 2344 | <source>Annotation Properties</source> |
2345 | <translation>Kommentar egenskaper</translation> |
||
377 | Franz | 2346 | </message> |
2347 | <message> |
||
798 | cbradney | 2348 | <source>Text</source> |
2349 | <translation>Tekst</translation> |
||
377 | Franz | 2350 | </message> |
2351 | <message> |
||
798 | cbradney | 2352 | <source>Link</source> |
2353 | <translation>Lenke</translation> |
||
377 | Franz | 2354 | </message> |
2355 | <message> |
||
798 | cbradney | 2356 | <source>External Link</source> |
2357 | <translation>Ekstern lenke</translation> |
||
377 | Franz | 2358 | </message> |
2359 | <message> |
||
798 | cbradney | 2360 | <source>External Web-Link</source> |
2361 | <translation>Ekstern Web-Lenke</translation> |
||
377 | Franz | 2362 | </message> |
2363 | <message> |
||
798 | cbradney | 2364 | <source>Destination</source> |
2365 | <translation>Bestemmelsessted</translation> |
||
377 | Franz | 2366 | </message> |
2367 | <message> |
||
798 | cbradney | 2368 | <source> pt</source> |
2369 | <translation> pt</translation> |
||
377 | Franz | 2370 | </message> |
2371 | <message> |
||
798 | cbradney | 2372 | <source>Open</source> |
2373 | <translation>Åpne</translation> |
||
377 | Franz | 2374 | </message> |
2375 | <message> |
||
798 | cbradney | 2376 | <source>PDF-Documents (*.pdf);;All Files (*)</source> |
2377 | <translation>PDF-Dokumenter (*.pdf);; Alle filtyper (*)</translation> |
||
377 | Franz | 2378 | </message> |
454 | fschmid | 2379 | <message> |
798 | cbradney | 2380 | <source>&Type:</source> |
2381 | <translation>&Type:</translation> |
||
454 | fschmid | 2382 | </message> |
2383 | <message> |
||
798 | cbradney | 2384 | <source>C&hange...</source> |
2385 | <translation>Fo&randre ...</translation> |
||
454 | fschmid | 2386 | </message> |
2387 | <message> |
||
798 | cbradney | 2388 | <source>&Page:</source> |
2389 | <translation>&Side:</translation> |
||
454 | fschmid | 2390 | </message> |
2391 | <message> |
||
798 | cbradney | 2392 | <source>&X-Pos</source> |
2393 | <translation>&X-Pos</translation> |
||
454 | fschmid | 2394 | </message> |
2395 | <message> |
||
798 | cbradney | 2396 | <source>&Y-Pos:</source> |
2397 | <translation>&Y-Pos:</translation> |
||
454 | fschmid | 2398 | </message> |
532 | cbradney | 2399 | <message> |
798 | cbradney | 2400 | <source>&OK</source> |
2401 | <translation>&Greit</translation> |
||
532 | cbradney | 2402 | </message> |
2403 | <message> |
||
798 | cbradney | 2404 | <source>&Cancel</source> |
2405 | <translation>&Avbryt</translation> |
||
532 | cbradney | 2406 | </message> |
798 | cbradney | 2407 | </context> |
2408 | <context> |
||
377 | Franz | 2409 | <name>ApplyT</name> |
2410 | <message> |
||
798 | cbradney | 2411 | <source>Apply Template</source> |
2412 | <translation>Bruk mal</translation> |
||
377 | Franz | 2413 | </message> |
2414 | <message> |
||
798 | cbradney | 2415 | <source>Normal</source> |
2416 | <translation>Normal</translation> |
||
377 | Franz | 2417 | </message> |
2418 | <message> |
||
798 | cbradney | 2419 | <source>&Template:</source> |
2420 | <translation>&Mal:</translation> |
||
377 | Franz | 2421 | </message> |
2422 | <message> |
||
798 | cbradney | 2423 | <source>Apply to &Current Page</source> |
2424 | <translation>Bruk på &gjeldende side</translation> |
||
377 | Franz | 2425 | </message> |
2426 | <message> |
||
798 | cbradney | 2427 | <source>Apply from &Page:</source> |
2428 | <translation>Bruk fra &side:</translation> |
||
377 | Franz | 2429 | </message> |
2430 | <message> |
||
798 | cbradney | 2431 | <source>To:</source> |
2432 | <translation>Til:</translation> |
||
377 | Franz | 2433 | </message> |
2434 | <message> |
||
798 | cbradney | 2435 | <source>&OK</source> |
2436 | <translation>&Greit</translation> |
||
377 | Franz | 2437 | </message> |
2438 | <message> |
||
798 | cbradney | 2439 | <source>&Cancel</source> |
2440 | <translation>&Avbryt</translation> |
||
377 | Franz | 2441 | </message> |
2442 | <message> |
||
798 | cbradney | 2443 | <source>Apply to all &even Pages</source> |
2444 | <translation>Bruk på alle sider med &partall</translation> |
||
377 | Franz | 2445 | </message> |
2446 | <message> |
||
798 | cbradney | 2447 | <source>Apply to all &odd Pages</source> |
2448 | <translation>Bruk på alle sider med &oddetall</translation> |
||
377 | Franz | 2449 | </message> |
798 | cbradney | 2450 | </context> |
2451 | <context> |
||
444 | fschmid | 2452 | <name>Biblio</name> |
377 | Franz | 2453 | <message> |
798 | cbradney | 2454 | <source>Scrapbook</source> |
2455 | <translation>Kladdebok</translation> |
||
377 | Franz | 2456 | </message> |
2457 | <message> |
||
798 | cbradney | 2458 | <source>Scrapbooks (*.scs);;All Files (*)</source> |
2459 | <translation>Kladdebøker (*.scs);; Alle filtyper (*)</translation> |
||
377 | Franz | 2460 | </message> |
2461 | <message> |
||
798 | cbradney | 2462 | <source>Delete</source> |
2463 | <translation>Slett</translation> |
||
377 | Franz | 2464 | </message> |
2465 | <message> |
||
798 | cbradney | 2466 | <source>Object</source> |
2467 | <translation>Objekt</translation> |
||
377 | Franz | 2468 | </message> |
2469 | <message> |
||
798 | cbradney | 2470 | <source>New Entry</source> |
2471 | <translation>Nytt innslag</translation> |
||
377 | Franz | 2472 | </message> |
2473 | <message> |
||
798 | cbradney | 2474 | <source>Rename</source> |
2475 | <translation>Endre navn</translation> |
||
377 | Franz | 2476 | </message> |
2477 | <message> |
||
798 | cbradney | 2478 | <source>Warning</source> |
2479 | <translation>Advarsel</translation> |
||
377 | Franz | 2480 | </message> |
2481 | <message> |
||
798 | cbradney | 2482 | <source>Name "%1" isn't unique. |
377 | Franz | 2483 | Please choose another.</source> |
798 | cbradney | 2484 | <translation>Navnet "%1" er ikke entydig. |
2485 | Velg vennligst et annet navn.</translation> |
||
377 | Franz | 2486 | </message> |
2487 | <message> |
||
798 | cbradney | 2488 | <source>OK</source> |
2489 | <translation>Greit</translation> |
||
377 | Franz | 2490 | </message> |
2491 | <message> |
||
798 | cbradney | 2492 | <source>&New</source> |
2493 | <translation>&Ny</translation> |
||
377 | Franz | 2494 | </message> |
2495 | <message> |
||
798 | cbradney | 2496 | <source>&Load...</source> |
2497 | <translation>&Hent ...</translation> |
||
377 | Franz | 2498 | </message> |
2499 | <message> |
||
798 | cbradney | 2500 | <source>&Save</source> |
2501 | <translation>&Lagre</translation> |
||
377 | Franz | 2502 | </message> |
2503 | <message> |
||
798 | cbradney | 2504 | <source>Save &As...</source> |
2505 | <translation>Lagre &som ...</translation> |
||
377 | Franz | 2506 | </message> |
2507 | <message> |
||
798 | cbradney | 2508 | <source>&Close</source> |
2509 | <translation>&Lukk</translation> |
||
377 | Franz | 2510 | </message> |
2511 | <message> |
||
798 | cbradney | 2512 | <source>&Small</source> |
2513 | <translation>&Liten</translation> |
||
377 | Franz | 2514 | </message> |
2515 | <message> |
||
798 | cbradney | 2516 | <source>&Medium</source> |
2517 | <translation>&Medium</translation> |
||
377 | Franz | 2518 | </message> |
2519 | <message> |
||
798 | cbradney | 2520 | <source>&Large</source> |
2521 | <translation>&Stor</translation> |
||
377 | Franz | 2522 | </message> |
2523 | <message> |
||
798 | cbradney | 2524 | <source>&File</source> |
2525 | <translation>&Fil</translation> |
||
377 | Franz | 2526 | </message> |
2527 | <message> |
||
798 | cbradney | 2528 | <source>&Preview</source> |
2529 | <translation>&Forhåndsvisning</translation> |
||
377 | Franz | 2530 | </message> |
2531 | <message> |
||
798 | cbradney | 2532 | <source>&Name:</source> |
2533 | <translation>&Navn:</translation> |
||
377 | Franz | 2534 | </message> |
798 | cbradney | 2535 | </context> |
2536 | <context> |
||
377 | Franz | 2537 | <name>BookMView</name> |
2538 | <message> |
||
798 | cbradney | 2539 | <source>Bookmarks</source> |
2540 | <translation>Bokmerker</translation> |
||
377 | Franz | 2541 | </message> |
2542 | <message> |
||
798 | cbradney | 2543 | <source>Move Bookmark</source> |
2544 | <translation>Flytt bokmerke</translation> |
||
377 | Franz | 2545 | </message> |
2546 | <message> |
||
798 | cbradney | 2547 | <source>Insert Bookmark</source> |
2548 | <translation>Sett inn bokmerke</translation> |
||
377 | Franz | 2549 | </message> |
2550 | <message> |
||
798 | cbradney | 2551 | <source>Cancel</source> |
2552 | <translation>Avbryt</translation> |
||
377 | Franz | 2553 | </message> |
798 | cbradney | 2554 | </context> |
2555 | <context> |
||
377 | Franz | 2556 | <name>BookPalette</name> |
2557 | <message> |
||
798 | cbradney | 2558 | <source>Bookmarks</source> |
2559 | <translation>Bokmerker</translation> |
||
377 | Franz | 2560 | </message> |
798 | cbradney | 2561 | </context> |
2562 | <context> |
||
377 | Franz | 2563 | <name>ButtonIcon</name> |
2564 | <message> |
||
798 | cbradney | 2565 | <source>Icon Placement</source> |
2566 | <translation>Ikonplassering </translation> |
||
377 | Franz | 2567 | </message> |
2568 | <message> |
||
798 | cbradney | 2569 | <source>Layout:</source> |
2570 | <translation>Utseende:</translation> |
||
377 | Franz | 2571 | </message> |
2572 | <message> |
||
798 | cbradney | 2573 | <source>Caption only</source> |
2574 | <translation>Kun tekst</translation> |
||
377 | Franz | 2575 | </message> |
2576 | <message> |
||
798 | cbradney | 2577 | <source>Icon only</source> |
2578 | <translation>Kun ikon</translation> |
||
377 | Franz | 2579 | </message> |
2580 | <message> |
||
798 | cbradney | 2581 | <source>Caption below Icon</source> |
2582 | <translation>Tekst under ikon</translation> |
||
377 | Franz | 2583 | </message> |
2584 | <message> |
||
798 | cbradney | 2585 | <source>Caption above Icon</source> |
2586 | <translation>Tekst over ikon</translation> |
||
377 | Franz | 2587 | </message> |
2588 | <message> |
||
798 | cbradney | 2589 | <source>Caption right to Icon</source> |
2590 | <translation>Tekst til høyre for ikon</translation> |
||
377 | Franz | 2591 | </message> |
2592 | <message> |
||
798 | cbradney | 2593 | <source>Caption left to Icon</source> |
2594 | <translation>Tekst til venstre for ikon</translation> |
||
377 | Franz | 2595 | </message> |
2596 | <message> |
||
798 | cbradney | 2597 | <source>Caption overlays Icon</source> |
2598 | <translation>Tekst ovenpå ikon</translation> |
||
377 | Franz | 2599 | </message> |
2600 | <message> |
||
798 | cbradney | 2601 | <source>Scale:</source> |
2602 | <translation>Skala:</translation> |
||
377 | Franz | 2603 | </message> |
2604 | <message> |
||
798 | cbradney | 2605 | <source>Always</source> |
2606 | <translation>Alltid</translation> |
||
377 | Franz | 2607 | </message> |
2608 | <message> |
||
798 | cbradney | 2609 | <source>When Icon is too small</source> |
2610 | <translation>Når ikonet er for lite</translation> |
||
377 | Franz | 2611 | </message> |
2612 | <message> |
||
798 | cbradney | 2613 | <source>When Icon is too big</source> |
2614 | <translation>Når ikonet er for stort</translation> |
||
377 | Franz | 2615 | </message> |
2616 | <message> |
||
798 | cbradney | 2617 | <source>Never</source> |
2618 | <translation>Aldri</translation> |
||
377 | Franz | 2619 | </message> |
2620 | <message> |
||
798 | cbradney | 2621 | <source>Scale How:</source> |
2622 | <translation>Skaler hvordan:</translation> |
||
377 | Franz | 2623 | </message> |
2624 | <message> |
||
798 | cbradney | 2625 | <source>Proportional</source> |
2626 | <translation>Proporsjonal</translation> |
||
377 | Franz | 2627 | </message> |
2628 | <message> |
||
798 | cbradney | 2629 | <source>Non Proportional</source> |
2630 | <translation>Ikke-proporsjonal</translation> |
||
377 | Franz | 2631 | </message> |
2632 | <message> |
||
798 | cbradney | 2633 | <source>Icon</source> |
2634 | <translation>Ikon</translation> |
||
377 | Franz | 2635 | </message> |
2636 | <message> |
||
798 | cbradney | 2637 | <source>OK</source> |
2638 | <translation>Greit</translation> |
||
377 | Franz | 2639 | </message> |
2640 | <message> |
||
798 | cbradney | 2641 | <source>Cancel</source> |
2642 | <translation>Avbryt</translation> |
||
377 | Franz | 2643 | </message> |
2644 | <message> |
||
798 | cbradney | 2645 | <source>Reset</source> |
2646 | <translation>Tilbakestill</translation> |
||
377 | Franz | 2647 | </message> |
798 | cbradney | 2648 | </context> |
2649 | <context> |
||
377 | Franz | 2650 | <name>CMSPrefs</name> |
2651 | <message> |
||
798 | cbradney | 2652 | <source>Color Management Settings</source> |
2653 | <translation>Innstilling av fargestyring</translation> |
||
377 | Franz | 2654 | </message> |
2655 | <message> |
||
798 | cbradney | 2656 | <source>System Profiles</source> |
2657 | <translation>System profiler</translation> |
||
377 | Franz | 2658 | </message> |
2659 | <message> |
||
798 | cbradney | 2660 | <source>Rendering Intents</source> |
2661 | <translation>Rendering Intenter</translation> |
||
377 | Franz | 2662 | </message> |
2663 | <message> |
||
798 | cbradney | 2664 | <source>Perceptual</source> |
2665 | <translation>Oppfattet</translation> |
||
377 | Franz | 2666 | </message> |
2667 | <message> |
||
798 | cbradney | 2668 | <source>Relative Colorimetric</source> |
2669 | <translation>Relative Colorimetric</translation> |
||
377 | Franz | 2670 | </message> |
2671 | <message> |
||
798 | cbradney | 2672 | <source>Saturation</source> |
2673 | <translation>Mettning</translation> |
||
377 | Franz | 2674 | </message> |
2675 | <message> |
||
798 | cbradney | 2676 | <source>Absolute Colorimetric</source> |
2677 | <translation>Absolutt Colorimetric</translation> |
||
377 | Franz | 2678 | </message> |
2679 | <message> |
||
798 | cbradney | 2680 | <source>Default color profile for imported images</source> |
2681 | <translation>Standard farge profil for importerte bilder</translation> |
||
377 | Franz | 2682 | </message> |
2683 | <message> |
||
798 | cbradney | 2684 | <source>Default color profile for solid colors on the page</source> |
2685 | <translation>Standard fargeprofil for massive farger på siden</translation> |
||
377 | Franz | 2686 | </message> |
2687 | <message> |
||
798 | cbradney | 2688 | <source>Color profile that you have generated or received from the manufacturer. |
377 | Franz | 2689 | This profile should be specific to your monitor and not a generic profile (i.e. sRGB).</source> |
798 | cbradney | 2690 | <translation>Fargeprofil du har laget eller mottatt fra produsenten. |
377 | Franz | 2691 | Denne profil burde være spesielt laget til din skjerm og ikke en generell profil (f.eks. sRGB).</translation> |
2692 | </message> |
||
2693 | <message> |
||
798 | cbradney | 2694 | <source>Color profile for your printer model from the manufacturer. |
377 | Franz | 2695 | This profile should be specific to your printer and not a generic profile (i.e. sRGB).</source> |
798 | cbradney | 2696 | <translation>Fargeprofil for din skrivermodel fra produsenten. |
2697 | Denne profil burde være spesielt laget til din skriver og ikke en generell profil (f.eks. sRGB).</translation> |
||
377 | Franz | 2698 | </message> |
2699 | <message> |
||
798 | cbradney | 2700 | <source>Default rendering intent for your monitor. Unless you know why to change it, |
377 | Franz | 2701 | Relative Colorimetric or Perceptual should be chosen.</source> |
798 | cbradney | 2702 | <translation>Standard rendering intent for din skjerm. Hvis ikke du vet hvorfor du burde |
377 | Franz | 2703 | forandre det, bør du velge Relative Colorimetric eller Perceptual. </translation> |
2704 | </message> |
||
2705 | <message> |
||
798 | cbradney | 2706 | <source>Default rendering intent for your printer. Unless you know why to change it, |
377 | Franz | 2707 | Relative Colorimetric or Perceptual should be chosen.</source> |
798 | cbradney | 2708 | <translation>Standard rendering intent for din skriver. Hvis ikke du vet hvorfor du burde |
377 | Franz | 2709 | forandre det, bør du velge Relative Colorimetric eller Perceptual. </translation> |
2710 | </message> |
||
2711 | <message> |
||
798 | cbradney | 2712 | <source>Enable 'soft proofing' of how your document colors will print, |
377 | Franz | 2713 | based on the chosen printer profile.</source> |
798 | cbradney | 2714 | <translation>Aktiver 'soft proofing' av hvordan dine dokument farger vil |
444 | fschmid | 2715 | skrives ut basert på den valgte skriver profil.</translation> |
377 | Franz | 2716 | </message> |
2717 | <message> |
||
798 | cbradney | 2718 | <source>Method of showing colors on the screen which may not print properly. |
377 | Franz | 2719 | This requires very accurate profiles and serves only as a warning.</source> |
798 | cbradney | 2720 | <translation>Metode for å vise farger på skjermen som kanskje ikke skrives ut korrekt. |
377 | Franz | 2721 | Dette krever veldig nøyaktige profiler og fungerer kun som advarsel.</translation> |
2722 | </message> |
||
2723 | <message> |
||
798 | cbradney | 2724 | <source>Black Point Compensation is a method of improving contrast in photos. |
377 | Franz | 2725 | It is recommended that you enable this if you have photos in your document.</source> |
798 | cbradney | 2726 | <translation>Black Point Compensation er en metode for å øke kontrasten i fotografier. |
444 | fschmid | 2727 | Det er smart å aktivere dette hvis du har fotografier i ditt dokumentet.</translation> |
377 | Franz | 2728 | </message> |
2729 | <message> |
||
798 | cbradney | 2730 | <source>&Activate Color Management</source> |
2731 | <translation>&Aktiver fargekontroll</translation> |
||
377 | Franz | 2732 | </message> |
2733 | <message> |
||
798 | cbradney | 2734 | <source>&Pictures:</source> |
2735 | <translation>&Bilder:</translation> |
||
377 | Franz | 2736 | </message> |
2737 | <message> |
||
798 | cbradney | 2738 | <source>&Solid Colors:</source> |
2739 | <translation>&Solide farger:</translation> |
||
377 | Franz | 2740 | </message> |
2741 | <message> |
||
798 | cbradney | 2742 | <source>&Monitor:</source> |
2743 | <translation>&Monitor:</translation> |
||
377 | Franz | 2744 | </message> |
2745 | <message> |
||
798 | cbradney | 2746 | <source>P&rinter:</source> |
2747 | <translation>S&kriver:</translation> |
||
377 | Franz | 2748 | </message> |
2749 | <message> |
||
798 | cbradney | 2750 | <source>M&onitor:</source> |
2751 | <translation>M&onitor:</translation> |
||
377 | Franz | 2752 | </message> |
2753 | <message> |
||
798 | cbradney | 2754 | <source>Pr&inter:</source> |
2755 | <translation>S&kriver:</translation> |
||
377 | Franz | 2756 | </message> |
2757 | <message> |
||
798 | cbradney | 2758 | <source>Sim&ulate Printer on the Screen</source> |
2759 | <translation>Sim&uler skriver på skjermen</translation> |
||
377 | Franz | 2760 | </message> |
2761 | <message> |
||
798 | cbradney | 2762 | <source>Mark Colors out of &Gamut</source> |
2763 | <translation>Marker farge ut av &Gamut</translation> |
||
377 | Franz | 2764 | </message> |
2765 | <message> |
||
798 | cbradney | 2766 | <source>Use &Blackpoint Compensation</source> |
2767 | <translation>Bruk &Blackpoint Compensation</translation> |
||
377 | Franz | 2768 | </message> |
2769 | <message> |
||
798 | cbradney | 2770 | <source>&OK</source> |
2771 | <translation>&Greit</translation> |
||
377 | Franz | 2772 | </message> |
2773 | <message> |
||
798 | cbradney | 2774 | <source>&Cancel</source> |
2775 | <translation>&Avbryt</translation> |
||
377 | Franz | 2776 | </message> |
798 | cbradney | 2777 | </context> |
2778 | <context> |
||
377 | Franz | 2779 | <name>CMYKChoose</name> |
2780 | <message> |
||
798 | cbradney | 2781 | <source>Edit Color</source> |
2782 | <translation>Rediger farger</translation> |
||
377 | Franz | 2783 | </message> |
2784 | <message> |
||
798 | cbradney | 2785 | <source>CMYK</source> |
2786 | <translation>CMYK</translation> |
||
377 | Franz | 2787 | </message> |
2788 | <message> |
||
798 | cbradney | 2789 | <source>RGB</source> |
2790 | <translation>RGB</translation> |
||
377 | Franz | 2791 | </message> |
2792 | <message> |
||
798 | cbradney | 2793 | <source>Web Safe RGB</source> |
2794 | <translation>Websikkert RGB</translation> |
||
377 | Franz | 2795 | </message> |
2796 | <message> |
||
798 | cbradney | 2797 | <source>New</source> |
2798 | <translation>Ny</translation> |
||
377 | Franz | 2799 | </message> |
2800 | <message> |
||
798 | cbradney | 2801 | <source>Old</source> |
2802 | <translation>Gammel</translation> |
||
377 | Franz | 2803 | </message> |
2804 | <message> |
||
798 | cbradney | 2805 | <source>OK</source> |
2806 | <translation>Greit</translation> |
||
377 | Franz | 2807 | </message> |
2808 | <message> |
||
798 | cbradney | 2809 | <source>C:</source> |
2810 | <translation>C:</translation> |
||
377 | Franz | 2811 | </message> |
2812 | <message> |
||
798 | cbradney | 2813 | <source> %</source> |
2814 | <translation> %</translation> |
||
377 | Franz | 2815 | </message> |
2816 | <message> |
||
798 | cbradney | 2817 | <source>M:</source> |
2818 | <translation>M:</translation> |
||
377 | Franz | 2819 | </message> |
2820 | <message> |
||
798 | cbradney | 2821 | <source>Y:</source> |
2822 | <translation>Y:</translation> |
||
377 | Franz | 2823 | </message> |
2824 | <message> |
||
798 | cbradney | 2825 | <source>K:</source> |
2826 | <translation>K:</translation> |
||
377 | Franz | 2827 | </message> |
2828 | <message> |
||
798 | cbradney | 2829 | <source>Dynamic Color Bars</source> |
2830 | <translation>Dynamiske fargesøyler</translation> |
||
377 | Franz | 2831 | </message> |
2832 | <message> |
||
798 | cbradney | 2833 | <source>Static Color Bars</source> |
2834 | <translation>Statiske fargesøyler</translation> |
||
377 | Franz | 2835 | </message> |
2836 | <message> |
||
798 | cbradney | 2837 | <source>R:</source> |
2838 | <translation>R:</translation> |
||
377 | Franz | 2839 | </message> |
2840 | <message> |
||
798 | cbradney | 2841 | <source>G:</source> |
2842 | <translation>G:</translation> |
||
377 | Franz | 2843 | </message> |
2844 | <message> |
||
798 | cbradney | 2845 | <source>B:</source> |
2846 | <translation>B:</translation> |
||
377 | Franz | 2847 | </message> |
2848 | <message> |
||
798 | cbradney | 2849 | <source>Warning</source> |
2850 | <translation>Advarsel</translation> |
||
377 | Franz | 2851 | </message> |
2852 | <message> |
||
798 | cbradney | 2853 | <source>Name of the Color is not unique</source> |
2854 | <translation>Navnet på denne fargen er brukt allerede</translation> |
||
377 | Franz | 2855 | </message> |
2856 | <message> |
||
798 | cbradney | 2857 | <source>HSV-Colormap</source> |
2858 | <translation>HSV-Colormap</translation> |
||
377 | Franz | 2859 | </message> |
2860 | <message> |
||
798 | cbradney | 2861 | <source>&Name:</source> |
2862 | <translation>&Navn:</translation> |
||
377 | Franz | 2863 | </message> |
2864 | <message> |
||
798 | cbradney | 2865 | <source>Color &Model</source> |
2866 | <translation>Farge&model</translation> |
||
377 | Franz | 2867 | </message> |
2868 | <message> |
||
798 | cbradney | 2869 | <source>&OK</source> |
2870 | <translation>&Greit</translation> |
||
377 | Franz | 2871 | </message> |
2872 | <message> |
||
798 | cbradney | 2873 | <source>&Cancel</source> |
2874 | <translation>&Avbryt</translation> |
||
377 | Franz | 2875 | </message> |
444 | fschmid | 2876 | <message> |
798 | cbradney | 2877 | <source>None</source> |
2878 | <translation>Ingen</translation> |
||
532 | cbradney | 2879 | </message> |
2880 | <message> |
||
798 | cbradney | 2881 | <source>You cannot create a color named "%1". |
2882 | It's a reserved name for transparent color</source> |
||
2883 | <translation>Du kan ikke lage en farge med navn "%1". |
||
2884 | Dette navnet er reservert for transparente farger</translation> |
||
532 | cbradney | 2885 | </message> |
798 | cbradney | 2886 | </context> |
2887 | <context> |
||
377 | Franz | 2888 | <name>Cpalette</name> |
2889 | <message> |
||
798 | cbradney | 2890 | <source>Shade:</source> |
2891 | <translation>Skygge:</translation> |
||
377 | Franz | 2892 | </message> |
2893 | <message> |
||
798 | cbradney | 2894 | <source> %</source> |
2895 | <translation> %</translation> |
||
377 | Franz | 2896 | </message> |
2897 | <message> |
||
798 | cbradney | 2898 | <source>Opacity:</source> |
2899 | <translation>Gjennomsiktighet:</translation> |
||
377 | Franz | 2900 | </message> |
2901 | <message> |
||
798 | cbradney | 2902 | <source>Normal</source> |
2903 | <translation>Normal</translation> |
||
377 | Franz | 2904 | </message> |
2905 | <message> |
||
798 | cbradney | 2906 | <source>Horizontal Gradient</source> |
2907 | <translation>Horisontal skravering</translation> |
||
377 | Franz | 2908 | </message> |
2909 | <message> |
||
798 | cbradney | 2910 | <source>Vertical Gradient</source> |
2911 | <translation>Vertikal skravering</translation> |
||
377 | Franz | 2912 | </message> |
2913 | <message> |
||
798 | cbradney | 2914 | <source>Diagonal Gradient</source> |
2915 | <translation>Diagonal skravering</translation> |
||
377 | Franz | 2916 | </message> |
2917 | <message> |
||
798 | cbradney | 2918 | <source>Cross Diagonal Gradient</source> |
2919 | <translation>Kryssdiagonal gradering</translation> |
||
377 | Franz | 2920 | </message> |
2921 | <message> |
||
798 | cbradney | 2922 | <source>Radial Gradient</source> |
2923 | <translation>Radial skravering</translation> |
||
377 | Franz | 2924 | </message> |
2925 | <message> |
||
798 | cbradney | 2926 | <source>Edit Line Color Properties</source> |
2927 | <translation>Rediger egenskapene til linjefargen</translation> |
||
377 | Franz | 2928 | </message> |
2929 | <message> |
||
798 | cbradney | 2930 | <source>Edit Fill Color Properties</source> |
2931 | <translation>Rediger egenskapene til fyllfargen</translation> |
||
377 | Franz | 2932 | </message> |
2933 | <message> |
||
798 | cbradney | 2934 | <source>Saturation of color</source> |
2935 | <translation>Metning av farge</translation> |
||
377 | Franz | 2936 | </message> |
2937 | <message> |
||
798 | cbradney | 2938 | <source>Normal or gradient fill method</source> |
2939 | <translation>Normal eller skravering fyllmetode</translation> |
||
377 | Franz | 2940 | </message> |
2941 | <message> |
||
798 | cbradney | 2942 | <source>Set the transparency for the color selected</source> |
2943 | <translation>Sett gjennomsiktigheten av den valgte fargen</translation> |
||
377 | Franz | 2944 | </message> |
2945 | <message> |
||
798 | cbradney | 2946 | <source>Color of selected object</source> |
2947 | <translation>Det valgte objektets farge</translation> |
||
377 | Franz | 2948 | </message> |
2949 | <message> |
||
798 | cbradney | 2950 | <source>None</source> |
2951 | <translation>Ingen</translation> |
||
377 | Franz | 2952 | </message> |
2953 | <message> |
||
798 | cbradney | 2954 | <source>Free linear Gradient</source> |
2955 | <translation>Fri lineær skravering</translation> |
||
377 | Franz | 2956 | </message> |
2957 | <message> |
||
798 | cbradney | 2958 | <source>Free radial Gradient</source> |
2959 | <translation>Fri radial skravering</translation> |
||
377 | Franz | 2960 | </message> |
2961 | <message> |
||
798 | cbradney | 2962 | <source>X1:</source> |
2963 | <translation>X1:</translation> |
||
377 | Franz | 2964 | </message> |
2965 | <message> |
||
798 | cbradney | 2966 | <source>Y1:</source> |
2967 | <translation>Y1:</translation> |
||
377 | Franz | 2968 | </message> |
2969 | <message> |
||
798 | cbradney | 2970 | <source> pt</source> |
2971 | <translation> pt</translation> |
||
377 | Franz | 2972 | </message> |
2973 | <message> |
||
798 | cbradney | 2974 | <source>X2:</source> |
2975 | <translation>X2:</translation> |
||
377 | Franz | 2976 | </message> |
2977 | <message> |
||
798 | cbradney | 2978 | <source>Y2:</source> |
2979 | <translation>Y2:</translation> |
||
377 | Franz | 2980 | </message> |
2981 | <message> |
||
798 | cbradney | 2982 | <source> mm</source> |
2983 | <translation> mm</translation> |
||
769 | cbradney | 2984 | </message> |
2985 | <message> |
||
798 | cbradney | 2986 | <source> in</source> |
2987 | <translation> in</translation> |
||
769 | cbradney | 2988 | </message> |
798 | cbradney | 2989 | <message> |
2990 | <source> p</source> |
||
2991 | <translation> p</translation> |
||
2992 | </message> |
||
2993 | </context> |
||
2994 | <context> |
||
454 | fschmid | 2995 | <name>CsvDialog</name> |
2996 | <message> |
||
798 | cbradney | 2997 | <source>CSV Importer Options</source> |
2998 | <translation>Opsjoner for CVS import</translation> |
||
454 | fschmid | 2999 | </message> |
3000 | <message> |
||
798 | cbradney | 3001 | <source>Field delimiter:</source> |
3002 | <translation>Skillefelt:</translation> |
||
454 | fschmid | 3003 | </message> |
3004 | <message> |
||
798 | cbradney | 3005 | <source>(TAB)</source> |
3006 | <translation>(TAB)</translation> |
||
454 | fschmid | 3007 | </message> |
3008 | <message> |
||
798 | cbradney | 3009 | <source>Value delimiter:</source> |
3010 | <translation>Skilleverdi:</translation> |
||
454 | fschmid | 3011 | </message> |
3012 | <message> |
||
798 | cbradney | 3013 | <source>None</source> |
3014 | <translation>Ingen</translation> |
||
454 | fschmid | 3015 | </message> |
3016 | <message> |
||
798 | cbradney | 3017 | <source>First row is a header</source> |
3018 | <translation>Første rad er overskrift</translation> |
||
454 | fschmid | 3019 | </message> |
3020 | <message> |
||
798 | cbradney | 3021 | <source>OK</source> |
3022 | <translation>Greit</translation> |
||
454 | fschmid | 3023 | </message> |
3024 | <message> |
||
798 | cbradney | 3025 | <source>Cancel</source> |
3026 | <translation>Avbryt</translation> |
||
454 | fschmid | 3027 | </message> |
798 | cbradney | 3028 | </context> |
3029 | <context> |
||
377 | Franz | 3030 | <name>CupsOptions</name> |
3031 | <message> |
||
798 | cbradney | 3032 | <source>Printer Options</source> |
3033 | <translation>Skriver innstillinger</translation> |
||
377 | Franz | 3034 | </message> |
3035 | <message> |
||
798 | cbradney | 3036 | <source>Page Set</source> |
3037 | <translation>Sideoppsett</translation> |
||
377 | Franz | 3038 | </message> |
3039 | <message> |
||
798 | cbradney | 3040 | <source>All Pages</source> |
3041 | <translation>Alle sider</translation> |
||
377 | Franz | 3042 | </message> |
3043 | <message> |
||
798 | cbradney | 3044 | <source>Even Pages only</source> |
3045 | <translation>Kun partall sider</translation> |
||
377 | Franz | 3046 | </message> |
3047 | <message> |
||
798 | cbradney | 3048 | <source>Odd Pages only</source> |
3049 | <translation>Kun oddetall sider</translation> |
||
377 | Franz | 3050 | </message> |
3051 | <message> |
||
798 | cbradney | 3052 | <source>Mirror</source> |
3053 | <translation>Speil</translation> |
||
377 | Franz | 3054 | </message> |
3055 | <message> |
||
798 | cbradney | 3056 | <source>No</source> |
3057 | <translation>Nei</translation> |
||
377 | Franz | 3058 | </message> |
3059 | <message> |
||
798 | cbradney | 3060 | <source>Yes</source> |
3061 | <translation>Ja</translation> |
||
377 | Franz | 3062 | </message> |
3063 | <message> |
||
798 | cbradney | 3064 | <source>Orientation</source> |
3065 | <translation>Retning</translation> |
||
377 | Franz | 3066 | </message> |
3067 | <message> |
||
798 | cbradney | 3068 | <source>Portrait</source> |
3069 | <translation>Stående</translation> |
||
377 | Franz | 3070 | </message> |
3071 | <message> |
||
798 | cbradney | 3072 | <source>Landscape</source> |
3073 | <translation>Landskap</translation> |
||
377 | Franz | 3074 | </message> |
3075 | <message> |
||
798 | cbradney | 3076 | <source>N-Up Printing</source> |
3077 | <translation>N-Up Utskriving</translation> |
||
377 | Franz | 3078 | </message> |
3079 | <message> |
||
798 | cbradney | 3080 | <source>Page per Sheet</source> |
3081 | <translation>Side per ark</translation> |
||
377 | Franz | 3082 | </message> |
3083 | <message> |
||
798 | cbradney | 3084 | <source>Pages per Sheet</source> |
3085 | <translation>Sider per ark</translation> |
||
377 | Franz | 3086 | </message> |
3087 | <message> |
||
798 | cbradney | 3088 | <source>Option</source> |
3089 | <translation>Innstilling</translation> |
||
377 | Franz | 3090 | </message> |
3091 | <message> |
||
798 | cbradney | 3092 | <source>Value</source> |
3093 | <translation>Verdi</translation> |
||
377 | Franz | 3094 | </message> |
3095 | <message> |
||
798 | cbradney | 3096 | <source>This panel displays various CUPS options when printing. |
377 | Franz | 3097 | The exact parameters available will depend on your printer driver. |
798 | cbradney | 3098 | You can confirm CUPS support by selecting Help > About. |
377 | Franz | 3099 | Look for the listings: C-C-T These equate to C=CUPS C=littlecms T=TIFF support. |
3100 | Missing library support is indicated by a *</source> |
||
798 | cbradney | 3101 | <translation>Denne panel viser diverse CUPS innstillinger mens skriving pågår. |
377 | Franz | 3102 | Hvilke parametre er tilgjengelige avhenger av din skriver driver. |
798 | cbradney | 3103 | Du kan sjekke for CUPS støtte ved å gå på Hjelp > Om. |
377 | Franz | 3104 | Se etter: C-C-T Disse står for C=CUPS C=littlecms T=Tiff støtte. |
444 | fschmid | 3105 | Manglende librarz støtte er indikert med et *</translation> |
377 | Franz | 3106 | </message> |
3107 | <message> |
||
798 | cbradney | 3108 | <source>&OK</source> |
3109 | <translation>&Greit</translation> |
||
377 | Franz | 3110 | </message> |
3111 | <message> |
||
798 | cbradney | 3112 | <source>&Cancel</source> |
3113 | <translation>&Avbryt</translation> |
||
377 | Franz | 3114 | </message> |
798 | cbradney | 3115 | </context> |
3116 | <context> |
||
377 | Franz | 3117 | <name>CustomFDialog</name> |
3118 | <message> |
||
798 | cbradney | 3119 | <source>Encoding:</source> |
3120 | <translation>Kodering:</translation> |
||
377 | Franz | 3121 | </message> |
3122 | <message> |
||
798 | cbradney | 3123 | <source>Moves to your Document Directory. |
377 | Franz | 3124 | This can be set in the Preferences.</source> |
798 | cbradney | 3125 | <translation>Denne bringer deg til din standard katalog for |
444 | fschmid | 3126 | dokumenter. Denne kan du selv velge i Preferanser.</translation> |
377 | Franz | 3127 | </message> |
3128 | <message> |
||
798 | cbradney | 3129 | <source>&Compress File</source> |
3130 | <translation>&Komprimer filen</translation> |
||
377 | Franz | 3131 | </message> |
3132 | <message> |
||
798 | cbradney | 3133 | <source>&Include Fonts</source> |
902 | mrdocs | 3134 | <translation>&Inkluder skrifttypene</translation> |
377 | Franz | 3135 | </message> |
798 | cbradney | 3136 | </context> |
3137 | <context> |
||
377 | Franz | 3138 | <name>DelColor</name> |
3139 | <message> |
||
798 | cbradney | 3140 | <source>Delete Color</source> |
3141 | <translation>Fjern farge</translation> |
||
377 | Franz | 3142 | </message> |
3143 | <message> |
||
798 | cbradney | 3144 | <source>Delete color:</source> |
3145 | <translation>Fjern farge:</translation> |
||
532 | cbradney | 3146 | </message> |
769 | cbradney | 3147 | <message> |
798 | cbradney | 3148 | <source>?</source> |
3149 | <translation>?</translation> |
||
769 | cbradney | 3150 | </message> |
3151 | <message> |
||
798 | cbradney | 3152 | <source>Replace it with:</source> |
3153 | <translation>Erstatt den med:</translation> |
||
769 | cbradney | 3154 | </message> |
3155 | <message> |
||
798 | cbradney | 3156 | <source>None</source> |
3157 | <translation>Ingen</translation> |
||
769 | cbradney | 3158 | </message> |
3159 | <message> |
||
798 | cbradney | 3160 | <source>&OK</source> |
3161 | <translation>&Greit</translation> |
||
769 | cbradney | 3162 | </message> |
798 | cbradney | 3163 | <message> |
3164 | <source>&Cancel</source> |
||
3165 | <translation>&Avbryt</translation> |
||
3166 | </message> |
||
3167 | </context> |
||
3168 | <context> |
||
377 | Franz | 3169 | <name>DelPages</name> |
3170 | <message> |
||
798 | cbradney | 3171 | <source>Delete Pages</source> |
3172 | <translation>Slett sider</translation> |
||
377 | Franz | 3173 | </message> |
3174 | <message> |
||
798 | cbradney | 3175 | <source>Delete from:</source> |
3176 | <translation>Slett fra:</translation> |
||
377 | Franz | 3177 | </message> |
3178 | <message> |
||
798 | cbradney | 3179 | <source>to:</source> |
3180 | <translation>til:</translation> |
||
444 | fschmid | 3181 | </message> |
3182 | <message> |
||
798 | cbradney | 3183 | <source>&OK</source> |
3184 | <translation>&OK</translation> |
||
444 | fschmid | 3185 | </message> |
3186 | <message> |
||
798 | cbradney | 3187 | <source>&Cancel</source> |
3188 | <translation>&Avbryt</translation> |
||
769 | cbradney | 3189 | </message> |
798 | cbradney | 3190 | </context> |
3191 | <context> |
||
3192 | <name>DmF</name> |
||
3193 | <message> |
||
3194 | <source>Missing Font</source> |
||
3195 | <translation>Manglende skrifttype</translation> |
||
3196 | </message> |
||
3197 | <message> |
||
3198 | <source>The Font %1 is not installed.</source> |
||
902 | mrdocs | 3199 | <translation>Skrifttypen %1 er ikke installert.</translation> |
798 | cbradney | 3200 | </message> |
3201 | <message> |
||
3202 | <source>Use</source> |
||
3203 | <translation>Bruk</translation> |
||
3204 | </message> |
||
3205 | <message> |
||
3206 | <source>instead</source> |
||
3207 | <translation>i stedet</translation> |
||
3208 | </message> |
||
3209 | <message> |
||
3210 | <source>OK</source> |
||
3211 | <translation>Greit</translation> |
||
3212 | </message> |
||
3213 | </context> |
||
3214 | <context> |
||
377 | Franz | 3215 | <name>DocInfos</name> |
3216 | <message> |
||
798 | cbradney | 3217 | <source>Document Information</source> |
3218 | <translation>Dokument informasjon</translation> |
||
377 | Franz | 3219 | </message> |
3220 | <message> |
||
798 | cbradney | 3221 | <source>&Title:</source> |
3222 | <translation>&Tittel:</translation> |
||
377 | Franz | 3223 | </message> |
3224 | <message> |
||
798 | cbradney | 3225 | <source>&Author:</source> |
3226 | <translation>&Forfatter:</translation> |
||
377 | Franz | 3227 | </message> |
3228 | <message> |
||
798 | cbradney | 3229 | <source>&Keywords:</source> |
3230 | <translation>Nø&kkelord:</translation> |
||
377 | Franz | 3231 | </message> |
3232 | <message> |
||
798 | cbradney | 3233 | <source>Descri&ption:</source> |
3234 | <translation>Beskri&velse:</translation> |
||
377 | Franz | 3235 | </message> |
3236 | <message> |
||
798 | cbradney | 3237 | <source>P&ublisher:</source> |
3238 | <translation>&Utgiver:</translation> |
||
377 | Franz | 3239 | </message> |
3240 | <message> |
||
798 | cbradney | 3241 | <source>&Contributors:</source> |
3242 | <translation>&Bidragsytere:</translation> |
||
377 | Franz | 3243 | </message> |
3244 | <message> |
||
798 | cbradney | 3245 | <source>Dat&e:</source> |
3246 | <translation>Da&to:</translation> |
||
377 | Franz | 3247 | </message> |
3248 | <message> |
||
798 | cbradney | 3249 | <source>T&ype:</source> |
3250 | <translation>T&ype:</translation> |
||
377 | Franz | 3251 | </message> |
3252 | <message> |
||
798 | cbradney | 3253 | <source>F&ormat:</source> |
3254 | <translation>F&ormat:</translation> |
||
377 | Franz | 3255 | </message> |
3256 | <message> |
||
798 | cbradney | 3257 | <source>Identi&fier:</source> |
3258 | <translation>Identi&fiser:</translation> |
||
377 | Franz | 3259 | </message> |
3260 | <message> |
||
798 | cbradney | 3261 | <source>&Source:</source> |
3262 | <translation>&Kilde:</translation> |
||
377 | Franz | 3263 | </message> |
3264 | <message> |
||
798 | cbradney | 3265 | <source>&Language:</source> |
3266 | <translation>&Språk:</translation> |
||
377 | Franz | 3267 | </message> |
3268 | <message> |
||
798 | cbradney | 3269 | <source>&Relation:</source> |
3270 | <translation>&Relasjon:</translation> |
||
377 | Franz | 3271 | </message> |
3272 | <message> |
||
798 | cbradney | 3273 | <source>Co&verage:</source> |
3274 | <translation>Dek&ning:</translation> |
||
377 | Franz | 3275 | </message> |
3276 | <message> |
||
798 | cbradney | 3277 | <source>Ri&ghts:</source> |
3278 | <translation>Retti&gheter:</translation> |
||
377 | Franz | 3279 | </message> |
3280 | <message> |
||
798 | cbradney | 3281 | <source>&Document</source> |
3282 | <translation>&Dokument</translation> |
||
377 | Franz | 3283 | </message> |
3284 | <message> |
||
798 | cbradney | 3285 | <source>Further &Information</source> |
3286 | <translation>Mer &informasjon</translation> |
||
377 | Franz | 3287 | </message> |
3288 | <message> |
||
798 | cbradney | 3289 | <source>The person or organisation primarily responsible for making the content of the document. |
377 | Franz | 3290 | This field can be embedded in the Scribus document for reference, as well as in the metadata of a PDF</source> |
798 | cbradney | 3291 | <translation>Personen eller organisasjonen som primært er ansvarlig for å lage dokumentets innhold. |
444 | fschmid | 3292 | Dette felt kan bli inkludert i Scribus dokumentet for referanse, såvel som i metadataene til en PDF</translation> |
377 | Franz | 3293 | </message> |
3294 | <message> |
||
798 | cbradney | 3295 | <source>A name given to the document. |
377 | Franz | 3296 | This field can be embedded in the Scribus document for reference, as well as in the metadata of a PDF</source> |
798 | cbradney | 3297 | <translation>Et navn som er gitt til dokumentet. |
444 | fschmid | 3298 | Dette felt kan bli inkludert i Scribus dokumentet for referanse, såvel som i metadataene til en PDF</translation> |
377 | Franz | 3299 | </message> |
3300 | <message> |
||
798 | cbradney | 3301 | <source>An account of the content of the document. |
377 | Franz | 3302 | This field is for a brief description or abstract of the document. It is embedded in the PDF on export</source> |
798 | cbradney | 3303 | <translation>En beskrivelse av dokumentets innhold. |
3304 | Dette felt er for en innholdsbeskrivelse eller sammenfatning av dokumentet. Det blir inkludert i PDFen ved eksport</translation> |
||
377 | Franz | 3305 | </message> |
3306 | <message> |
||
798 | cbradney | 3307 | <source>The topic of the content of the document. |
377 | Franz | 3308 | This field is for document keywords you wish to embed in a PDF, to assist searches and indexing of PDF files</source> |
798 | cbradney | 3309 | <translation>Temaet for dokumentets innhold. |
444 | fschmid | 3310 | Dette felt er for dokument nøkkelord som du vil inkludere i en PDF, til å assistere søkninger og indeksering av PDF filer</translation> |
377 | Franz | 3311 | </message> |
3312 | <message> |
||
798 | cbradney | 3313 | <source>A person or organisation responsible for making the document available</source> |
3314 | <translation>En person eller organisasjon som er ansvarlig for å gjøre dokumentet tilgjengelig</translation> |
||
377 | Franz | 3315 | </message> |
3316 | <message> |
||
798 | cbradney | 3317 | <source>A person or organisation responsible for making contributions to the content of the document</source> |
3318 | <translation>En person eller organisasjon som er ansvarlig for å bidra til dokumentets innhold</translation> |
||
377 | Franz | 3319 | </message> |
3320 | <message> |
||
798 | cbradney | 3321 | <source>A date associated with an event in the life cycle of the document, in YYYY-MM-DD format, as per ISO 8601</source> |
3322 | <translation>En dato assosiert med en hendelse i dokumentets livssyklus, i YYYY-MM-DD format, som per ISO 8601</translation> |
||
377 | Franz | 3323 | </message> |
3324 | <message> |
||
798 | cbradney | 3325 | <source>The nature or genre of the content of the document, eg. categories, functions, genres, etc</source> |
3326 | <translation>Formen eller genren for dokumentets innhold, f.eks kategorier, funksjoner, genrer, etc</translation> |
||
377 | Franz | 3327 | </message> |
3328 | <message> |
||
798 | cbradney | 3329 | <source>The physical or digital manifestation of the document. Media type and dimensions would be worth noting. |
377 | Franz | 3330 | RFC2045,RFC2046 for MIME types are also useful here</source> |
798 | cbradney | 3331 | <translation>Den fysiske eller digitale manifestasjon av dokumentet. Media type og dimensjoner ville være nyttige å merke seg. |
444 | fschmid | 3332 | RFC2045,RFC2046 for MIME typer er også brukbare her</translation> |
377 | Franz | 3333 | </message> |
3334 | <message> |
||
798 | cbradney | 3335 | <source>An unambiguous reference to the document within a given context such as ISBN or URI</source> |
3336 | <translation>En entydig referanse til dokumentet innenfor en gitt kontekst som ISBN eller URI</translation> |
||
377 | Franz | 3337 | </message> |
3338 | <message> |
||
798 | cbradney | 3339 | <source>A reference to a document from which the present document is derived, eg. ISBN or URI</source> |
3340 | <translation>En referanse til et dokument hvor det nåværende dokument er derivert, f.eks ISBN eller URI</translation> |
||
377 | Franz | 3341 | </message> |
3342 | <message> |
||
798 | cbradney | 3343 | <source>The language in which the content of the document is written, usually a ISO-639 language code |
377 | Franz | 3344 | optionally suffixed with a hypen and an ISO-3166 country code, eg. en-GB, fr-CH</source> |
798 | cbradney | 3345 | <translation>Språket som dokumentet er skrevet i, vanligvis en ISO-638 språk kode |
3346 | eventuelt fulgt av en dash og en ISO-3166 lande kode, f.eks nn-NO, nb-NO, fr-CH, en-GB</translation> |
||
377 | Franz | 3347 | </message> |
3348 | <message> |
||
798 | cbradney | 3349 | <source>A reference to a related document, possibly using a formal identifier such as a ISBN or URI</source> |
3350 | <translation>En referanse til et relatert dokument, kanskje ved bruk av en formell henvisning som ISBN eller URI </translation> |
||
377 | Franz | 3351 | </message> |
3352 | <message> |
||
798 | cbradney | 3353 | <source>The extent or scope of the content of the document, possibly including location, time and jurisdiction ranges</source> |
3354 | <translation>Avgrensningen for dokumentets innhold, kanskje inkluderende sted, tid og juridisk virkningsområde </translation> |
||
377 | Franz | 3355 | </message> |
3356 | <message> |
||
798 | cbradney | 3357 | <source>Information about rights held in and over the document, eg. copyright, patent or trademark</source> |
3358 | <translation>Informasjoner omkring rettigheter holdet i og over dokumentet, f.eks copyright, patent eller trademark</translation> |
||
377 | Franz | 3359 | </message> |
3360 | <message> |
||
798 | cbradney | 3361 | <source>&OK</source> |
3362 | <translation>&Greit</translation> |
||
377 | Franz | 3363 | </message> |
3364 | <message> |
||
798 | cbradney | 3365 | <source>&Cancel</source> |
3366 | <translation>&Avbryt</translation> |
||
377 | Franz | 3367 | </message> |
798 | cbradney | 3368 | </context> |
3369 | <context> |
||
444 | fschmid | 3370 | <name>Druck</name> |
377 | Franz | 3371 | <message> |
798 | cbradney | 3372 | <source>Setup Printer</source> |
3373 | <translation>Skriverinnstillinger</translation> |
||
377 | Franz | 3374 | </message> |
3375 | <message> |
||
798 | cbradney | 3376 | <source>File</source> |
3377 | <translation>Fil</translation> |
||
377 | Franz | 3378 | </message> |
3379 | <message> |
||
798 | cbradney | 3380 | <source>Options</source> |
3381 | <translation>Innstillinger</translation> |
||
377 | Franz | 3382 | </message> |
3383 | <message> |
||
798 | cbradney | 3384 | <source>All</source> |
3385 | <translation>Alle</translation> |
||
377 | Franz | 3386 | </message> |
3387 | <message> |
||
798 | cbradney | 3388 | <source>Cyan</source> |
3389 | <translation>Cyan</translation> |
||
377 | Franz | 3390 | </message> |
3391 | <message> |
||
798 | cbradney | 3392 | <source>Magenta</source> |
3393 | <translation>Magenta</translation> |
||
377 | Franz | 3394 | </message> |
3395 | <message> |
||
798 | cbradney | 3396 | <source>Yellow</source> |
3397 | <translation>Gult</translation> |
||
377 | Franz | 3398 | </message> |
3399 | <message> |
||
798 | cbradney | 3400 | <source>Black</source> |
3401 | <translation>Svart</translation> |
||
377 | Franz | 3402 | </message> |
3403 | <message> |
||
798 | cbradney | 3404 | <source>Save as</source> |
3405 | <translation>Lagre som</translation> |
||
377 | Franz | 3406 | </message> |
3407 | <message> |
||
798 | cbradney | 3408 | <source>Postscript-Files (*.ps);;All Files (*)</source> |
3409 | <translation>Postscript-filer (*.ps);; Alle filtyper (*)</translation> |
||
377 | Franz | 3410 | </message> |
3411 | <message> |
||
798 | cbradney | 3412 | <source>Insert a comma separated list of tokens where |
377 | Franz | 3413 | a token can be * for all the pages, 1-5 for |
3414 | a range of pages or a single page number.</source> |
||
798 | cbradney | 3415 | <translation>Skriv inn en kommaseparert liste med tegn hvor |
444 | fschmid | 3416 | tegnet * representerer alle sider, og 1-5 |
798 | cbradney | 3417 | representerer en rekke sider, eller en enkelt side.</translation> |
377 | Franz | 3418 | </message> |
3419 | <message> |
||
798 | cbradney | 3420 | <source>Print Destination</source> |
3421 | <translation>Valg av skriver</translation> |
||
377 | Franz | 3422 | </message> |
3423 | <message> |
||
798 | cbradney | 3424 | <source>&Options...</source> |
3425 | <translation>&Valg ...</translation> |
||
377 | Franz | 3426 | </message> |
3427 | <message> |
||
798 | cbradney | 3428 | <source>&File:</source> |
3429 | <translation>&Fil:</translation> |
||
377 | Franz | 3430 | </message> |
3431 | <message> |
||
798 | cbradney | 3432 | <source>C&hange...</source> |
3433 | <translation>Fo&randre ...</translation> |
||
377 | Franz | 3434 | </message> |
3435 | <message> |
||
798 | cbradney | 3436 | <source>A&lternative Printer Command</source> |
3437 | <translation>A&lternativ utskriftskommando</translation> |
||
377 | Franz | 3438 | </message> |
3439 | <message> |
||
798 | cbradney | 3440 | <source>Co&mmand:</source> |
3441 | <translation>Ko&mmando:</translation> |
||
377 | Franz | 3442 | </message> |
3443 | <message> |
||
798 | cbradney | 3444 | <source>Range</source> |
3445 | <translation>Område</translation> |
||
377 | Franz | 3446 | </message> |
3447 | <message> |
||
798 | cbradney | 3448 | <source>Print &All</source> |
3449 | <translation>Skriv ut &alt</translation> |
||
377 | Franz | 3450 | </message> |
3451 | <message> |
||
798 | cbradney | 3452 | <source>Print Current Pa&ge</source> |
3453 | <translation>Skriv ut gjeldende &side</translation> |
||
377 | Franz | 3454 | </message> |
3455 | <message> |
||
798 | cbradney | 3456 | <source>Print &Range</source> |
3457 | <translation>Utsk&riftsområde</translation> |
||
377 | Franz | 3458 | </message> |
3459 | <message> |
||
798 | cbradney | 3460 | <source>N&umber of Copies:</source> |
3461 | <translation>A&ntall kopier:</translation> |
||
377 | Franz | 3462 | </message> |
3463 | <message> |
||
798 | cbradney | 3464 | <source>Print &Normal</source> |
3465 | <translation>Skriv ut &Normal</translation> |
||
377 | Franz | 3466 | </message> |
3467 | <message> |
||
798 | cbradney | 3468 | <source>Print &Separations</source> |
3469 | <translation>Utskrift &Seperasjoner</translation> |
||
377 | Franz | 3470 | </message> |
3471 | <message> |
||
798 | cbradney | 3472 | <source>Pr&int In Color If Available</source> |
3473 | <translation>Skri&v ut i farger hvis tilgjengelig</translation> |
||
377 | Franz | 3474 | </message> |
3475 | <message> |
||
798 | cbradney | 3476 | <source>Print In Gra&yscale</source> |
3477 | <translation>Skriv ut i grå&farger</translation> |
||
377 | Franz | 3478 | </message> |
3479 | <message> |
||
798 | cbradney | 3480 | <source>Ad&vanced Options...</source> |
3481 | <translation>F&lere valg ...</translation> |
||
377 | Franz | 3482 | </message> |
3483 | <message> |
||
798 | cbradney | 3484 | <source>&Print</source> |
3485 | <translation>&Skriv ut</translation> |
||
377 | Franz | 3486 | </message> |
3487 | <message> |
||
798 | cbradney | 3488 | <source>&Cancel</source> |
3489 | <translation>&Avbryt</translation> |
||
377 | Franz | 3490 | </message> |
3491 | <message> |
||
798 | cbradney | 3492 | <source>Use an alternative print manager, such as kprinter or gtklp, |
377 | Franz | 3493 | to utilize additional printing options</source> |
798 | cbradney | 3494 | <translation>Bruk en alternativ utskriftsbehandler, som kprinter eller gtklp, |
444 | fschmid | 3495 | for å bruke flere utskriftsopsjoner</translation> |
377 | Franz | 3496 | </message> |
798 | cbradney | 3497 | </context> |
3498 | <context> |
||
377 | Franz | 3499 | <name>EPSPlug</name> |
3500 | <message> |
||
798 | cbradney | 3501 | <source>Importing File: |
377 | Franz | 3502 | %1 |
3503 | failed!</source> |
||
798 | cbradney | 3504 | <translation>Import av fil: |
377 | Franz | 3505 | %1 |
798 | cbradney | 3506 | feilet!</translation> |
377 | Franz | 3507 | </message> |
3508 | <message> |
||
798 | cbradney | 3509 | <source>Fatal Error</source> |
3510 | <translation>Alvorlig feil</translation> |
||
377 | Franz | 3511 | </message> |
798 | cbradney | 3512 | </context> |
3513 | <context> |
||
377 | Franz | 3514 | <name>EditStyle</name> |
3515 | <message> |
||
798 | cbradney | 3516 | <source>Edit Style</source> |
3517 | <translation>Rediger stil</translation> |
||
377 | Franz | 3518 | </message> |
3519 | <message> |
||
798 | cbradney | 3520 | <source>Character</source> |
3521 | <translation>Tegn</translation> |
||
377 | Franz | 3522 | </message> |
3523 | <message> |
||
798 | cbradney | 3524 | <source> pt</source> |
3525 | <translation> pt</translation> |
||
377 | Franz | 3526 | </message> |
3527 | <message> |
||
798 | cbradney | 3528 | <source>Effect:</source> |
3529 | <translation>Effekter:</translation> |
||
377 | Franz | 3530 | </message> |
3531 | <message> |
||
798 | cbradney | 3532 | <source>None</source> |
3533 | <translation>Ingen</translation> |
||
377 | Franz | 3534 | </message> |
3535 | <message> |
||
798 | cbradney | 3536 | <source>Vertical Spaces</source> |
3537 | <translation>Vertikal avstand</translation> |
||
377 | Franz | 3538 | </message> |
3539 | <message> |
||
798 | cbradney | 3540 | <source>Line Spacing</source> |
3541 | <translation>Linjeavstand</translation> |
||
377 | Franz | 3542 | </message> |
3543 | <message> |
||
798 | cbradney | 3544 | <source>Tabulators and Indentation</source> |
3545 | <translation>Tabulatorer og innrykk</translation> |
||
377 | Franz | 3546 | </message> |
3547 | <message> |
||
798 | cbradney | 3548 | <source>OK</source> |
3549 | <translation>Greit</translation> |
||
377 | Franz | 3550 | </message> |
3551 | <message> |
||
798 | cbradney | 3552 | <source>Name of your paragraph style</source> |
3553 | <translation>Navn på din avsnittsstil</translation> |
||
377 | Franz | 3554 | </message> |
3555 | <message> |
||
798 | cbradney | 3556 | <source>Font of selected text or object</source> |
902 | mrdocs | 3557 | <translation>Skrifttypen til den markerte tekst eller objekt</translation> |
377 | Franz | 3558 | </message> |
3559 | <message> |
||
798 | cbradney | 3560 | <source>Font Size</source> |
902 | mrdocs | 3561 | <translation>Skriftstørrelse</translation> |
377 | Franz | 3562 | </message> |
3563 | <message> |
||
798 | cbradney | 3564 | <source>Color of text fill</source> |
3565 | <translation>Farge på tekstfyll</translation> |
||
377 | Franz | 3566 | </message> |
3567 | <message> |
||
798 | cbradney | 3568 | <source>Color of text stroke</source> |
3569 | <translation>Farge på tekststrek</translation> |
||
377 | Franz | 3570 | </message> |
3571 | <message> |
||
798 | cbradney | 3572 | <source>Provides an oversized first letter for a paragraph. Used for stylistic effect</source> |
3573 | <translation>Gir et ekstrastort førstebokstav til et avsnitt. Brukt som stileffekt</translation> |
||
377 | Franz | 3574 | </message> |
3575 | <message> |
||
798 | cbradney | 3576 | <source>Determines the overall height, in line numbers, of the Drop Caps</source> |
3577 | <translation>Bestemmer høyden, i linjeantall, av Drop Caps</translation> |
||
377 | Franz | 3578 | </message> |
3579 | <message> |
||
798 | cbradney | 3580 | <source>Align text to baseline grid</source> |
3581 | <translation>Juster tekst til baseline nettet</translation> |
||
377 | Franz | 3582 | </message> |
3583 | <message> |
||
798 | cbradney | 3584 | <source>Spacing above the paragraph</source> |
3585 | <translation>Plass over avsnittet</translation> |
||
377 | Franz | 3586 | </message> |
3587 | <message> |
||
798 | cbradney | 3588 | <source>Spacing below the paragraph</source> |
3589 | <translation>Plass under avsnittet</translation> |
||
377 | Franz | 3590 | </message> |
3591 | <message> |
||
798 | cbradney | 3592 | <source> mm</source> |
3593 | <translation> mm</translation> |
||
377 | Franz | 3594 | </message> |
3595 | <message> |
||
798 | cbradney | 3596 | <source> in</source> |
3597 | <translation> in</translation> |
||
377 | Franz | 3598 | </message> |
3599 | <message> |
||
798 | cbradney | 3600 | <source> p</source> |
3601 | <translation> p</translation> |
||
377 | Franz | 3602 | </message> |
3603 | <message> |
||
798 | cbradney | 3604 | <source>Warning</source> |
3605 | <translation>Advarsel</translation> |
||
377 | Franz | 3606 | </message> |
3607 | <message> |
||
798 | cbradney | 3608 | <source>Name of the Style is not unique</source> |
3609 | <translation>Navnet på denne stilen er ikke entydig</translation> |
||
377 | Franz | 3610 | </message> |
3611 | <message> |
||
798 | cbradney | 3612 | <source>&Name:</source> |
3613 | <translation>&Navn:</translation> |
||
377 | Franz | 3614 | </message> |
3615 | <message> |
||
798 | cbradney | 3616 | <source>&Font:</source> |
902 | mrdocs | 3617 | <translation>&Skrifttype:</translation> |
377 | Franz | 3618 | </message> |
3619 | <message> |
||
798 | cbradney | 3620 | <source>Si&ze:</source> |
3621 | <translation>Større&lse:</translation> |
||
377 | Franz | 3622 | </message> |
3623 | <message> |
||
798 | cbradney | 3624 | <source>&Alignment:</source> |
3625 | <translation>&Justering:</translation> |
||
377 | Franz | 3626 | </message> |
3627 | <message> |
||
798 | cbradney | 3628 | <source>&Drop Caps</source> |
3629 | <translation>&Fjern store bokstaver</translation> |
||
377 | Franz | 3630 | </message> |
3631 | <message> |
||
798 | cbradney | 3632 | <source>&Lines:</source> |
3633 | <translation>&Linjer:</translation> |
||
377 | Franz | 3634 | </message> |
3635 | <message> |
||
798 | cbradney | 3636 | <source>F&ill Color:</source> |
3637 | <translation>&Fyllfarge:</translation> |
||
377 | Franz | 3638 | </message> |
3639 | <message> |
||
798 | cbradney | 3640 | <source>St&roke Color:</source> |
3641 | <translation>S&trekfarge:</translation> |
||
377 | Franz | 3642 | </message> |
3643 | <message> |
||
798 | cbradney | 3644 | <source>Adjust to Baseline &Grid</source> |
3645 | <translation>Juster til baseline &nettet</translation> |
||
377 | Franz | 3646 | </message> |
3647 | <message> |
||
798 | cbradney | 3648 | <source>Line &Spacing:</source> |
3649 | <translation>Linjeav&stand:</translation> |
||
377 | Franz | 3650 | </message> |
3651 | <message> |
||
798 | cbradney | 3652 | <source>Abo&ve:</source> |
3653 | <translation>Ov&er:</translation> |
||
377 | Franz | 3654 | </message> |
3655 | <message> |
||
798 | cbradney | 3656 | <source>&Below:</source> |
3657 | <translation>&Under:</translation> |
||
377 | Franz | 3658 | </message> |
3659 | <message> |
||
798 | cbradney | 3660 | <source>&OK</source> |
3661 | <translation>&Greit</translation> |
||
377 | Franz | 3662 | </message> |
3663 | <message> |
||
798 | cbradney | 3664 | <source>&Cancel</source> |
3665 | <translation>&Avbryt</translation> |
||
377 | Franz | 3666 | </message> |
798 | cbradney | 3667 | </context> |
3668 | <context> |
||
444 | fschmid | 3669 | <name>Editor</name> |
377 | Franz | 3670 | <message> |
798 | cbradney | 3671 | <source>Editor</source> |
3672 | <translation>Tekstbehandler</translation> |
||
377 | Franz | 3673 | </message> |
3674 | <message> |
||
798 | cbradney | 3675 | <source>Javascripts (*.js);;All Files (*)</source> |
3676 | <translation>Javascripts (*.js);; Alle filtyper (*)</translation> |
||
377 | Franz | 3677 | </message> |
3678 | <message> |
||
798 | cbradney | 3679 | <source>&New</source> |
3680 | <translation>&Ny</translation> |
||
377 | Franz | 3681 | </message> |
3682 | <message> |
||
798 | cbradney | 3683 | <source>&Open...</source> |
3684 | <translation>&Åpne ...</translation> |
||
377 | Franz | 3685 | </message> |
3686 | <message> |
||
798 | cbradney | 3687 | <source>Save &As...</source> |
3688 | <translation>Lagre &som ...</translation> |
||
377 | Franz | 3689 | </message> |
3690 | <message> |
||
798 | cbradney | 3691 | <source>&Save and Exit</source> |
3692 | <translation>&Lagre og avslutt</translation> |
||
377 | Franz | 3693 |