Add new Strings

This commit is contained in:
Federico Vera 2019-06-05 18:03:44 -03:00
parent 66996f0c73
commit 6eb7b694fd
No known key found for this signature in database
GPG Key ID: E69ECE2FCCDE9566
1 changed files with 151 additions and 57 deletions

View File

@ -17,14 +17,15 @@
* You should have received a copy of the GNU General Public License
* along with PHP Server Monitor. If not, see <http://www.gnu.org/licenses/>.
*
* @package phpservermon
* @author Klemens Häckel <http://clickdimension.wordpress.com/>
* @author Luis Rodriguez <luis@techreanimate.com>
* @package phpservermon
* @author Klemens Häckel <http://clickdimension.wordpress.com/>
* @author Luis Rodriguez <luis@techreanimate.com>
* @author Mauro Vietri <mauro.vietri@outlook.com>
* @author Federico Vera <fede@riddler.com.ar>
* @copyright Copyright (c) 2008-2017 Pepijn Over <pep@mailbox.org>
* @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3
* @version Release: @package_version@
* @link http://www.phpservermonitor.org/
* @license http://www.gnu.org/licenses/gpl.txt GNU GPL v3
* @version Release: @package_version@
* @link http://www.phpservermonitor.org/
**/
$sm_lang = array(
@ -39,6 +40,7 @@ $sm_lang = array(
'save' => 'Guardar',
'edit' => 'Modificar',
'delete' => 'Eliminar',
'view' => 'Visto',
'date' => 'Fecha',
'message' => 'Mensaje',
'yes' => 'Si',
@ -49,12 +51,15 @@ $sm_lang = array(
'back_to_top' => 'Volver arriba',
'go_back' => 'Volver',
'ok' => 'OK',
'bad' => 'bad',
'cancel' => 'Cancelar',
'none' => 'None',
'activate' => 'Activar',
// date/time format according the strftime php function format parameter http://php.net/manual/function.strftime.php
'short_day_format' => '%B %e',
'long_day_format' => '%B %e, %Y',
'yesterday_format' => 'Ayer a las %k:%M',
'other_day_format' => '%A a las %k:%M',
'other_day_format' => '%A at %k:%M',
'never' => 'Nunca',
'hours_ago' => 'Hace %d horas',
'an_hour_ago' => 'Hace aproximadamente una hora',
@ -74,6 +79,9 @@ $sm_lang = array(
'minutes' => 'minutos',
'second' => 'segundo',
'seconds' => 'segundos',
'current' => 'actual',
'settings' => 'Configuración',
'search' => 'Buscar'
),
'menu' => array(
'config' => 'Configurar',
@ -102,8 +110,18 @@ $sm_lang = array(
'pushover_key' => 'Clave Pushover',
'pushover_device' => 'Dispositivo Pushover',
'pushover_device_description' => 'Nombre del dispositivo para enviar el mensaje. Dejar en blanco para enviarlo a todos los dispositivos.',
'delete_title' => 'Eliminar usuario',
'delete_message' => '¿Seguro que desea eliminar el usuario \'%1\'?',
'telegram' => 'Telegram',
'telegram_description' => '<a href="https://telegram.org/">Telegram</a> is a chat app that makes it easy to get real-time notifications. Visit the <a href="http://docs.phpservermonitor.org/">documentation</a> for more info and an install guide.',
'telegram_chat_id' => 'Telegram chat id',
'telegram_chat_id_description' => 'The message will be send to the corresponding chat.',
'telegram_get_chat_id' => 'Click here to get your chat id',
'activate_telegram' => 'Activate Telegram notifications',
'activate_telegram_description' => 'Allow Telegram notifications to be sent to the specified chat id. Without this permission, Telegram doesn\'t allow us to send notifications to you.',
'telegram_bot_username_found' => 'The bot was found!<br><a href="%s" target="_blank" rel="noopener"><button class="btn btn-primary">Next step</button></a> <br>This will open a chat with the bot. Here you need to press start of type /start.',
'telegram_bot_username_error_token' => '401 - Unauthorized. Please make sure that the API token is valid.',
'telegram_bot_error' => 'An error has occurred while activating Telegram notification: %s',
'delete_title' => 'Delete User',
'delete_message' => 'Are you sure you want to delete user \'%1\'?',
'deleted' => 'Usuario eliminado.',
'updated' => 'Usuario actualizado.',
'inserted' => 'Usuario ingresado.',
@ -114,7 +132,7 @@ $sm_lang = array(
'error_user_name_exists' => 'El nombre de usuario dado ya existe en la base de datos.',
'error_user_email_bad_length' => 'Direcciones de correo electrónico deben estar entre 5 y 255 caracteres.',
'error_user_email_invalid' => 'La dirección de correo electrónico no es válida.',
'error_user_level_invalid' => 'El nivel de usuario dado es válido.',
'error_user_level_invalid' => 'El nivel de usuario dado es inválido.',
'error_user_no_match' => 'El usuario no se pudo encontrar en la base de datos.',
'error_user_password_invalid' => 'La contraseña introducida no es válida.',
'error_user_password_no_match' => 'Las contraseñas introducidas no coinciden.',
@ -126,8 +144,9 @@ $sm_lang = array(
'email' => 'Email',
'sms' => 'SMS',
'pushover' => 'Pushover',
'telegram' => 'Telegram',
'no_logs' => 'No hay registros',
'clear' => 'Borrar registro',
'clear' => 'Borrar registros',
'delete_title' => 'Eliminar registro',
'delete_message' => '¿Estás seguro de que quieres eliminar <b>todos</b> los registros?',
),
@ -138,32 +157,69 @@ $sm_lang = array(
'domain' => 'Dominio/IP',
'timeout' => 'Tiempo de espera',
'timeout_description' => 'Número de segundos a esperar para que el servidor responda.',
'authentication_settings' => 'Authentication Settings',
'optional' => 'Opcional',
'website_username' => 'Nombre de usuario',
'website_username_description' => 'Username to access the site. (Only Apache authentication is supported.)',
'website_password' => 'Contraseña',
'website_password_description' => 'Password to access the site. The password is encrypted in the database.',
'fieldset_monitoring' => 'Monitoreo',
'fieldset_permissions' => 'Permisos',
'permissions' => 'El servidor será visible para los siguientes usuarios',
'port' => 'Puerto',
'custom_port' => 'Puerto personalizado',
'popular_ports' => 'Puertos comunes',
'request_method' => 'Método',
'custom_request_method' => 'Custom request method',
'popular_request_methods' => 'Popular request methods',
'post_field' => 'Post field',
'post_field_description' => 'The data that will be send using the request method above.',
'please_select' => 'Por favor seleccionar',
'type' => 'Tipo',
'type_website' => 'Sitio Web',
'type_service' => 'Servicio',
'pattern' => 'Cadena de búsqueda / patrón',
'pattern_description' => 'Si este patrón no se encuentra en el sitio web, el servidor estará marcada como sin conexión. Se permiten expresiones regulares.',
'last_check' => 'Última verificación',
'last_online' => 'Última vez en línea',
'last_offline' => 'Última vez offline',
'monitoring' => 'Monitoreo',
'no_monitoring' => 'Sin monitoreo',
'type_ping' => 'Ping',
'pattern' => 'Search string/pattern',
'pattern_description' => 'If this pattern is not found on the website, the server will be marked online/offline. Regular expressions are allowed.',
'pattern_online' => 'Pattern indicates website is',
'pattern_online_description' => 'Online: If this pattern is not found on the website, the server will be marked online. Offline: If this pattern is not found on the website, the server will be marked offline.',
'redirect_check' => 'Redirecting to another domain is',
'redirect_check_description' => 'Redirect to another domain is usually a bad sign.',
'allow_http_status' => 'Allow HTTP status code',
'allow_http_status_description' => 'Mark website as online. HTTP Status codes lower then 400 are marked as online by default. Seperate with |.',
'header_name' => 'Header name',
'header_value' => 'Header value',
'header_name_description' => 'Case-sensitive.',
'header_value_description' => 'Regular expressions are allowed.',
'last_check' => 'Last check',
'last_online' => 'Last online',
'last_offline' => 'Last offline',
'last_output' => 'Last positive output',
'last_error' => 'Last error',
'last_error_output' => 'Last error output',
'output' => 'Output',
'monitoring' => 'Monitoring',
'no_monitoring' => 'No monitoring',
'email' => 'Email',
'send_email' => 'Email',
'send_email' => 'Send Email',
'sms' => 'SMS',
'send_sms' => 'SMS',
'send_sms' => 'Send SMS',
'pushover' => 'Pushover',
'send_pushover' => 'Send Pushover notification',
'telegram' => 'Telegram',
'send_telegram' => 'Send Telegram notification',
'users' => 'Usuarios',
'delete_title' => 'eliminar servidor',
'delete_title' => 'Eliminar servidor',
'delete_message' => '¿Seguro que desea eliminar el servidor \'%1\'?',
'deleted' => 'Servidor eliminado.',
'updated' => 'Servidor actualizado.',
'inserted' => 'Servidor ingresado.',
'latency' => 'Tiempo de respuesta',
'latency_max' => 'Tiempo de respuesta (máxima)',
'latency_min' => 'Tiempo de respuesta (mínima)',
'latency_avg' => 'Tiempo de respuesta (promedio)',
'latency' => 'Latencia',
'latency_max' => 'Latencia (máximo)',
'latency_min' => 'Latencia (mínimo)',
'latency_avg' => 'Latencia (promedio)',
'online' => 'en línea',
'offline' => 'fuera de línea',
'uptime' => 'Activo',
'year' => 'Año',
'month' => 'Mes',
@ -172,8 +228,8 @@ $sm_lang = array(
'hour' => 'Hora',
'warning_threshold' => 'Umbral de advertencia',
'warning_threshold_description' => 'Número de controles fallidos necesarios antes de que se marque como fuera de línea.',
'chart_last_week' => 'La semana pasada',
'chart_history' => 'Historia',
'chart_last_week' => 'Última semana',
'chart_history' => 'Historial',
// Charts date format according jqPlot date format http://www.jqplot.com/docs/files/plugins/jqplot-dateAxisRenderer-js.html
'chart_day_format' => '%Y-%m-%d',
'chart_long_date_format' => '%Y-%m-%d %H:%M:%S',
@ -182,6 +238,7 @@ $sm_lang = array(
'warning_notifications_disabled_sms' => 'Las notificaciones por SMS están desactivadas.',
'warning_notifications_disabled_email' => 'Las notificaciones por correo electrónico están desactivados.',
'warning_notifications_disabled_pushover' => 'Las notificaciones Pushover están desactivadas.',
'warning_notifications_disabled_telegram' => 'Las notificaciones Telegram están desactivadas.',
'error_server_no_match' => 'Servidor no encontrado.',
'error_server_label_bad_length' => 'La etiqueta debe estar entre 1 y 255 caracteres.',
'error_server_ip_bad_length' => 'El dominio / IP debe estar entre 1 y 255 caracteres.',
@ -193,7 +250,13 @@ $sm_lang = array(
'config' => array(
'general' => 'General',
'language' => 'Idioma',
'show_update' => '¿Comprobar actualizaciones semanalmente?',
'show_update' => '¿Comprobar actualizaciones?',
'password_encrypt_key' => 'Clave cripográfica',
'password_encrypt_key_note' => 'Esta es la clave utilizada para encriptar las contraseñas de acceso a los servidores. ¡Si la contraseña cambia las credenciales serán inválidas!',
'proxy' => 'Activar Proxy',
'proxy_url' => 'URL del proxy',
'proxy_user' => 'Usuario',
'proxy_password' => 'Contraseña',
'email_status' => '¿Habilitar envio de email?',
'email_from_email' => 'Dirección del Remitente',
'email_from_name' => 'Nombre del Remitente',
@ -215,55 +278,72 @@ $sm_lang = array(
'pushover_clone_app' => 'Haga clic aquí para crear tu aplicación Pushover',
'pushover_api_token' => 'Token API de Pushover',
'pushover_api_token_description' => 'Antes de poder utilizar Pushover, necesita <a href="%1$s" target="_blank" rel="noopener"> registrar </a> su aplicación en la página web e ingresar el token API.',
'alert_type' => '¿Cuándo desea recibir notificaciones ?',
'alert_type_description' => '<b>... Al cambiar el estado:</b> '.
'p.ej. en línea -> fuera de línea o fuera de línea -> en línea.<br>'.
'<br /><b>Fuera de Línea:</b> '.
'Recibirá una notificación cuando el servidor esté fuera de línea.'.
'Se envia un sólo mensaje cuando se detecte la caída por primera vez.<br>'.
'<br><b>Siempre:</b> '.
'Se le enviará una notificación cada vez que se ejecuta el script '.
'aunqué el servicio puede haber estado fuera de línea por varias horas.',
'telegram_status' => '¿Habilitar el envío de mensajes de Telegram?',
'telegram_description' => '<a href="https://telegram.org/">Telegram</a> es una aplicación de mensajería instantánea que permite recibir notificaciones en tiempo real. Visite la <a href="http://docs.phpservermonitor.org/">documentación</a> para una guía mas detallada.',
'telegram_api_token' => 'Token API de Telegram',
'telegram_api_token_description' => 'Antes de utilizar Telegram, necesita un Token de API. Visite la <a href="http://docs.phpservermonitor.org/">documentación</a> para más información.',
'alert_type' => '¿Cuándo desea recibir notificaciones?',
'alert_type_description' => '<b>Al cambiar el estado:</b> '.
'p.ej. en línea -> fuera de línea o fuera de línea -> en línea.<br>'.
'<br /><b>Fuera de Línea:</b> '.
'Recibirá una notificación cuando el servidor esté fuera de línea.'.
'Se envia un sólo mensaje cuando se detecte la caída por primera vez.<br>'.
'<br><b>Siempre:</b> '.
'Se le enviará una notificación cada vez que se ejecuta el script '.
'aunqué el servicio puede haber estado fuera de línea por varias horas.',
'alert_type_status' => 'Cambio de estado',
'alert_type_offline' => 'Fuera de Línea',
'alert_type_always' => 'Siempre',
'log_status' => 'Log de Estados',
'combine_notifications' => 'Combinar notificaciones',
'combine_notifications_description' => 'Reduce la cantidad de notificaciones combinando los mensajes en una sola notificación. (Esto no afecta a las notificaciones por SMS.)',
'alert_proxy' => 'Incluso si está activo, los proxy no se utilizarán para los servicios.',
'alert_proxy_url' => 'Formato: host:puerto',
'log_status' => 'Log de estados',
'log_status_description' => 'Al setear TRUE (marcar) se registrarán todos los estados.',
'log_email' => 'Registrar emails enviados en el Log',
'log_sms' => 'Registrar sms enviados en el Log',
'log_sms' => 'Registrar SMS enviados en el Log',
'log_pushover' => 'Registrar notificaciones Pushover enviadas en el Log',
'log_telegram' => 'Registrar notificaciones Telegram enviadas en el Log',
'updated' => 'Configuración guardada.',
'tab_email' => 'Email',
'tab_sms' => 'SMS',
'tab_pushover' => 'Pushover',
'settings_email' => 'Email',
'settings_sms' => 'Mensaje SMS',
'tab_telegram' => 'Telegram',
'settings_email' => 'Configuración de Correo Electrónico',
'settings_sms' => 'Configuración de Mensajes de Texto',
'settings_pushover' => 'Configuración de Pushover',
'settings_notification' => 'Notificación',
'settings_log' => 'Log',
'auto_refresh' => 'Refrescar automáticamente la página de servidores',
'settings_telegram' => 'Configuración de Telegram',
'settings_notification' => 'Configuración de las notificaciones',
'settings_log' => 'Configuración de registros',
'settings_proxy' => 'Configuración del proxy',
'auto_refresh' => 'Auto-actualizar',
'auto_refresh_servers' =>
'Refrescar automáticamente la página de servidores.<br>'.
'<span class="small">'.
'Tiempo en segundos, indicar "0" para no actualizar.'.
'</span>',
'Auto-refresh servers page.<br>'.
'<span class="small">'.
'Time in seconds, if 0 the page won\'t refresh.'.
'</span>',
'seconds' => 'segundos',
'test' => 'Prueba',
'test_email' => 'Un correo electrónico será enviado a la dirección especificada en su perfil de usuario.',
'test_sms' => 'Un SMS se enviará al número de teléfono especificado en su perfil de usuario.',
'test_pushover' => 'Una notificación Pushover será enviado a la clave de usuario / dispositivo especificado en su perfil de usuario.',
'test_pushover' => 'Una notificación Pushover será enviada a la clave de usuario / dispositivo especificado en su perfil de usuario.',
'test_telegram' => 'Una notificación de Telegram será enviada al chat id especificado en su perfil de usuario.',
'send' => 'Enviar',
'test_subject' => 'Test',
'test_subject' => 'Prueba',
'test_message' => 'Mensaje de prueba',
'email_sent' => 'Email enviado',
'email_error' => 'Error al enviar el email',
'email_sent' => 'Correo enviado',
'email_error' => 'Error al enviar el correo',
'sms_sent' => 'SMS enviado',
'sms_error' => 'Error al enviar el SMS. %s',
'sms_error_nomobile' => 'No se puede enviar SMS de prueba: no hay ningún número de teléfono válido en su perfil.',
'pushover_sent' => 'Notificación Pushover enviada',
'pushover_error' => 'Error al enviar la notificación Pushover: %s',
'sms_error' => 'Error al enviar el SMS: %s',
'sms_error_nomobile' => 'Imposible enviar el SMS: no se encontró un número de teléfono válido en su perfil.',
'pushover_sent' => 'Notificación de Pushover enviada',
'pushover_error' => 'An error has occurred while sending the Pushover notification: %s',
'pushover_error_noapp' => 'No se puede enviar una notificación de prueba: no existe un token API de Pushover en la configuración global.',
'pushover_error_nokey' => 'No se puede enviar una notificación de prueba: no existe ninguna clave de Pushover en su perfil.',
'telegram_sent' => 'Notificación de Telegram enviada',
'telegram_error' => 'An error has occurred while sending the Telegram notification: %s',
'telegram_error_notoken' => 'Unable to send test notification: no Telegram API token found in the global configuration.',
'telegram_error_noid' => 'Unable to send test notification: no chat id found in your profile.',
'log_retention_period' => 'Período de retención del Log',
'log_retention_period_description' => 'Número de días que se conservan registros de las notificaciones y los archivos de tiempo de actividad del servidor. Introduzca 0 para desactivar la limpieza de los registros.',
'log_retention_days' => 'días',
@ -275,14 +355,27 @@ $sm_lang = array(
'off_email_body' => "Imposible conectar al servidor:<br/><br/>Servidor: %LABEL%<br/>IP: %IP%<br/>Puerto: %PORT%<br/>Error: %ERROR%<br/>Fecha: %DATE%",
'off_pushover_title' => 'Servidor \'%LABEL%\' está fuera de línea',
'off_pushover_message' => "No posible conectar al servidor:<br/><br/>Servidor: %LABEL%<br/>IP: %IP%<br/>Puerto: %PORT%<br/>Error: %ERROR%<br/>Fecha: %DATE%",
'off_telegram_message' => "Failed to connect to the following server:<br><br>Server: %LABEL%<br>IP: %IP%<br>Port: %PORT%<br>Error: %ERROR%<br>Date: %DATE%",
'on_sms' => 'Servidor \'%LABEL%\' ya está de nuevo funcionando en línea: ip=%IP%, puerto=%PORT%, la duración de la caída fue de %LAST_OFFLINE_DURATION%',
'on_email_subject' => 'Importante: Servidor \'%LABEL%\' ya está de nuevo en línea',
'on_email_body' => "Servidor '%LABEL%' ya está funcionando en línea de nuevo, la duración de la caída fue de %LAST_OFFLINE_DURATION%:<br/><br/>Servidor: %LABEL%<br/>IP: %IP%<br/>Puerto: %PORT%<br/>Fecha: %DATE%",
'on_pushover_title' => 'Servidor \'%LABEL%\' ya está de nuevo en línea',
'on_pushover_message' => "Servidor '%LABEL%' ya está funcionando en línea de nuevo, la duración de la caída fue de %LAST_OFFLINE_DURATION%:<br/><br/>Servidor: %LABEL%<br/>IP: %IP%<br/>Puerto: %PORT%<br/>Fecha: %DATE%",
'on_telegram_message' => "Servidor '%LABEL%' ya está funcionando en línea de nuevo, la duración de la caída fue de %LAST_OFFLINE_DURATION%:<br/><br/>Servidor: %LABEL%<br/>IP: %IP%<br/>Puerto: %PORT%<br/>Fecha: %DATE%",
'combi_off_email_message' => "<ul><li>Server: %LABEL%</li><li>IP: %IP%</li><li>Port: %PORT%</li><li>Error: %ERROR%</li><li>Date: %DATE%</li></ul>",
'combi_off_pushover_message' => "<ul><li>Server: %LABEL%</li><li>IP: %IP%</li><li>Port: %PORT%</li><li>Error: %ERROR%</li><li>Date: %DATE%</li></ul>",
'combi_off_telegram_message' => "- Server: %LABEL%<br>- IP: %IP%<br>- Port: %PORT%<br>- Error: %ERROR%<br>- Date: %DATE%<br><br>",
'combi_on_email_message' => "<ul><li>Server: %LABEL%</li><li>IP: %IP%</li><li>Port: %PORT%</li><li>Downtime: %LAST_OFFLINE_DURATION%</li><li>Date: %DATE%</li></ul>",
'combi_on_pushover_message' => '<ul><li>Server: %LABEL%</li><li>IP: %IP%</li><li>Port: %PORT%</li><li>Downtime: %LAST_OFFLINE_DURATION%</li><li>Date: %DATE%</li></ul>',
'combi_on_telegram_message' => '- Server: %LABEL%<br>- IP: %IP%<br>- Port: %PORT%<br>- Downtime: %LAST_OFFLINE_DURATION%<br>- Date: %DATE%<br><br>',
'combi_email_subject' => 'IMPORTANT: \'%UP%\' servers UP again, \'%DOWN%\' servers DOWN',
'combi_pushover_subject' => '\'%UP%\' servers UP again, \'%DOWN%\' servers DOWN',
'combi_email_message' => '<b>The following servers went down:</b><br>%DOWN_SERVERS%<br><b>The following servers are up again:</b><br>%UP_SERVERS%',
'combi_pushover_message' => '<b>The following servers went down:</b><br>%DOWN_SERVERS%<br><b>The following servers are up again:</b><br>%UP_SERVERS%',
'combi_telegram_message' => '<b>The following servers went down:</b><br>%DOWN_SERVERS%<br><b>The following servers are up again:</b><br>%UP_SERVERS%',
),
'login' => array(
'welcome_usermenu' => 'Bienvenido, %user_name%',
'welcome_usermenu' => '%user_name%',
'title_sign_in' => 'Por favor, inicie sesión',
'title_forgot' => '¿Olvidaste tu contraseña?',
'title_reset' => 'Restablecer su contraseña',
@ -309,3 +402,4 @@ $sm_lang = array(
'401_unauthorized_description' => 'Usted no tiene los privilegios para ver esta página.',
),
);