Rev 9729 | Rev 10166 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
9729 | cbradney | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | <!DOCTYPE TS><TS version="1.1"> |
||
3064 | cbradney | 3 | <context> |
952 | cbradney | 4 | <name></name> |
5 | <message> |
||
9729 | cbradney | 6 | <location filename="../plugins/scriptplugin/cmdcolor.h" line="21"/> |
3064 | cbradney | 7 | <source>getColorNames() -> list |
952 | 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> |
||
3064 | cbradney | 12 | <translation>getColorNames() -> list |
974 | cbradney | 13 | |
14 | Devuelve una lista que contiene los nombres de todos los colores definidos |
||
15 | en el documento. Si no hay abierto ningún documento, devulve una lista de |
||
16 | los colores del documento por defecto. |
||
17 | </translation> |
||
952 | cbradney | 18 | </message> |
19 | <message> |
||
9729 | cbradney | 20 | <location filename="../plugins/scriptplugin/cmddialog.h" line="22"/> |
3064 | cbradney | 21 | <source>newDocDialog() -> bool |
952 | cbradney | 22 | |
23 | Displays the "New Document" dialog box. Creates a new document if the user |
||
24 | accepts the settings. Does not create a document if the user presses cancel. |
||
25 | Returns true if a new document was created. |
||
26 | </source> |
||
3064 | cbradney | 27 | <translation>newDocDialog() -> bool |
974 | cbradney | 28 | |
29 | Muestra el diálogo de "Nuevo Documento". Crea un nuevo documento si |
||
30 | el usuario presiona aceptar. No lo crea si presiona cancelar. Devuelve true |
||
31 | si se crea un nuevo documento.</translation> |
||
952 | cbradney | 32 | </message> |
33 | <message> |
||
9729 | cbradney | 34 | <location filename="" line="136965632"/> |
3064 | cbradney | 35 | <source>newDoc(size, margins, orientation, firstPageNumber, |
36 | unit, facingPages, firstSideLeft) -> bool |
||
952 | cbradney | 37 | |
38 | Creates a new document and returns true if successful. The parameters have the |
||
39 | following meaning: |
||
40 | |||
41 | size = A tuple (width, height) describing the size of the document. You can |
||
3064 | cbradney | 42 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
952 | cbradney | 43 | |
44 | margins = A tuple (left, right, top, bottom) describing the document |
||
45 | margins |
||
46 | |||
47 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
48 | |||
49 | firstPageNumber = is the number of the first page in the document used for |
||
3064 | cbradney | 50 | pagenumbering. While you'll usually want 1, it's useful to have higher |
51 | numbers if you're creating a document in several parts. |
||
952 | cbradney | 52 | |
53 | unit: this value sets the measurement units used by the document. Use a |
||
54 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
55 | UNIT_PICAS, UNIT_POINTS. |
||
56 | |||
57 | facingPages = FACINGPAGES, NOFACINGPAGES |
||
58 | |||
59 | firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT |
||
60 | |||
61 | The values for width, height and the margins are expressed in the given unit |
||
62 | for the document. PAPER_* constants are expressed in points. If your document |
||
63 | is not in points, make sure to account for this. |
||
64 | |||
65 | example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
||
66 | FACINGPAGES, FIRSTPAGERIGHT) |
||
67 | </source> |
||
3064 | cbradney | 68 | <translation type="obsolete">newDoc(size, margins, orientation, firstPageNumber, |
69 | unit, facingPages, firstSideLeft) -> bool |
||
974 | cbradney | 70 | |
71 | Crea un nuevo documento y devuelve true si tiene éxito. Los parámetros tienen |
||
72 | el siguiente significado: |
||
73 | |||
74 | size = Un par (ancho, alto) que describe el tamaño del documento. Se |
||
3064 | cbradney | 75 | pueden usar constantes predefinidas llamadas PAPER_<tipo_de_papel> |
974 | cbradney | 76 | p. ej. PAPER_A4, etc. |
77 | |||
78 | margins = Un vector (izquierda, derecha, arriba, abajo) que describe |
||
79 | los márgenes del documento |
||
80 | |||
81 | orientation = la orientación de la página - constantes PORTRAIT (vertical), |
||
82 | LANDSCAPE (apasaido) |
||
83 | |||
84 | firstPageNumber = es el número de la primera página del documento |
||
85 | usado para la numeración de páginas. Aunque normalmente será 1, es útil |
||
86 | para tener números mayores si se crea un documento en varias partes. |
||
87 | |||
88 | unit: este valor establece las unidades de medida usadas por el |
||
89 | documento. Usa una constante predefinida para esto, una de: |
||
90 | UNIT_INCHES (pulgadas), UNIT_MILLIMETERS (milímetros), |
||
91 | UNIT_PICAS (picas), UNIT_POINTS (puntos). |
||
92 | |||
93 | facingPages = FACINGPAGES (páginas enfrentadas), |
||
94 | NOFACINGPAGES (páginas no enfrentadas) |
||
95 | |||
96 | firstSideLeft = FIRSTPAGELEFT (primera página a la izquierda), |
||
97 | FIRSTPAGERIGHT (primera página a la derecha) |
||
98 | |||
99 | Los valores para la anchura, altura y los márgenes están expresados en la unidad |
||
100 | dada para el documento. Las constantes PAPER_* están expresadas en puntos. Si |
||
101 | tu documento no está en puntos, asegurate de tenerlo en cuenta. |
||
102 | |||
103 | ejemplo: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
||
104 | FACINGPAGES, FIRSTPAGERIGHT) |
||
105 | </translation> |
||
952 | cbradney | 106 | </message> |
107 | <message> |
||
9729 | cbradney | 108 | <location filename="../plugins/scriptplugin/cmdgetprop.h" line="21"/> |
3064 | cbradney | 109 | <source>getFillColor(["name"]) -> string |
952 | cbradney | 110 | |
111 | Returns the name of the fill color of the object "name". |
||
112 | If "name" is not given the currently selected item is used. |
||
113 | </source> |
||
3064 | cbradney | 114 | <translation>getFillColor(["name"]) -> string |
974 | cbradney | 115 | |
116 | Devuleve el nombre del color de relleno del objeto con nombre"name". |
||
117 | Si no se pasa un nombre se usa el objeto que esté seleccionado. |
||
118 | </translation> |
||
952 | cbradney | 119 | </message> |
120 | <message> |
||
9729 | cbradney | 121 | <location filename="../plugins/scriptplugin/cmdmani.h" line="23"/> |
3064 | cbradney | 122 | <source>moveObject(dx, dy [, "name"]) |
952 | cbradney | 123 | |
124 | Moves the object "name" by dx and dy relative to its current position. The |
||
125 | distances are expressed in the current measurement unit of the document (see |
||
126 | UNIT constants). If "name" is not given the currently selected item is used. |
||
127 | If the object "name" belongs to a group, the whole group is moved. |
||
128 | </source> |
||
3064 | cbradney | 129 | <translation>moveObject(dx, dy [, "name"]) |
974 | cbradney | 130 | |
131 | Mueve el objeto de nombre "name" dx y dy unidades, relativo a su posición |
||
132 | actual. Las distancias se deben expresar en las unidades actuales del |
||
133 | documento (ver constantes UNIT). Si no se pasa un nombre se usa el objeto |
||
134 | que esté seleccionado. Si el objeto "name" pertenece a un grupo, se |
||
135 | mueve el grupo entero. |
||
136 | </translation> |
||
952 | cbradney | 137 | </message> |
138 | <message> |
||
9729 | cbradney | 139 | <location filename="../plugins/scriptplugin/cmdmisc.h" line="24"/> |
3064 | cbradney | 140 | <source>setRedraw(bool) |
952 | cbradney | 141 | |
142 | Disables page redraw when bool = False, otherwise redrawing is enabled. |
||
143 | This change will persist even after the script exits, so make sure to call |
||
144 | setRedraw(True) in a finally: clause at the top level of your script. |
||
145 | </source> |
||
3064 | cbradney | 146 | <translation>setRedraw(bool) |
974 | cbradney | 147 | |
148 | Desactiva el redibujado de la página si bool = False, de otro modo, se activa |
||
149 | el redibujado. Este cambio permanecerá incluso después de que el script |
||
150 | termine, así que asegurate de llamar a setRedraw(True) en una sentencia |
||
151 | finally: en el nivel superior del script. |
||
152 | </translation> |
||
952 | cbradney | 153 | </message> |
154 | <message> |
||
9729 | cbradney | 155 | <location filename="../plugins/scriptplugin/cmdobj.h" line="26"/> |
3064 | cbradney | 156 | <source>createRect(x, y, width, height, ["name"]) -> string |
952 | cbradney | 157 | |
158 | Creates a new rectangle on the current page and returns its name. The |
||
159 | coordinates are given in the current measurement units of the document |
||
160 | (see UNIT constants). "name" should be a unique identifier for the object |
||
161 | because you need this name to reference that object in future. If "name" |
||
162 | is not given Scribus will create one for you. |
||
163 | |||
3064 | cbradney | 164 | May raise NameExistsError if you explicitly pass a name that's already used. |
952 | cbradney | 165 | </source> |
3064 | cbradney | 166 | <translation>createRect(x, y, width, height, ["name"]) -> string |
974 | cbradney | 167 | |
168 | Crea un nuevo rectángulo en la página actual y devuelve su nombre. Las |
||
169 | coordenadas x, y, anchura y altura se expresan en las unidades actuales |
||
170 | del documento (ver constantes UNIT). "name" debería ser un identificador |
||
171 | único para el objeto porque el objeto se referenciará con ese nombre |
||
172 | después. Si no se le da un nombre, Scribus creará uno. |
||
173 | |||
174 | Puede lanzar la excepción NameExistsError si se pasa un nombre que |
||
175 | ya se está usando. |
||
176 | </translation> |
||
952 | cbradney | 177 | </message> |
178 | <message> |
||
9729 | cbradney | 179 | <location filename="" line="136965632"/> |
3064 | cbradney | 180 | <source>newPage(where [,"template"]) |
952 | cbradney | 181 | |
182 | Creates a new page. If "where" is -1 the new Page is appended to the |
||
183 | document, otherwise the new page is inserted before "where". Page numbers are |
||
184 | counted from 1 upwards, no matter what the displayed first page number of your |
||
185 | document is. The optional parameter "template" specifies the name of the |
||
186 | template page for the new page. |
||
187 | |||
188 | May raise IndexError if the page number is out of range |
||
189 | </source> |
||
3064 | cbradney | 190 | <translation type="obsolete">newPage(where [,"template"]) |
974 | cbradney | 191 | |
192 | Crea una nueva página. Si "where" es -1 la página se añade al documento, |
||
193 | de otro modo la página se inserta antes de la página "where". Los números |
||
194 | de página se cuentan de 1 en adelante, sin importar cuál es el número que se |
||
195 | muestra en la primera página del documento. El parámetro opcional "template" |
||
196 | especifica el nombre de la plantilla para la nueva página. |
||
197 | |||
198 | Puede lanzar la excepción IndexError si el número de página está fuera de rango. |
||
199 | </translation> |
||
952 | cbradney | 200 | </message> |
201 | <message> |
||
9729 | cbradney | 202 | <location filename="../plugins/scriptplugin/cmdsetprop.h" line="22"/> |
3064 | cbradney | 203 | <source>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"]) |
952 | cbradney | 204 | |
205 | Sets the gradient fill of the object "name" to type. Color descriptions are |
||
206 | the same as for setFillColor() and setFillShade(). See the constants for |
||
3064 | cbradney | 207 | available types (FILL_<type>). |
952 | cbradney | 208 | </source> |
3064 | cbradney | 209 | <translation>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"]) |
974 | cbradney | 210 | |
211 | Establece el degradado de relleno del objeto con nombre "name" como |
||
212 | tipo "type". Las descripciones de color son las mismas que para setFillColor() |
||
3064 | cbradney | 213 | y setFillShade(). Ver las constantes FILL_<tipo> para los tipos disponibles. |
974 | cbradney | 214 | </translation> |
952 | cbradney | 215 | </message> |
216 | <message> |
||
9729 | cbradney | 217 | <location filename="../plugins/scriptplugin/cmdtext.h" line="23"/> |
3064 | cbradney | 218 | <source>getFontSize(["name"]) -> float |
952 | cbradney | 219 | |
220 | Returns the font size in points for the text frame "name". If this text |
||
221 | frame has some text selected the value assigned to the first character of |
||
222 | the selection is returned. |
||
223 | If "name" is not given the currently selected item is used. |
||
224 | </source> |
||
3064 | cbradney | 225 | <translation>getFontSize(["name"]) -> float |
974 | cbradney | 226 | |
227 | Devuelve el tamaño de fuente en puntos del marco de texto con nombre |
||
228 | "name". Si el marco de texto tiene texto seleccionado, devuelve el del |
||
229 | primer caracter de la selección. |
||
230 | Si no se le pasa un nombre se usa el objeto que esté seleccionado. |
||
231 | </translation> |
||
952 | cbradney | 232 | </message> |
233 | <message> |
||
9729 | cbradney | 234 | <location filename="../plugins/scriptplugin/guiapp.h" line="21"/> |
3064 | cbradney | 235 | <source>messagebarText("string") |
952 | cbradney | 236 | |
237 | Writes the "string" into the Scribus message bar (status line). The text |
||
3064 | cbradney | 238 | must be UTF8 encoded or 'unicode' string(recommended). |
952 | cbradney | 239 | </source> |
3064 | cbradney | 240 | <translation>messagebarText("string") |
974 | cbradney | 241 | |
242 | Escribe la cadena "string" en la barra de mensaje (barra de estado) de Scribus. |
||
3064 | cbradney | 243 | El texto debe estar codificado en UTF8 o 'unicode' (recomendado). |
974 | cbradney | 244 | </translation> |
952 | cbradney | 245 | </message> |
1525 | cbradney | 246 | <message> |
9729 | cbradney | 247 | <location filename="" line="136965632"/> |
3064 | cbradney | 248 | <source>register_macro_callable(name, callable, accel='') |
1525 | cbradney | 249 | |
2140 | cbradney | 250 | Create a macro called "name" with the existing callable object "callable". |
251 | The passed callable must not require any arguments when called (it may take |
||
252 | optional arguments, but will not be given any). |
||
253 | If provided, the string "accel" will be used to set a keyboard shortcut |
||
254 | for the macro. |
||
255 | If the passed callable is a class, it will be rejected. Functions and bound |
||
256 | methods are quite acceptable, as are instances of classes that provide a |
||
257 | __call__ method with no arguments. There is no problem with registering |
||
258 | a callable more than once, nor with registering multiple bound methods |
||
259 | of a single instance. |
||
260 | </source> |
||
3064 | cbradney | 261 | <translation type="obsolete">register_macro_callable(name, callable, accel='') |
1525 | cbradney | 262 | |
2140 | cbradney | 263 | Crea una macro llamada "name" con el objeto ya existente llamado "callable". |
264 | "callable" no debe requerir argumentos cuando se llame (puede tener |
||
265 | argumentos opcionales, pero no se le pasará ninguno). |
||
266 | La cadena "accel" se usará como acceso rápido para la macro, si se |
||
267 | proporciona. |
||
268 | Si "callable" es una clase se rechazará. Se admiten funciones y métodos |
||
269 | bound, al igual que instancias de clases que proporcionen un método |
||
270 | __call__ sin argumentos. No hay ningún problema en registrar el mismo |
||
271 | "callable" más de una vez, ni en registrar múltiples métodos bound de una |
||
272 | única instancia. |
||
273 | </translation> |
||
1525 | cbradney | 274 | </message> |
3064 | cbradney | 275 | <message> |
9729 | cbradney | 276 | <location filename="../plugins/scriptplugin/cmdpage.h" line="26"/> |
3064 | cbradney | 277 | <source>newPage(where [,"masterpage"]) |
278 | |||
279 | Creates a new page. If "where" is -1 the new Page is appended to the |
||
280 | document, otherwise the new page is inserted before "where". Page numbers are |
||
281 | counted from 1 upwards, no matter what the displayed first page number of your |
||
282 | document is. The optional parameter "masterpage" specifies the name of the |
||
283 | master page for the new page. |
||
284 | |||
285 | May raise IndexError if the page number is out of range |
||
286 | </source> |
||
287 | <translation type="unfinished"></translation> |
||
288 | </message> |
||
289 | <message> |
||
9729 | cbradney | 290 | <location filename="../plugins/scriptplugin/cmddoc.h" line="55"/> |
3824 | cbradney | 291 | <source>newDocument(size, margins, orientation, firstPageNumber, |
6434 | cbradney | 292 | unit, pagesType, firstPageOrder, numPages) -> bool |
3824 | cbradney | 293 | |
294 | Creates a new document and returns true if successful. The parameters have the |
||
295 | following meaning: |
||
296 | |||
297 | size = A tuple (width, height) describing the size of the document. You can |
||
298 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
||
299 | |||
300 | margins = A tuple (left, right, top, bottom) describing the document |
||
301 | margins |
||
302 | |||
303 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
304 | |||
305 | firstPageNumer = is the number of the first page in the document used for |
||
306 | pagenumbering. While you'll usually want 1, it's useful to have higher |
||
307 | numbers if you're creating a document in several parts. |
||
308 | |||
309 | unit: this value sets the measurement units used by the document. Use a |
||
310 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
311 | UNIT_PICAS, UNIT_POINTS. |
||
312 | |||
313 | pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page, |
||
314 | PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and |
||
315 | PAGE_4 is 4-fold. |
||
316 | |||
317 | firstPageOrder = What is position of first page in the document. |
||
318 | Indexed from 0 (0 = first). |
||
319 | |||
6434 | cbradney | 320 | numPage = Number of pages to be created. |
321 | |||
3824 | cbradney | 322 | The values for width, height and the margins are expressed in the given unit |
323 | for the document. PAPER_* constants are expressed in points. If your document |
||
324 | is not in points, make sure to account for this. |
||
325 | |||
326 | example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS, |
||
6434 | cbradney | 327 | PAGE_4, 3, 1) |
3824 | cbradney | 328 | |
329 | May raise ScribusError if is firstPageOrder bigger than allowed by pagesType. |
||
330 | </source> |
||
331 | <translation type="unfinished"></translation> |
||
332 | </message> |
||
9729 | cbradney | 333 | <message> |
334 | <location filename="../plugins/scriptplugin/svgimport.h" line="21"/> |
||
335 | <source>placeSVG("filename", x, y) |
||
336 | |||
337 | Places the SVG "filename" onto the current page, |
||
338 | x and y specify the coordinate of the topleft corner of the SVG placed on the page |
||
339 | |||
340 | If loading was successful, the selection contains the imported SVG |
||
341 | </source> |
||
342 | <translation type="unfinished"></translation> |
||
343 | </message> |
||
3064 | cbradney | 344 | </context> |
345 | <context> |
||
952 | cbradney | 346 | <name>@default</name> |
347 | <message> |
||
9729 | cbradney | 348 | <location filename="../plugins/scriptplugin/cmdcolor.h" line="35"/> |
3064 | cbradney | 349 | <source>getColor("name") -> tuple |
952 | cbradney | 350 | |
351 | Returns a tuple (C, M, Y, K) containing the four color components of the |
||
352 | color "name" from the current document. If no document is open, returns |
||
353 | the value of the named color from the default document colors. |
||
354 | |||
3064 | cbradney | 355 | May raise NotFoundError if the named color wasn't found. |
952 | cbradney | 356 | May raise ValueError if an invalid color name is specified. |
357 | </source> |
||
3064 | cbradney | 358 | <translation>getColor("name") -> tuple |
974 | cbradney | 359 | |
360 | Devuelve un vector (C, M, Y, K) que tiene las cuatro componentes de |
||
361 | color del color "name" del documento actual. Si no hay un documento |
||
362 | abierto, usa los colores del documento por defecto. |
||
363 | |||
364 | Puede lanzar la excepción NotFoundError si no se encuentra el color indicado. |
||
365 | Puede lanzar la excpeción ValueError si se especifica un nombre no válido. |
||
366 | </translation> |
||
952 | cbradney | 367 | </message> |
368 | <message> |
||
9729 | cbradney | 369 | <location filename="../plugins/scriptplugin/cmdcolor.h" line="64"/> |
3064 | cbradney | 370 | <source>changeColor("name", c, m, y, k) |
952 | cbradney | 371 | |
372 | Changes the color "name" to the specified CMYK value. The color value is |
||
373 | defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black. |
||
374 | Color components should be in the range from 0 to 255. |
||
375 | |||
3064 | cbradney | 376 | May raise NotFoundError if the named color wasn't found. |
952 | cbradney | 377 | May raise ValueError if an invalid color name is specified. |
378 | </source> |
||
3064 | cbradney | 379 | <translation>changeColor("name", c, m, y, k) |
974 | cbradney | 380 | |
381 | Cambia el color "name" al valor CMYK especificado. El valor del color |
||
382 | se define mediante cuatro componentes: c = cian, m = magenta, |
||
383 | y = amarillo y k = negro. Las componentes deberían estar en el |
||
384 | rango 0 a 255. |
||
385 | |||
386 | Puede lanzar la excepción NotFoundError si no se encuentra el color indicado. |
||
387 | Puede lanzar la excpeción ValueError si se especifica un nombre no válido. |
||
388 | </translation> |
||
952 | cbradney | 389 | </message> |
390 | <message> |
||
9729 | cbradney | 391 | <location filename="../plugins/scriptplugin/cmdcolor.h" line="77"/> |
3064 | cbradney | 392 | <source>defineColor("name", c, m, y, k) |
952 | cbradney | 393 | |
394 | Defines a new color "name". The color Value is defined via four components: |
||
395 | c = Cyan, m = Magenta, y = Yellow and k = Black. Color components should be in |
||
396 | the range from 0 to 255. |
||
397 | |||
398 | May raise ValueError if an invalid color name is specified. |
||
399 | </source> |
||
7508 | cbradney | 400 | <translation type="unfinished">defineColor("name", c, m, y, k) |
974 | cbradney | 401 | |
402 | Define un nuevo color llamado "name". El valor del color se define mediante |
||
403 | cuatro componentes: c = cian, m = magenta, y = amarillo y k = negro. |
||
404 | Las componentes deberían estar en el rango 0 a 255. |
||
405 | |||
406 | Puede lanzar la excpeción ValueError si se especifica un nombre no válido. |
||
407 | </translation> |
||
952 | cbradney | 408 | </message> |
409 | <message> |
||
9729 | cbradney | 410 | <location filename="../plugins/scriptplugin/cmdcolor.h" line="94"/> |
3064 | cbradney | 411 | <source>deleteColor("name", "replace") |
952 | cbradney | 412 | |
413 | Deletes the color "name". Every occurence of that color is replaced by the |
||
414 | color "replace". If not specified, "replace" defaults to the color |
||
415 | "None" - transparent. |
||
416 | |||
417 | deleteColor works on the default document colors if there is no document open. |
||
418 | In that case, "replace", if specified, has no effect. |
||
419 | |||
3064 | cbradney | 420 | May raise NotFoundError if a named color wasn't found. |
952 | cbradney | 421 | May raise ValueError if an invalid color name is specified. |
422 | </source> |
||
3064 | cbradney | 423 | <translation>deleteColor("name", "replace") |
974 | cbradney | 424 | |
425 | Borra el color "name". Cada aparición de ese color se reemplaza |
||
426 | con el color "replace". Si no se especifica, se reemplaza por el |
||
427 | color "Ninguno" - transparente. |
||
428 | |||
429 | Si no hay ningún documento abierto deleteColor funciona sobre los |
||
430 | colores del documento por defecto. En ese caso, aunque se indique, |
||
431 | "replace" no tiene efecto. |
||
432 | |||
433 | Puede lanzar la excepción NotFoundError si no se encuentra el color indicado. |
||
434 | Puede lanzar la excpeción ValueError si se especifica un nombre no válido. |
||
435 | </translation> |
||
952 | cbradney | 436 | </message> |
437 | <message> |
||
9729 | cbradney | 438 | <location filename="../plugins/scriptplugin/cmdcolor.h" line="106"/> |
3064 | cbradney | 439 | <source>replaceColor("name", "replace") |
952 | cbradney | 440 | |
441 | Every occurence of the color "name" is replaced by the color "replace". |
||
442 | |||
3064 | cbradney | 443 | May raise NotFoundError if a named color wasn't found. |
952 | cbradney | 444 | May raise ValueError if an invalid color name is specified. |
445 | </source> |
||
3064 | cbradney | 446 | <translation>replaceColor("name", "replace") |
974 | cbradney | 447 | |
448 | Cada aparición del color "name" se reemplaza por el color "replace". |
||
449 | |||
450 | Puede lanzar la excepción NotFoundError si no se encuentra el color indicado. |
||
451 | Puede lanzar la excpeción ValueError si se especifica un nombre no válido. |
||
452 | </translation> |
||
952 | cbradney | 453 | </message> |
454 | <message> |
||
9729 | cbradney | 455 | <location filename="" line="136965632"/> |
3064 | cbradney | 456 | <source>fileDialog("caption", ["filter", "defaultname" ,haspreview, issave]) -> string with filename |
952 | cbradney | 457 | |
458 | Shows a File Open dialog box with the caption "caption". Files are filtered |
||
459 | with the filter string "filter". A default filename or file path can also |
||
3064 | cbradney | 460 | supplied, leave this string empty when you don't want to use it. A value of |
952 | cbradney | 461 | True for haspreview enables a small preview widget in the FileSelect box. When |
462 | the issave parameter is set to True the dialog acts like a "Save As" dialog |
||
463 | otherwise it acts like a "File Open Dialog". The default for both of the |
||
464 | opional parameters is False. |
||
465 | |||
3064 | cbradney | 466 | The filter, if specified, takes the form 'comment (*.type *.type2 ...)'. |
467 | For example 'Images (*.png *.xpm *.jpg)'. |
||
952 | cbradney | 468 | |
469 | Refer to the Qt-Documentation for QFileDialog for details on filters. |
||
470 | |||
3064 | cbradney | 471 | Example: fileDialog('Open input', 'CSV files (*.csv)') |
472 | Example: fileDialog('Save report', defaultname='report.txt', issave=True) |
||
952 | cbradney | 473 | </source> |
3064 | cbradney | 474 | <translation type="obsolete">fileDialog("caption", ["filter", "defaultname" ,haspreview, issave]) -> string con nombre de archivo |
974 | cbradney | 475 | |
476 | Muestro un diálogo de Abrir Archivo con el título "caption". Los archivos se |
||
477 | filtran por la cadena "filter". Se puede suministrar un nombre de archivo o |
||
478 | ruta por defecto (defaultname), si no se quiere usar se debe dejar vacío. |
||
479 | Si haspreview es True muestra una pequeña previsualización. Cuando el |
||
480 | parámetro issave es True el diálogo se comporta como un diálogo de |
||
481 | "Guardar Como", de modo se comporta como un diálogo de "Abrir Archivo". |
||
482 | Ambos parámetros son False por defecto. |
||
483 | |||
3064 | cbradney | 484 | El filtro, si se especifica, tiene la forma 'comentario (*.tipo *.tipo2 ...)'. |
485 | Por ejemplo 'Imágenes (*.png *.xpm *.jpg)'. |
||
974 | cbradney | 486 | |
487 | Mirar la Documentación de Qt de QFileDialog para detalles de los filtros. |
||
488 | |||
3064 | cbradney | 489 | Ejemplo: fileDialog('Abrir entrada', 'Archivos CSV (*.csv)') |
490 | Ejemplo: fileDialog('Guardar informe', defaultname='report.txt', issave=True) |
||
974 | cbradney | 491 | </translation> |
952 | cbradney | 492 | </message> |
493 | <message> |
||
9729 | cbradney | 494 | <location filename="../plugins/scriptplugin/cmddialog.h" line="88"/> |
3064 | cbradney | 495 | <source>messageBox("caption", "message", |
952 | cbradney | 496 | icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT, |
3064 | cbradney | 497 | button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer |
952 | cbradney | 498 | |
499 | Displays a message box with the title "caption", the message "message", and |
||
500 | an icon "icon" and up to 3 buttons. By default no icon is used and a single |
||
501 | button, OK, is displayed. Only the caption and message arguments are required, |
||
502 | though setting an icon and appropriate button(s) is strongly |
||
503 | recommended. The message text may contain simple HTML-like markup. |
||
504 | |||
505 | Returns the number of the button the user pressed. Button numbers start |
||
506 | at 1. |
||
507 | |||
508 | For the icon and the button parameters there are predefined constants available |
||
509 | with the same names as in the Qt Documentation. These are the BUTTON_* and |
||
510 | ICON_* constants defined in the module. There are also two extra constants that |
||
511 | can be binary-ORed with button constants: |
||
512 | BUTTONOPT_DEFAULT Pressing enter presses this button. |
||
513 | BUTTONOPT_ESCAPE Pressing escape presses this button. |
||
514 | |||
515 | Usage examples: |
||
3064 | cbradney | 516 | result = messageBox('Script failed', |
517 | 'This script only works when you have a text frame selected.', |
||
952 | cbradney | 518 | ICON_ERROR) |
3064 | cbradney | 519 | result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>', |
952 | cbradney | 520 | ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
521 | BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
||
522 | |||
523 | Defined button and icon constants: |
||
524 | BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO, |
||
525 | BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
||
526 | ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL. |
||
527 | </source> |
||
3064 | cbradney | 528 | <translation>messageBox("caption", "message", |
974 | cbradney | 529 | icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT, |
3064 | cbradney | 530 | button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer |
974 | cbradney | 531 | |
532 | Muestra un cuadro de mensaje con el título "caption", el mensaje "message", |
||
533 | un icono "icon" y hasta 3 botones. Por defecto no se usa ningún icono y sólo |
||
534 | hay un botón, Aceptar. Sólo son obligatorios los parámetros caption y message, |
||
535 | sin embargo se recomienda definir un icono y el botón o botones apropiados. |
||
536 | El mensaje puede contener etiquetas simples similares a las de HTML. |
||
537 | |||
538 | Devuelve el número del botón que presionó el usuario. Los números de los |
||
539 | botones empiezan en 1. |
||
540 | |||
541 | Para los parámetros del iconoy de los botones hay constantes predefinidas |
||
542 | disponibles con los mismos nombres que en la Documentación de Qt. Son las |
||
543 | constantes BUTTON_* e ICON_* definidas en el módulo. Hay también otras |
||
544 | dos constantes extra que pueden ser combinadas con un OR binario con las |
||
545 | constantes de los botones: |
||
546 | BUTTONOPT_DEFAULT Presionar intro presiona este botón. |
||
547 | BUTTONOPT_ESCAPE Presionar escape presiona este botón. |
||
548 | |||
549 | Ejemplos de uso: |
||
3064 | cbradney | 550 | result = messageBox('Error en Script', |
551 | 'Este scrpt sólo funciona cuando tienes un marco de texto seleccionado.', |
||
974 | cbradney | 552 | ICON_ERROR) |
3064 | cbradney | 553 | result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>', |
974 | cbradney | 554 | ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
555 | BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
||
556 | |||
557 | Botones definidos: |
||
558 | BUTTON_NONE (ninguno), BUTTON_ABORT (abortar), BUTTON_CANCEL (cancelar), |
||
559 | BUTTON_IGNORE (ignorar), BUTTON_NO (no), BUTTON_NOALL (no a todo), |
||
560 | BUTTON_OK (aceptar), BUTTON_RETRY (reintentar), BUTTON_YES (sí), |
||
561 | BUTTON_YESALL (sí a todo) |
||
562 | |||
563 | Constantes de iconos: |
||
564 | ICON_NONE (ninguno), ICON_INFORMATION (información), ICON_WARNING (aviso), |
||
565 | ICON_CRITICAL. (crítico) |
||
566 | </translation> |
||
952 | cbradney | 567 | </message> |
568 | <message> |
||
9729 | cbradney | 569 | <location filename="../plugins/scriptplugin/cmddialog.h" line="101"/> |
3064 | cbradney | 570 | <source>valueDialog(caption, message [,defaultvalue]) -> string |
952 | cbradney | 571 | |
3064 | cbradney | 572 | Shows the common 'Ask for string' dialog and returns its value as a string |
573 | Parameters: window title, text in the window and optional 'default' value. |
||
952 | cbradney | 574 | |
3064 | cbradney | 575 | Example: valueDialog('title', 'text in the window', 'optional') |
952 | cbradney | 576 | </source> |
3064 | cbradney | 577 | <translation>valueDialog(caption, message [,defaultvalue]) -> string |
974 | cbradney | 578 | |
3064 | cbradney | 579 | Muestra el diálogo de 'Introducir una cadena' y devuelve su valor |
974 | cbradney | 580 | como un string. |
581 | Parámetros: título de la ventana, texto de la ventana y un valor |
||
582 | por defecto opcional. |
||
583 | |||
3064 | cbradney | 584 | Ejemplo: valueDialog('título', 'texto de la ventana', 'opcional') |
974 | cbradney | 585 | </translation> |
952 | cbradney | 586 | </message> |
587 | <message> |
||
9729 | cbradney | 588 | <location filename="../plugins/scriptplugin/cmddoc.h" line="108"/> |
3064 | cbradney | 589 | <source>closeDoc() |
952 | cbradney | 590 | |
591 | Closes the current document without prompting to save. |
||
592 | |||
593 | May throw NoDocOpenError if there is no document to close |
||
594 | </source> |
||
3064 | cbradney | 595 | <translation>closeDoc() |
974 | cbradney | 596 | |
597 | Cierra el documento actual sin preguntar para guardar. |
||
598 | |||
599 | Puede lanzar la excepción NoDocOpenError si no hay ningún |
||
600 | documento que cerrar. |
||
601 | </translation> |
||
952 | cbradney | 602 | </message> |
603 | <message> |
||
9729 | cbradney | 604 | <location filename="../plugins/scriptplugin/cmddoc.h" line="117"/> |
3064 | cbradney | 605 | <source>haveDoc() -> bool |
952 | cbradney | 606 | |
607 | Returns true if there is a document open. |
||
608 | </source> |
||
3064 | cbradney | 609 | <translation>haveDoc() -> bool |
974 | cbradney | 610 | |
611 | Devuelve true si hay un documento abierto.</translation> |
||
952 | cbradney | 612 | </message> |
613 | <message> |
||
9729 | cbradney | 614 | <location filename="../plugins/scriptplugin/cmddoc.h" line="128"/> |
3064 | cbradney | 615 | <source>openDoc("name") |
952 | cbradney | 616 | |
617 | Opens the document "name". |
||
618 | |||
619 | May raise ScribusError if the document could not be opened. |
||
620 | </source> |
||
3064 | cbradney | 621 | <translation>openDoc("name") |
974 | cbradney | 622 | |
623 | Abre el documento "name". |
||
624 | |||
625 | Puede lanzar la excepción ScribusError si el documento no se puede abrir. |
||
626 | </translation> |
||
952 | cbradney | 627 | </message> |
628 | <message> |
||
9729 | cbradney | 629 | <location filename="../plugins/scriptplugin/cmddoc.h" line="141"/> |
3064 | cbradney | 630 | <source>saveDoc() |
952 | cbradney | 631 | |
632 | Saves the current document with its current name, returns true if successful. |
||
633 | If the document has not already been saved, this may bring up an interactive |
||
634 | save file dialog. |
||
635 | |||
636 | If the save fails, there is currently no way to tell. |
||
637 | </source> |
||
3064 | cbradney | 638 | <translation>saveDoc() |
974 | cbradney | 639 | |
640 | Guarda el documento actual con su nombre actual, y devuelve true si se |
||
641 | guarda correctamente. Si el documento no se había guardado todavía, |
||
642 | muestra un diálogo de guardar archivo. |
||
643 | |||
644 | Si se produce un error al guardar, actualmente no hay forma de informarlo. |
||
645 | </translation> |
||
952 | cbradney | 646 | </message> |
647 | <message> |
||
9729 | cbradney | 648 | <location filename="../plugins/scriptplugin/cmddoc.h" line="152"/> |
3064 | cbradney | 649 | <source>saveDocAs("name") |
952 | cbradney | 650 | |
651 | Saves the current document under the new name "name" (which may be a full or |
||
652 | relative path). |
||
653 | |||
654 | May raise ScribusError if the save fails. |
||
655 | </source> |
||
3064 | cbradney | 656 | <translation>saveDocAs("name") |
974 | cbradney | 657 | |
658 | Guarda el documento actual con el nombre "name" (que puede ser un ruta |
||
659 | absoluta o relativa). |
||
660 | |||
661 | Puede lanzar la excepción ScribusError si se produce un error al guardar. |
||
662 | </translation> |
||
952 | cbradney | 663 | </message> |
664 | <message> |
||
9729 | cbradney | 665 | <location filename="" line="136965632"/> |
3064 | cbradney | 666 | <source>saveDocAs("author", "info", "description") -> bool |
952 | cbradney | 667 | |
668 | Sets the document information. "Author", "Info", "Description" are |
||
669 | strings. |
||
670 | </source> |
||
6434 | cbradney | 671 | <translation type="obsolete">saveDocAs("author", "info", "description") -> bool |
974 | cbradney | 672 | |
673 | Establece la información básica del documento: autor, información y |
||
674 | descripción. Todos los parámetros son strings. |
||
675 | </translation> |
||
952 | cbradney | 676 | </message> |
677 | <message> |
||
9729 | cbradney | 678 | <location filename="" line="136965632"/> |
3064 | cbradney | 679 | <source>setMargins(lr, rr, tr, br) |
952 | cbradney | 680 | |
681 | Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br) |
||
3064 | cbradney | 682 | margins are given in the measurement units of the document - see UNIT_<type> |
952 | cbradney | 683 | constants. |
684 | </source> |
||
9729 | cbradney | 685 | <translation type="obsolete">setMargins(lr, rr, tr, br) |
974 | cbradney | 686 | |
687 | Establece los márgenes del documento, Izquierda(lr), Derecha(rr), Arriba(tr) |
||
688 | y Abajo(br). Los márgenes se expresan en las unidades del documento - ver |
||
3064 | cbradney | 689 | las constantes UNIT_<tipo>. |
974 | cbradney | 690 | </translation> |
952 | cbradney | 691 | </message> |
692 | <message> |
||
9729 | cbradney | 693 | <location filename="../plugins/scriptplugin/cmddoc.h" line="185"/> |
3064 | cbradney | 694 | <source>setUnit(type) |
952 | cbradney | 695 | |
696 | Changes the measurement unit of the document. Possible values for "unit" are |
||
3064 | cbradney | 697 | defined as constants UNIT_<type>. |
952 | cbradney | 698 | |
699 | May raise ValueError if an invalid unit is passed. |
||
700 | </source> |
||
3064 | cbradney | 701 | <translation>setUnit(type) |
974 | cbradney | 702 | |
703 | Cambia las unidades de medida del documento. Los valores posibles para "unit" |
||
3064 | cbradney | 704 | son las constantes UNIT_<tipo>. |
974 | cbradney | 705 | |
706 | Puede lanzar una excepción ValueError si se pasa una unidad no válida. |
||
707 | </translation> |
||
952 | cbradney | 708 | </message> |
709 | <message> |
||
9729 | cbradney | 710 | <location filename="../plugins/scriptplugin/cmddoc.h" line="196"/> |
3064 | cbradney | 711 | <source>getUnit() -> integer (Scribus unit constant) |
952 | cbradney | 712 | |
713 | Returns the measurement units of the document. The returned value will be one |
||
714 | of the UNIT_* constants: |
||
715 | UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS. |
||
716 | </source> |
||
3064 | cbradney | 717 | <translation>getUnit() -> integer (constante de unidad de Scribus) |
974 | cbradney | 718 | |
719 | Devuelve las unidades de medida del documento. El valor devuelto será una |
||
720 | de las constantes UNIT_*: |
||
721 | UNIT_INCHES (pulgadas), UNIT_MILLIMETERS (milimetros), |
||
722 | UNIT_PICAS (picas), UNIT_POINTS (puntos). |
||
723 | </translation> |
||
952 | cbradney | 724 | </message> |
725 | <message> |
||
9729 | cbradney | 726 | <location filename="../plugins/scriptplugin/cmddoc.h" line="206"/> |
3064 | cbradney | 727 | <source>loadStylesFromFile("filename") |
952 | cbradney | 728 | |
729 | Loads paragraph styles from the Scribus document at "filename" into the |
||
730 | current document. |
||
731 | </source> |
||
3064 | cbradney | 732 | <translation>loadStylesFromFile("filename") |
974 | cbradney | 733 | |
734 | Carga en el documento actual los estilos de párrafo del documento |
||
735 | de Scribus que se encuentra en "filename". |
||
736 | </translation> |
||
952 | cbradney | 737 | </message> |
738 | <message> |
||
9729 | cbradney | 739 | <location filename="../plugins/scriptplugin/cmddoc.h" line="218"/> |
3064 | cbradney | 740 | <source>setDocType(facingPages, firstPageLeft) |
952 | cbradney | 741 | |
742 | Sets the document type. To get facing pages set the first parameter to |
||
743 | FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead. If you want |
||
744 | to be the first page a left side set the second parameter to FIRSTPAGELEFT, for |
||
745 | a right page use FIRSTPAGERIGHT. |
||
746 | </source> |
||
3064 | cbradney | 747 | <translation>setDocType(facingPages, firstPageLeft) |
974 | cbradney | 748 | |
749 | Establece el tipo de documento. Para que las páginas se muestren enfrentadas |
||
750 | el primer parámetro debe ser FACINGPAGES, para desactivar las páginas |
||
751 | enfrentadas debe ser NOFACINGPAGES. Si se quiere que la primera página esté |
||
752 | a la izquierda el segundo parámetro debe ser FIRSTPAGELEFT, para que esté a |
||
753 | la derecha debe ser FIRSTPAGERIGHT. |
||
754 | </translation> |
||
952 | cbradney | 755 | </message> |
756 | <message> |
||
9729 | cbradney | 757 | <location filename="../plugins/scriptplugin/cmdgetprop.h" line="51"/> |
3064 | cbradney | 758 | <source>getLineColor(["name"]) -> string |
952 | cbradney | 759 | |
760 | Returns the name of the line color of the object "name". |
||
761 | If "name" is not given the currently selected item is used. |
||
762 | </source> |
||
3064 | cbradney | 763 | <translation>getLineColor(["name"]) -> string |
974 | cbradney | 764 | |
765 | Devuelve el nombre del color de línea del objeto "name". |
||
766 | Si no se pasa un nombre, se usa el objeto que esté seleccionado. |
||
767 | </translation> |
||
952 | cbradney | 768 | </message> |
769 | <message> |
||
9729 | cbradney | 770 | <location filename="../plugins/scriptplugin/cmdgetprop.h" line="81"/> |
3064 | cbradney | 771 | <source>getLineWidth(["name"]) -> integer |
952 | cbradney | 772 | |
773 | Returns the line width of the object "name". If "name" |
||
774 | is not given the currently selected Item is used. |
||
775 | </source> |
||
3064 | cbradney | 776 | <translation>getLineWidth(["name"]) -> integer |
974 | cbradney | 777 | |
778 | Devuelve el ancho de línea del objeto "name". |
||
779 | Si no se pasa un nombre, se usa el objeto que esté seleccionado. |
||
780 | </translation> |
||
952 | cbradney | 781 | </message> |
782 | <message> |
||
9729 | cbradney | 783 | <location filename="../plugins/scriptplugin/cmdgetprop.h" line="91"/> |
3064 | cbradney | 784 | <source>getLineShade(["name"]) -> integer |
952 | cbradney | 785 | |
786 | Returns the shading value of the line color of the object "name". |
||
787 | If "name" is not given the currently selected item is used. |
||
788 | </source> |
||
3064 | cbradney | 789 | <translation>getLineShade(["name"]) -> integer |
974 | cbradney | 790 | |
791 | Devuelve la intesnsidad del color de línea del objeto "name". |
||
792 | Si no se pasa un nombre, se usa el objeto que esté seleccionado. |
||
793 | </translation> |
||
952 | cbradney | 794 | </message> |
795 | <message> |
||
9729 | cbradney | 796 | <location filename="../plugins/scriptplugin/cmdgetprop.h" line="102"/> |
3064 | cbradney | 797 | <source>getLineJoin(["name"]) -> integer (see contants) |
952 | cbradney | 798 | |
799 | Returns the line join style of the object "name". If "name" is not given |
||
800 | the currently selected item is used. The join types are: |
||
801 | JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND |
||
802 | </source> |
||
3064 | cbradney | 803 | <translation>getLineJoin(["name"]) -> integer (see contants) |
974 | cbradney | 804 | |
805 | Devuelve el estilo de borde de línea del objeto "name". |
||
806 | Si no se pasa un nombre, se usa el objeto que esté seleccionado. |
||
807 | Los tipos de unión son: |
||
808 | JOIN_BEVEL (biselada), JOIN_MITTER (de inglete), JOIN_ROUND (redondeada) |
||
809 | </translation> |
||
952 | cbradney | 810 | </message> |
811 | <message> |
||
9729 | cbradney | 812 | <location filename="../plugins/scriptplugin/cmdgetprop.h" line="113"/> |
3064 | cbradney | 813 | <source>getLineEnd(["name"]) -> integer (see constants) |
952 | cbradney | 814 | |
815 | Returns the line cap style of the object "name". If "name" is not given the |
||
816 | currently selected item is used. The cap types are: |
||
817 | CAP_FLAT, CAP_ROUND, CAP_SQUARE |
||
818 | </source> |
||
3064 | cbradney | 819 | <translation>getLineEnd(["name"]) -> integer (ver constantes) |
974 | cbradney | 820 | |
821 | Devuelve el estilo de extremo de línea del objeto "name". |
||
822 | Si no se pasa un nombre, se usa el objeto que esté seleccionado. |
||
823 | Los tipos de extremo son: |
||
824 | CAP_FLAT (plano), CAP_ROUND (redondeado), CAP_SQUARE (cuadrado) |
||
825 | </translation> |
||
952 | cbradney | 826 | </message> |
827 | <message> |
||
9729 | cbradney | 828 | <location filename="../plugins/scriptplugin/cmdgetprop.h" line="124"/> |
3064 | cbradney | 829 | <source>getLineStyle(["name"]) -> integer (see constants) |
952 | cbradney | 830 | |
831 | Returns the line style of the object "name". If "name" is not given the |
||
832 | currently selected item is used. Line style constants are: |
||
833 | LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID |
||
834 | </source> |
||
3064 | cbradney | 835 | <translation>getLineStyle(["name"]) -> integer (ver constantes) |
974 | cbradney | 836 | |
837 | Devuelve el estilo de línea del objeto "name". |
||
838 | Si no se pasa un nombre, se usa el objeto que esté seleccionado. |
||
839 | Las constantes de estilos de línea son: |
||
840 | LINE_DASH (a trazos), LINE_DASHDOT (raya punto), |
||
841 | LINE_DASHDOTDOT (raya punto punto), LINE_DOT (a puntos), |
||
842 | LINE_SOLID (sólida) |
||
843 | </translation> |
||
952 | cbradney | 844 | </message> |
845 | <message> |
||
9729 | cbradney | 846 | <location filename="../plugins/scriptplugin/cmdgetprop.h" line="134"/> |
3064 | cbradney | 847 | <source>getFillShade(["name"]) -> integer |
952 | cbradney | 848 | |
849 | Returns the shading value of the fill color of the object "name". |
||
850 | If "name" is not given the currently selected item is used. |
||
851 | </source> |
||
3064 | cbradney | 852 | <translation>getFillShade(["name"]) -> integer |
974 | cbradney | 853 | |
854 | Devuelve el valor de saturación del color de relleno del objeto "name". |
||
855 | Si no se pasa un nombre, se usa el objeto que esté seleccionado. |
||
856 | </translation> |
||
952 | cbradney | 857 | </message> |
858 | <message> |
||
9729 | cbradney | 859 | <location filename="../plugins/scriptplugin/cmdgetprop.h" line="145"/> |
3064 | cbradney | 860 | <source>getCornerRadius(["name"]) -> integer |
952 | cbradney | 861 | |
862 | Returns the corner radius of the object "name". The radius is |
||
863 | expressed in points. If "name" is not given the currently |
||
864 | selected item is used. |
||
865 | </source> |
||
7508 | cbradney | 866 | <translation type="unfinished">getCornerRadius(["name"]) -> integer |
974 | cbradney | 867 | |
868 | Devuelve el radio de las esquinas del objeto "name". |
||
869 | El radio se expresa en puntos. |
||
870 | Si no se pasa un nombre, se usa el objeto que esté seleccionado. |
||
871 | </translation> |
||
952 | cbradney | 872 | </message> |
873 | <message> |
||
9729 | cbradney | 874 | <location filename="../plugins/scriptplugin/cmdgetprop.h" line="155"/> |
3064 | cbradney | 875 | <source>getImageScale(["name"]) -> (x,y) |
952 | cbradney | 876 | |
877 | Returns a (x, y) tuple containing the scaling values of the image frame |
||
878 | "name". If "name" is not given the currently selected item is used. |
||
879 | </source> |
||
3064 | cbradney | 880 | <translation>getImageScale(["name"]) -> (x,y) |
974 | cbradney | 881 | |
882 | Devuelve un par (x, y) que contiene los valores de escalado del |
||
883 | marco de imagen "name". |
||
884 | Si no se pasa un nombre, se usa el objeto que esté seleccionado. |
||
885 | </translation> |
||
952 | cbradney | 886 | </message> |
887 | <message> |
||
9729 | cbradney | 888 | <location filename="../plugins/scriptplugin/cmdgetprop.h" line="165"/> |
3064 | cbradney | 889 | <source>getImageName(["name"]) -> string |
952 | cbradney | 890 | |
891 | Returns the filename for the image in the image frame. If "name" is not |
||
892 | given the currently selected item is used. |
||
893 | </source> |
||
3064 | cbradney | 894 | <translation>getImageName(["name"]) -> string |
974 | cbradney | 895 | |
896 | Devuelve el nombre de archivo de la imagen en el marco de imagen "name". |
||
897 | Si no se pasa un nombre, se usa el objeto que esté seleccionado. |
||
898 | </translation> |
||
952 | cbradney | 899 | </message> |
900 | <message> |
||
9729 | cbradney | 901 | <location filename="../plugins/scriptplugin/cmdgetprop.h" line="177"/> |
3064 | cbradney | 902 | <source>getPosition(["name"]) -> (x,y) |
952 | cbradney | 903 | |
904 | Returns a (x, y) tuple with the position of the object "name". |
||
905 | If "name" is not given the currently selected item is used. |
||
906 | The position is expressed in the actual measurement unit of the document |
||
3064 | cbradney | 907 | - see UNIT_<type> for reference. |
952 | cbradney | 908 | </source> |
7508 | cbradney | 909 | <translation type="unfinished">getPosition(["name"]) -> (x,y) |
974 | cbradney | 910 | |
911 | Devuelve un par (x, y) con la posición del objeto "name". |
||
912 | Si no se pasa un nombre, se usa el objeto que esté seleccionado. |
||
913 | Las posiciones están expresadas en las unidades actuales del documento |
||
3064 | cbradney | 914 | - ver UNIT_<tipo> para más referencias. |
974 | cbradney | 915 | </translation> |
952 | cbradney | 916 | </message> |
917 | <message> |
||
9729 | cbradney | 918 | <location filename="../plugins/scriptplugin/cmdgetprop.h" line="189"/> |
3064 | cbradney | 919 | <source>getSize(["name"]) -> (width,height) |
952 | cbradney | 920 | |
921 | Returns a (width, height) tuple with the size of the object "name". |
||
922 | If "name" is not given the currently selected item is used. The size is |
||
3064 | cbradney | 923 | expressed in the current measurement unit of the document - see UNIT_<type> |
952 | cbradney | 924 | for reference. |
925 | </source> |
||
3064 | cbradney | 926 | <translation>getSize(["name"]) -> (width,height) |
974 | cbradney | 927 | |
928 | Devuelve un par (ancho, alto) con el tamaño del objeto "name". |
||
929 | Si no se pasa un nombre, se usa el objeto que esté seleccionado. |
||
930 | El tamaño está expresado en las unidades actuales del documento |
||
3064 | cbradney | 931 | - ver UNIT_<tipo> para más referencias. |
974 | cbradney | 932 | </translation> |
952 | cbradney | 933 | </message> |
934 | <message> |
||
9729 | cbradney | 935 | <location filename="../plugins/scriptplugin/cmdgetprop.h" line="200"/> |
3064 | cbradney | 936 | <source>getRotation(["name"]) -> integer |
952 | cbradney | 937 | |
938 | Returns the rotation of the object "name". The value is expressed in degrees, |
||
939 | and clockwise is positive. If "name" is not given the currently selected item |
||
940 | is used. |
||
941 | </source> |
||
3064 | cbradney | 942 | <translation>getRotation(["name"]) -> integer |
974 | cbradney | 943 | |
944 | Devuelve la rotación del objeto "name". El valor está expresado |
||
945 | en grados y si es positivo es en el sentido de las agujas del reloj. |
||
946 | Si no se pasa un nombre, se usa el objeto que esté seleccionado. |
||
947 | </translation> |
||
952 | cbradney | 948 | </message> |
949 | <message> |
||
9729 | cbradney | 950 | <location filename="../plugins/scriptplugin/cmdgetprop.h" line="209"/> |
3064 | cbradney | 951 | <source>getAllObjects() -> list |
952 | cbradney | 952 | |
953 | Returns a list containing the names of all objects on the current page. |
||
954 | </source> |
||
3064 | cbradney | 955 | <translation>getAllObjects() -> list |
974 | cbradney | 956 | |
957 | Devuelve una lista que contiene los nombres de todos los objetos |
||
958 | de la página actual. |
||
959 | </translation> |
||
952 | cbradney | 960 | </message> |
961 | <message> |
||
9729 | cbradney | 962 | <location filename="../plugins/scriptplugin/cmdmani.h" line="35"/> |
3064 | cbradney | 963 | <source>moveObjectAbs(x, y [, "name"]) |
952 | cbradney | 964 | |
965 | Moves the object "name" to a new location. The coordinates are expressed in |
||
966 | the current measurement unit of the document (see UNIT constants). If "name" |
||
967 | is not given the currently selected item is used. If the object "name" |
||
968 | belongs to a group, the whole group is moved. |
||
969 | </source> |
||
3064 | cbradney | 970 | <translation>moveObjectAbs(x, y [, "name"]) |
974 | cbradney | 971 | |
972 | Mueve el objeto "name" a una nueva posición. Las coordenadas están |
||
973 | expresadas en las unidades actuales del documento (ver constantes UNIT). |
||
974 | Si no se pasa un nombre, se usa el objeto que esté seleccionado. |
||
975 | Si el objeto a mover pertenece a un grupo, se mueve todo el grupo. |
||
976 | </translation> |
||
952 | cbradney | 977 | </message> |
978 | <message> |
||
9729 | cbradney | 979 | <location filename="../plugins/scriptplugin/cmdmani.h" line="48"/> |
3064 | cbradney | 980 | <source>rotateObject(rot [, "name"]) |
952 | cbradney | 981 | |
982 | Rotates the object "name" by "rot" degrees relatively. The object is |
||
983 | rotated by the vertex that is currently selected as the rotation point - by |
||
984 | default, the top left vertext at zero rotation. Positive values mean counter |
||
985 | clockwise rotation when the default rotation point is used. If "name" is not |
||
986 | given the currently selected item is used. |
||
987 | </source> |
||
3064 | cbradney | 988 | <translation>rotateObject(rot [, "name"]) |
974 | cbradney | 989 | |
990 | Rota el objeto "name" "rot" grados de forma relativa. El objeto se rota sobre |
||
991 | el objeto que está seleccionado como punto de rotación - por defecto es |
||
992 | el vértice superior izquierdo con cero grados de rotación. Los valores positivos |
||
993 | significan rotación en sentido contrario a las agujas del reloj cuando se usa el |
||
994 | punto de rotación por defecto. |
||
995 | Si no se pasa un nombre, se usa el objeto que esté seleccionado. |
||
996 | </translation> |
||
952 | cbradney | 997 | </message> |
998 | <message> |
||
9729 | cbradney | 999 | <location filename="../plugins/scriptplugin/cmdmani.h" line="59"/> |
3064 | cbradney | 1000 | <source>rotateObjectAbs(rot [, "name"]) |
952 | cbradney | 1001 | |
1002 | Sets the rotation of the object "name" to "rot". Positive values |
||
1003 | mean counter clockwise rotation. If "name" is not given the currently |
||
1004 | selected item is used. |
||
1005 | </source> |
||
7508 | cbradney | 1006 | <translation type="unfinished">rotateObjectAbs(rot [, "name"]) |
974 | cbradney | 1007 | |
1008 | Establece la rotación del objeto "name" a "rot". Los valores positivos |
||
1009 | significan rotación en sentido contrario a las agujas del reloj. |
||
1010 | Si no se pasa un nombre, se usa el objeto que esté seleccionado. |
||
1011 | </translation> |
||
952 | cbradney | 1012 | </message> |
1013 | <message> |
||
9729 | cbradney | 1014 | <location filename="../plugins/scriptplugin/cmdmani.h" line="69"/> |
3064 | cbradney | 1015 | <source>sizeObject(width, height [, "name"]) |
952 | cbradney | 1016 | |
1017 | Resizes the object "name" to the given width and height. If "name" |
||
1018 | is not given the currently selected item is used. |
||
1019 | </source> |
||
3064 | cbradney | 1020 | <translation>sizeObject(width, height [, "name"]) |
974 | cbradney | 1021 | |
1022 | Redimensiona el objeto "name" a la anchura (width) y altura (height) dados. |
||
1023 | Si no se pasa un nombre, se usa el objeto que esté seleccionado. |
||
1024 | </translation> |
||
952 | cbradney | 1025 | </message> |
1026 | <message> |
||
9729 | cbradney | 1027 | <location filename="../plugins/scriptplugin/cmdmani.h" line="80"/> |
3064 | cbradney | 1028 | <source>getSelectedObject([nr]) -> string |
952 | cbradney | 1029 | |
1030 | Returns the name of the selected object. "nr" if given indicates the number |
||
1031 | of the selected object, e.g. 0 means the first selected object, 1 means the |
||
1032 | second selected Object and so on. |
||
1033 | </source> |
||
3064 | cbradney | 1034 | <translation>getSelectedObject([nr]) -> string |
974 | cbradney | 1035 | |
1036 | Devuelve el nombre del objeto seleccionado. "nr", si se especifica, indica |
||
1037 | el número del objeto seleccionado, p. ej. 0 significa el primer objeto |
||
1038 | seleccionado, 1 el segundo objeto seleccionado, etc. |
||
1039 | </translation> |
||
952 | cbradney | 1040 | </message> |
1041 | <message> |
||
9729 | cbradney | 1042 | <location filename="../plugins/scriptplugin/cmdmani.h" line="89"/> |
3064 | cbradney | 1043 | <source>selectionCount() -> integer |
952 | cbradney | 1044 | |
1045 | Returns the number of selected objects. |
||
1046 | </source> |
||
3064 | cbradney | 1047 | <translation>selectionCount() -> integer |
974 | cbradney | 1048 | |
1049 | Devuelve el número de objetos seleccionados. |
||
1050 | </translation> |
||
952 | cbradney | 1051 | </message> |
1052 | <message> |
||
9729 | cbradney | 1053 | <location filename="../plugins/scriptplugin/cmdmani.h" line="98"/> |
3064 | cbradney | 1054 | <source>selectObject("name") |
952 | cbradney | 1055 | |
1056 | Selects the object with the given "name". |
||
1057 | </source> |
||
3064 | cbradney | 1058 | <translation>selectObject("name") |
974 | cbradney | 1059 | |
1060 | Selecciona el objeto con el nombre "name". |
||
1061 | </translation> |
||
952 | cbradney | 1062 | </message> |
1063 | <message> |
||
9729 | cbradney | 1064 | <location filename="../plugins/scriptplugin/cmdmani.h" line="107"/> |
3064 | cbradney | 1065 | <source>deselectAll() |
952 | cbradney | 1066 | |
1067 | Deselects all objects in the whole document. |
||
1068 | </source> |
||
3064 | cbradney | 1069 | <translation>deselectAll() |
974 | cbradney | 1070 | |
1071 | Deselecciona todos los objetos del documento entero. |
||
1072 | </translation> |
||
952 | cbradney | 1073 | </message> |
1074 | <message> |
||
9729 | cbradney | 1075 | <location filename="../plugins/scriptplugin/cmdmani.h" line="118"/> |
3064 | cbradney | 1076 | <source>groupObjects(list) |
952 | cbradney | 1077 | |
1078 | Groups the objects named in "list" together. "list" must contain the names |
||
1079 | of the objects to be grouped. If "list" is not given the currently selected |
||
1080 | items are used. |
||
1081 | </source> |
||
3064 | cbradney | 1082 | <translation>groupObjects(list) |
974 | cbradney | 1083 | |
1084 | Agrupa los objetos nombrados en "list". "list" debe contener los nombres |
||
1085 | de los objetos a ser agrupados. |
||
1086 | Si no se pasa una lista se usan los objetos que estén seleccionados. |
||
1087 | </translation> |
||
952 | cbradney | 1088 | </message> |
1089 | <message> |
||
9729 | cbradney | 1090 | <location filename="../plugins/scriptplugin/cmdmani.h" line="126"/> |
3064 | cbradney | 1091 | <source>unGroupObjects("name") |
952 | cbradney | 1092 | |
1093 | Destructs the group the object "name" belongs to.If "name" is not given the currently selected item is used.</source> |
||
3064 | cbradney | 1094 | <translation>unGroupObjects("name") |
974 | cbradney | 1095 | |
1096 | Destruye el grupo al que pertenece el objeto "name". |
||
1097 | Si no se pasa un nombre, se usa el objeto que esté seleccionado. |
||
1098 | </translation> |
||
952 | cbradney | 1099 | </message> |
1100 | <message> |
||
9729 | cbradney | 1101 | <location filename="../plugins/scriptplugin/cmdmani.h" line="141"/> |
3064 | cbradney | 1102 | <source>scaleGroup(factor [,"name"]) |
952 | cbradney | 1103 | |
1104 | Scales the group the object "name" belongs to. Values greater than 1 enlarge |
||
1105 | the group, values smaller than 1 make the group smaller e.g a value of 0.5 |
||
1106 | scales the group to 50 % of its original size, a value of 1.5 scales the group |
||
1107 | to 150 % of its original size. The value for "factor" must be greater than |
||
1108 | 0. If "name" is not given the currently selected item is used. |
||
1109 | |||
1110 | May raise ValueError if an invalid scale factor is passed. |
||
1111 | </source> |
||
3064 | cbradney | 1112 | <translation>scaleGroup(factor [,"name"]) |
974 | cbradney | 1113 | |
1114 | Escala el grupo al que pertenece el objeto "name". Los valores mayor de 1 |
||
1115 | agrandan el grupo, los menores de 1 lo hacen más pequeño, p. ej. un valor |
||
1116 | de 0.5 escala el grupo al 50% de su tamaño original, un valor de 1.5 escala |
||
1117 | el grupo a 150% de su tamaño original. |
||
1118 | El valor de "factor" debe ser mayor de cero. |
||
1119 | Si no se pasa un nombre, se usa el objeto que esté seleccionado. |
||
1120 | |||
1121 | Puede lanzar la excepción ValueError si se pasa un factor de escala no válido. |
||
1122 | </translation> |
||
952 | cbradney | 1123 | </message> |
1124 | <message> |
||
9729 | cbradney | 1125 | <location filename="../plugins/scriptplugin/cmdmani.h" line="153"/> |
3064 | cbradney | 1126 | <source>loadImage("filename" [, "name"]) |
952 | cbradney | 1127 | |
1128 | Loads the picture "picture" into the image frame "name". If "name" is |
||
1129 | not given the currently selected item is used. |
||
1130 | |||
1131 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
1132 | </source> |
||
3064 | cbradney | 1133 | <translation>loadImage("filename" [, "name"]) |
974 | cbradney | 1134 | |
1135 | Carga la imagen "filename" en el marco de imagen "name". |
||
1136 | Si no se pasa un nombre, se usa el objeto que esté seleccionado. |
||
1137 | |||
1138 | Puede lanzar la excepción WrongFrameTypeError si el marco de destino |
||
1139 | no es un marco de imagen. |
||
1140 | </translation> |
||
952 | cbradney | 1141 | </message> |
1142 | <message> |
||
9729 | cbradney | 1143 | <location filename="../plugins/scriptplugin/cmdmani.h" line="166"/> |
3064 | cbradney | 1144 | <source>scaleImage(x, y [, "name"]) |
952 | cbradney | 1145 | |
1146 | Sets the scaling factors of the picture in the image frame "name". |
||
1147 | If "name" is not given the currently selected item is used. A number of 1 |
||
1148 | means 100 %. |
||
1149 | |||
1150 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
1151 | </source> |
||
3064 | cbradney | 1152 | <translation>scaleImage(x, y [, "name"]) |
974 | cbradney | 1153 | |
1154 | Establece los factores de escalado de la imagen en el marco de |
||
1155 | imagen "name". Un valor de 1 significa 100%. |
||
1156 | Si no se pasa un nombre, se usa el objeto que esté seleccionado. |
||
1157 | |||
1158 | Puede lanzar la excepción WrongFrameTypeError si el marco de destino |
||
1159 | no es un marco de imagen. |
||
1160 | </translation> |
||
952 | cbradney | 1161 | </message> |
1162 | <message> |
||
9729 | cbradney | 1163 | <location filename="../plugins/scriptplugin/cmdmani.h" line="177"/> |
3064 | cbradney | 1164 | <source>lockObject(["name"]) -> bool |
952 | cbradney | 1165 | |
3064 | cbradney | 1166 | Locks the object "name" if it's unlocked or unlock it if it's locked. |
952 | cbradney | 1167 | If "name" is not given the currently selected item is used. Returns true |
1168 | if locked. |
||
1169 | </source> |
||
3064 | cbradney | 1170 | <translation>lockObject(["name"]) -> bool |
974 | cbradney | 1171 | |
1172 | Bloquea el objeto "name" si está desbloqueado o lo desbloquea en |
||
1173 | caso contrario. Devuelve true si se bloquea. |
||
1174 | Si no se pasa un nombre, se usa el objeto que esté seleccionado. |
||
1175 | </translation> |
||
952 | cbradney | 1176 | </message> |
1177 | <message> |
||
9729 | cbradney | 1178 | <location filename="../plugins/scriptplugin/cmdmani.h" line="187"/> |
3064 | cbradney | 1179 | <source>isLocked(["name"]) -> bool |
952 | cbradney | 1180 | |
1181 | Returns true if is the object "name" locked. If "name" is not given the |
||
1182 | currently selected item is used. |
||
1183 | </source> |
||
3064 | cbradney | 1184 | <translation>isLocked(["name"]) -> bool |
974 | cbradney | 1185 | |
1186 | Devuelve true si el objeto "name" está bloqueado. |
||
1187 | Si no se pasa un nombre, se usa el objeto que esté seleccionado. |
||
1188 | </translation> |
||
952 | cbradney | 1189 | </message> |
1190 | <message> |
||
9729 | cbradney | 1191 | <location filename="../plugins/scriptplugin/cmdmisc.h" line="33"/> |
3064 | cbradney | 1192 | <source>getFontNames() -> list |
952 | cbradney | 1193 | |
1194 | Returns a list with the names of all available fonts. |
||
1195 | </source> |
||
3064 | cbradney | 1196 | <translation>getFontNames() -> list |
974 | cbradney | 1197 | |
1198 | Devuelve una lista con los nombres de todas las fuentes disponibles. |
||
1199 | </translation> |
||
952 | cbradney | 1200 | </message> |
1201 | <message> |
||
9729 | cbradney | 1202 | <location filename="../plugins/scriptplugin/cmdmisc.h" line="43"/> |
3064 | cbradney | 1203 | <source>getXFontNames() -> list of tuples |
952 | cbradney | 1204 | |
3064 | cbradney | 1205 | Returns a larger font info. It's a list of the tuples with: |
952 | cbradney | 1206 | [ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ] |
1207 | </source> |
||
3064 | cbradney | 1208 | <translation>getXFontNames() -> list of tuples |
974 | cbradney | 1209 | |
1210 | Da una mayor información sobre las fuentes. Devuelve una lista de vectores con: |
||
1211 | [ (nombre de Scribus, Familia, Nombre real, empotrar subconjunto (1|0), |
||
1212 | empotrar PS (1|0), archivo de fuente), (...), ...] |
||
1213 | </translation> |
||
952 | cbradney | 1214 | </message> |
1215 | <message> |
||
9729 | cbradney | 1216 | <location filename="../plugins/scriptplugin/cmdmisc.h" line="71"/> |
3064 | cbradney | 1217 | <source>getLayers() -> list |
952 | cbradney | 1218 | |
1219 | Returns a list with the names of all defined layers. |
||
1220 | </source> |
||
3064 | cbradney | 1221 | <translation>getLayers() -> list |
974 | cbradney | 1222 | |
1223 | Devuelve una lista con los nombres de todas las capas definidas. |
||
1224 | </translation> |
||
952 | cbradney | 1225 | </message> |
1226 | <message> |
||
9729 | cbradney | 1227 | <location filename="../plugins/scriptplugin/cmdmisc.h" line="83"/> |
3064 | cbradney | 1228 | <source>setActiveLayer("name") |
952 | cbradney | 1229 | |
1230 | Sets the active layer to the layer named "name". |
||
1231 | |||
3064 | cbradney | 1232 | May raise NotFoundError if the layer can't be found. |
1233 | May raise ValueError if the layer name isn't acceptable. |
||
952 | cbradney | 1234 | </source> |
3064 | cbradney | 1235 | <translation>setActiveLayer("name") |
974 | cbradney | 1236 | |
1237 | Establece la capa activa a la capa con nombre "name". |
||
1238 | |||
1239 | Puede lanzar la excepción NotFoundError si no se puede encontrar la capa. |
||
1240 | Puede lanzar la excepción ValueError si la el nombre de la capa no es válido. |
||
1241 | </translation> |
||
952 | cbradney | 1242 | </message> |
1243 | <message> |
||
9729 | cbradney | 1244 | <location filename="../plugins/scriptplugin/cmdmisc.h" line="92"/> |
3064 | cbradney | 1245 | <source>getActiveLayer() -> string |
952 | cbradney | 1246 | |
1247 | Returns the name of the current active layer. |
||
1248 | </source> |
||
3064 | cbradney | 1249 | <translation>getActiveLayer() -> string |
974 | cbradney | 1250 | |
1251 | Devuelve el nombre de la capa activa actual. |
||
1252 | </translation> |
||
952 | cbradney | 1253 | </message> |
1254 | <message> |
||
9729 | cbradney | 1255 | <location filename="../plugins/scriptplugin/cmdmisc.h" line="105"/> |
3064 | cbradney | 1256 | <source>sentToLayer("layer" [, "name"]) |
952 | cbradney | 1257 | |
1258 | Sends the object "name" to the layer "layer". The layer must exist. |
||
1259 | If "name" is not given the currently selected item is used. |
||
1260 | |||
3064 | cbradney | 1261 | May raise NotFoundError if the layer can't be found. |
1262 | May raise ValueError if the layer name isn't acceptable. |
||
952 | cbradney | 1263 | </source> |
3064 | cbradney | 1264 | <translation>sentToLayer("layer" [, "name"]) |
974 | cbradney | 1265 | |
1266 | Envía el objeto "name" a la capa "layer". La capa debe existir. |
||
1267 | Si no se pasa un nombre, se usa el objeto que esté seleccionado. |
||
1268 | |||
1269 | Puede lanzar la excepción NotFoundError si no se puede encontrar la capa. |
||
1270 | Puede lanzar la excepción ValueError si el nombre de la capa no es válido. |
||
1271 | </translation> |
||
952 | cbradney | 1272 | </message> |
1273 | <message> |
||
9729 | cbradney | 1274 | <location filename="../plugins/scriptplugin/cmdmisc.h" line="118"/> |
3064 | cbradney | 1275 | <source>setLayerVisible("layer", visible) |
952 | cbradney | 1276 | |
1277 | Sets the layer "layer" to be visible or not. If is the visible set to false |
||
1278 | the layer is invisible. |
||
1279 | |||
3064 | cbradney | 1280 | May raise NotFoundError if the layer can't be found. |
1281 | May raise ValueError if the layer name isn't acceptable. |
||
952 | cbradney | 1282 | </source> |
3064 | cbradney | 1283 | <translation>setLayerVisible("layer", visible) |
974 | cbradney | 1284 | |
1285 | Establece si la capa "layer" es visible o no. |
||
1286 | Si "visible" es false la capa será invisible. |
||
1287 | |||
1288 | Puede lanzar la excepción NotFoundError si no se puede encontrar la capa. |
||
1289 | Puede lanzar la excepción ValueError si el nombre de la capa no es válido. |
||
1290 | </translation> |
||
952 | cbradney | 1291 | </message> |
1292 | <message> |
||
9729 | cbradney | 1293 | <location filename="" line="136965632"/> |
3064 | cbradney | 1294 | <source>setLayerPrintable("layer", printable) |
952 | cbradney | 1295 | |
1296 | Sets the layer "layer" to be printable or not. If is the printable set to |
||
3064 | cbradney | 1297 | false the layer won't be printed. |
952 | cbradney | 1298 | |
3064 | cbradney | 1299 | May raise NotFoundError if the layer can't be found. |
1300 | May raise ValueError if the layer name isn't acceptable. |
||
952 | cbradney | 1301 | </source> |
6261 | cbradney | 1302 | <translation type="obsolete">setLayerPrintable("layer", printable) |
974 | cbradney | 1303 | |
1304 | Establece si la capa "layer" es imprimible o no. |
||
1305 | Si "printable" es false la capa no se imprimirá. |
||
1306 | |||
1307 | Puede lanzar la excepción NotFoundError si no se puede encontrar la capa. |
||
1308 | Puede lanzar la excepción ValueError si el nombre de la capa no es válido. |
||
1309 | </translation> |
||
952 | cbradney | 1310 | </message> |
1311 | <message> |
||
9729 | cbradney | 1312 | <location filename="../plugins/scriptplugin/cmdmisc.h" line="300"/> |
3064 | cbradney | 1313 | <source>deleteLayer("layer") |
952 | cbradney | 1314 | |
3064 | cbradney | 1315 | Deletes the layer with the name "layer". Nothing happens if the layer doesn't |
1316 | exists or if it's the only layer in the document. |
||
952 | cbradney | 1317 | |
3064 | cbradney | 1318 | May raise NotFoundError if the layer can't be found. |
1319 | May raise ValueError if the layer name isn't acceptable. |
||
952 | cbradney | 1320 | </source> |
3064 | cbradney | 1321 | <translation>deleteLayer("layer") |
974 | cbradney | 1322 | |
1323 | Borra la capa con el nombre "layer". No ocurre nada si la capa no existe o |
||
1324 | si es la única capa del documento. |
||
1325 | |||
1326 | Puede lanzar la excepción NotFoundError si no se puede encontrar la capa. |
||
1327 | Puede lanzar la excepción ValueError si el nombre de la capa no es válido. |
||
1328 | </translation> |
||
952 | cbradney | 1329 | </message> |
1330 | <message> |
||
9729 | cbradney | 1331 | <location filename="../plugins/scriptplugin/cmdmisc.h" line="311"/> |
3064 | cbradney | 1332 | <source>createLayer(layer) |
952 | cbradney | 1333 | |
1334 | Creates a new layer with the name "name". |
||
1335 | |||
3064 | cbradney | 1336 | May raise ValueError if the layer name isn't acceptable. |
952 | cbradney | 1337 | </source> |
3064 | cbradney | 1338 | <translation>createLayer(layer) |
974 | cbradney | 1339 | |
1340 | Crea una nueva capa co el nombre "name". |
||
1341 | |||
1342 | Puede lanzar la excepción ValueError si el nombre de la capa no es válido. |
||
1343 | </translation> |
||
952 | cbradney | 1344 | </message> |
1345 | <message> |
||
9729 | cbradney | 1346 | <location filename="../plugins/scriptplugin/cmdmisc.h" line="320"/> |
3064 | cbradney | 1347 | <source>getGuiLanguage() -> string |
952 | cbradney | 1348 | |
1349 | Returns a string with the -lang value. |
||
1350 | </source> |
||
3064 | cbradney | 1351 | <translation>getGuiLanguage() -> string |
974 | cbradney | 1352 | |
1353 | Devuelve una cadena con el código del idioma usado. |
||
1354 | </translation> |
||
952 | cbradney | 1355 | </message> |
1356 | <message> |
||
9729 | cbradney | 1357 | <location filename="../plugins/scriptplugin/cmdobj.h" line="43"/> |
3064 | cbradney | 1358 | <source>createEllipse(x, y, width, height, ["name"]) -> string |
952 | cbradney | 1359 | |
1360 | Creates a new ellipse on the current page and returns its name. |
||
1361 | The coordinates are given in the current measurement units of the document |
||
1362 | (see UNIT constants). "name" should be a unique identifier for the object |
||
1363 | because you need this name for further referencing of that object. If "name" |
||
1364 | is not given Scribus will create one for you. |
||
1365 | |||
3064 | cbradney | 1366 | May raise NameExistsError if you explicitly pass a name that's already used. |
952 | cbradney | 1367 | </source> |
3064 | cbradney | 1368 | <translation>createEllipse(x, y, width, height, ["name"]) -> string |
974 | cbradney | 1369 | |
1370 | Crea una elipse en la página actual y devuelve su nombre. |
||
1371 | Las coordenadas x, y, anchura y altura se expresan en las unidades |
||
1372 | actuales del documento (ver constantes UNIT). "name" debería ser |
||
1373 | un identificador único para el objeto porque se referenciará con ese |
||
1374 | nombre después. Si no se le da un nombre, Scribus creará uno. |
||
1375 | |||
1376 | Puede lanzar la excepción NameExistsError si se pasa un nombre que |
||
1377 | ya se está usando. |
||
1378 | </translation> |
||
952 | cbradney | 1379 | </message> |
1380 | <message> |
||
9729 | cbradney | 1381 | <location filename="../plugins/scriptplugin/cmdobj.h" line="60"/> |
3064 | cbradney | 1382 | <source>createImage(x, y, width, height, ["name"]) -> string |
952 | cbradney | 1383 | |
1384 | Creates a new picture frame on the current page and returns its name. The |
||
1385 | coordinates are given in the current measurement units of the document. |
||
1386 | "name" should be a unique identifier for the object because you need this |
||
1387 | name for further access to that object. If "name" is not given Scribus will |
||
1388 | create one for you. |
||
1389 | |||
3064 | cbradney | 1390 | May raise NameExistsError if you explicitly pass a name that's already used. |
952 | cbradney | 1391 | </source> |
3064 | cbradney | 1392 | <translation>createImage(x, y, width, height, ["name"]) -> string |
974 | cbradney | 1393 | |
1394 | Crea un marco de imagen en la página actual y devuelve su nombre. |
||
1395 | Las coordenadas x, y, anchura y altura se expresan en las unidades |
||
1396 | actuales del documento. "name" debería ser un identificador único |
||
1397 | para el objeto porque se referenciará con ese nombre después. |
||
1398 | Si no se le da un nombre, Scribus creará uno. |
||
1399 | |||
1400 | Puede lanzar la excepción NameExistsError si se pasa un nombre que |
||
1401 | ya se está usando. |
||
1402 | </translation> |
||
952 | cbradney | 1403 | </message> |
1404 | <message> |
||
9729 | cbradney | 1405 | <location filename="../plugins/scriptplugin/cmdobj.h" line="75"/> |
3064 | cbradney | 1406 | <source>createText(x, y, width, height, ["name"]) -> string |
952 | cbradney | 1407 | |
1408 | Creates a new text frame on the actual page and returns its name. |
||
1409 | The coordinates are given in the actual measurement unit of the document (see |
||
1410 | UNIT constants). "name" should be a unique identifier for the object because |
||
1411 | you need this name for further referencing of that object. If "name" is not |
||
1412 | given Scribus will create one for you. |
||
1413 | |||
3064 | cbradney | 1414 | May raise NameExistsError if you explicitly pass a name that's already used. |
952 | cbradney | 1415 | </source> |
3064 | cbradney | 1416 | <translation>createText(x, y, width, height, ["name"]) -> string |
974 | cbradney | 1417 | |
1418 | Crea un marco de texto en la página actual y devuelve su nombre. |
||
1419 | Las coordenadas x, y, anchura y altura se expresan en las unidades |
||
1420 | actuales del documento (ver constantes UNIT). "name" debería ser |
||
1421 | un identificador único para el objeto porque se referenciará con ese |
||
1422 | nombre después. Si no se le da un nombre, Scribus creará uno. |
||
1423 | |||
1424 | Puede lanzar la excepción NameExistsError si se pasa un nombre que |
||
1425 | ya se está usando. |
||
1426 | </translation> |
||
952 | cbradney | 1427 | </message> |
1428 | <message> |
||
9729 | cbradney | 1429 | <location filename="../plugins/scriptplugin/cmdobj.h" line="90"/> |
3064 | cbradney | 1430 | <source>createLine(x1, y1, x2, y2, ["name"]) -> string |
952 | cbradney | 1431 | |
1432 | Creates a new line from the point(x1, y1) to the point(x2, y2) and returns |
||
1433 | its name. The coordinates are given in the current measurement unit of the |
||
1434 | document (see UNIT constants). "name" should be a unique identifier for the |
||
1435 | object because you need this name for further access to that object. If |
||
1436 | "name" is not given Scribus will create one for you. |
||
1437 | |||
3064 | cbradney | 1438 | May raise NameExistsError if you explicitly pass a name that's already used. |
952 | cbradney | 1439 | </source> |
3064 | cbradney | 1440 | <translation>createLine(x1, y1, x2, y2, ["name"]) -> string |
974 | cbradney | 1441 | |
1442 | Crea una línea del punto (x1, y1) al punto (x2, y2) y devuelve su |
||
1443 | nombre. Las coordenadas se expresan en las unidades actuales |
||
1444 | del documento (ver constantes UNIT). "name" debería ser un |
||
1445 | identificador único para el objeto porque se referenciará con ese |
||
1446 | nombre después. Si no se le da un nombre, Scribus creará uno. |
||
1447 | |||
1448 | Puede lanzar la excepción NameExistsError si se pasa un nombre que |
||
1449 | ya se está usando. |
||
1450 | </translation> |
||
952 | cbradney | 1451 | </message> |
1452 | <message> |
||
9729 | cbradney | 1453 | <location filename="../plugins/scriptplugin/cmdobj.h" line="108"/> |
3064 | cbradney | 1454 | <source>createPolyLine(list, ["name"]) -> string |
952 | cbradney | 1455 | |
1456 | Creates a new polyline and returns its name. The points for the polyline are |
||
1457 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
1458 | The coordinates are given in the current measurement units of the document (see |
||
1459 | UNIT constants). "name" should be a unique identifier for the object because |
||
1460 | you need this name for further access to that object. If "name" is not given |
||
1461 | Scribus will create one for you. |
||
1462 | |||
3064 | cbradney | 1463 | May raise NameExistsError if you explicitly pass a name that's already used. |
952 | cbradney | 1464 | May raise ValueError if an insufficient number of points is passed or if |
3064 | cbradney | 1465 | the number of values passed don't group into points without leftovers. |
952 | cbradney | 1466 | </source> |
3064 | cbradney | 1467 | <translation>createPolyLine(list, ["name"]) -> string |
974 | cbradney | 1468 | |
1469 | Crea una polilínea y devuelve su nombre. Los puntos de la polilínea |
||
1470 | se almacenan en la lista "list" en el orden siguiente: [x1, y1, x2, y2, ...xn, yn]. |
||
1471 | Las coordenadas se expresan en las unidades actuales del documento |
||
1472 | (ver constantes UNIT). "name" debería ser un identificador único para el |
||
1473 | objeto porque se referenciará con ese nombre después. Si no se le da |
||
1474 | un nombre, Scribus creará uno. |
||
1475 | |||
1476 | Puede lanzar la excepción NameExistsError si se pasa un nombre que |
||
1477 | ya se está usando. |
||
1478 | Puede lanzar la excepción ValueError si se pasa un número de puntos |
||
1479 | insuficiente, o si el número de valores es impar. |
||
1480 | </translation> |
||
952 | cbradney | 1481 | </message> |
1482 | <message> |
||
9729 | cbradney | 1483 | <location filename="../plugins/scriptplugin/cmdobj.h" line="128"/> |
3064 | cbradney | 1484 | <source>createPolygon(list, ["name"]) -> string |
952 | cbradney | 1485 | |
1486 | Creates a new polygon and returns its name. The points for the polygon are |
||
1487 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
1488 | At least three points are required. There is no need to repeat the first point |
||
1489 | to close the polygon. The polygon is automatically closed by connecting the |
||
1490 | first and the last point. The coordinates are given in the current measurement |
||
1491 | units of the document (see UNIT constants). "name" should be a unique |
||
1492 | identifier for the object because you need this name for further access to that |
||
1493 | object. If "name" is not given Scribus will create one for you. |
||
1494 | |||
3064 | cbradney | 1495 | May raise NameExistsError if you explicitly pass a name that's already used. |
952 | cbradney | 1496 | May raise ValueError if an insufficient number of points is passed or if |
3064 | cbradney | 1497 | the number of values passed don't group into points without leftovers. |
952 | cbradney | 1498 | </source> |
3064 | cbradney | 1499 | <translation>createPolygon(list, ["name"]) -> string |
974 | cbradney | 1500 | |
1501 | Crea un polígono y devuelve su nombre. Los puntos del polígono se |
||
1502 | almacenan en la lista "list" en el orden siguiente: [x1, y1, x2, y2, ...xn, yn]. |
||
1503 | Al menos se necesitan 3 puntos. No se necesita repetir el primer punto |
||
1504 | para cerrar el polígono, se cierra automáticamente conectando el primer |
||
1505 | punto con el último. Las coordenadas se expresan en las unidades actuales |
||
1506 | del documento (ver constantes UNIT). "name" debería ser un identificador |
||
1507 | único para el objeto porque se referenciará con ese nombre después. |
||
1508 | Si no se le da un nombre, Scribus creará uno. |
||
1509 | |||
1510 | Puede lanzar la excepción NameExistsError si se pasa un nombre que |
||
1511 | ya se está usando. |
||
1512 | Puede lanzar la excepción ValueError si se pasa un número de puntos |
||
1513 | insuficiente, o si el número de valores es impar. |
||
1514 | </translation> |
||
952 | cbradney | 1515 | </message> |
1516 | <message> |
||
9729 | cbradney | 1517 | <location filename="../plugins/scriptplugin/cmdobj.h" line="149"/> |
3064 | cbradney | 1518 | <source>createBezierLine(list, ["name"]) -> string |
952 | cbradney | 1519 | |
1520 | Creates a new bezier curve and returns its name. The points for the bezier |
||
1521 | curve are stored in the list "list" in the following order: |
||
1522 | [x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn] |
||
1523 | In the points list, x and y mean the x and y coordinates of the point and kx |
||
1524 | and ky meaning the control point for the curve. The coordinates are given in |
||
1525 | the current measurement units of the document (see UNIT constants). "name" |
||
1526 | should be a unique identifier for the object because you need this name for |
||
1527 | further access to that object. If "name" is not given Scribus will create one |
||
1528 | for you. |
||
1529 | |||
3064 | cbradney | 1530 | May raise NameExistsError if you explicitly pass a name that's already used. |
952 | cbradney | 1531 | May raise ValueError if an insufficient number of points is passed or if |
3064 | cbradney | 1532 | the number of values passed don't group into points without leftovers. |
952 | cbradney | 1533 | </source> |
3064 | cbradney | 1534 | <translation>createBezierLine(list, ["name"]) -> string |
974 | cbradney | 1535 | |
1536 | Crea una curva de bezier y devuelve su nombre. Los puntos de la |
||
1537 | curva de bezier se almacenan en la lista "list" en el orden siguiente: |
||
1538 | [x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn, yn, kxn, kyn]. |
||
1539 | En la lista de puntos, x e y son las coordenadas del punto y kx y ky |
||
1540 | el punto de control de la curva. Las coordenadas se expresan en las |
||
1541 | unidades actuales del documento (ver constantes UNIT). "name" debería |
||
1542 | ser un identificador único para el objeto porque se referenciará con ese |
||
1543 | nombre después. Si no se le da un nombre, Scribus creará uno. |
||
1544 | |||
1545 | Puede lanzar la excepción NameExistsError si se pasa un nombre que |
||
1546 | ya se está usando. |
||
1547 | Puede lanzar la excepción ValueError si se pasa un número de puntos |
||
1548 | insuficiente, o si el número de valores es impar. |
||
1549 | </translation> |
||
952 | cbradney | 1550 | </message> |
1551 | <message> |
||
9729 | cbradney | 1552 | <location filename="../plugins/scriptplugin/cmdobj.h" line="165"/> |
3064 | cbradney | 1553 | <source>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string |
952 | cbradney | 1554 | |
1555 | Creates a new pathText by merging the two objects "textbox" and |
||
1556 | "beziercurve" and returns its name. The coordinates are given in the current |
||
1557 | measurement unit of the document (see UNIT constants). "name" should be a |
||
1558 | unique identifier for the object because you need this name for further access |
||
1559 | to that object. If "name" is not given Scribus will create one for you. |
||
1560 | |||
3064 | cbradney | 1561 | May raise NameExistsError if you explicitly pass a name that's already used. |
1562 | May raise NotFoundError if one or both of the named base object don't exist. |
||
952 | cbradney | 1563 | </source> |
3064 | cbradney | 1564 | <translation>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string |
974 | cbradney | 1565 | |
1566 | Crea un texto adjunto a un trazado, adjuntando el objeto"textbox" al objeto |
||
1567 | "beziercurve" y devuelve su nombre. Las coordenadas se expresan en las |
||
1568 | unidades actuales del documento (ver constantes UNIT). "name" debería |
||
1569 | ser un identificador único para el objeto porque se referenciará con ese |
||
1570 | nombre después. Si no se le da un nombre, Scribus creará uno. |
||
1571 | |||
1572 | Puede lanzar la excepción NameExistsError si se pasa un nombre que |
||
1573 | ya se está usando. |
||
1574 | Puede lanzar la excepción NotFoundError si alguno de los objetos no existe. |
||
1575 | </translation> |
||
952 | cbradney | 1576 | </message> |
1577 | <message> |
||
9729 | cbradney | 1578 | <location filename="../plugins/scriptplugin/cmdobj.h" line="177"/> |
3064 | cbradney | 1579 | <source>deleteObject(["name"]) |
952 | cbradney | 1580 | |
1581 | Deletes the item with the name "name". If "name" is not given the currently |
||
1582 | selected item is deleted. |
||
1583 | </source> |
||
3064 | cbradney | 1584 | <translation>deleteObject(["name"]) |
974 | cbradney | 1585 | |
1586 | Borra el objeto con el nombre "name". |
||
1587 | Si no se pasa un nombre, se usa el objeto que esté seleccionado. |
||
1588 | </translation> |
||
952 | cbradney | 1589 | </message> |
1590 | <message> |
||
9729 | cbradney | 1591 | <location filename="" line="136965632"/> |
3064 | cbradney | 1592 | <source>textFlowsAroundFrame("name" [, state]) |
952 | cbradney | 1593 | |
1594 | Enables/disables "Text Flows Around Frame" feature for object "name". |
||
1595 | Called with parameters string name and optional boolean "state". If "state" |
||
1596 | is not passed, text flow is toggled. |
||
1597 | </source> |
||
6261 | cbradney | 1598 | <translation type="obsolete">textFlowsAroundFrame("name" [, state]) |
974 | cbradney | 1599 | |
1600 | Activa o desactiva la característica "el texto fluye alrededor del marco" |
||
1601 | del objeto "name", según el valor del parámetro booleano "state". |
||
1602 | Si no se pasa "state", se invierte dicha característica. |
||
1603 | </translation> |
||
952 | cbradney | 1604 | </message> |
1605 | <message> |
||
9729 | cbradney | 1606 | <location filename="../plugins/scriptplugin/cmdobj.h" line="211"/> |
3064 | cbradney | 1607 | <source>objectExists(["name"]) -> bool |
952 | cbradney | 1608 | |
1609 | Test if an object with specified name really exists in the document. |
||
1610 | The optional parameter is the object name. When no object name is given, |
||
1611 | returns True if there is something selected. |
||
1612 | </source> |
||
3064 | cbradney | 1613 | <translation>objectExists(["name"]) -> bool |
974 | cbradney | 1614 | |
1615 | Comprueba si existe en el documento un objeto con el nombre "name". |
||
1616 | Si no se pasa un nombre, devuelve true si hay algún objeto seleccionado. |
||
1617 | </translation> |
||
952 | cbradney | 1618 | </message> |
1619 | <message> |
||
9729 | cbradney | 1620 | <location filename="../plugins/scriptplugin/cmdobj.h" line="227"/> |
3064 | cbradney | 1621 | <source>setStyle("style" [, "name"]) |
952 | cbradney | 1622 | |
1623 | Apply the named "style" to the object named "name". If is no object name |
||
3064 | cbradney | 1624 | given, it's applied on the selected object. |
952 | cbradney | 1625 | </source> |
3064 | cbradney | 1626 | <translation>setStyle("style" [, "name"]) |
974 | cbradney | 1627 | |
1628 | Aplica el estilo "style" al objeto "name". |
||
1629 | Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
1630 | </translation> |
||
952 | cbradney | 1631 | </message> |
1632 | <message> |
||
9729 | cbradney | 1633 | <location filename="../plugins/scriptplugin/cmdobj.h" line="240"/> |
3064 | cbradney | 1634 | <source>getAllStyles() -> list |
952 | cbradney | 1635 | |
1636 | Return a list of the names of all paragraph styles in the current document. |
||
1637 | </source> |
||
3064 | cbradney | 1638 | <translation>getAllStyles() -> list |
974 | cbradney | 1639 | |
1640 | Devuelve una lista con los nombres de todos los estilos |
||
1641 | de párrafo del documento. |
||
1642 | </translation> |
||
952 | cbradney | 1643 | </message> |
1644 | <message> |
||
9729 | cbradney | 1645 | <location filename="../plugins/scriptplugin/cmdpage.h" line="36"/> |
3064 | cbradney | 1646 | <source>currentPage() -> integer |
952 | cbradney | 1647 | |
1648 | Returns the number of the current working page. Page numbers are counted from 1 |
||
1649 | upwards, no matter what the displayed first page number of your document is. |
||
1650 | </source> |
||
3064 | cbradney | 1651 | <translation>currentPage() -> integer |
974 | cbradney | 1652 | |
1653 | Devuelve el número de la página actual. Los números de página van del 1 en |
||
1654 | adelante, independientemente del número mostrado en la primera página. |
||
1655 | </translation> |
||
952 | cbradney | 1656 | </message> |
1657 | <message> |
||
9729 | cbradney | 1658 | <location filename="../plugins/scriptplugin/cmdpage.h" line="45"/> |
3064 | cbradney | 1659 | <source>redrawAll() |
952 | cbradney | 1660 | |
1661 | Redraws all pages. |
||
1662 | </source> |
||
3064 | cbradney | 1663 | <translation>redrawAll() |
974 | cbradney | 1664 | |
1665 | Redibuja todas las páginas. |
||
1666 | </translation> |
||
952 | cbradney | 1667 | </message> |
1668 | <message> |
||
9729 | cbradney | 1669 | <location filename="../plugins/scriptplugin/cmdpage.h" line="65"/> |
3064 | cbradney | 1670 | <source>savePageAsEPS("name") |
952 | cbradney | 1671 | |
1672 | Saves the current page as an EPS to the file "name". |
||
1673 | |||
1674 | May raise ScribusError if the save failed. |
||
1675 | </source> |
||
3064 | cbradney | 1676 | <translation>savePageAsEPS("name") |
974 | cbradney | 1677 | |
1678 | Guarda la página actual como un EPS al archivo "name". |
||
1679 | |||
1680 | Puede lanzar la excpeción ScribusError si hubo un error al guardar. |
||
1681 | </translation> |
||
952 | cbradney | 1682 | </message> |
1683 | <message> |
||
9729 | cbradney | 1684 | <location filename="../plugins/scriptplugin/cmdpage.h" line="78"/> |
3064 | cbradney | 1685 | <source>deletePage(nr) |
952 | cbradney | 1686 | |
1687 | Deletes the given page. Does nothing if the document contains only one page. |
||
1688 | Page numbers are counted from 1 upwards, no matter what the displayed first |
||
1689 | page number is. |
||
1690 | |||
1691 | May raise IndexError if the page number is out of range |
||
1692 | </source> |
||
3064 | cbradney | 1693 | <translation>deletePage(nr) |
974 | cbradney | 1694 | |
1695 | Borra la página "nr". No hace nada si el documento sólo tiene una página. |
||
1696 | Los números de página van del 1 en adelante, independientemente del |
||
1697 | mostrado en la primera página. |
||
1698 | |||
1699 | Puede lanzar la excepción IndexError si el número de página está fuera de rango. |
||
1700 | </translation> |
||
952 | cbradney | 1701 | </message> |
1702 | <message> |
||
9729 | cbradney | 1703 | <location filename="../plugins/scriptplugin/cmdpage.h" line="91"/> |
3064 | cbradney | 1704 | <source>gotoPage(nr) |
952 | cbradney | 1705 | |
1706 | Moves to the page "nr" (that is, makes the current page "nr"). Note that |
||
3064 | cbradney | 1707 | gotoPage doesn't (curently) change the page the user's view is displaying, it |
952 | cbradney | 1708 | just sets the page that script commands will operates on. |
1709 | |||
1710 | May raise IndexError if the page number is out of range. |
||
1711 | </source> |
||
3064 | cbradney | 1712 | <translation>gotoPage(nr) |
974 | cbradney | 1713 | |
1714 | Cambia a la página "nr" (es decir, hace la página actual la página "nr"). |
||
1715 | Nota que actualmente no cambia la página que se está mostrando, sólo |
||
1716 | establece la página sobre la que operan los comandos del script. |
||
1717 | |||
1718 | Puede lanzar la excepción IndexError si el número de página está fuera de rango. |
||
1719 | </translation> |
||
952 | cbradney | 1720 | </message> |
1721 | <message> |
||
9729 | cbradney | 1722 | <location filename="../plugins/scriptplugin/cmdpage.h" line="100"/> |
3064 | cbradney | 1723 | <source>pageCount() -> integer |
952 | cbradney | 1724 | |
1725 | Returns the number of pages in the document. |
||
1726 | </source> |
||
3064 | cbradney | 1727 | <translation>pageCount() -> integer |
974 | cbradney | 1728 | |
1729 | Devuelve el número de páginas del documento. |
||
1730 | </translation> |
||
952 | cbradney | 1731 | </message> |
1732 | <message> |
||
9729 | cbradney | 1733 | <location filename="../plugins/scriptplugin/cmdpage.h" line="110"/> |
3064 | cbradney | 1734 | <source>getHGuides() -> list |
952 | cbradney | 1735 | |
1736 | Returns a list containing positions of the horizontal guides. Values are in the |
||
3064 | cbradney | 1737 | document's current units - see UNIT_<type> constants. |
952 | cbradney | 1738 | </source> |
3064 | cbradney | 1739 | <translation>getHGuides() -> list |
974 | cbradney | 1740 | |
1741 | Devuelve una lista que contiene las posiciones de las guías horizontales. |
||
1742 | Los valores están en las unidades actuales del documento - ver las |
||
3064 | cbradney | 1743 | constantes UNIT_<tipo>. |
974 | cbradney | 1744 | </translation> |
952 | cbradney | 1745 | </message> |
1746 | <message> |
||
9729 | cbradney | 1747 | <location filename="../plugins/scriptplugin/cmdpage.h" line="123"/> |
3064 | cbradney | 1748 | <source>setHGuides(list) |
952 | cbradney | 1749 | |
1750 | Sets horizontal guides. Input parameter must be a list of guide positions |
||
3064 | cbradney | 1751 | measured in the current document units - see UNIT_<type> constants. |
952 | cbradney | 1752 | |
1753 | Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost |
||
1754 | setHGuides([90,250]) # replace current guides entirely |
||
1755 | </source> |
||
3064 | cbradney | 1756 | <translation>setHGuides(list) |
974 | cbradney | 1757 | |
1758 | Establece las guías horizontales. El parámetro debe ser una lista de |
||
1759 | posiciones medidas en las unidades actuales del documento - ver |
||
3064 | cbradney | 1760 | las constantes UNIT_<tipo>. |
974 | cbradney | 1761 | |
1762 | Ejemplo: setHGuides(getHGuides() + [200.0, 210.0] # añade guías sin perder ninguna |
||
1763 | setHGuides([90,250]) # reemplaza las guías actuales |
||
1764 | </translation> |
||
952 | cbradney | 1765 | </message> |
1766 | <message> |
||
9729 | cbradney | 1767 | <location filename="../plugins/scriptplugin/cmdpage.h" line="132"/> |
3064 | cbradney | 1768 | <source>getVGuides() |
952 | cbradney | 1769 | |
1770 | See getHGuides. |
||
1771 | </source> |
||
3064 | cbradney | 1772 | <translation>getVGuides() |
974 | cbradney | 1773 | |
1774 | Ver getHGuides. |
||
1775 | </translation> |
||
952 | cbradney | 1776 | </message> |
1777 | <message> |
||
9729 | cbradney | 1778 | <location filename="../plugins/scriptplugin/cmdpage.h" line="141"/> |
3064 | cbradney | 1779 | <source>setVGuides() |
952 | cbradney | 1780 | |
1781 | See setHGuides. |
||
1782 | </source> |
||
3064 | cbradney | 1783 | <translation>setVGuides() |
974 | cbradney | 1784 | |
1785 | Ver setHGuides. |
||
1786 | </translation> |
||
952 | cbradney | 1787 | </message> |
1788 | <message> |
||
9729 | cbradney | 1789 | <location filename="../plugins/scriptplugin/cmdpage.h" line="151"/> |
3064 | cbradney | 1790 | <source>getPageSize() -> tuple |
952 | cbradney | 1791 | |
3064 | cbradney | 1792 | Returns a tuple with page dimensions measured in the document's current units. |
1793 | See UNIT_<type> constants and getPageMargins() |
||
952 | cbradney | 1794 | </source> |
3064 | cbradney | 1795 | <translation>getPageSize() -> tuple |
974 | cbradney | 1796 | |
1797 | Devuelve un vector con las dimensiones de página medidas en las unidades |
||
3064 | cbradney | 1798 | actuales del documento. Ver las constantes UNIT_<tipo> y getPageMargins() |
974 | cbradney | 1799 | </translation> |
952 | cbradney | 1800 | </message> |
1801 | <message> |
||
9729 | cbradney | 1802 | <location filename="../plugins/scriptplugin/cmdpage.h" line="167"/> |
3064 | cbradney | 1803 | <source>getPageItems() -> list |
952 | cbradney | 1804 | |
1805 | Returns a list of tuples with items on the current page. The tuple is: |
||
3064 | cbradney | 1806 | (name, objectType, order) E.g. [('Text1', 4, 0), ('Image1', 2, 1)] |
1807 | means that object named 'Text1' is a text frame (type 4) and is the first at |
||
952 | cbradney | 1808 | the page... |
1809 | </source> |
||
3064 | cbradney | 1810 | <translation>getPageItems() -> list |
974 | cbradney | 1811 | |
1812 | Devuelve una lista de vectores con los objetos de la página actual. |
||
1813 | El vector es (nombre, tipoDeObjeto, orden). |
||
3064 | cbradney | 1814 | P. ej. [('Texto1', 4, 0), ('Imagen1', 2, 1)] significa que el objeto 'Texto1' |
974 | cbradney | 1815 | es un marco de texto (tipo 4) y es el primero de la página... |
1816 | </translation> |
||
952 | cbradney | 1817 | </message> |
1818 | <message> |
||
9729 | cbradney | 1819 | <location filename="../plugins/scriptplugin/cmdsetprop.h" line="33"/> |
3064 | cbradney | 1820 | <source>setFillColor("color", ["name"]) |
952 | cbradney | 1821 | |
1822 | Sets the fill color of the object "name" to the color "color". "color" |
||
1823 | is the name of one of the defined colors. If "name" is not given the |
||
1824 | currently selected item is used. |
||
1825 | </source> |
||
3064 | cbradney | 1826 | <translation>setFillColor("color", ["name"]) |
974 | cbradney | 1827 | |
1828 | Establece el color de relleno del objeto "name" al color "color". |
||
1829 | "color" es el nombre de uno de los colores definidos. |
||
1830 | Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
1831 | </translation> |
||
952 | cbradney | 1832 | </message> |
1833 | <message> |
||
9729 | cbradney | 1834 | <location filename="../plugins/scriptplugin/cmdsetprop.h" line="63"/> |
3064 | cbradney | 1835 | <source>setLineColor("color", ["name"]) |
952 | cbradney | 1836 | |
1837 | Sets the line color of the object "name" to the color "color". If "name" |
||
1838 | is not given the currently selected item is used. |
||
1839 | </source> |
||
3064 | cbradney | 1840 | <translation>setLineColor("color", ["name"]) |
974 | cbradney | 1841 | |
1842 | Establece el color de línea del objeto "name" al color "color". |
||
1843 | Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
1844 | </translation> |
||
952 | cbradney | 1845 | </message> |
1846 | <message> |
||
9729 | cbradney | 1847 | <location filename="../plugins/scriptplugin/cmdsetprop.h" line="96"/> |
3064 | cbradney | 1848 | <source>setLineWidth(width, ["name"]) |
952 | cbradney | 1849 | |
1850 | Sets line width of the object "name" to "width". "width" must be in the |
||
1851 | range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not |
||
1852 | given the currently selected item is used. |
||
1853 | |||
1854 | May raise ValueError if the line width is out of bounds. |
||
1855 | </source> |
||
3064 | cbradney | 1856 | <translation>setLineWidth(width, ["name"]) |
974 | cbradney | 1857 | |
1858 | Establece el ancho de línea del objeto "name" a "width". "width" debe estar |
||
1859 | en el rango de 0.0 a 12.0 inclusive, y se miede en puntos. |
||
1860 | Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
1861 | |||
1862 | Puede lanzar la excepción ValueError si el ancho de línea está fuera de rango. |
||
1863 | </translation> |
||
952 | cbradney | 1864 | </message> |
1865 | <message> |
||
9729 | cbradney | 1866 | <location filename="../plugins/scriptplugin/cmdsetprop.h" line="110"/> |
3064 | cbradney | 1867 | <source>setLineShade(shade, ["name"]) |
952 | cbradney | 1868 | |
1869 | Sets the shading of the line color of the object "name" to "shade". |
||
1870 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
1871 | (full color intensity). If "name" is not given the currently selected item |
||
1872 | is used. |
||
1873 | |||
1874 | May raise ValueError if the line shade is out of bounds. |
||
1875 | </source> |
||
3064 | cbradney | 1876 | <translation>setLineShade(shade, ["name"]) |
974 | cbradney | 1877 | |
1878 | Establece la saturación del color de línea del objeto "name" a "shade". |
||
1879 | "shade" debe ser un valor entero en el rango de 0 (más claro) a 100 |
||
1880 | (color de mayor intensidad). |
||
1881 | Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
1882 | |||
1883 | Puede lanzar la excepción ValueError si la saturación está fuera de rango. |
||
1884 | </translation> |
||
952 | cbradney | 1885 | </message> |
1886 | <message> |
||
9729 | cbradney | 1887 | <location filename="../plugins/scriptplugin/cmdsetprop.h" line="121"/> |
3064 | cbradney | 1888 | <source>setLineJoin(join, ["name"]) |
952 | cbradney | 1889 | |
1890 | Sets the line join style of the object "name" to the style "join". |
||
1891 | If "name" is not given the currently selected item is used. There are |
||
3064 | cbradney | 1892 | predefined constants for join - JOIN_<type>. |
952 | cbradney | 1893 | </source> |
3064 | cbradney | 1894 | <translation>setLineJoin(join, ["name"]) |
974 | cbradney | 1895 | |
1896 | Establece el estilo de unión de línea del objeto "name" al estilo "join". |
||
1897 | Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
3064 | cbradney | 1898 | Hay constantes predefinidas para "join" - JOIN_<tipo>. |
974 | cbradney | 1899 | </translation> |
952 | cbradney | 1900 | </message> |
1901 | <message> |
||
9729 | cbradney | 1902 | <location filename="../plugins/scriptplugin/cmdsetprop.h" line="132"/> |
3064 | cbradney | 1903 | <source>setLineEnd(endtype, ["name"]) |
952 | cbradney | 1904 | |
1905 | Sets the line cap style of the object "name" to the style "cap". |
||
1906 | If "name" is not given the currently selected item is used. There are |
||
3064 | cbradney | 1907 | predefined constants for "cap" - CAP_<type>. |
952 | cbradney | 1908 | </source> |
3064 | cbradney | 1909 | <translation>setLineEnd(endtype, ["name"]) |
974 | cbradney | 1910 | |
1911 | Establece el estilo de extremo de línea del objeto "name" al estilo "cap". |
||
1912 | Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
3064 | cbradney | 1913 | Hay constantes predefinidas para "cap" - CAP_<tipo>. |
974 | cbradney | 1914 | </translation> |
952 | cbradney | 1915 | </message> |
1916 | <message> |
||
9729 | cbradney | 1917 | <location filename="../plugins/scriptplugin/cmdsetprop.h" line="143"/> |
3064 | cbradney | 1918 | <source>setLineStyle(style, ["name"]) |
952 | cbradney | 1919 | |
1920 | Sets the line style of the object "name" to the style "style". If "name" |
||
1921 | is not given the currently selected item is used. There are predefined |
||
3064 | cbradney | 1922 | constants for "style" - LINE_<style>. |
952 | cbradney | 1923 | </source> |
3064 | cbradney | 1924 | <translation>setLineStyle(style, ["name"]) |
974 | cbradney | 1925 | |
1926 | Establece el estilo de línea del objeto "name" al estilo "style". |
||
1927 | Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
3064 | cbradney | 1928 | Hay constantes predefinidas para "style" - LINE_<tipo>. |
974 | cbradney | 1929 | </translation> |
952 | cbradney | 1930 | </message> |
1931 | <message> |
||
9729 | cbradney | 1932 | <location filename="../plugins/scriptplugin/cmdsetprop.h" line="157"/> |
3064 | cbradney | 1933 | <source>setFillShade(shade, ["name"]) |
952 | cbradney | 1934 | |
1935 | Sets the shading of the fill color of the object "name" to "shade". |
||
1936 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
1937 | (full Color intensity). If "name" is not given the currently selected |
||
1938 | Item is used. |
||
1939 | |||
1940 | May raise ValueError if the fill shade is out of bounds. |
||
1941 | </source> |
||
3064 | cbradney | 1942 | <translation>setFillShade(shade, ["name"]) |
974 | cbradney | 1943 | |
1944 | Establece la saturación del color de relleno del objeto "name" a "shade". |
||
1945 | "shade" debe ser un valor entero en el rango de 0 (más claro) a 100 |
||
1946 | (color de mayor intensidad). |
||
1947 | Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
1948 | |||
1949 | Puede lanzar la excepción ValueError si la saturación está fuera de rango. |
||
1950 | </translation> |
||
952 | cbradney | 1951 | </message> |
1952 | <message> |
||
9729 | cbradney | 1953 | <location filename="../plugins/scriptplugin/cmdsetprop.h" line="169"/> |
3064 | cbradney | 1954 | <source>setCornerRadius(radius, ["name"]) |
952 | cbradney | 1955 | |
1956 | Sets the corner radius of the object "name". The radius is expressed |
||
1957 | in points. If "name" is not given the currently selected item is used. |
||
1958 | |||
1959 | May raise ValueError if the corner radius is negative. |
||
1960 | </source> |
||
3064 | cbradney | 1961 | <translation>setCornerRadius(radius, ["name"]) |
974 | cbradney | 1962 | |
1963 | Establece el radio de las esquinas del objeto "name". El radio está |
||
1964 | expreado en puntos. |
||
1965 | Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
1966 | |||
1967 | Puede lanzar la excepción ValueError si el radio está fuera de rango. |
||
1968 | </translation> |
||
952 | cbradney | 1969 | </message> |
1970 | <message> |
||
9729 | cbradney | 1971 | <location filename="../plugins/scriptplugin/cmdsetprop.h" line="181"/> |
3064 | cbradney | 1972 | <source>setMultiLine("namedStyle", ["name"]) |
952 | cbradney | 1973 | |
1974 | Sets the line style of the object "name" to the named style "namedStyle". |
||
1975 | If "name" is not given the currently selected item is used. |
||
1976 | |||
3064 | cbradney | 1977 | May raise NotFoundError if the line style doesn't exist. |
952 | cbradney | 1978 | </source> |
3064 | cbradney | 1979 | <translation>setMultiLine("namedStyle", ["name"]) |
974 | cbradney | 1980 | |
1981 | Establece el estilo de línea del objeto "name" al estilo de nombre "namedStyle". |
||
1982 | Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
1983 | |||
1984 | Puede lanzar la excepción NotFoundError si el estilo de línea no existe. |
||
1985 | </translation> |
||
952 | cbradney | 1986 | </message> |
1987 | <message> |
||
9729 | cbradney | 1988 | <location filename="../plugins/scriptplugin/cmdtext.h" line="35"/> |
3064 | cbradney | 1989 | <source>getFont(["name"]) -> string |
952 | cbradney | 1990 | |
1991 | Returns the font name for the text frame "name". If this text frame |
||
1992 | has some text selected the value assigned to the first character |
||
1993 | of the selection is returned. If "name" is not given the currently |
||
1994 | selected item is used. |
||
1995 | </source> |
||
3064 | cbradney | 1996 | <translation>getFont(["name"]) -> string |
974 | cbradney | 1997 | |
1998 | Devuelve el nombre de la fuente del marco de texto "name". Si el |
||
1999 | marco de texto tiene texto seleccionado, devuelve el del primer |
||
2000 | caracter de la selección. |
||
2001 | Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
2002 | </translation> |
||
952 | cbradney | 2003 | </message> |
2004 | <message> |
||
9729 | cbradney | 2005 | <location filename="../plugins/scriptplugin/cmdtext.h" line="45"/> |
3064 | cbradney | 2006 | <source>getTextLength(["name"]) -> integer |
952 | cbradney | 2007 | |
2008 | Returns the length of the text in the text frame "name". |
||
2009 | If "name" is not given the currently selected item is used. |
||
2010 | </source> |
||
3064 | cbradney | 2011 | <translation>getTextLength(["name"]) -> integer |
974 | cbradney | 2012 | |
2013 | Devuelve la longitud del texto en el marco de texto "name". |
||
2014 | Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
2015 | </translation> |
||
952 | cbradney | 2016 | </message> |
2017 | <message> |
||
9729 | cbradney | 2018 | <location filename="../plugins/scriptplugin/cmdtext.h" line="67"/> |
3064 | cbradney | 2019 | <source>getText(["name"]) -> string |
952 | cbradney | 2020 | |
2021 | Returns the text of the text frame "name". If this text frame has some text |
||
2022 | selected, the selected text is returned. All text in the frame, not just |
||
2023 | currently visible text, is returned. If "name" is not given the currently |
||
2024 | selected item is used. |
||
2025 | </source> |
||
3064 | cbradney | 2026 | <translation>getText(["name"]) -> string |
974 | cbradney | 2027 | |
2028 | Devuelve el texto del marco de texto "name". Si el marco de texto |
||
2029 | tiene texto seleccionado, devuelve el texto seleccionado. Devuelve |
||
2030 | todo el texto del marco, no solo el que se ve actualmente. |
||
2031 | Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
2032 | </translation> |
||
952 | cbradney | 2033 | </message> |
2034 | <message> |
||
9729 | cbradney | 2035 | <location filename="../plugins/scriptplugin/cmdtext.h" line="79"/> |
3064 | cbradney | 2036 | <source>getAllText(["name"]) -> string |
952 | cbradney | 2037 | |
2038 | Returns the text of the text frame "name" and of all text frames which are |
||
2039 | linked with this frame. If this textframe has some text selected, the selected |
||
2040 | text is returned. If "name" is not given the currently selected item is |
||
2041 | used. |
||
2042 | </source> |
||
3064 | cbradney | 2043 | <translation>getAllText(["name"]) -> string |
974 | cbradney | 2044 | |
2045 | Devuelve el texto del marco de texto "name" y de todos los marcos de texto |
||
2046 | que están enlazados con este marco. Si el marco de texto tiene texto |
||
2047 | seleccionado, devuelve el texto seleccionado. |
||
2048 | Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
2049 | </translation> |
||
952 | cbradney | 2050 | </message> |
2051 | <message> |
||
9729 | cbradney | 2052 | <location filename="../plugins/scriptplugin/cmdtext.h" line="89"/> |
3064 | cbradney | 2053 | <source>getLineSpacing(["name"]) -> float |
952 | cbradney | 2054 | |
2055 | Returns the line spacing ("leading") of the text frame "name" expressed in |
||
2056 | points. If "name" is not given the currently selected item is used. |
||
2057 | </source> |
||
3064 | cbradney | 2058 | <translation>getLineSpacing(["name"]) -> float |
974 | cbradney | 2059 | |
2060 | Devuelve el interlineado del marco de texto "name" expresado en puntos. |
||
2061 | Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
2062 | </translation> |
||
952 | cbradney | 2063 | </message> |
2064 | <message> |
||
9729 | cbradney | 2065 | <location filename="../plugins/scriptplugin/cmdtext.h" line="99"/> |
3064 | cbradney | 2066 | <source>getColumnGap(["name"]) -> float |
952 | cbradney | 2067 | |
2068 | Returns the column gap size of the text frame "name" expressed in points. If |
||
2069 | "name" is not given the currently selected item is used. |
||
2070 | </source> |
||
3064 | cbradney | 2071 | <translation>getColumnGap(["name"]) -> float |
974 | cbradney | 2072 | |
2073 | Devuelve la distancia entre columnas del marco de texto "name" expresado |
||
2074 | en puntos. Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
2075 | |||
2076 | </translation> |
||
952 | cbradney | 2077 | </message> |
2078 | <message> |
||
9729 | cbradney | 2079 | <location filename="../plugins/scriptplugin/cmdtext.h" line="109"/> |
3064 | cbradney | 2080 | <source>getColumns(["name"]) -> integer |
952 | cbradney | 2081 | |
2082 | Gets the number of columns of the text frame "name". If "name" is not |
||
2083 | given the currently selected item is used. |
||
2084 | </source> |
||
3064 | cbradney | 2085 | <translation>getColumns(["name"]) -> integer |
974 | cbradney | 2086 | |
2087 | Devuelve el número de columnas del marco de texto "name". |
||
2088 | Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
2089 | </translation> |
||
952 | cbradney | 2090 | </message> |
2091 | <message> |
||
9729 | cbradney | 2092 | <location filename="../plugins/scriptplugin/cmdtext.h" line="121"/> |
3064 | cbradney | 2093 | <source>setText("text", ["name"]) |
952 | cbradney | 2094 | |
2095 | Sets the text of the text frame "name" to the text of the string "text". |
||
3064 | cbradney | 2096 | Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ |
952 | cbradney | 2097 | for more details. If "name" is not given the currently selected item is |
2098 | used. |
||
2099 | </source> |
||
3064 | cbradney | 2100 | <translation>setText("text", ["name"]) |
974 | cbradney | 2101 | |
2102 | Establece el texto del marco de texto "name" al texto de la cadena "text". |
||
3064 | cbradney | 2103 | El texto debe estar codificado en UTF8 - usa p. ej. unicode("text", 'iso-8859-2'). |
974 | cbradney | 2104 | Ver las FAQ para más detalles. |
2105 | Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
2106 | </translation> |
||
952 | cbradney | 2107 | </message> |
2108 | <message> |
||
9729 | cbradney | 2109 | <location filename="../plugins/scriptplugin/cmdtext.h" line="148"/> |
3064 | cbradney | 2110 | <source>setFont("font", ["name"]) |
952 | cbradney | 2111 | |
2112 | Sets the font of the text frame "name" to "font". If there is some text |
||
2113 | selected only the selected text is changed. If "name" is not given the |
||
2114 | currently selected item is used. |
||
2115 | |||
2116 | May throw ValueError if the font cannot be found. |
||
2117 | </source> |
||
3064 | cbradney | 2118 | <translation>setFont("font", ["name"]) |
974 | cbradney | 2119 | |
2120 | Establece la fuente del marco de texto "name" a "font". Si hay texto |
||
2121 | seleccionado sólo cambia la del texto seleccionado. |
||
2122 | Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
2123 | |||
2124 | Puede lanzar la excepción ValueError si no se puede encontrar la fuente. |
||
2125 | </translation> |
||
952 | cbradney | 2126 | </message> |
2127 | <message> |
||
9729 | cbradney | 2128 | <location filename="../plugins/scriptplugin/cmdtext.h" line="162"/> |
3064 | cbradney | 2129 | <source>setFontSize(size, ["name"]) |
952 | cbradney | 2130 | |
2131 | Sets the font size of the text frame "name" to "size". "size" is treated |
||
2132 | as a value in points. If there is some text selected only the selected text is |
||
2133 | changed. "size" must be in the range 1 to 512. If "name" is not given the |
||
2134 | currently selected item is used. |
||
2135 | |||
3064 | cbradney | 2136 | May throw ValueError for a font size that's out of bounds. |
952 | cbradney | 2137 | </source> |
3064 | cbradney | 2138 | <translation>setFontSize(size, ["name"]) |
974 | cbradney | 2139 | |
2140 | Establece el tamaño de fuente del marco de texto "name" a "size". |
||
2141 | "size" debe ser un valor en puntos. Si hay texto seleccionado sólo |
||
2142 | cambia la del texto seleccionado. "size" debe ser un entero en el |
||
2143 | rango 1 a 512. |
||
2144 | Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
2145 | |||
2146 | Puede lanzar la excepción ValueError si el tamaño está fuera de rango. |
||
2147 | </translation> |
||
952 | cbradney | 2148 | </message> |
2149 | <message> |
||
9729 | cbradney | 2150 | <location filename="../plugins/scriptplugin/cmdtext.h" line="175"/> |
3064 | cbradney | 2151 | <source>setLineSpacing(size, ["name"]) |
952 | cbradney | 2152 | |
2153 | Sets the line spacing ("leading") of the text frame "name" to "size". |
||
2154 | "size" is a value in points. If "name" is not given the currently selected |
||
2155 | item is used. |
||
2156 | |||
2157 | May throw ValueError if the line spacing is out of bounds. |
||
2158 | </source> |
||
3064 | cbradney | 2159 | <translation>setLineSpacing(size, ["name"]) |
974 | cbradney | 2160 | |
2161 | Establece el interlineado del marco de texto "name" a "size". |
||
2162 | "size" es un valor en puntos. |
||
2163 | Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
2164 | |||
2165 | Puede lanzar la excepción ValueError si el interlineado está fuera de rango. |
||
2166 | </translation> |
||
952 | cbradney | 2167 | </message> |
2168 | <message> |
||
9729 | cbradney | 2169 | <location filename="../plugins/scriptplugin/cmdtext.h" line="187"/> |
3064 | cbradney | 2170 | <source>setColumnGap(size, ["name"]) |
952 | cbradney | 2171 | |
2172 | Sets the column gap of the text frame "name" to the value "size". If |
||
2173 | "name" is not given the currently selected item is used. |
||
2174 | |||
2175 | May throw ValueError if the column gap is out of bounds (must be positive). |
||
2176 | </source> |
||
3064 | cbradney | 2177 | <translation>setColumnGap(size, ["name"]) |
974 | cbradney | 2178 | |
2179 | Establece la distancia entre columnas del marco de texto "name" al |
||
2180 | valor "size". |
||
2181 | Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
2182 | |||
2183 | Puede lanzar la excepción ValueError si la distancia entre columnas |
||
2184 | está fuera de rango (debe ser positiva). |
||
2185 | </translation> |
||
952 | cbradney | 2186 | </message> |
2187 | <message> |
||
9729 | cbradney | 2188 | <location filename="../plugins/scriptplugin/cmdtext.h" line="199"/> |
3064 | cbradney | 2189 | <source>setColumns(nr, ["name"]) |
952 | cbradney | 2190 | |
2191 | Sets the number of columns of the text frame "name" to the integer "nr". |
||
2192 | If "name" is not given the currently selected item is used. |
||
2193 | |||
2194 | May throw ValueError if number of columns is not at least one. |
||
2195 | </source> |
||
3064 | cbradney | 2196 | <translation>setColumns(nr, ["name"]) |
974 | cbradney | 2197 | |
2198 | Establece el número de columnas del marco de texto "name" al entero "nr". |
||
2199 | Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
2200 | |||
2201 | Puede lanzar la excepción ValueError si el número de columnas es menor de uno. |
||
2202 | </translation> |
||
952 | cbradney | 2203 | </message> |
2204 | <message> |
||
9729 | cbradney | 2205 | <location filename="../plugins/scriptplugin/cmdtext.h" line="212"/> |
3064 | cbradney | 2206 | <source>setTextAlignment(align, ["name"]) |
952 | cbradney | 2207 | |
2208 | Sets the text alignment of the text frame "name" to the specified alignment. |
||
2209 | If "name" is not given the currently selected item is used. "align" should |
||
2210 | be one of the ALIGN_ constants defined in this module - see dir(scribus). |
||
2211 | |||
2212 | May throw ValueError for an invalid alignment constant. |
||
2213 | </source> |
||
3064 | cbradney | 2214 | <translation>setTextAlignment(align, ["name"]) |
974 | cbradney | 2215 | |
2216 | Establece el alineamiento del marco de texto "name" al alineamiento |
||
2217 | indicado. "align" debería ser una de las constantes ALIGN_ definidas |
||
2218 | en este módulo - ver dir(scribus). |
||
2219 | Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
2220 | |||
2221 | Puede lanzar la excepción ValueError si la constante de la alineamiento |
||
2222 | no es válida. |
||
2223 | </translation> |
||
952 | cbradney | 2224 | </message> |
2225 | <message> |
||
9729 | cbradney | 2226 | <location filename="../plugins/scriptplugin/cmdtext.h" line="237"/> |
3064 | cbradney | 2227 | <source>deleteText(["name"]) |
952 | cbradney | 2228 | |
2229 | Deletes any text in the text frame "name". If there is some text selected, |
||
2230 | only the selected text will be deleted. If "name" is not given the currently |
||
2231 | selected item is used. |
||
2232 | </source> |
||
3064 | cbradney | 2233 | <translation>deleteText(["name"]) |
974 | cbradney | 2234 | |
2235 | Borrar el texto del marco de texto "name". Si hay texto seleccionado sólo |
||
2236 | se borra el texto seleccionado. |
||
2237 | Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
2238 | </translation> |
||
952 | cbradney | 2239 | </message> |
2240 | <message> |
||
9729 | cbradney | 2241 | <location filename="../plugins/scriptplugin/cmdtext.h" line="248"/> |
3064 | cbradney | 2242 | <source>setTextColor("color", ["name"]) |
952 | cbradney | 2243 | |
2244 | Sets the text color of the text frame "name" to the color "color". If there |
||
2245 | is some text selected only the selected text is changed. If "name" is not |
||
2246 | given the currently selected item is used. |
||
2247 | </source> |
||
3064 | cbradney | 2248 | <translation>setTextColor("color", ["name"]) |
974 | cbradney | 2249 | |
2250 | Establece el color del texto marco de texto "name" al color "color". Si |
||
2251 | hay texto seleccionado sólo se cambia el texto seleccionado. |
||
2252 | Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
2253 | </translation> |
||
952 | cbradney | 2254 | </message> |
2255 | <message> |
||
9729 | cbradney | 2256 | <location filename="../plugins/scriptplugin/cmdtext.h" line="258"/> |
3064 | cbradney | 2257 | <source>setTextStroke("color", ["name"]) |
952 | cbradney | 2258 | |
2259 | Set "color" of the text stroke. If "name" is not given the currently |
||
2260 | selected item is used. |
||
2261 | </source> |
||
3064 | cbradney | 2262 | <translation>setTextStroke("color", ["name"]) |
974 | cbradney | 2263 | |
2264 | Establece el color del trazo del texto a "color". |
||
2265 | Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
2266 | </translation> |
||
952 | cbradney | 2267 | </message> |
2268 | <message> |
||
9729 | cbradney | 2269 | <location filename="../plugins/scriptplugin/cmdtext.h" line="271"/> |
3064 | cbradney | 2270 | <source>setTextShade(shade, ["name"]) |
952 | cbradney | 2271 | |
2272 | Sets the shading of the text color of the object "name" to "shade". If |
||
2273 | there is some text selected only the selected text is changed. "shade" must |
||
2274 | be an integer value in the range from 0 (lightest) to 100 (full color |
||
2275 | intensity). If "name" is not given the currently selected item is |
||
2276 | used. |
||
2277 | </source> |
||
3064 | cbradney | 2278 | <translation>setTextShade(shade, ["name"]) |
974 | cbradney | 2279 | |
2280 | Establece la saturación del color del texto del objeto "name" a "shade". |
||
2281 | Si hay texto seleccionado, sólo cambia el texto seleccionado. "shade" |
||
2282 | debe ser un valor entero en el rango de 0 (más claro) a 100 (color de |
||
2283 | mayor intensidad). |
||
2284 | Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
2285 | </translation> |
||
952 | cbradney | 2286 | </message> |
2287 | <message> |
||
9729 | cbradney | 2288 | <location filename="../plugins/scriptplugin/cmdtext.h" line="284"/> |
3064 | cbradney | 2289 | <source>linkTextFrames("fromname", "toname") |
952 | cbradney | 2290 | |
2291 | Link two text frames. The frame named "fromname" is linked to the |
||
2292 | frame named "toname". The target frame must be an empty text frame |
||
2293 | and must not link to or be linked from any other frames already. |
||
2294 | |||
2295 | May throw ScribusException if linking rules are violated. |
||
2296 | </source> |
||
3064 | cbradney | 2297 | <translation>linkTextFrames("fromname", "toname") |
974 | cbradney | 2298 | |
2299 | Enlaza dos marcos de texto. El marco llamado "fromname" se enlaza al marco |
||
2300 | llamado "toname". El marco de destino debe ser un marco de texto vacío y |
||
2301 | no debe estar enlazado a otros ni desde otros marcos de texto. |
||
2302 | |||
2303 | Puede lanzar la excepción ScribusException si se violan las reglas de enlazado. |
||
2304 | </translation> |
||
952 | cbradney | 2305 | </message> |
2306 | <message> |
||
9729 | cbradney | 2307 | <location filename="../plugins/scriptplugin/cmdtext.h" line="301"/> |
3064 | cbradney | 2308 | <source>unlinkTextFrames("name") |
952 | cbradney | 2309 | |
2310 | Remove the specified (named) object from the text frame flow/linkage. If the |
||
2311 | frame was in the middle of a chain, the previous and next frames will be |
||
3064 | cbradney | 2312 | connected, eg 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)' |
952 | cbradney | 2313 | |
2314 | May throw ScribusException if linking rules are violated. |
||
2315 | </source> |
||
3064 | cbradney | 2316 | <translation>unlinkTextFrames("name") |
974 | cbradney | 2317 | |
2318 | Elimina el objeto "name" del flujo de enlazado de marcos de texto. Si el |
||
2319 | marco estaba en medio de una cadena, los marcos anterior y siguiente |
||
3064 | cbradney | 2320 | se enlazarán, p. ej. 'a->b->c' pasa a ser 'a->c' al ejecutar unlinkTextFrames(b) |
974 | cbradney | 2321 | |
2322 | Puede lanzar la excepción ScribusException si se violan las reglas de enlazado. |
||
2323 | </translation> |
||
952 | cbradney | 2324 | </message> |
2325 | <message> |
||
9729 | cbradney | 2326 | <location filename="../plugins/scriptplugin/cmdtext.h" line="314"/> |
3064 | cbradney | 2327 | <source>traceText(["name"]) |
952 | cbradney | 2328 | |
2329 | Convert the text frame "name" to outlines. If "name" is not given the |
||
2330 | currently selected item is used.</source> |
||
3064 | cbradney | 2331 | <translation>traceText(["name"]) |
974 | cbradney | 2332 | |
2333 | Convierte el marco de texto "name" a contornos. |
||
2334 | Si no se pasa un nombre, se aplica al objeto que esté seleccionado. |
||
2335 | </translation> |
||
952 | cbradney | 2336 | </message> |
2337 | <message> |
||
9729 | cbradney | 2338 | <location filename="../plugins/scriptplugin/guiapp.h" line="34"/> |
3064 | cbradney | 2339 | <source>progressReset() |
952 | cbradney | 2340 | |
2341 | Cleans up the Scribus progress bar previous settings. It is called before the |
||
2342 | new progress bar use. See progressSet. |
||
2343 | </source> |
||
3064 | cbradney | 2344 | <translation>progressReset() |
974 | cbradney | 2345 | |
2346 | Borra la barra de progreso de Scribus. Se llama antes de usar |
||
2347 | la barra de progreso. Ver progressSet. |
||
2348 | </translation> |
||
952 | cbradney | 2349 | </message> |
2350 | <message> |
||
9729 | cbradney | 2351 | <location filename="../plugins/scriptplugin/guiapp.h" line="47"/> |
3064 | cbradney | 2352 | <source>progressTotal(max) |
952 | cbradney | 2353 | |
3064 | cbradney | 2354 | Sets the progress bar's maximum steps value to the specified number. |
952 | cbradney | 2355 | See progressSet. |
2356 | </source> |
||
3064 | cbradney | 2357 | <translation>progressTotal(max) |
974 | cbradney | 2358 | |
2359 | Establece el máximo número de pasos de la barra de progreso al |
||
2360 | número especificado. Ver progressSet. |
||
2361 | </translation> |
||
952 | cbradney | 2362 | </message> |
2363 | <message> |
||
9729 | cbradney | 2364 | <location filename="../plugins/scriptplugin/guiapp.h" line="61"/> |
3064 | cbradney | 2365 | <source>progressSet(nr) |
952 | cbradney | 2366 | |
2367 | Set the progress bar position to "nr", a value relative to the previously set |
||
2368 | progressTotal. The progress bar uses the concept of steps; you give it the |
||
2369 | total number of steps and the number of steps completed so far and it will |
||
2370 | display the percentage of steps that have been completed. You can specify the |
||
2371 | total number of steps with progressTotal(). The current number of steps is set |
||
2372 | with progressSet(). The progress bar can be rewound to the beginning with |
||
3064 | cbradney | 2373 | progressReset(). [based on info taken from Trolltech's Qt docs] |
952 | cbradney | 2374 | </source> |
3064 | cbradney | 2375 | <translation>progressSet(nr) |
974 | cbradney | 2376 | |
2377 | Establece la posición de la barra de progreso a "nr", un valor relativo a |
||
2378 | lo puesto anteriormente con progressTotal. La barra de progreso usa el |
||
2379 | concepto de pasos, se le dice el número de pasos totales y el número |
||
2380 | pasos completado y mostrará el porcentaje de pasos que se han |
||
2381 | completado. Se puede especificar el número de pasos con progressTotal(). |
||
2382 | El número actual de pasos se establece con progressSet(). Se rebobina al |
||
2383 | principio con progressReset(). |
||
2384 | [basado en la información tomada de la documentación de Qt de Trolltech] |
||
2385 | </translation> |
||
952 | cbradney | 2386 | </message> |
2387 | <message> |
||
9729 | cbradney | 2388 | <location filename="../plugins/scriptplugin/guiapp.h" line="69"/> |
3064 | cbradney | 2389 | <source>setCursor() |
952 | cbradney | 2390 | |
2391 | [UNSUPPORTED!] This might break things, so steer clear for now. |
||
2392 | </source> |
||
3064 | cbradney | 2393 | <translation>setCursor() |
974 | cbradney | 2394 | |
2395 | [¡NO SOPORTADO!] |
||
2396 | Esto podría romper cosas, así que no se utiliza de momento. |
||
2397 | </translation> |
||
952 | cbradney | 2398 | </message> |
2399 | <message> |
||
9729 | cbradney | 2400 | <location filename="../plugins/scriptplugin/guiapp.h" line="83"/> |
3064 | cbradney | 2401 | <source>docChanged(bool) |
952 | cbradney | 2402 | |
3064 | cbradney | 2403 | Enable/disable save icon in the Scribus icon bar and the Save menu item. It's |
2404 | useful to call this procedure when you're changing the document, because Scribus |
||
2405 | won't automatically notice when you change the document using a script. |
||
952 | cbradney | 2406 | </source> |
3064 | cbradney | 2407 | <translation>docChanged(bool) |
974 | cbradney | 2408 | |
2409 | Activa o desactiva el icono de guardar en la barra de iconos de Scribs y la |
||
2410 | opción de menú Guardar. Es útil llamarlo cuando estás cambiando el documento, |
||
2411 | porque Scribus no notará automáticamente cuando se cambie el documento |
||
2412 | con un script. |
||
2413 | </translation> |
||
952 | cbradney | 2414 | </message> |
1525 | cbradney | 2415 | <message> |
9729 | cbradney | 2416 | <location filename="../plugins/scriptplugin/cmdmani.h" line="199"/> |
3064 | cbradney | 2417 | <source>setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>) |
1525 | cbradney | 2418 | |
3064 | cbradney | 2419 | Sets the scale to frame on the selected or specified image frame to `scaletoframe'. |
2420 | If `proportional' is specified, set fixed aspect ratio scaling to `proportional'. |
||
2421 | Both `scaletoframe' and `proportional' are boolean. |
||
1525 | cbradney | 2422 | |
2423 | May raise WrongFrameTypeError. |
||
2424 | </source> |
||
3064 | cbradney | 2425 | <translation>setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>) |
2140 | cbradney | 2426 | |
2427 | Establece la opción escalar al tamaño del marco a "scaletoframe" en el marco de |
||
2428 | imagen seleccionado o especificado por "name". |
||
2429 | Si se especifica "proportional", establece la opción mantener la relación de aspecto |
||
2430 | a "proportional". |
||
2431 | Tanto "scaletoframe" como "proportional" son booleanos. |
||
2432 | |||
2433 | Puede lanzar la excepción WrongFrameTypeError. |
||
2434 | </translation> |
||
1525 | cbradney | 2435 | </message> |
2436 | <message> |
||
9729 | cbradney | 2437 | <location filename="" line="136965632"/> |
3064 | cbradney | 2438 | <source>selectText(start, count, ["name"]) |
1525 | cbradney | 2439 | |
2140 | cbradney | 2440 | Selects "count" characters of text in the text frame "name" starting from the |
2441 | character "start". Character counting starts at 0. If "count" is zero, any |
||
2442 | text selection will be cleared. If "count" is -1, all text in the frame will |
||
2443 | be selected. If "name" is not given the currently selected item is used. |
||
1525 | cbradney | 2444 | |
2140 | cbradney | 2445 | May throw IndexError if the selection is outside the bounds of the text. |
1525 | cbradney | 2446 | </source> |
3064 | cbradney | 2447 | <translation type="obsolete">selectText(start, count, ["name"]) |
2140 | cbradney | 2448 | |
2449 | Selecciona "count" caracteres del marco de texto "name" empezando |
||
2450 | desde el carácter "start". Los caracteres se cuentan desde 0. Si "count" |
||
2451 | es cero, se perderá cualquier selección que hubiera. Si "count" es -1, |
||
2452 | se seleccionará todo el texto del marco. Si no se pasa "name" se usará |
||
2453 | el objeto seleccionado actualmente. |
||
2454 | |||
2455 | Puede lanzar la excepción IndexError si la selección está fuera de los |
||
2456 | límites del texto. |
||
2457 | </translation> |
||
1525 | cbradney | 2458 | </message> |
2459 | <message> |
||
9729 | cbradney | 2460 | <location filename="" line="136965632"/> |
3064 | cbradney | 2461 | <source>register_macro_code(name, sourcetext, accel='') |
1525 | cbradney | 2462 | |
2140 | cbradney | 2463 | Create a macro named "name" by evaluating the the source code "sourcetext". |
2464 | "sourcetext" must follow the same rules as macros created in the GUI. |
||
2465 | If provided, the string "accel" will be used to set a keyboard shortcut |
||
2466 | for the macro. |
||
2467 | </source> |
||
3064 | cbradney | 2468 | <translation type="obsolete">register_macro_code(name, sourcetext, accel='') |
2140 | cbradney | 2469 | |
2470 | Crea una macro llamada "name" evaluando el código fuente "sourcetext". |
||
2471 | "sourcetext" debe seguir las mismas reglas que las macros creadas en |
||
2472 | la interfaz gráfica. Si se proporciona "accel" se usará para establecer un |
||
2473 | acceso rápido para la macro. |
||
2474 | </translation> |
||
2475 | </message> |
||
2476 | <message> |
||
9729 | cbradney | 2477 | <location filename="../plugins/scriptplugin/cmdmisc.h" line="222"/> |
3064 | cbradney | 2478 | <source>isLayerPrintable("layer") -> bool |
2140 | cbradney | 2479 | |
1525 | cbradney | 2480 | Returns whether the layer "layer" is printable or not, a value of True means |
2481 | that the layer "layer" can be printed, a value of False means that printing |
||
2482 | the layer "layer" is disabled. |
||
2483 | |||
3064 | cbradney | 2484 | May raise NotFoundError if the layer can't be found. |
2485 | May raise ValueError if the layer name isn't acceptable. |
||
1525 | cbradney | 2486 | </source> |
3064 | cbradney | 2487 | <translation>isLayerPrintable("layer") -> bool |
2140 | cbradney | 2488 | |
2489 | Devuelve si la capa "layer" es imprimible o no, un valor de True significa |
||
2490 | que la capa "layer" se puede imprimir, un valor de False significa que se |
||
2491 | ha desactivado la impresión de la capa"layer". |
||
2492 | |||
2493 | Puede lanzar la excepción NotFoundError si no se puede encontrar la capa. |
||
2494 | Puede lanzar la excepción ValueError si el nombre de la capa no es válido. |
||
2495 | </translation> |
||
1525 | cbradney | 2496 | </message> |
2497 | <message> |
||
9729 | cbradney | 2498 | <location filename="" line="136965632"/> |
3064 | cbradney | 2499 | <source>getColorAsRGB("name") -> tuple |
1525 | cbradney | 2500 | |
2501 | Returns a tuple (R,G,B) containing the three color components of the |
||
2140 | cbradney | 2502 | color "name" from the current document, converted to the RGB colour |
1525 | cbradney | 2503 | space. If no document is open, returns the value of the named color |
2504 | from the default document colors. |
||
2505 | |||
3064 | cbradney | 2506 | May raise NotFoundError if the named color wasn't found. |
1525 | cbradney | 2507 | May raise ValueError if an invalid color name is specified. |
2508 | </source> |
||
3064 | cbradney | 2509 | <translation type="obsolete">getColorAsRGB("name") -> tuple |
1525 | cbradney | 2510 | |
2140 | cbradney | 2511 | Devuelve un vector (R,G,B) conteniendo las tres componentes de color |
2512 | del color "name" del actual documento, convertido al espacio de color |
||
2513 | RGB. Si no hay ningún documento abierto, devuelve el valor de dicho |
||
2514 | color de los colores por defecto. |
||
1525 | cbradney | 2515 | |
2140 | cbradney | 2516 | Puede lanzar la excepción NotFoundError si no se puede encontrar dicho color. |
2517 | Puede lanzar la excepción ValueError si el nombre del color no es válido. |
||
2518 | </translation> |
||
1525 | cbradney | 2519 | </message> |
2520 | <message> |
||
9729 | cbradney | 2521 | <location filename="../plugins/scriptplugin/cmdmisc.h" line="62"/> |
3064 | cbradney | 2522 | <source>renderFont("name", "filename", "sample", size, format="PPM") -> bool |
1525 | cbradney | 2523 | |
2140 | cbradney | 2524 | Creates an image preview of font "name" with given text "sample" and size. |
2525 | If "filename" is not "", image is saved into "filename". Otherwise |
||
2526 | image data is returned as a string. The optional "format" argument |
||
2527 | specifies the image format to generate, and supports any format allowed |
||
2528 | by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM. |
||
2529 | |||
3064 | cbradney | 2530 | May raise NotFoundError if the specified font can't be found. |
2140 | cbradney | 2531 | May raise ValueError if an empty sample or filename is passed. |
1525 | cbradney | 2532 | </source> |
3064 | cbradney | 2533 | <translation>renderFont("name", "filename", "sample", size, format="PPM") -> bool |
1525 | cbradney | 2534 | |
2140 | cbradney | 2535 | Crea una previsualización de la fuente "name" con el texto "sample" y |
2536 | de tamaño "size". Si "filename" no es "", la imagen se guarda en"filename". |
||
2537 | De otra forma la imagen se devuelve como una cadena. El argumento |
||
2538 | opcional "format" especifica el formato de imagen a generar, y admite |
||
2539 | cualquier formato permitido por QPixmap.save(). Los formatos comunes |
||
2540 | son PPM, JPEG, PNG y XPM. |
||
2541 | |||
2542 | Puede lanzar la excepción NotFoundError si no se puede encontrar la |
||
2543 | fuente indicada. |
||
2544 | Puede lanzar la excepción ValueError si "filename" o "sample" son |
||
2545 | cadenas vacías. |
||
2546 | </translation> |
||
1525 | cbradney | 2547 | </message> |
2548 | <message> |
||
9729 | cbradney | 2549 | <location filename="../plugins/scriptplugin/cmdmisc.h" line="208"/> |
3064 | cbradney | 2550 | <source>isLayerVisible("layer") -> bool |
1525 | cbradney | 2551 | |
2140 | cbradney | 2552 | Returns whether the layer "layer" is visible or not, a value of True means |
2553 | that the layer "layer" is visible, a value of False means that the layer |
||
2554 | "layer" is invisible. |
||
1525 | cbradney | 2555 | |
3064 | cbradney | 2556 | May raise NotFoundError if the layer can't be found. |
2557 | May raise ValueError if the layer name isn't acceptable. |
||
1525 | cbradney | 2558 | </source> |
7508 | cbradney | 2559 | <translation type="unfinished">isLayerVisible("layer") -> bool |
1525 | cbradney | 2560 | |
2140 | cbradney | 2561 | Devuelve si la capa "layer" es visible o no, un valor de True significa |
2562 | que la capa "layer" es visible, un valor de False significa que la capa |
||
2563 | "layer" es invisible. |
||
2564 | |||
2565 | Puede lanzar la excepción NotFoundError si no se puede encontrar la capa. |
||
2566 | Puede lanzar la excepción ValueError si el nombre de la capa no es válido. |
||
2567 | </translation> |
||
1525 | cbradney | 2568 | </message> |
2569 | <message> |
||
9729 | cbradney | 2570 | <location filename="../plugins/scriptplugin/cmdtext.h" line="342"/> |
3064 | cbradney | 2571 | <source>setPDFBookmark("toggle", ["name"]) |
1525 | cbradney | 2572 | |
2140 | cbradney | 2573 | Sets wether (toggle = 1) the text frame "name" is a bookmark nor not. |
2574 | If "name" is not given the currently selected item is used. |
||
1525 | cbradney | 2575 | |
2140 | cbradney | 2576 | May raise WrongFrameTypeError if the target frame is not a text frame |
2577 | </source> |
||
3064 | cbradney | 2578 | <translation>setPDFBookmark("toggle", ["name"]) |
1525 | cbradney | 2579 | |
2140 | cbradney | 2580 | Establece si (toggle = 1) el marco de texto "name" es un marcador o no. |
2581 | Si no se pasa "name" se usa el objeto actualmente seleccionado. |
||
1525 | cbradney | 2582 | |
2140 | cbradney | 2583 | Puede lanzar la excepción WrongFrameTypeError si el marco de destino |
2584 | no es un marco de texto. |
||
2585 | </translation> |
||
1525 | cbradney | 2586 | </message> |
2587 | <message> |
||
9729 | cbradney | 2588 | <location filename="../plugins/scriptplugin/cmdtext.h" line="354"/> |
3064 | cbradney | 2589 | <source>isPDFBookmark(["name"]) -> bool |
1525 | cbradney | 2590 | |
2140 | cbradney | 2591 | Returns true if the text frame "name" is a PDF bookmark. |
2592 | If "name" is not given the currently selected item is used. |
||
1525 | cbradney | 2593 | |
2140 | cbradney | 2594 | May raise WrongFrameTypeError if the target frame is not a text frame |
1525 | cbradney | 2595 | </source> |
3064 | cbradney | 2596 | <translation>isPDFBookmark(["name"]) -> bool |
1525 | cbradney | 2597 | |
2140 | cbradney | 2598 | Devuelve si el marco de texto "name" es un marcador de PDF. |
2599 | Si no se pasa "name" se usa el objeto actualmente seleccionado. |
||
1525 | cbradney | 2600 | |
2140 | cbradney | 2601 | Puede lanzar la excepción WrongFrameTypeError si el marco de destino |
2602 | no es un marco de texto. |
||
2603 | </translation> |
||
1525 | cbradney | 2604 | </message> |
2605 | <message> |
||
9729 | cbradney | 2606 | <location filename="../plugins/scriptplugin/cmdpage.h" line="181"/> |
3064 | cbradney | 2607 | <source>getPageMargins() |
1525 | cbradney | 2608 | |
2140 | cbradney | 2609 | Returns the page margins as a (top, left, right, bottom) tuple in the current |
3064 | cbradney | 2610 | units. See UNIT_<type> constants and getPageSize(). |
1525 | cbradney | 2611 | </source> |
3064 | cbradney | 2612 | <translation>getPageMargins() |
1525 | cbradney | 2613 | |
2140 | cbradney | 2614 | Devuelve los márgenes de página como un vector (arriba, izquierda, derecha, abajo) |
3064 | cbradney | 2615 | en las unidades actuales. Ver las constantes UNIT_<tipo> y getPageSize(). |
2140 | cbradney | 2616 | </translation> |
1525 | cbradney | 2617 | </message> |
2618 | <message> |
||
9729 | cbradney | 2619 | <location filename="" line="136965632"/> |
3064 | cbradney | 2620 | <source>insertText("text", pos, ["name"]) |
1525 | cbradney | 2621 | |
2140 | cbradney | 2622 | Inserts the text "text" at the position "pos" into the text frame "name". |
2623 | Text must be UTF encoded (see setText() as reference). The first character has |
||
2624 | an index of 0. Inserting at position -1 appends text to the frame. If "name" |
||
2625 | is not given the currently selected Item is used. |
||
1525 | cbradney | 2626 | |
2140 | cbradney | 2627 | May throw IndexError for an insertion out of bounds. |
1525 | cbradney | 2628 | </source> |
3064 | cbradney | 2629 | <translation type="obsolete">insertText("text", pos, ["name"]) |
1525 | cbradney | 2630 | |
2140 | cbradney | 2631 | Inserta el texto "text" en la posición "pos" en el marco de texto "name". |
2632 | El texto debe estar codificado en UTF (ver setText() como referencia). |
||
2633 | El primer carácter tiene índice 0. Insertar en la posición -1 añade "text" |
||
2634 | al marco. Si no se pasa "name" se usará el objeto actualmente seleccionado. |
||
1525 | cbradney | 2635 | |
2140 | cbradney | 2636 | Puede lanzar la excepción IndexError para una inserción fuera de rango. |
2637 | </translation> |
||
1525 | cbradney | 2638 | </message> |
3064 | cbradney | 2639 | <message> |
9729 | cbradney | 2640 | <location filename="../plugins/scriptplugin/cmdcolor.h" line="50"/> |
3064 | cbradney | 2641 | <source>getColorAsRGB("name") -> tuple |
2642 | |||
2643 | Returns a tuple (R,G,B) containing the three color components of the |
||
2644 | color "name" from the current document, converted to the RGB color |
||
2645 | space. If no document is open, returns the value of the named color |
||
2646 | from the default document colors. |
||
2647 | |||
2648 | May raise NotFoundError if the named color wasn't found. |
||
2649 | May raise ValueError if an invalid color name is specified. |
||
2650 | </source> |
||
2651 | <translation type="unfinished"></translation> |
||
2652 | </message> |
||
2653 | <message> |
||
9729 | cbradney | 2654 | <location filename="../plugins/scriptplugin/cmddialog.h" line="111"/> |
3064 | cbradney | 2655 | <source>newStyleDialog() -> string |
2656 | |||
2657 | Shows 'Create new paragraph style' dialog. Function returns real |
||
2658 | style name or None when user cancels the dialog. |
||
2659 | </source> |
||
2660 | <translation type="unfinished"></translation> |
||
2661 | </message> |
||
2662 | <message> |
||
9729 | cbradney | 2663 | <location filename="../plugins/scriptplugin/cmdgetsetprop.h" line="84"/> |
3064 | cbradney | 2664 | <source>getPropertyCType(object, property, includesuper=True) |
2665 | |||
2666 | Returns the name of the C type of `property' of `object'. See getProperty() |
||
2667 | for details of arguments. |
||
2668 | |||
2669 | If `includesuper' is true, search inherited properties too. |
||
2670 | </source> |
||
2671 | <translation type="unfinished"></translation> |
||
2672 | </message> |
||
2673 | <message> |
||
9729 | cbradney | 2674 | <location filename="../plugins/scriptplugin/cmdgetsetprop.h" line="102"/> |
3064 | cbradney | 2675 | <source>getPropertyNames(object, includesuper=True) |
2676 | |||
2677 | Return a list of property names supported by `object'. |
||
2678 | If `includesuper' is true, return properties supported |
||
2679 | by parent classes as well. |
||
2680 | </source> |
||
2681 | <translation type="unfinished"></translation> |
||
2682 | </message> |
||
2683 | <message> |
||
9729 | cbradney | 2684 | <location filename="../plugins/scriptplugin/cmdgetsetprop.h" line="136"/> |
3064 | cbradney | 2685 | <source>getProperty(object, property) |
2686 | |||
2687 | Return the value of the property `property' of the passed `object'. |
||
2688 | |||
2689 | The `object' argument may be a string, in which case the named PageItem |
||
2690 | is searched for. It may also be a PyCObject, which may point to any |
||
2691 | C++ QObject instance. |
||
2692 | |||
2693 | The `property' argument must be a string, and is the name of the property |
||
2694 | to look up on `object'. |
||
2695 | |||
2696 | The return value varies depending on the type of the property. |
||
2697 | </source> |
||
2698 | <translation type="unfinished"></translation> |
||
2699 | </message> |
||
2700 | <message> |
||
9729 | cbradney | 2701 | <location filename="../plugins/scriptplugin/cmdgetsetprop.h" line="166"/> |
3064 | cbradney | 2702 | <source>setProperty(object, property, value) |
2703 | |||
2704 | Set `property' of `object' to `value'. If `value' cannot be converted to a type |
||
2705 | compatible with the type of `property', an exception is raised. An exception may |
||
2706 | also be raised if the underlying setter fails. |
||
2707 | |||
2708 | See getProperty() for more information. |
||
2709 | </source> |
||
2710 | <translation type="unfinished"></translation> |
||
2711 | </message> |
||
2712 | <message> |
||
9729 | cbradney | 2713 | <location filename="../plugins/scriptplugin/cmdgetsetprop.h" line="185"/> |
3064 | cbradney | 2714 | <source>getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True) |
2715 | |||
2716 | Return a list of children of `object', possibly restricted to children |
||
2717 | of class named `ofclass' or children named `ofname'. If `recursive' is true, |
||
2718 | search recursively through children, grandchildren, etc. |
||
2719 | |||
2720 | See QObject::children() in the Qt docs for more information. |
||
2721 | </source> |
||
2722 | <translation type="unfinished"></translation> |
||
2723 | </message> |
||
2724 | <message> |
||
9729 | cbradney | 2725 | <location filename="../plugins/scriptplugin/cmdgetsetprop.h" line="202"/> |
3064 | cbradney | 2726 | <source>getChild(object, childname, ofclass=None, recursive=True) |
2727 | |||
2728 | Return the first child of `object' named `childname', possibly restricting |
||
2729 | the search to children of type name `ofclass'. If `recursive' is true, |
||
2730 | search recursively through children, grandchildren, etc. |
||
2731 | </source> |
||
2732 | <translation type="unfinished"></translation> |
||
2733 | </message> |
||
2734 | <message> |
||
9729 | cbradney | 2735 | <location filename="../plugins/scriptplugin/cmdtext.h" line="226"/> |
3064 | cbradney | 2736 | <source>selectText(start, count, ["name"]) |
2737 | |||
2738 | Selects "count" characters of text in the text frame "name" starting from the |
||
2739 | character "start". Character counting starts at 0. If "count" is zero, any |
||
2740 | text selection will be cleared. If "name" is not given the currently |
||
2741 | selected item is used. |
||
2742 | |||
2743 | May throw IndexError if the selection is outside the bounds of the text. |
||
2744 | </source> |
||
2745 | <translation type="unfinished"></translation> |
||
2746 | </message> |
||
2747 | <message> |
||
9729 | cbradney | 2748 | <location filename="../plugins/scriptplugin/cmdtext.h" line="328"/> |
3064 | cbradney | 2749 | <source>textOverflows(["name", nolinks]) -> integer |
2750 | |||
2751 | Returns the actual number of overflowing characters in text frame "name". |
||
2752 | If is nolinks set to non zero value it takes only one frame - it doesn't |
||
2753 | use text frame linking. Without this parameter it search all linking chain. |
||
2754 | |||
2755 | May raise WrongFrameTypeError if the target frame is not an text frame |
||
2756 | </source> |
||
2757 | <translation type="unfinished"></translation> |
||
2758 | </message> |
||
3824 | cbradney | 2759 | <message> |
9729 | cbradney | 2760 | <location filename="../plugins/scriptplugin/cmddoc.h" line="96"/> |
3824 | cbradney | 2761 | <source>newDoc(size, margins, orientation, firstPageNumber, |
2762 | unit, facingPages, firstSideLeft) -> bool |
||
2763 | |||
2764 | WARNING: Obsolete procedure! Use newDocument instead. |
||
2765 | |||
2766 | Creates a new document and returns true if successful. The parameters have the |
||
2767 | following meaning: |
||
2768 | |||
2769 | size = A tuple (width, height) describing the size of the document. You can |
||
2770 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
||
2771 | |||
2772 | margins = A tuple (left, right, top, bottom) describing the document |
||
2773 | margins |
||
2774 | |||
2775 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
2776 | |||
2777 | firstPageNumer = is the number of the first page in the document used for |
||
2778 | pagenumbering. While you'll usually want 1, it's useful to have higher |
||
2779 | numbers if you're creating a document in several parts. |
||
2780 | |||
2781 | unit: this value sets the measurement units used by the document. Use a |
||
2782 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
2783 | UNIT_PICAS, UNIT_POINTS. |
||
2784 | |||
2785 | facingPages = FACINGPAGES, NOFACINGPAGES |
||
2786 | |||
2787 | firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT |
||
2788 | |||
2789 | The values for width, height and the margins are expressed in the given unit |
||
2790 | for the document. PAPER_* constants are expressed in points. If your document |
||
2791 | is not in points, make sure to account for this. |
||
2792 | |||
2793 | example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
||
2794 | FACINGPAGES, FIRSTPAGERIGHT) |
||
2795 | </source> |
||
2796 | <translation type="unfinished"></translation> |
||
2797 | </message> |
||
4141 | cbradney | 2798 | <message> |
9729 | cbradney | 2799 | <location filename="../plugins/scriptplugin/cmddoc.h" line="226"/> |
4141 | cbradney | 2800 | <source>closeMasterPage() |
2801 | |||
2802 | Closes the currently active master page, if any, and returns editing |
||
2803 | to normal. Begin editing with editMasterPage(). |
||
2804 | </source> |
||
2805 | <translation type="unfinished"></translation> |
||
2806 | </message> |
||
2807 | <message> |
||
9729 | cbradney | 2808 | <location filename="../plugins/scriptplugin/cmddoc.h" line="233"/> |
4141 | cbradney | 2809 | <source>masterPageNames() |
2810 | |||
2811 | Returns a list of the names of all master pages in the document. |
||
2812 | </source> |
||
2813 | <translation type="unfinished"></translation> |
||
2814 | </message> |
||
2815 | <message> |
||
9729 | cbradney | 2816 | <location filename="../plugins/scriptplugin/cmddoc.h" line="241"/> |
4141 | cbradney | 2817 | <source>editMasterPage(pageName) |
2818 | |||
2819 | Enables master page editing and opens the named master page |
||
2820 | for editing. Finish editing with closeMasterPage(). |
||
2821 | </source> |
||
2822 | <translation type="unfinished"></translation> |
||
2823 | </message> |
||
2824 | <message> |
||
9729 | cbradney | 2825 | <location filename="../plugins/scriptplugin/cmddoc.h" line="249"/> |
4141 | cbradney | 2826 | <source>createMasterPage(pageName) |
2827 | |||
2828 | Creates a new master page named pageName and opens it for |
||
2829 | editing. |
||
2830 | </source> |
||
2831 | <translation type="unfinished"></translation> |
||
2832 | </message> |
||
2833 | <message> |
||
9729 | cbradney | 2834 | <location filename="../plugins/scriptplugin/cmddoc.h" line="256"/> |
4141 | cbradney | 2835 | <source>deleteMasterPage(pageName) |
2836 | |||
2837 | Delete the named master page. |
||
2838 | </source> |
||
2839 | <translation type="unfinished"></translation> |
||
2840 | </message> |
||
2841 | <message> |
||
9729 | cbradney | 2842 | <location filename="../plugins/scriptplugin/guiapp.h" line="95"/> |
4141 | cbradney | 2843 | <source>zoomDocument(double) |
2844 | |||
2845 | Zoom the document in main GUI window. Actions have whole number |
||
2846 | values like 20.0, 100.0, etc. Zoom to Fit uses -100 as a marker. |
||
2847 | </source> |
||
2848 | <translation type="unfinished"></translation> |
||
2849 | </message> |
||
6261 | cbradney | 2850 | <message> |
9729 | cbradney | 2851 | <location filename="../plugins/scriptplugin/cmdgetprop.h" line="31"/> |
6261 | cbradney | 2852 | <source>getFillTransparency(["name"]) -> float |
2853 | |||
2854 | Returns the fill transparency of the object "name". If "name" |
||
2855 | is not given the currently selected Item is used. |
||
2856 | </source> |
||
2857 | <translation type="unfinished"></translation> |
||
2858 | </message> |
||
2859 | <message> |
||
9729 | cbradney | 2860 | <location filename="../plugins/scriptplugin/cmdgetprop.h" line="41"/> |
6261 | cbradney | 2861 | <source>getFillBlendmode(["name"]) -> integer |
2862 | |||
2863 | Returns the fill blendmode of the object "name". If "name" |
||
2864 | is not given the currently selected Item is used. |
||
2865 | </source> |
||
2866 | <translation type="unfinished"></translation> |
||
2867 | </message> |
||
2868 | <message> |
||
9729 | cbradney | 2869 | <location filename="../plugins/scriptplugin/cmdgetprop.h" line="61"/> |
6261 | cbradney | 2870 | <source>getLineTransparency(["name"]) -> float |
2871 | |||
2872 | Returns the line transparency of the object "name". If "name" |
||
2873 | is not given the currently selected Item is used. |
||
2874 | </source> |
||
2875 | <translation type="unfinished"></translation> |
||
2876 | </message> |
||
2877 | <message> |
||
9729 | cbradney | 2878 | <location filename="../plugins/scriptplugin/cmdgetprop.h" line="71"/> |
6261 | cbradney | 2879 | <source>getLineBlendmode(["name"]) -> integer |
2880 | |||
2881 | Returns the line blendmode of the object "name". If "name" |
||
2882 | is not given the currently selected Item is used. |
||
2883 | </source> |
||
2884 | <translation type="unfinished"></translation> |
||
2885 | </message> |
||
2886 | <message> |
||
9729 | cbradney | 2887 | <location filename="../plugins/scriptplugin/cmdmisc.h" line="144"/> |
6261 | cbradney | 2888 | <source>setLayerLocked("layer", locked) |
2889 | |||
2890 | Sets the layer "layer" to be locked or not. If locked is set to |
||
2891 | true the layer will be locked. |
||
2892 | |||
2893 | May raise NotFoundError if the layer can't be found. |
||
2894 | May raise ValueError if the layer name isn't acceptable. |
||
2895 | </source> |
||
2896 | <translation type="unfinished"></translation> |
||
2897 | </message> |
||
2898 | <message> |
||
9729 | cbradney | 2899 | <location filename="../plugins/scriptplugin/cmdmisc.h" line="236"/> |
2900 | <source>isLayerLocked("layer") -> bool |
||
6261 | cbradney | 2901 | |
9729 | cbradney | 2902 | Returns whether the layer "layer" is locked or not, a value of True means |
2903 | that the layer "layer" is editable, a value of False means that the layer |
||
2904 | "layer" is locked. |
||
6261 | cbradney | 2905 | |
2906 | May raise NotFoundError if the layer can't be found. |
||
2907 | May raise ValueError if the layer name isn't acceptable. |
||
2908 | </source> |
||
2909 | <translation type="unfinished"></translation> |
||
2910 | </message> |
||
2911 | <message> |
||
9729 | cbradney | 2912 | <location filename="../plugins/scriptplugin/cmdmisc.h" line="250"/> |
2913 | <source>isLayerOutlined("layer") -> bool |
||
6261 | cbradney | 2914 | |
9729 | cbradney | 2915 | Returns whether the layer "layer" is outlined or not, a value of True means |
2916 | that the layer "layer" is outlined, a value of False means that the layer |
||
2917 | "layer" is normal. |
||
6261 | cbradney | 2918 | |
2919 | May raise NotFoundError if the layer can't be found. |
||
2920 | May raise ValueError if the layer name isn't acceptable. |
||
2921 | </source> |
||
2922 | <translation type="unfinished"></translation> |
||
2923 | </message> |
||
2924 | <message> |
||
9729 | cbradney | 2925 | <location filename="../plugins/scriptplugin/cmdmisc.h" line="263"/> |
2926 | <source>isLayerFlow("layer") -> bool |
||
6261 | cbradney | 2927 | |
9729 | cbradney | 2928 | Returns whether text flows around objects on layer "layer", a value of True means |
2929 | that text flows around, a value of False means that the text does not flow around. |
||
6261 | cbradney | 2930 | |
2931 | May raise NotFoundError if the layer can't be found. |
||
2932 | May raise ValueError if the layer name isn't acceptable. |
||
2933 | </source> |
||
2934 | <translation type="unfinished"></translation> |
||
2935 | </message> |
||
2936 | <message> |
||
9729 | cbradney | 2937 | <location filename="../plugins/scriptplugin/cmdmisc.h" line="275"/> |
2938 | <source>getLayerBlendmode("layer") -> int |
||
6261 | cbradney | 2939 | |
9729 | cbradney | 2940 | Returns the "layer" layer blendmode, |
6261 | cbradney | 2941 | |
2942 | May raise NotFoundError if the layer can't be found. |
||
2943 | May raise ValueError if the layer name isn't acceptable. |
||
2944 | </source> |
||
2945 | <translation type="unfinished"></translation> |
||
2946 | </message> |
||
2947 | <message> |
||
9729 | cbradney | 2948 | <location filename="../plugins/scriptplugin/cmdmisc.h" line="287"/> |
2949 | <source>getLayerTransparency("layer") -> float |
||
6261 | cbradney | 2950 | |
9729 | cbradney | 2951 | Returns the "layer" layer transparency, |
6261 | cbradney | 2952 | |
2953 | May raise NotFoundError if the layer can't be found. |
||
2954 | May raise ValueError if the layer name isn't acceptable. |
||
2955 | </source> |
||
2956 | <translation type="unfinished"></translation> |
||
2957 | </message> |
||
2958 | <message> |
||
9729 | cbradney | 2959 | <location filename="../plugins/scriptplugin/cmdobj.h" line="193"/> |
2960 | <source>textFlowMode("name" [, state]) |
||
6261 | cbradney | 2961 | |
9729 | cbradney | 2962 | Enables/disables "Text Flows Around Frame" feature for object "name". |
2963 | Called with parameters string name and optional int "state" (0 <= state <= 3). |
||
2964 | Setting "state" to 0 will disable text flow. |
||
2965 | Setting "state" to 1 will make text flow around object frame. |
||
2966 | Setting "state" to 2 will make text flow around bounding box. |
||
2967 | Setting "state" to 3 will make text flow around contour line. |
||
2968 | If "state" is not passed, text flow is toggled. |
||
2969 | </source> |
||
2970 | <translation type="unfinished"></translation> |
||
2971 | </message> |
||
2972 | <message> |
||
2973 | <location filename="../plugins/scriptplugin/cmdobj.h" line="252"/> |
||
2974 | <source>duplicateObject(["name"]) -> string |
||
6261 | cbradney | 2975 | |
9729 | cbradney | 2976 | creates a Duplicate of the selected Object (or Selection Group). |
6261 | cbradney | 2977 | </source> |
2978 | <translation type="unfinished"></translation> |
||
2979 | </message> |
||
2980 | <message> |
||
9729 | cbradney | 2981 | <location filename="../plugins/scriptplugin/cmddoc.h" line="162"/> |
2982 | <source>setInfo("author", "info", "description") -> bool |
||
6261 | cbradney | 2983 | |
9729 | cbradney | 2984 | Sets the document information. "Author", "Info", "Description" are |
2985 | strings. |
||
2986 | </source> |
||
2987 | <translation type="unfinished"></translation> |
||
2988 | </message> |
||
2989 | <message> |
||
2990 | <location filename="../plugins/scriptplugin/cmdpage.h" line="54"/> |
||
2991 | <source>getPageType() -> integer |
||
6261 | cbradney | 2992 | |
9729 | cbradney | 2993 | Returns the type of the Page, 0 means left Page, 1 is a middle Page and 2 is a right Page |
2994 | </source> |
||
2995 | <translation type="unfinished"></translation> |
||
2996 | </message> |
||
2997 | <message> |
||
2998 | <location filename="../plugins/scriptplugin/cmdtext.h" line="55"/> |
||
2999 | <source>getTextLines(["name"]) -> integer |
||
3000 | |||
3001 | Returns the number of lines of the text in the text frame "name". |
||
3002 | If "name" is not given the currently selected item is used. |
||
3003 | </source> |
||
3004 | <translation type="unfinished"></translation> |
||
3005 | </message> |
||
3006 | <message> |
||
3007 | <location filename="../plugins/scriptplugin/cmdmisc.h" line="131"/> |
||
3008 | <source>setLayerPrintable("layer", printable) |
||
3009 | |||
3010 | Sets the layer "layer" to be printable or not. If is the |
||
3011 | printable set to false the layer won't be printed. |
||
3012 | |||
6261 | cbradney | 3013 | May raise NotFoundError if the layer can't be found. |
3014 | May raise ValueError if the layer name isn't acceptable. |
||
3015 | </source> |
||
3016 | <translation type="unfinished"></translation> |
||
3017 | </message> |
||
3018 | <message> |
||
9729 | cbradney | 3019 | <location filename="../plugins/scriptplugin/cmdtext.h" line="135"/> |
3020 | <source>insertText("text", pos, ["name"]) |
||
6261 | cbradney | 3021 | |
9729 | cbradney | 3022 | Inserts the text "text" at the position "pos" into the text frame "name". |
3023 | Text must be UTF encoded (see setText() as reference) The first character has an |
||
3024 | index of 0. Inserting text at position -1 appends it to the frame. If "name" is |
||
3025 | not given the currently selected Item is used. |
||
6261 | cbradney | 3026 | |
9729 | cbradney | 3027 | May throw IndexError for an insertion out of bounds. |
3028 | </source> |
||
3029 | <translation type="unfinished"></translation> |
||
3030 | </message> |
||
3031 | <message> |
||
3032 | <location filename="../plugins/fileloader/scribus12format/scribus12format.cpp" line="1593"/> |
||
3033 | <source>Copy #%1 of </source> |
||
10130 | cbradney | 3034 | <translation type="obsolete">Copia #%1 de </translation> |
9729 | cbradney | 3035 | </message> |
3036 | <message> |
||
3037 | <location filename="../plugins/scriptplugin/cmddialog.h" line="46"/> |
||
3038 | <source>fileDialog("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename |
||
3039 | |||
3040 | Shows a File Open dialog box with the caption "caption". Files are filtered |
||
3041 | with the filter string "filter". A default filename or file path can also |
||
3042 | supplied, leave this string empty when you don't want to use it. A value of |
||
3043 | True for haspreview enables a small preview widget in the FileSelect box. When |
||
3044 | the issave parameter is set to True the dialog acts like a "Save As" dialog |
||
3045 | otherwise it acts like a "File Open Dialog". When the isdir parameter is True |
||
3046 | the dialog shows and returns only directories. The default for all of the |
||
3047 | opional parameters is False. |
||
3048 | |||
3049 | The filter, if specified, takes the form 'comment (*.type *.type2 ...)'. |
||
3050 | For example 'Images (*.png *.xpm *.jpg)'. |
||
3051 | |||
3052 | Refer to the Qt-Documentation for Q3FileDialog for details on filters. |
||
3053 | |||
3054 | Example: fileDialog('Open input', 'CSV files (*.csv)') |
||
3055 | Example: fileDialog('Save report', defaultname='report.txt', issave=True) |
||
3056 | </source> |
||
3057 | <translation type="unfinished"></translation> |
||
3058 | </message> |
||
3059 | <message> |
||
3060 | <location filename="../plugins/scriptplugin/cmddoc.h" line="173"/> |
||
3061 | <source>setMargins(lr, rr, tr, br) |
||
3062 | |||
3063 | Sets the margins of the document, Qt::DockLeft(lr), Qt::DockRight(rr), Qt::DockTop(tr) and Qt::DockBottom(br) |
||
3064 | margins are given in the measurement units of the document - see UNIT_<type> |
||
3065 | constants. |
||
3066 | </source> |
||
3067 | <translation type="unfinished"></translation> |
||
3068 | </message> |
||
3069 | <message> |
||
3070 | <location filename="../plugins/scriptplugin/cmdmisc.h" line="157"/> |
||
3071 | <source>setLayerOutlined("layer", outline) |
||
3072 | |||
3073 | Sets the layer "layer" to be locked or not. If outline is set to |
||
3074 | true the layer will be displayed outlined. |
||
3075 | |||
6261 | cbradney | 3076 | May raise NotFoundError if the layer can't be found. |
3077 | May raise ValueError if the layer name isn't acceptable. |
||
3078 | </source> |
||
3079 | <translation type="unfinished"></translation> |
||
3080 | </message> |
||
3081 | <message> |
||
9729 | cbradney | 3082 | <location filename="../plugins/scriptplugin/cmdmisc.h" line="170"/> |
3083 | <source>setLayerFlow("layer", flow) |
||
6261 | cbradney | 3084 | |
9729 | cbradney | 3085 | Sets the layers "layer" flowcontrol to flow. If flow is set to |
3086 | true text in layers above this one will flow around objects on this layer. |
||
6261 | cbradney | 3087 | |
3088 | May raise NotFoundError if the layer can't be found. |
||
3089 | May raise ValueError if the layer name isn't acceptable. |
||
3090 | </source> |
||
3091 | <translation type="unfinished"></translation> |
||
3092 | </message> |
||
3093 | <message> |
||
9729 | cbradney | 3094 | <location filename="../plugins/scriptplugin/cmdmisc.h" line="182"/> |
3095 | <source>setLayerBlendmode("layer", blend) |
||
6261 | cbradney | 3096 | |
9729 | cbradney | 3097 | Sets the layers "layer" blendmode to blend. |
3098 | |||
3099 | May raise NotFoundError if the layer can't be found. |
||
3100 | May raise ValueError if the layer name isn't acceptable. |
||
6261 | cbradney | 3101 | </source> |
3102 | <translation type="unfinished"></translation> |
||
3103 | </message> |
||
3104 | <message> |
||
9729 | cbradney | 3105 | <location filename="../plugins/scriptplugin/cmdmisc.h" line="194"/> |
3106 | <source>setLayerTransparency("layer", trans) |
||
6261 | cbradney | 3107 | |
9729 | cbradney | 3108 | Sets the layers "layer" transparency to trans. |
3109 | |||
3110 | May raise NotFoundError if the layer can't be found. |
||
3111 | May raise ValueError if the layer name isn't acceptable. |
||
6261 | cbradney | 3112 | </source> |
3113 | <translation type="unfinished"></translation> |
||
3114 | </message> |
||
3115 | <message> |
||
9729 | cbradney | 3116 | <location filename="../plugins/scriptplugin/cmdsetprop.h" line="43"/> |
6261 | cbradney | 3117 | <source>setFillTransparency(transparency, ["name"]) |
3118 | |||
3119 | Sets the fill transparency of the object "name" to transparency |
||
9729 | cbradney | 3120 | If "name" is not given the currently selected item is used. |
6261 | cbradney | 3121 | </source> |
3122 | <translation type="unfinished"></translation> |
||
3123 | </message> |
||
3124 | <message> |
||
9729 | cbradney | 3125 | <location filename="../plugins/scriptplugin/cmdsetprop.h" line="53"/> |
6261 | cbradney | 3126 | <source>setFillBlendmode(blendmode, ["name"]) |
3127 | |||
3128 | Sets the fill blendmode of the object "name" to blendmode |
||
9729 | cbradney | 3129 | If "name" is not given the currently selected item is used. |
6261 | cbradney | 3130 | </source> |
3131 | <translation type="unfinished"></translation> |
||
3132 | </message> |
||
3133 | <message> |
||
9729 | cbradney | 3134 | <location filename="../plugins/scriptplugin/cmdsetprop.h" line="73"/> |
6261 | cbradney | 3135 | <source>setLineTransparency(transparency, ["name"]) |
3136 | |||
3137 | Sets the line transparency of the object "name" to transparency |
||
9729 | cbradney | 3138 | If "name" is not given the currently selected item is used. |
6261 | cbradney | 3139 | </source> |
3140 | <translation type="unfinished"></translation> |
||
3141 | </message> |
||
3142 | <message> |
||
9729 | cbradney | 3143 | <location filename="../plugins/scriptplugin/cmdsetprop.h" line="83"/> |
6261 | cbradney | 3144 | <source>setLineBlendmode(blendmode, ["name"]) |
3145 | |||
3146 | Sets the line blendmode of the object "name" to blendmode |
||
9729 | cbradney | 3147 | If "name" is not given the currently selected item is used. |
6261 | cbradney | 3148 | </source> |
3149 | <translation type="unfinished"></translation> |
||
3150 | </message> |
||
6434 | cbradney | 3151 | <message> |
9729 | cbradney | 3152 | <location filename="../plugins/scriptplugin/svgimport.h" line="33"/> |
3153 | <source>placeEPS("filename", x, y) |
||
6434 | cbradney | 3154 | |
9729 | cbradney | 3155 | Places the EPS "filename" onto the current page, |
3156 | x and y specify the coordinate of the topleft corner of the EPS placed on the page |
||
6434 | cbradney | 3157 | |
9729 | cbradney | 3158 | If loading was successful, the selection contains the imported EPS |
6434 | cbradney | 3159 | </source> |
3160 | <translation type="unfinished"></translation> |
||
3161 | </message> |
||
3162 | <message> |
||
9729 | cbradney | 3163 | <location filename="../plugins/scriptplugin/svgimport.h" line="45"/> |
3164 | <source>placeSXD("filename", x, y) |
||
6434 | cbradney | 3165 | |
9729 | cbradney | 3166 | Places the SXD "filename" onto the current page, |
3167 | x and y specify the coordinate of the topleft corner of the SXD placed on the page |
||
7508 | cbradney | 3168 | |
9729 | cbradney | 3169 | If loading was successful, the selection contains the imported SXD |
7508 | cbradney | 3170 | </source> |
3171 | <translation type="unfinished"></translation> |
||
3172 | </message> |
||
3173 | <message> |
||
9729 | cbradney | 3174 | <location filename="../plugins/scriptplugin/svgimport.h" line="57"/> |
3175 | <source>placeODG("filename", x, y) |
||
7508 | cbradney | 3176 | |
9729 | cbradney | 3177 | Places the ODG "filename" onto the current page, |
3178 | x and y specify the coordinate of the topleft corner of the ODG placed on the page |
||
7508 | cbradney | 3179 | |
9729 | cbradney | 3180 | If loading was successful, the selection contains the imported ODG |
7508 | cbradney | 3181 | </source> |
3182 | <translation type="unfinished"></translation> |
||
3183 | </message> |
||
3064 | cbradney | 3184 | </context> |
3185 | <context> |
||
945 | cbradney | 3186 | <name>About</name> |
3187 | <message> |
||
10130 | cbradney | 3188 | <location filename="../about.cpp" line="48"/> |
3064 | cbradney | 3189 | <source>About Scribus %1</source> |
3190 | <translation>Acerca de Scribus %1</translation> |
||
945 | cbradney | 3191 | </message> |
3192 | <message> |
||
9729 | cbradney | 3193 | <location filename="" line="136965632"/> |
3064 | cbradney | 3194 | <source>Scribus Version %1 |
945 | cbradney | 3195 | %2 %3</source> |
3064 | cbradney | 3196 | <translation type="obsolete">Versión de Scribus %1 |
945 | cbradney | 3197 | %2 %3</translation> |
3198 | </message> |
||
3199 | <message> |
||
9729 | cbradney | 3200 | <location filename="" line="136965632"/> |
3064 | cbradney | 3201 | <source>Build-ID:</source> |
3824 | cbradney | 3202 | <translation type="obsolete">Build-ID:</translation> |
945 | cbradney | 3203 | </message> |
3204 | <message> |
||
10130 | cbradney | 3205 | <location filename="../about.cpp" line="140"/> |
3064 | cbradney | 3206 | <source>&About</source> |
3207 | <translation>&Acerca de</translation> |
||
945 | cbradney | 3208 | </message> |
3209 | <message> |
||
10130 | cbradney | 3210 | <location filename="../about.cpp" line="146"/> |
3064 | cbradney | 3211 | <source>Development Team:</source> |
3212 | <translation>Equipo de Desarrollo:</translation> |
||
945 | cbradney | 3213 | </message> |
3214 | <message> |
||
10130 | cbradney | 3215 | <location filename="../about.cpp" line="158"/> |
3064 | cbradney | 3216 | <source>Contributions from:</source> |
3217 | <translation>Contribuciones de:</translation> |
||
945 | cbradney | 3218 | </message> |
3219 | <message> |
||
9729 | cbradney | 3220 | <location filename="" line="136965632"/> |
3064 | cbradney | 3221 | <source>Windows port:</source> |
3222 | <translation type="obsolete">Versión de Windows:</translation> |
||
945 | cbradney | 3223 | </message> |
3224 | <message> |
||
10130 | cbradney | 3225 | <location filename="../about.cpp" line="189"/> |
3064 | cbradney | 3226 | <source>Official Documentation:</source> |
3227 | <translation>Documentación Oficial:</translation> |
||
945 | cbradney | 3228 | </message> |
3229 | <message> |
||
10130 | cbradney | 3230 | <location filename="../about.cpp" line="197"/> |
3064 | cbradney | 3231 | <source>Other Documentation:</source> |
3232 | <translation>Otra Documentación:</translation> |
||
945 | cbradney | 3233 | </message> |
3234 | <message> |
||
10130 | cbradney | 3235 | <location filename="../about.cpp" line="211"/> |
3064 | cbradney | 3236 | <source>A&uthors</source> |
3237 | <translation>A&utores</translation> |
||
945 | cbradney | 3238 | </message> |
3239 | <message> |
||
10130 | cbradney | 3240 | <location filename="../about.cpp" line="219"/> |
3064 | cbradney | 3241 | <source>Official Translations and Translators:</source> |
3242 | <translation>Traducciones Oficiales y Traductores:</translation> |
||
945 | cbradney | 3243 | </message> |
3244 | <message> |
||
9729 | cbradney | 3245 | <location filename="" line="136965632"/> |
3064 | cbradney | 3246 | <source>Catalan:</source> |
3247 | <translation type="obsolete">Catalán:</translation> |
||
945 | cbradney | 3248 | </message> |
3249 | <message> |
||
9729 | cbradney | 3250 | <location filename="" line="136965632"/> |
3064 | cbradney | 3251 | <source>Czech:</source> |
3252 | <translation type="obsolete">Checo:</translation> |
||
945 | cbradney | 3253 | </message> |
3254 | <message> |
||
9729 | cbradney | 3255 | <location filename="" line="136965632"/> |
3064 | cbradney | 3256 | <source>Danish:</source> |
3257 | <translation type="obsolete">Danés:</translation> |
||
945 | cbradney | 3258 | </message> |
3259 | <message> |
||
9729 | cbradney | 3260 | <location filename="" line="136965632"/> |
3064 | cbradney | 3261 | <source>English (British):</source> |
3262 | <translation type="obsolete">Inglés (Británico):</translation> |
||
945 | cbradney | 3263 | </message> |
3264 | <message> |
||
9729 | cbradney | 3265 | <location filename="" line="136965632"/> |
3064 | cbradney | 3266 | <source>Esperanto:</source> |
3267 | <translation type="obsolete">Esperanto:</translation> |
||
945 | cbradney | 3268 | </message> |
3269 | <message> |
||
9729 | cbradney | 3270 | <location filename="" line="136965632"/> |
3064 | cbradney | 3271 | <source>Finnish:</source> |
3272 | <translation type="obsolete">Finlandés:</translation> |
||
945 | cbradney | 3273 | </message> |
3274 | <message> |
||
9729 | cbradney | 3275 | <location filename="" line="136965632"/> |
3064 | cbradney | 3276 | <source>French:</source> |
3277 | <translation type="obsolete">Francés:</translation> |
||
945 | cbradney | 3278 | </message> |
3279 | <message> |
||
9729 | cbradney | 3280 | <location filename="" line="136965632"/> |
3064 | cbradney | 3281 | <source>German:</source> |
3282 | <translation type="obsolete">Alemán:</translation> |
||
945 | cbradney | 3283 | </message> |
3284 | <message> |
||
9729 | cbradney | 3285 | <location filename="" line="136965632"/> |
3064 | cbradney | 3286 | <source>Italian:</source> |
3287 | <translation type="obsolete">Italiano:</translation> |
||
945 | cbradney | 3288 | </message> |
3289 | <message> |
||
9729 | cbradney | 3290 | <location filename="" line="136965632"/> |
3064 | cbradney | 3291 | <source>Korean:</source> |
3292 | <translation type="obsolete">Coreano:</translation> |
||
945 | cbradney | 3293 | </message> |
3294 | <message> |
||
9729 | cbradney | 3295 | <location filename="" line="136965632"/> |
3064 | cbradney | 3296 | <source>Norwegian:</source> |
3297 | <translation type="obsolete">Noruego:</translation> |
||
945 | cbradney | 3298 | </message> |
3299 | <message> |
||
9729 | cbradney | 3300 | <location filename="" line="136965632"/> |
3064 | cbradney | 3301 | <source>Polish:</source> |
3302 | <translation type="obsolete">Polaco:</translation> |
||
945 | cbradney | 3303 | </message> |
3304 | <message> |
||
9729 | cbradney | 3305 | <location filename="" line="136965632"/> |
3064 | cbradney | 3306 | <source>Russian:</source> |
3307 | <translation type="obsolete">Ruso:</translation> |
||
945 | cbradney | 3308 | </message> |
3309 | <message> |
||
9729 | cbradney | 3310 | <location filename="" line="136965632"/> |
3064 | cbradney | 3311 | <source>Serbian:</source> |
3312 | <translation type="obsolete">Serbio:</translation> |
||
945 | cbradney | 3313 | </message> |
3314 | <message> |
||
9729 | cbradney | 3315 | <location filename="" line="136965632"/> |
3064 | cbradney | 3316 | <source>Slovak:</source> |
3317 | <translation type="obsolete">Eslovaco:</translation> |
||
945 | cbradney | 3318 | </message> |
3319 | <message> |
||
9729 | cbradney | 3320 | <location filename="" line="136965632"/> |
3064 | cbradney | 3321 | <source>Slovenian:</source> |
3322 | <translation type="obsolete">Esloveno:</translation> |
||
945 | cbradney | 3323 | </message> |
3324 | <message> |
||
9729 | cbradney | 3325 | <location filename="" line="136965632"/> |
3064 | cbradney | 3326 | <source>Spanish:</source> |
3327 | <translation type="obsolete">Español:</translation> |
||
945 | cbradney | 3328 | </message> |
3329 | <message> |
||
9729 | cbradney | 3330 | <location filename="" line="136965632"/> |
3064 | cbradney | 3331 | <source>Swedish:</source> |
3332 | <translation type="obsolete">Sueco:</translation> |
||
945 | cbradney | 3333 | </message> |
3334 | <message> |
||
9729 | cbradney | 3335 | <location filename="" line="136965632"/> |
3064 | cbradney | 3336 | <source>Ukrainian:</source> |
3337 | <translation type="obsolete">Ucraniano:</translation> |
||
945 | cbradney | 3338 | </message> |
3339 | <message> |
||
9729 | cbradney | 3340 | <location filename="" line="136965632"/> |
3064 | cbradney | 3341 | <source>Welsh:</source> |
3342 | <translation type="obsolete">Galés:</translation> |
||
945 | cbradney | 3343 | </message> |
3344 | <message> |
||
10130 | cbradney | 3345 | <location filename="../about.cpp" line="346"/> |
3064 | cbradney | 3346 | <source>Previous Translation Contributors:</source> |
3347 | <translation>Anteriores Colaboradores en la Traducción:</translation> |
||
945 | cbradney | 3348 | </message> |
3349 | <message> |
||
9729 | cbradney | 3350 | <location filename="" line="136965632"/> |
3064 | cbradney | 3351 | <source>Basque:</source> |
3352 | <translation type="obsolete">Vasco:</translation> |
||
945 | cbradney | 3353 | </message> |
3354 | <message> |
||
9729 | cbradney | 3355 | <location filename="" line="136965632"/> |
3064 | cbradney | 3356 | <source>Brazilian:</source> |
3357 | <translation type="obsolete">Brasileño:</translation> |
||
945 | cbradney | 3358 | </message> |
3359 | <message> |
||
9729 | cbradney | 3360 | <location filename="" line="136965632"/> |
3064 | cbradney | 3361 | <source>Bulgarian:</source> |
3362 | <translation type="obsolete">Búlgaro:</translation> |
||
945 | cbradney | 3363 | </message> |
3364 | <message> |
||
9729 | cbradney | 3365 | <location filename="" line="136965632"/> |
3064 | cbradney | 3366 | <source>Galician:</source> |
3367 | <translation type="obsolete">Gallego:</translation> |
||
945 | cbradney | 3368 | </message> |
3369 | <message> |
||
9729 | cbradney | 3370 | <location filename="" line="136965632"/> |
3064 | cbradney | 3371 | <source>Hungarian:</source> |
3372 | <translation type="obsolete">Hungaro:</translation> |
||
945 | cbradney | 3373 | </message> |
3374 | <message> |
||
9729 | cbradney | 3375 | <location filename="" line="136965632"/> |
3064 | cbradney | 3376 | <source>Lithuanian:</source> |
3377 | <translation type="obsolete">Lituano:</translation> |
||
945 | cbradney | 3378 | </message> |
3379 | <message> |
||
9729 | cbradney | 3380 | <location filename="" line="136965632"/> |
3064 | cbradney | 3381 | <source>Turkish:</source> |
3382 | <translation type="obsolete">Turco:</translation> |
||
945 | cbradney | 3383 | </message> |
3384 | <message> |
||
10130 | cbradney | 3385 | <location filename="../about.cpp" line="387"/> |
3064 | cbradney | 3386 | <source>&Translations</source> |
3387 | <translation>&Traducciones</translation> |
||
945 | cbradney | 3388 | </message> |
3389 | <message> |
||
10130 | cbradney | 3390 | <location filename="../about.cpp" line="393"/> |
3064 | cbradney | 3391 | <source>Homepage</source> |
3392 | <translation>Página inicial</translation> |
||
945 | cbradney | 3393 | </message> |
3394 | <message> |
||
10130 | cbradney | 3395 | <location filename="../about.cpp" line="395"/> |
3064 | cbradney | 3396 | <source>Online Reference</source> |
3397 | <translation>Referencia en línea</translation> |
||
945 | cbradney | 3398 | </message> |
3399 | <message> |
||
10130 | cbradney | 3400 | <location filename="../about.cpp" line="399"/> |
3064 | cbradney | 3401 | <source>Bugs and Feature Requests</source> |
3402 | <translation>Errores y Peticiones de Características</translation> |
||
945 | cbradney | 3403 | </message> |
3404 | <message> |
||
10130 | cbradney | 3405 | <location filename="../about.cpp" line="401"/> |
3064 | cbradney | 3406 | <source>Mailing List</source> |
3407 | <translation>Lista de Correo</translation> |
||
945 | cbradney | 3408 | </message> |
3409 | <message> |
||
10130 | cbradney | 3410 | <location filename="../about.cpp" line="408"/> |
3064 | cbradney | 3411 | <source>&Online</source> |
3412 | <translation>&En línea</translation> |
||
945 | cbradney | 3413 | </message> |
3414 | <message> |
||
10130 | cbradney | 3415 | <location filename="../about.cpp" line="427"/> |
3064 | cbradney | 3416 | <source>&Close</source> |
3417 | <translation>&Cerrar</translation> |
||
945 | cbradney | 3418 | </message> |
3419 | <message> |
||
9729 | cbradney | 3420 | <location filename="" line="136965632"/> |
3064 | cbradney | 3421 | <source>This panel shows the version, build date and |
945 | cbradney | 3422 | compiled in library support in Scribus |
952 | cbradney | 3423 | The C-C-T equates to C=littlecms C=CUPS T=TIFF support. |
3424 | Missing library support is indicated by a *</source> |
||
3064 | cbradney | 3425 | <translation type="obsolete">Este panel muestra la versión, fecha de construcción y el |
974 | cbradney | 3426 | soporte de librerías con que se ha compilado Scribus. |
3427 | C-C-T significa soporte de C=CUPS C=littlecms T=TIFF. |
||
3428 | Las bibliotecas que falten se indican con un * |
||
3429 | </translation> |
||
952 | cbradney | 3430 | </message> |
1525 | cbradney | 3431 | <message> |
9729 | cbradney | 3432 | <location filename="" line="136965632"/> |
3064 | cbradney | 3433 | <source>%1 %2 %3 </source> |
3824 | cbradney | 3434 | <translation type="obsolete">%1 %2 %3 </translation> |
1525 | cbradney | 3435 | </message> |
3436 | <message> |
||
9729 | cbradney | 3437 | <location filename="" line="136965632"/> |
3064 | cbradney | 3438 | <source>Afrikaans:</source> |
3439 | <translation type="obsolete">Afrikaans:</translation> |
||
1525 | cbradney | 3440 | </message> |
3441 | <message> |
||
9729 | cbradney | 3442 | <location filename="" line="136965632"/> |
3064 | cbradney | 3443 | <source>Portuguese (Brazilian):</source> |
3444 | <translation type="obsolete">Portugués (Brasileño):</translation> |
||
1525 | cbradney | 3445 | </message> |
3064 | cbradney | 3446 | <message> |
10130 | cbradney | 3447 | <location filename="../about.cpp" line="397"/> |
3824 | cbradney | 3448 | <source>Wiki</source> |
3064 | cbradney | 3449 | <translation type="unfinished"></translation> |
3450 | </message> |
||
3451 | <message> |
||
10130 | cbradney | 3452 | <location filename="../about.cpp" line="75"/> |
3824 | cbradney | 3453 | <source>%1 %2 %3</source> |
3064 | cbradney | 3454 | <translation type="unfinished"></translation> |
3455 | </message> |
||
3456 | <message> |
||
10130 | cbradney | 3457 | <location filename="../about.cpp" line="83"/> |
3824 | cbradney | 3458 | <source>%3-%2-%1 %4 %5</source> |
3064 | cbradney | 3459 | <translation type="unfinished"></translation>< |