| 1 | # Movable Type (r) Open Source (C) 2005-2008 Six Apart, Ltd. |
|---|
| 2 | # This program is distributed under the terms of the |
|---|
| 3 | # GNU General Public License, version 2. |
|---|
| 4 | # |
|---|
| 5 | # $Id$ |
|---|
| 6 | |
|---|
| 7 | package StyleCatcher::L10N::es; |
|---|
| 8 | |
|---|
| 9 | use strict; |
|---|
| 10 | use base 'StyleCatcher::L10N::en_us'; |
|---|
| 11 | use vars qw( %Lexicon ); |
|---|
| 12 | |
|---|
| 13 | ## The following is the translation table. |
|---|
| 14 | |
|---|
| 15 | %Lexicon = ( |
|---|
| 16 | ## plugins/StyleCatcher/lib/StyleCatcher/CMS.pm |
|---|
| 17 | 'Your mt-static directory could not be found. Please configure \'StaticFilePath\' to continue.' => 'No se encontró el directorio mt-static. Por favor, configure el \'StaticFilePath\' para continuar.', |
|---|
| 18 | 'Could not create [_1] folder - Check that your \'themes\' folder is webserver-writable.' => 'No se pudo crear el directorio [_1] - Compruebe que el servidor web puede escribir en la carpeta \'themes\'.', |
|---|
| 19 | 'Error downloading image: [_1]' => 'Error descargando imagen: [_1]', |
|---|
| 20 | 'Successfully applied new theme selection.' => 'Se aplicó con éxito la nueva selección de estilo.', |
|---|
| 21 | 'Invalid URL: [_1]' => 'URL no válida: [_1]', |
|---|
| 22 | |
|---|
| 23 | ## plugins/StyleCatcher/tmpl/view.tmpl |
|---|
| 24 | 'Select a Style' => 'Seleccione un estilo', |
|---|
| 25 | '3-Columns, Wide, Thin, Thin' => '3 columnas, ancha, delgada, delgada', |
|---|
| 26 | '3-Columns, Thin, Wide, Thin' => '3 columnas, delgada, ancha, delgada', |
|---|
| 27 | '2-Columns, Thin, Wide' => '2 columnas, delgada, ancha', |
|---|
| 28 | '2-Columns, Wide, Thin' => '2 columnas, ancha, delgada', |
|---|
| 29 | '2-Columns, Wide, Medium' => '2 columnas, ancha, media', # Translate - New |
|---|
| 30 | 'None available' => 'Ninguno disponible', |
|---|
| 31 | 'Applying...' => 'Aplicando...', |
|---|
| 32 | 'Apply Design' => 'Aplicar diseño', |
|---|
| 33 | 'Error applying theme: ' => 'Error aplicando tema:', |
|---|
| 34 | 'The selected theme has been applied, but as you have changed the layout, you will need to republish your blog to apply the new layout.' => 'Se ha aplicado el tema seleccionado, pero como la disposición ha cambiado, deberá republicar el blog para que se aplique la disposición.', |
|---|
| 35 | 'The selected theme has been applied!' => '¡Se ha aplicado el tema seleccionado!', |
|---|
| 36 | 'Error loading themes! -- [_1]' => '¡Error cargando temas! -- [_1]', |
|---|
| 37 | 'Stylesheet or Repository URL' => 'URL de la hoja de estilo o repositorio:', |
|---|
| 38 | 'Stylesheet or Repository URL:' => 'URL de la hoja de estilo o repositorio:', |
|---|
| 39 | 'Download Styles' => 'Descargar estilos', |
|---|
| 40 | 'Current theme for your weblog' => 'Estilo actual de su weblog', |
|---|
| 41 | 'Current Style' => 'Estilo actual', |
|---|
| 42 | 'Locally saved themes' => 'Estilos guardados localmente', |
|---|
| 43 | 'Saved Styles' => 'Estilos guardados', |
|---|
| 44 | 'Default Styles' => 'Estilos predefinidos', |
|---|
| 45 | 'Single themes from the web' => 'Estilos individuales del web', |
|---|
| 46 | 'More Styles' => 'Más estilos', |
|---|
| 47 | 'Selected Design' => 'Diseño seleccionado', |
|---|
| 48 | 'Layout' => 'Disposición', |
|---|
| 49 | |
|---|
| 50 | ## plugins/StyleCatcher/stylecatcher.pl |
|---|
| 51 | 'StyleCatcher lets you easily browse through styles and then apply them to your blog in just a few clicks. To find out more about Movable Type styles, or for new sources for styles, visit the <a href=\'http://www.sixapart.com/movabletype/styles\'>Movable Type styles</a> page.' => 'StyleCatcher le permite navegar fácilmente por los estilos y aplicarlos a su blog fácilmente. Para más información sobre los estilos de Movable Type, o para encontrar más repositorios de estilos, visite la página de <a href=\'http://www.sixapart.com/movabletype/styles\'>estilos de Movable Type</a>.', |
|---|
| 52 | 'MT 4 Style Library' => 'LibrerÃa de estilos de MT 4', |
|---|
| 53 | 'A collection of styles compatible with Movable Type 4 default templates.' => 'Una colección de estilos compatible con las plantillas predefinidas de Movable Type.', |
|---|
| 54 | 'MT 3 Style Library' => 'LibrerÃa de estilos de MT 3', |
|---|
| 55 | 'A collection of styles compatible with Movable Type 3.3+ default templates.' => 'Una colección de estilos compatible con las plantillas predefinidas de Movable 3.3+.', |
|---|
| 56 | 'Styles' => 'Estilos', |
|---|
| 57 | ); |
|---|
| 58 | |
|---|
| 59 | 1; |
|---|
| 60 | |
|---|