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