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