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