aboutsummaryrefslogtreecommitdiff
path: root/install/languages
diff options
context:
space:
mode:
Diffstat (limited to 'install/languages')
-rw-r--r--install/languages/en.php161
-rw-r--r--install/languages/es.php156
2 files changed, 161 insertions, 156 deletions
diff --git a/install/languages/en.php b/install/languages/en.php
new file mode 100644
index 000000000..531379b1e
--- /dev/null
+++ b/install/languages/en.php
@@ -0,0 +1,161 @@
+<?php
+/**
+ * Installer English Language
+ *
+ * @package ElggLanguage
+ * @subpackage Installer
+ */
+
+$english = array(
+ 'install:title' => 'Elgg Install',
+ 'install:welcome' => 'Welcome',
+ 'install:requirements' => 'Requirements check',
+ 'install:database' => 'Database installation',
+ 'install:settings' => 'Configure site',
+ 'install:admin' => 'Create admin account',
+ 'install:complete' => 'Finished',
+
+ 'install:next' => 'Next',
+ 'install:refresh' => 'Refresh',
+
+ 'install:welcome:instructions' => "Installing Elgg has 6 simple steps and reading this welcome is the first one!
+
+If you haven't already, read through the installation instructions included with Elgg (or click the instructions link at the bottom of the page).
+
+If you are ready to proceed, click the Next button.",
+ 'install:requirements:instructions:success' => "Your server passed the requirement checks.",
+ 'install:requirements:instructions:failure' => "Your server failed the requirements check. After you have fixed the below issues, refresh this page. Check the troubleshooting links at the bottom of this page if you need further assistance.",
+ 'install:requirements:instructions:warning' => "Your server passed the requirements check, but there is at least one warning. We recommend that you check the install troubleshooting page for more details.",
+
+ 'install:require:php' => 'PHP',
+ 'install:require:rewrite' => 'Web server',
+ 'install:require:settings' => 'Settings file',
+ 'install:require:database' => 'Database',
+
+ 'install:check:root' => 'Your web server does not have permission to create an .htaccess file in the root directory of Elgg. You have two choices:
+
+ 1. Change the permissions on the root directory
+
+ 2. Copy the file htaccess_dist to .htaccess',
+
+ 'install:check:php:version' => 'Elgg requires PHP %s or above. This server is using version %s.',
+ 'install:check:php:extension' => 'Elgg requires the PHP extension %s.',
+ 'install:check:php:extension:recommend' => 'It is recommended that the PHP extension %s is installed.',
+ 'install:check:php:open_basedir' => 'The open_basedir PHP directive may prevent Elgg from saving files to its data directory.',
+ 'install:check:php:safe_mode' => 'Running PHP in safe mode is not recommened and may cause problems with Elgg.',
+ 'install:check:php:arg_separator' => 'arg_separator.output must be & for Elgg to work and your server\'s value is %s',
+ 'install:check:php:register_globals' => 'Register globals must be turned off.',
+ 'install:check:php:session.auto_start' => "session.auto_start must be off for Elgg to work. Either change the configuration of your server or add this directive to Elgg's .htaccess file.",
+
+ 'install:check:enginedir' => 'Your web server does not have permission to create the settings.php file in the engine directory. You have two choices:
+
+ 1. Change the permissions on the engine directory
+
+ 2. Copy the file settings.example.php to settings.php and follow the instructions in it for setting your database parameters.',
+ 'install:check:readsettings' => 'A settings file exists in the engine directory, but the web server cannot read it. You can delete the file or change the read permissions on it.',
+
+ 'install:check:php:success' => "Your server's PHP satisfies all of Elgg's requirements.",
+ 'install:check:rewrite:success' => 'The test of the rewrite rules was successful.',
+ 'install:check:database' => 'The database requirements are checked when Elgg loads its database.',
+
+ 'install:database:instructions' => "If you haven't already created a database for Elgg, do that now. Then fill in the values below to initialize the Elgg database.",
+ 'install:database:error' => 'There was an error creating the Elgg database and installation cannot continue. Review the message above and correct any problems. If you need more help, visit the Install troubleshooting link below or post to the Elgg community forums.',
+
+ 'install:database:label:dbuser' => 'Database Username',
+ 'install:database:label:dbpassword' => 'Database Password',
+ 'install:database:label:dbname' => 'Database Name',
+ 'install:database:label:dbhost' => 'Database Host',
+ 'install:database:label:dbprefix' => 'Database Table Prefix',
+
+ 'install:database:help:dbuser' => 'User that has full privileges to the MySQL database that you created for Elgg',
+ 'install:database:help:dbpassword' => 'Password for the above database user account',
+ 'install:database:help:dbname' => 'Name of the Elgg database',
+ 'install:database:help:dbhost' => 'Hostname of the MySQL server (usually localhost)',
+ 'install:database:help:dbprefix' => "The prefix given to all of Elgg's tables (usually elgg_)",
+
+ 'install:settings:instructions' => 'We need some information about the site as we configure Elgg. If you haven\'t <a href="http://docs.elgg.org/wiki/Data_directory" target="_blank">created a data directory</a> for Elgg, you need to do so now.',
+
+ 'install:settings:label:sitename' => 'Site Name',
+ 'install:settings:label:siteemail' => 'Site Email Address',
+ 'install:settings:label:wwwroot' => 'Site URL',
+ 'install:settings:label:path' => 'Elgg Install Directory',
+ 'install:settings:label:dataroot' => 'Data Directory',
+ 'install:settings:label:language' => 'Site Language',
+ 'install:settings:label:siteaccess' => 'Default Site Access',
+ 'install:label:combo:dataroot' => 'Elgg creates data directory',
+
+ 'install:settings:help:sitename' => 'The name of your new Elgg site',
+ 'install:settings:help:siteemail' => 'Email address used by Elgg for communication with users',
+ 'install:settings:help:wwwroot' => 'The address of the site (Elgg usually guesses this correctly)',
+ 'install:settings:help:path' => 'The directory where you put the Elgg code (Elgg usually guesses this correctly)',
+ 'install:settings:help:dataroot' => 'The directory that you created for Elgg to save files (the permissions on this directory are checked when you click Next). It must be an absolute path.',
+ 'install:settings:help:dataroot:apache' => 'You have the option of Elgg creating the data directory or entering the directory that you already created for storing user files (the permissions on this directory are checked when you click Next)',
+ 'install:settings:help:language' => 'The default language for the site',
+ 'install:settings:help:siteaccess' => 'The default access level for new user created content',
+
+ 'install:admin:instructions' => "It is now time to create an administrator's account.",
+
+ 'install:admin:label:displayname' => 'Display Name',
+ 'install:admin:label:email' => 'Email Address',
+ 'install:admin:label:username' => 'Username',
+ 'install:admin:label:password1' => 'Password',
+ 'install:admin:label:password2' => 'Password Again',
+
+ 'install:admin:help:displayname' => 'The name that is displayed on the site for this account',
+ 'install:admin:help:email' => '',
+ 'install:admin:help:username' => 'Account username used for logging in',
+ 'install:admin:help:password1' => "Account password must be at least %u characters long",
+ 'install:admin:help:password2' => 'Retype password to confirm',
+
+ 'install:admin:password:mismatch' => 'Password must match.',
+ 'install:admin:password:empty' => 'Password cannot be empty.',
+ 'install:admin:password:tooshort' => 'Your password was too short',
+ 'install:admin:cannot_create' => 'Unable to create an admin account.',
+
+ 'install:complete:instructions' => 'Your Elgg site is now ready to be used. Click the button below to be taken to your site.',
+ 'install:complete:gotosite' => 'Go to site',
+
+ 'InstallationException:UnknownStep' => '%s is an unknown installation step.',
+
+ 'install:success:database' => 'Database has been installed.',
+ 'install:success:settings' => 'Site settings have been saved.',
+ 'install:success:admin' => 'Admin account has been created.',
+
+ 'install:error:htaccess' => 'Unable to create an .htaccess',
+ 'install:error:settings' => 'Unable to create the settings file',
+ 'install:error:databasesettings' => 'Unable to connect to the database with these settings.',
+ 'install:error:database_prefix' => 'Invalid characters in database prefix',
+ 'install:error:oldmysql' => 'MySQL must be version 5.0 or above. Your server is using %s.',
+ 'install:error:nodatabase' => 'Unable to use database %s. It may not exist.',
+ 'install:error:cannotloadtables' => 'Cannot load the database tables',
+ 'install:error:tables_exist' => 'There are already Elgg tables in the database. You need to either drop those tables or restart the installer and we will attempt to use them. To restart the installer, remove \'?step=database\' from the URL in your browser\'s address bar and press Enter.',
+ 'install:error:readsettingsphp' => 'Unable to read engine/settings.example.php',
+ 'install:error:writesettingphp' => 'Unable to write engine/settings.php',
+ 'install:error:requiredfield' => '%s is required',
+ 'install:error:relative_path' => 'We don\'t think "%s" is an absolute path for your data directory',
+ 'install:error:datadirectoryexists' => 'Your data directory %s does not exist.',
+ 'install:error:writedatadirectory' => 'Your data directory %s is not writable by the web server.',
+ 'install:error:locationdatadirectory' => 'Your data directory %s must be outside of your install path for security.',
+ 'install:error:emailaddress' => '%s is not a valid email address',
+ 'install:error:createsite' => 'Unable to create the site.',
+ 'install:error:savesitesettings' => 'Unable to save site settings',
+ 'install:error:loadadmin' => 'Unable to load admin user.',
+ 'install:error:adminaccess' => 'Unable to give new user account admin privileges.',
+ 'install:error:adminlogin' => 'Unable to login the new admin user automatically.',
+ 'install:error:rewrite:apache' => 'We think your server is running the Apache web server.',
+ 'install:error:rewrite:nginx' => 'We think your server is running the Nginx web server.',
+ 'install:error:rewrite:lighttpd' => 'We think your server is running the Lighttpd web server.',
+ 'install:error:rewrite:iis' => 'We think your server is running the IIS web server.',
+ 'install:error:rewrite:allowoverride' => "The rewrite test failed and the most likely cause is that AllowOverride is not set to All for Elgg's directory. This prevents Apache from processing the .htaccess file which contains the rewrite rules.
+ \n\nA less likely cause is Apache is configured with an alias for your Elgg directory and you need to set the RewriteBase in your .htaccess. There are further instructions in the .htaccess file in your Elgg directory.",
+ 'install:error:rewrite:htaccess:write_permission' => 'Your web server does not have permission to create the .htaccess file in Elgg\'s directory. You need to manually copy htaccess_dist to .htaccess or change the permissions on the directory.',
+ 'install:error:rewrite:htaccess:read_permission' => 'There is an .htaccess file in Elgg\'s directory, but your web server does not have permission to read it.',
+ 'install:error:rewrite:htaccess:non_elgg_htaccess' => 'There is an .htaccess file in Elgg\'s directory that was not not created by Elgg. Please remove it.',
+ 'install:error:rewrite:htaccess:old_elgg_htaccess' => 'There appears to be an old Elgg .htaccess file in Elgg\'s directory. It does not contain the rewrite rule for testing the web server.',
+ 'install:error:rewrite:htaccess:cannot_copy' => 'A unknown error occurred while creating the .htaccess file. You need to manually copy htaccess_dist to .htaccess in Elgg\'s directory.',
+ 'install:error:rewrite:altserver' => 'The rewrite rules test failed. You need to configure your web server with Elgg\'s rewrite rules and try again.',
+ 'install:error:rewrite:unknown' => 'Oof. We couldn\'t figure out what kind of web server is running on your server and it failed the rewrite rules. We cannot offer any specific advice. Please check the troubleshooting link.',
+ 'install:warning:rewrite:unknown' => 'Your server does not support automatic testing of the rewrite rules and your browser does not support checking via JavaScript. You can continue the installation, but you may experience problems with your site. You can manually test the rewrite rules by clicking this link: <a href="%s" target="_blank">test</a>. You will see the word success if the rules are working.',
+);
+
+add_translation("en", $english);
diff --git a/install/languages/es.php b/install/languages/es.php
deleted file mode 100644
index f9bf70a24..000000000
--- a/install/languages/es.php
+++ /dev/null
@@ -1,156 +0,0 @@
-<?php
-/**
- * Installer English Language
- *
- * @package ElggLanguage
- * @subpackage Installer
- */
-
-$spanish = array(
- 'install:title' => 'Instalaci&oacute;n de Elgg',
- 'install:welcome' => 'Bienvenido!',
- 'install:requirements' => 'Verificaci&oacute;n de requerimientos',
- 'install:database' => 'Instalaci&oacute;n de base de datos',
- 'install:settings' => 'Configuraci&oacute;n del sitio',
- 'install:admin' => 'Crear cuenta admin',
- 'install:complete' => 'Finalizado',
-
- 'install:welcome:instructions' => "La instalaci&oacute;n de Elgg consta de 6 pasos simples y leer esta bienvenida es el primero!
-
-Si no lo hizo, lea las instrucciones de instalaci&oacute;n incluidas con Elgg (haga click en el enlace de instrucciones al final de la p&aacute;gina).
-
-Cuando se encuentre listo para continuar, presione el bot&oacute;n siguiente.",
- 'install:requirements:instructions:success' => "Su servidor pas&oacute; la verificaci&oacute;n de requerimientos.",
- 'install:requirements:instructions:failure' => "Su servidor fall&oacute; la verificaci&oacute;n de requerimientos. Luego de solucionar los items enumerados debajo refresque esta p&aacute;gina. Si necesita mas ayuda verifique los enlaces de soluci&oacute;n de problemas al final de esta p&aacute;gina.",
- 'install:requirements:instructions:warning' => "Su servidor pas&oacute; la verificaci&oacute;n de requerimientos, pero hay al menos una advertencia. Le recomendamos que verifique la p&aacute;gina de soluci&oacute;n de problemas para mas informaci&oacute;n.",
-
- 'install:require:php' => 'PHP',
- 'install:require:rewrite' => 'Servidor web',
- 'install:require:settings' => 'Archivo de configuraci&oacute;n',
- 'install:require:database' => 'Base de datos',
-
- 'install:check:root' => 'Su servidor web no posee los permisos necesarios para crear el archivo .htaccess en la ra&iacute;z del directorio de Elgg. Tiene dos opciones:
-
- 1. Modificar los permisos en el directorio ra&iacute;z
-
- 2. Copiar el archivo htaccess_dist a .htaccess',
-
- 'install:check:php:version' => 'Elgg requiere la versi&oacute;n %s de PHP o superior. Este servidor se encuentra ejecutando la versi&oacute;n %s.',
- 'install:check:php:extension' => 'Elgg requiere la extensi&oacute;n %s de PHP.',
- 'install:check:php:extension:recommend' => 'Se recomienda que la estensi&oacute;n %s de PHP se encuentre instalada.',
- 'install:check:php:open_basedir' => 'La directiva de PHP open_basedir puede evitar que Elgg guarde archivos en su directorio de datos.',
- 'install:check:php:safe_mode' => 'Ejecutar PHP en modo seguro no es recomendado y puede ocasionar inconvenientes con Elgg.',
- 'install:check:php:arg_separator' => 'arg_separator.output debe ser & para que Elgg funcione, el valor actual del servidor es %s',
- 'install:check:php:register_globals' => 'Debe desactivarse el registro de globales.',
- 'install:check:php:session.auto_start' => "session.auto_start debe desactivarse para que Elgg funcione. Modifique la configuraci&oacute;n de su servidor o agregue la directiva al archivo .htaccess de Elgg.",
-
- 'install:check:enginedir' => 'Su servidor no posee los permisos para crear el archivo settings.php en el directorio engine. Tiene dos opciones:
-
- 1. Modificar los permisos en el directorio engine
-
- 2. Copiar el archivo settings.example.php a settings.php y seguir las instrucciones en el para setear los par&aacute;meetros de base de datos.',
- 'install:check:readsettings' => 'Existe un archivo settings en el directorio engine pero el servidor no puede leerlo. Puede eliminar el archivo o modificar los permisos sobre el mismo.',
-
- 'install:check:php:success' => "El PHP de su servidor satisface todos los requerimientos de Elgg.",
- 'install:check:rewrite:success' => 'El test de reescritura de reglas ha sido exitoso.',
- 'install:check:database' => 'Los requerimientos de bases de datos se verificar&aacute;n cuando Elgg cargue la base de datos.',
-
- 'install:database:instructions' => "Si a&uacute;n no cre&oacute; una base de datos para Elgg debe hacerlo ahora. Luego complete los datos debajo para inicializar la base de datos.",
- 'install:database:error' => 'Ocurri&oacute; un error al crear la base de datos de Elgg y la instalaci&oacute;n no puede continuar. Revise los mensajes de error y corrija los problemas. Si necesita mas ayuda, visite el enlace para la soluci&oacute;n de problemas de instalaci&oacute;n debajo o utilice los foros de la comunidad Elgg.',
-
- 'install:database:label:dbuser' => 'Usuario de Base de Datos',
- 'install:database:label:dbpassword' => 'Contrase&ntilde;a',
- 'install:database:label:dbname' => 'Nombre de la Base de Datos',
- 'install:database:label:dbhost' => 'Host de Base de Datos',
- 'install:database:label:dbprefix' => 'Prefijo de Tablas de la Base de Datos',
-
- 'install:database:help:dbuser' => 'Usuario que posee todos los privilegios sobre la base de datos MySql que cre&oacute; para Elgg',
- 'install:database:help:dbpassword' => 'Contrase&ntilde;a para la cuenta del usuario anterior',
- 'install:database:help:dbname' => 'Nombre de la base de datos Elgg',
- 'install:database:help:dbhost' => 'Nombre del Host para el servidor MySQL (normalmente localhost)',
- 'install:database:help:dbprefix' => "Prefijo para todas las tablas de Elgg (normalmente elgg_)",
-
- 'install:settings:instructions' => 'Necesitamos alguna informaci&oacute;n sobre el sitio para configurar Elgg. Si usted no <a href="http://docs.elgg.org/wiki/Data_directory" target="_blank">cre&oacute; un directorio de datos (data)</a> para Elgg, debe hacerlo ahora.',
-
- 'install:settings:label:sitename' => 'Nombre del Sitio',
- 'install:settings:label:siteemail' => 'Direcci&oacute;n de Email del Sitio',
- 'install:settings:label:wwwroot' => 'URL del Sitio',
- 'install:settings:label:path' => 'Directorio de Instalaci&oacute;n de Elgg',
- 'install:settings:label:dataroot' => 'Directorio Data',
- 'install:settings:label:language' => 'Idioma del Sitio',
- 'install:settings:label:siteaccess' => 'Acceso por Defecto',
- 'install:label:combo:dataroot' => 'Elgg crea el directorio data',
-
- 'install:settings:help:sitename' => 'El nombre de su nuevo sitio Elgg',
- 'install:settings:help:siteemail' => 'Direcci&oacute;n de Email utilizada por Elgg para comunicaciones a los usuarios',
- 'install:settings:help:wwwroot' => 'La direcci&oacute;n de esde sitio (normalmente Elgg la selecciona correctamnete)',
- 'install:settings:help:path' => 'El directorio en donde se almacena el c&oacute;digo de Elgg (normalmente Elgg lo selecciona correctamente)',
- 'install:settings:help:dataroot' => 'El directorio que ha creado para que Elgg guarde archivos (se validar&aacute;n los permisos sobre este directorio cuando presione el bot&oacute;n de siguiente)',
- 'install:settings:help:dataroot:apache' => 'Tiene la opci&oacute;n de que Elgg cree el directorio o de seleccionar uno que ya haya creado (se validar&aacute;n los permisos sobre este directorio cuando presione el bot&oacute;n de siguiente)',
- 'install:settings:help:language' => 'El idioma por defecto para el sitio',
- 'install:settings:help:siteaccess' => 'El nivel de acceso por defecto al crear nuevo contenido los usuarios',
-
- 'install:admin:instructions' => "Es tiempo de crear la cuenta del Administrador.",
-
- 'install:admin:label:displayname' => 'Nombre para Mostrar',
- 'install:admin:label:email' => 'Direcci&oacute;n de Email',
- 'install:admin:label:username' => 'Nombre de Usuario',
- 'install:admin:label:password1' => 'Contrase&ntilde;a',
- 'install:admin:label:password2' => 'Contrase&ntilde;a Nuevamente',
-
- 'install:admin:help:displayname' => 'El nombre que se muestra en el sitio para esta cuenta',
- 'install:admin:help:email' => '',
- 'install:admin:help:username' => 'Nombre de usuario utilizado para acceder al sitio',
- 'install:admin:help:password1' => "La contrase&ntilde;a de la cuenta debe tener al menos %u caracteres",
- 'install:admin:help:password2' => 'Escriba nuevamente la contrase&ntilde;a para confirmar',
-
- 'install:admin:password:mismatch' => 'Las contrase&ntilde;as deben coincidir.',
- 'install:admin:password:empty' => 'La contrase&ntilde;a no puede estar vac&iacute;a.',
- 'install:admin:password:tooshort' => 'La contrase&ntilde;a es demasiado corta',
- 'install:admin:cannot_create' => 'No se pudo crear la cuenta del administrador.',
-
- 'install:complete:instructions' => 'Su sitio Elgg ahora est&aacute; listo para su uso. Haga click en el bot&oacute;n de abajo para ir a visitar el sitio.',
- 'install:complete:gotosite' => 'Ir al sitio',
-
- 'InstallationException:UnknownStep' => '%s es un paso de instalaci&oacute;n desconocido.',
-
- 'install:success:database' => 'Se ha instalado la base de datos.',
- 'install:success:settings' => 'Se ha guardado la configuraci&oacute;n del sitio.',
- 'install:success:admin' => 'Se ha creado la cuenta Admin.',
-
- 'install:error:htaccess' => 'No se pudo crear el archivo .htaccess',
- 'install:error:settings' => 'No se pudo crear el archivo de configuraci&oacute;n',
- 'install:error:databasesettings' => 'No se pudo conectar a la base de datos con la informaci&oacute;n provista',
- 'install:error:oldmysql' => 'MySQL debe ser una versi&oacute;n 5.0 o superior. Su servidor se encuentra utilizando la versi&oacute;n %s.',
- 'install:error:nodatabase' => 'No se pudo acceder a la base de datos %s. Puede que no exista.',
- 'install:error:cannotloadtables' => 'No se pueden cargar las tablas de la base de datos',
- 'install:error:tables_exist' => 'Se encontraron tablas de Elgg preexistentes en la base de datos. Debe eliminarlas o reiniciar el instalador para intentar utilizarlas. Para reiniciar el instalador, quite \'?step=database\' de la URL en la barra de direcciones de su explorador y presione ENTER.',
- 'install:error:readsettingsphp' => 'No se pudo leer el archivo engine/settings.example.php',
- 'install:error:writesettingphp' => 'No se pudo escribir el archivo engine/settings.php',
- 'install:error:requiredfield' => '%s es requerido',
- 'install:error:datadirectoryexists' => 'El directorio de datos (data) %s no existe.',
- 'install:error:writedatadirectory' => 'El servidor no puede escribir en el directorio de datos (data) %s.',
- 'install:error:locationdatadirectory' => 'El directorio de datos (data) %s debe encontrarse fuera de la carpeta de instalaci&oacute;n por motivos de seguridad.',
- 'install:error:emailaddress' => '%s no es una direcci&oacute;n de Email v&aacute;lida',
- 'install:error:createsite' => 'No se pudo crear el sitio.',
- 'install:error:savesitesettings' => 'No se pudo guardar la configuraci&oacute;n del sitio',
- 'install:error:loadadmin' => 'No se pudo cargar el usuario administrador.',
- 'install:error:adminaccess' => 'No se le pueden otorgar privilegios de administrador al usuario.',
- 'install:error:adminlogin' => 'No se puede autenticar autom&aacute;ticamente al usuario administrador.',
- 'install:error:rewrite:apache' => 'Creemos que su servidor se encuentra ejecutando el web server Apache.',
- 'install:error:rewrite:nginx' => 'Creemos que su servidor se encuentra ejecutando el web server Nginx.',
- 'install:error:rewrite:lighttpd' => 'Creemos que su servidor se encuentra ejecutando el web server Lighttpd.',
- 'install:error:rewrite:iis' => 'Creemos que su servidor se encuentra ejecutando el web server Microsoft IIS.',
- 'install:error:rewrite:allowoverride' => "La prueba de reescritura fall&oacute;, la causa mas com&uacute;n es que AllowOverride no se encuentra establecido en All en el directorio de Elgg. Esto le impide al apache procesar el archivo .htaccess el cual contiene las reglas de reescritura.
- \n\nOtra causa puede ser que el Apache tenga configurado un alias para el directorio de Elgg y deba establecer RewriteBase en su archivo .htaccess. Hay varias instrucciones en el archivo .htaccess de su directorio de Elgg.",
- 'install:error:rewrite:htaccess:write_permission' => 'Su servidor web no tiene permisos para escribir el archivo .htaccess en la carpeta de Elgg. Debe copiar manualmente htaccess_dist a .htaccess o modificar los permisos en el directorio.',
- 'install:error:rewrite:htaccess:read_permission' => 'Hay un archivo .htaccess en el directorio de Elgg, pero su servidor web no tiene los permisos necesarios para leerlo.',
- 'install:error:rewrite:htaccess:non_elgg_htaccess' => 'Hay un archivo .htaccess en el directorio de Elgg que no ha sido creado por Elgg. Por favor elim&iacute;nelo.',
- 'install:error:rewrite:htaccess:old_elgg_htaccess' => 'Al parecer hay un archivo .htaccess de Elgg antiguo en el directorio de Elgg. El mismo no contiene la regla de reescritura para realizar la prueba del servidor web.',
- 'install:error:rewrite:htaccess:cannot_copy' => 'Ha ocurrido un error desconocido al crear el archivo .htaccess. Deber&aacute; copiar manualmente htaccess_dist a .htaccess en el directorio de Elgg.',
- 'install:error:rewrite:altserver' => 'La prueba de la reescritura de reglas ha fallado. Debe configurar su servidor web con reescritura de reglas e intentar nuevamente.',
- 'install:error:rewrite:unknown' => 'Oof. No podemos saber qu&eacute; tipo de servidor web se encuentra ejecutando y fall&oacute; la reescritura de reglas. No podemos ofrecer ninguna ayuda espec&iacute;fica. Por favor verifique el enlace de soluci&oacute;n de problemas.',
- 'install:warning:rewrite:unknown' => 'Su servidor no soporta la prueba autom&aacute;tica de reescritura de reglas. Puede continuar con la instalaci&oacute;n, pero puede experimentar problemas con el sitio. Puede probar manualmente las reescritura de reglas accediento a este enlace: <a href="%s" target="_blank">pruebas</a>. Observar&aacute; la palabra success si la ejecuci&oacute;n ha sido exitosa.',
-);
-
-add_translation("es", $spanish);