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