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