mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 02:14:13 +00:00
Initial commit
This commit is contained in:
@@ -1,84 +1,57 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2019, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @author CodeIgniter community
|
||||
* @author Iban Eguia
|
||||
* @copyright Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['cal_su'] = 'Su';
|
||||
$lang['cal_mo'] = 'Mo';
|
||||
$lang['cal_tu'] = 'Tu';
|
||||
$lang['cal_we'] = 'We';
|
||||
$lang['cal_th'] = 'Th';
|
||||
$lang['cal_fr'] = 'Fr';
|
||||
$lang['cal_sa'] = 'Sa';
|
||||
$lang['cal_sun'] = 'Sun';
|
||||
$lang['cal_mon'] = 'Mon';
|
||||
$lang['cal_tue'] = 'Tue';
|
||||
$lang['cal_wed'] = 'Wed';
|
||||
$lang['cal_thu'] = 'Thu';
|
||||
$lang['cal_fri'] = 'Fri';
|
||||
$lang['cal_sat'] = 'Sat';
|
||||
$lang['cal_sunday'] = 'Sunday';
|
||||
$lang['cal_monday'] = 'Monday';
|
||||
$lang['cal_tuesday'] = 'Tuesday';
|
||||
$lang['cal_wednesday'] = 'Wednesday';
|
||||
$lang['cal_thursday'] = 'Thursday';
|
||||
$lang['cal_friday'] = 'Friday';
|
||||
$lang['cal_saturday'] = 'Saturday';
|
||||
$lang['cal_jan'] = 'Jan';
|
||||
$lang['cal_feb'] = 'Feb';
|
||||
$lang['cal_mar'] = 'Mar';
|
||||
$lang['cal_apr'] = 'Apr';
|
||||
$lang['cal_may'] = 'May';
|
||||
$lang['cal_jun'] = 'Jun';
|
||||
$lang['cal_jul'] = 'Jul';
|
||||
$lang['cal_aug'] = 'Aug';
|
||||
$lang['cal_sep'] = 'Sep';
|
||||
$lang['cal_oct'] = 'Oct';
|
||||
$lang['cal_nov'] = 'Nov';
|
||||
$lang['cal_dec'] = 'Dec';
|
||||
$lang['cal_january'] = 'January';
|
||||
$lang['cal_february'] = 'February';
|
||||
$lang['cal_march'] = 'March';
|
||||
$lang['cal_april'] = 'April';
|
||||
$lang['cal_mayl'] = 'May';
|
||||
$lang['cal_june'] = 'June';
|
||||
$lang['cal_july'] = 'July';
|
||||
$lang['cal_august'] = 'August';
|
||||
$lang['cal_september'] = 'September';
|
||||
$lang['cal_october'] = 'October';
|
||||
$lang['cal_november'] = 'November';
|
||||
$lang['cal_december'] = 'December';
|
||||
$lang['cal_su'] = 'Do';
|
||||
$lang['cal_mo'] = 'Lu';
|
||||
$lang['cal_tu'] = 'Ma';
|
||||
$lang['cal_we'] = 'Mi';
|
||||
$lang['cal_th'] = 'Ju';
|
||||
$lang['cal_fr'] = 'Vi';
|
||||
$lang['cal_sa'] = 'Sá';
|
||||
$lang['cal_sun'] = 'Dom';
|
||||
$lang['cal_mon'] = 'Lun';
|
||||
$lang['cal_tue'] = 'Mar';
|
||||
$lang['cal_wed'] = 'Mié';
|
||||
$lang['cal_thu'] = 'Jue';
|
||||
$lang['cal_fri'] = 'Vie';
|
||||
$lang['cal_sat'] = 'Sáb';
|
||||
$lang['cal_sunday'] = 'Domingo';
|
||||
$lang['cal_monday'] = 'Lunes';
|
||||
$lang['cal_tuesday'] = 'Martes';
|
||||
$lang['cal_wednesday'] = 'Miércoles';
|
||||
$lang['cal_thursday'] = 'Jueves';
|
||||
$lang['cal_friday'] = 'Viernes';
|
||||
$lang['cal_saturday'] = 'Sábado';
|
||||
$lang['cal_jan'] = 'Ene';
|
||||
$lang['cal_feb'] = 'Feb';
|
||||
$lang['cal_mar'] = 'Mar';
|
||||
$lang['cal_apr'] = 'Abr';
|
||||
$lang['cal_may'] = 'May';
|
||||
$lang['cal_jun'] = 'Jun';
|
||||
$lang['cal_jul'] = 'Jul';
|
||||
$lang['cal_aug'] = 'Ago';
|
||||
$lang['cal_sep'] = 'Sep';
|
||||
$lang['cal_oct'] = 'Oct';
|
||||
$lang['cal_nov'] = 'Nov';
|
||||
$lang['cal_dec'] = 'Dic';
|
||||
$lang['cal_january'] = 'Enero';
|
||||
$lang['cal_february'] = 'Febrero';
|
||||
$lang['cal_march'] = 'Marzo';
|
||||
$lang['cal_april'] = 'Abril';
|
||||
$lang['cal_mayl'] = 'Mayo';
|
||||
$lang['cal_june'] = 'Junio';
|
||||
$lang['cal_july'] = 'Julio';
|
||||
$lang['cal_august'] = 'Agosto';
|
||||
$lang['cal_september'] = 'Septiembre';
|
||||
$lang['cal_october'] = 'Octubre';
|
||||
$lang['cal_november'] = 'Noviembre';
|
||||
$lang['cal_december'] = 'Diciembre';
|
||||
|
||||
@@ -1,94 +1,67 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2019, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @author CodeIgniter community
|
||||
* @author Iban Eguia
|
||||
* @copyright Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['date_year'] = 'Year';
|
||||
$lang['date_years'] = 'Years';
|
||||
$lang['date_month'] = 'Month';
|
||||
$lang['date_months'] = 'Months';
|
||||
$lang['date_week'] = 'Week';
|
||||
$lang['date_weeks'] = 'Weeks';
|
||||
$lang['date_day'] = 'Day';
|
||||
$lang['date_days'] = 'Days';
|
||||
$lang['date_hour'] = 'Hour';
|
||||
$lang['date_hours'] = 'Hours';
|
||||
$lang['date_minute'] = 'Minute';
|
||||
$lang['date_minutes'] = 'Minutes';
|
||||
$lang['date_second'] = 'Second';
|
||||
$lang['date_seconds'] = 'Seconds';
|
||||
$lang['date_year'] = 'Año';
|
||||
$lang['date_years'] = 'Años';
|
||||
$lang['date_month'] = 'Mes';
|
||||
$lang['date_months'] = 'Meses';
|
||||
$lang['date_week'] = 'Semana';
|
||||
$lang['date_weeks'] = 'Semanas';
|
||||
$lang['date_day'] = 'Día';
|
||||
$lang['date_days'] = 'Días';
|
||||
$lang['date_hour'] = 'Hora';
|
||||
$lang['date_hours'] = 'Horas';
|
||||
$lang['date_minute'] = 'Minuto';
|
||||
$lang['date_minutes'] = 'Minutos';
|
||||
$lang['date_second'] = 'Segundo';
|
||||
$lang['date_seconds'] = 'Segundos';
|
||||
|
||||
$lang['UM12'] = '(UTC -12:00) Baker/Howland Island';
|
||||
$lang['UM12'] = '(UTC -12:00) Isla Howland/Baker';
|
||||
$lang['UM11'] = '(UTC -11:00) Niue';
|
||||
$lang['UM10'] = '(UTC -10:00) Hawaii-Aleutian Standard Time, Cook Islands, Tahiti';
|
||||
$lang['UM95'] = '(UTC -9:30) Marquesas Islands';
|
||||
$lang['UM9'] = '(UTC -9:00) Alaska Standard Time, Gambier Islands';
|
||||
$lang['UM8'] = '(UTC -8:00) Pacific Standard Time, Clipperton Island';
|
||||
$lang['UM7'] = '(UTC -7:00) Mountain Standard Time';
|
||||
$lang['UM6'] = '(UTC -6:00) Central Standard Time';
|
||||
$lang['UM5'] = '(UTC -5:00) Eastern Standard Time, Western Caribbean Standard Time';
|
||||
$lang['UM45'] = '(UTC -4:30) Venezuelan Standard Time';
|
||||
$lang['UM4'] = '(UTC -4:00) Atlantic Standard Time, Eastern Caribbean Standard Time';
|
||||
$lang['UM35'] = '(UTC -3:30) Newfoundland Standard Time';
|
||||
$lang['UM3'] = '(UTC -3:00) Argentina, Brazil, French Guiana, Uruguay';
|
||||
$lang['UM2'] = '(UTC -2:00) South Georgia/South Sandwich Islands';
|
||||
$lang['UM1'] = '(UTC -1:00) Azores, Cape Verde Islands';
|
||||
$lang['UTC'] = '(UTC) Greenwich Mean Time, Western European Time';
|
||||
$lang['UP1'] = '(UTC +1:00) Central European Time, West Africa Time';
|
||||
$lang['UP2'] = '(UTC +2:00) Central Africa Time, Eastern European Time, Kaliningrad Time';
|
||||
$lang['UP3'] = '(UTC +3:00) Moscow Time, East Africa Time, Arabia Standard Time';
|
||||
$lang['UP35'] = '(UTC +3:30) Iran Standard Time';
|
||||
$lang['UP4'] = '(UTC +4:00) Azerbaijan Standard Time, Samara Time';
|
||||
$lang['UP45'] = '(UTC +4:30) Afghanistan';
|
||||
$lang['UP5'] = '(UTC +5:00) Pakistan Standard Time, Yekaterinburg Time';
|
||||
$lang['UP55'] = '(UTC +5:30) Indian Standard Time, Sri Lanka Time';
|
||||
$lang['UP575'] = '(UTC +5:45) Nepal Time';
|
||||
$lang['UP6'] = '(UTC +6:00) Bangladesh Standard Time, Bhutan Time, Omsk Time';
|
||||
$lang['UP65'] = '(UTC +6:30) Cocos Islands, Myanmar';
|
||||
$lang['UP7'] = '(UTC +7:00) Krasnoyarsk Time, Cambodia, Laos, Thailand, Vietnam';
|
||||
$lang['UP8'] = '(UTC +8:00) Australian Western Standard Time, Beijing Time, Irkutsk Time';
|
||||
$lang['UP875'] = '(UTC +8:45) Australian Central Western Standard Time';
|
||||
$lang['UP9'] = '(UTC +9:00) Japan Standard Time, Korea Standard Time, Yakutsk Time';
|
||||
$lang['UP95'] = '(UTC +9:30) Australian Central Standard Time';
|
||||
$lang['UP10'] = '(UTC +10:00) Australian Eastern Standard Time, Vladivostok Time';
|
||||
$lang['UP105'] = '(UTC +10:30) Lord Howe Island';
|
||||
$lang['UP11'] = '(UTC +11:00) Srednekolymsk Time, Solomon Islands, Vanuatu';
|
||||
$lang['UP115'] = '(UTC +11:30) Norfolk Island';
|
||||
$lang['UP12'] = '(UTC +12:00) Fiji, Gilbert Islands, Kamchatka Time, New Zealand Standard Time';
|
||||
$lang['UP1275'] = '(UTC +12:45) Chatham Islands Standard Time';
|
||||
$lang['UP13'] = '(UTC +13:00) Samoa Time Zone, Phoenix Islands Time, Tonga';
|
||||
$lang['UP14'] = '(UTC +14:00) Line Islands';
|
||||
$lang['UM10'] = '(UTC -10:00) Tiempo de Hawái-Aleutiano, Islas Cook, Tahití';
|
||||
$lang['UM95'] = '(UTC -9:30) Islas Marquesas';
|
||||
$lang['UM9'] = '(UTC -9:00) Tiempo de Alaska, Islas Gambier';
|
||||
$lang['UM8'] = '(UTC -8:00) Tiempo del Pacífico, Isla Clipperton';
|
||||
$lang['UM7'] = '(UTC -7:00) Tiempo de la montaña';
|
||||
$lang['UM6'] = '(UTC -6:00) Hora Estándar del Centro';
|
||||
$lang['UM5'] = '(UTC -5:00) Tiempo del Este, Hora Estándar del Caribe Occidental';
|
||||
$lang['UM45'] = '(UTC -4:30) Hora Estándar de Venezuela';
|
||||
$lang['UM4'] = '(UTC -4:00) Tiempo Estándar del Atlántico, Hora Estándar del Caribe Oriental';
|
||||
$lang['UM35'] = '(UTC -3:30) Tiempo de Terranova y Labrador';
|
||||
$lang['UM3'] = '(UTC -3:00) Argentina, Brasil, Guayana Francesa, Uruguay';
|
||||
$lang['UM2'] = '(UTC -2:00) Islas Georgias del Sur/Islas Sandwich del Sur';
|
||||
$lang['UM1'] = '(UTC -1:00) Azores, Islas de Cabo Verde';
|
||||
$lang['UTC'] = '(UTC) Tiempo medio de Greenwich, Hora de Europa Occidental';
|
||||
$lang['UP1'] = '(UTC +1:00) Hora Central Europea, Tiempo de África Occidental';
|
||||
$lang['UP2'] = '(UTC +2:00) Tiempo de África Central, Hora de Europa Oriental, Hora de Kaliningrado';
|
||||
$lang['UP3'] = '(UTC +3:00) Hora de Moscú, Tiempo de África Oriental, Hora Estándar de Arabia';
|
||||
$lang['UP35'] = '(UTC +3:30) Hora Estándar de Irán';
|
||||
$lang['UP4'] = '(UTC +4:00) Hora Estándar de Azerbaiyán, Hora de Samara';
|
||||
$lang['UP45'] = '(UTC +4:30) Afganistán';
|
||||
$lang['UP5'] = '(UTC +5:00) Hora Estándar de Pakistan, Hora de Ekaterimburgo';
|
||||
$lang['UP55'] = '(UTC +5:30) Hora Estándar de la India, Hora Estándar de Sri Lanka';
|
||||
$lang['UP575'] = '(UTC +5:45) Hora de Nepal';
|
||||
$lang['UP6'] = '(UTC +6:00) Hora Estándar de Bangladés, Hora de Bután, Hora de Omsk';
|
||||
$lang['UP65'] = '(UTC +6:30) Islas Cocos, Birmania';
|
||||
$lang['UP7'] = '(UTC +7:00) Hora de Krasnoyarsk, Camboya, Laos, Tailandia, Vietnam';
|
||||
$lang['UP8'] = '(UTC +8:00) Hora Estándar Occidental Australiana, Hora de Pekín, Hora de Irkutsk';
|
||||
$lang['UP875'] = '(UTC +8:45) Hora Estándar Centro Occidental Australiana';
|
||||
$lang['UP9'] = '(UTC +9:00) Hora Estándar de Japón, Hora Estándar de Corea, Hora de Yakutsk';
|
||||
$lang['UP95'] = '(UTC +9:30) Hora Estándar Central Australiana';
|
||||
$lang['UP10'] = '(UTC +10:00) Hora Estándar Oriental Australiana, Hora de Vladivostok';
|
||||
$lang['UP105'] = '(UTC +10:30) Isla de Lord Howe';
|
||||
$lang['UP11'] = '(UTC +11:00) Hora de Srednekolimsk, Islas Salomón, Vanuatu';
|
||||
$lang['UP115'] = '(UTC +11:30) Isla Norfolk';
|
||||
$lang['UP12'] = '(UTC +12:00) Fiji, Islas Gilbert, Horario de Kamchatka, Hora estandar de Nueva Zelanda';
|
||||
$lang['UP1275'] = '(UTC +12:45) Hora Estándar de las Islas Chatham';
|
||||
$lang['UP13'] = '(UTC +13:00) Zona horaria de Samoa, Hora de las Islas Fénix, Tonga';
|
||||
$lang['UP14'] = '(UTC +14:00) Islas de la Línea';
|
||||
|
||||
@@ -1,63 +1,36 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2019, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @author CodeIgniter community
|
||||
* @author Iban Eguia
|
||||
* @copyright Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['db_invalid_connection_str'] = 'Unable to determine the database settings based on the connection string you submitted.';
|
||||
$lang['db_unable_to_connect'] = 'Unable to connect to your database server using the provided settings.';
|
||||
$lang['db_unable_to_select'] = 'Unable to select the specified database: %s';
|
||||
$lang['db_unable_to_create'] = 'Unable to create the specified database: %s';
|
||||
$lang['db_invalid_query'] = 'The query you submitted is not valid.';
|
||||
$lang['db_must_set_table'] = 'You must set the database table to be used with your query.';
|
||||
$lang['db_must_use_set'] = 'You must use the "set" method to update an entry.';
|
||||
$lang['db_must_use_index'] = 'You must specify an index to match on for batch updates.';
|
||||
$lang['db_batch_missing_index'] = 'One or more rows submitted for batch updating is missing the specified index.';
|
||||
$lang['db_must_use_where'] = 'Updates are not allowed unless they contain a "where" clause.';
|
||||
$lang['db_del_must_use_where'] = 'Deletes are not allowed unless they contain a "where" or "like" clause.';
|
||||
$lang['db_field_param_missing'] = 'To fetch fields requires the name of the table as a parameter.';
|
||||
$lang['db_unsupported_function'] = 'This feature is not available for the database you are using.';
|
||||
$lang['db_transaction_failure'] = 'Transaction failure: Rollback performed.';
|
||||
$lang['db_unable_to_drop'] = 'Unable to drop the specified database.';
|
||||
$lang['db_unsupported_feature'] = 'Unsupported feature of the database platform you are using.';
|
||||
$lang['db_unsupported_compression'] = 'The file compression format you chose is not supported by your server.';
|
||||
$lang['db_filepath_error'] = 'Unable to write data to the file path you have submitted.';
|
||||
$lang['db_invalid_cache_path'] = 'The cache path you submitted is not valid or writable.';
|
||||
$lang['db_table_name_required'] = 'A table name is required for that operation.';
|
||||
$lang['db_column_name_required'] = 'A column name is required for that operation.';
|
||||
$lang['db_column_definition_required'] = 'A column definition is required for that operation.';
|
||||
$lang['db_unable_to_set_charset'] = 'Unable to set client connection character set: %s';
|
||||
$lang['db_error_heading'] = 'A Database Error Occurred';
|
||||
$lang['db_invalid_connection_str'] = 'No ha sido posible determinar la configuración de la base de datos basada en la cadena de conexión introducida.';
|
||||
$lang['db_unable_to_connect'] = 'No ha sido posible conectar al servidor de la base de datos haciendo uso de la configuración proporcionada.';
|
||||
$lang['db_unable_to_select'] = 'No ha sido posible seleccionar la base de datos especificada: %s';
|
||||
$lang['db_unable_to_create'] = 'No ha sido posible crear la base de datos especificada: %s';
|
||||
$lang['db_invalid_query'] = 'La consulta introducida no es válida.';
|
||||
$lang['db_must_set_table'] = 'Debes fijar la tabla de la base de datos que será usada con tu consulta.';
|
||||
$lang['db_must_use_set'] = 'Debes usar el método "set" para actualizar una entrada.';
|
||||
$lang['db_must_use_index'] = 'Debes especificar un índice para emparejar las actualizaciones masivas.';
|
||||
$lang['db_batch_missing_index'] = 'A una o más filas introducidas para la actualización masiva le falta el índice especificado.';
|
||||
$lang['db_must_use_where'] = 'Las actualizaciones no están permitidas a no ser que contengan la cláusula "where".';
|
||||
$lang['db_del_must_use_where'] = 'Los borrados no están permitidos a no ser que contengan la cláusula "where" o "like".';
|
||||
$lang['db_field_param_missing'] = 'Para obtener campos se requiere el nombre de la tabla como parámetro.';
|
||||
$lang['db_unsupported_function'] = 'Esta característica no está disponible para la base de datos que estás usando.';
|
||||
$lang['db_transaction_failure'] = 'Fallo de transacción: Rollback realizado.';
|
||||
$lang['db_unable_to_drop'] = 'No ha sido posible borrar la base de datos especificada.';
|
||||
$lang['db_unsupported_feature'] = 'Característica no soportada de la plataforma de bases de datos que estás usando.';
|
||||
$lang['db_unsupported_compression'] = 'El formato de compresión elegido no está soportado por el servidor.';
|
||||
$lang['db_filepath_error'] = 'No ha sido posible escribir los datos en la ruta de archivo especificada.';
|
||||
$lang['db_invalid_cache_path'] = 'La ruta de la caché introducida no es válida o escribible.';
|
||||
$lang['db_table_name_required'] = 'Se requiere un nombre de tabla para esa operación.';
|
||||
$lang['db_column_name_required'] = 'Se requiere un nombre de columna para esa operación.';
|
||||
$lang['db_column_definition_required'] = 'Se requiere una definición de columna para esa operación.';
|
||||
$lang['db_unable_to_set_charset'] = 'No ha sido posible fijar en la conexión el conjunto de caracteres: %s';
|
||||
$lang['db_error_heading'] = 'Ha ocurrido un error con la base de datos';
|
||||
|
||||
@@ -1,58 +1,31 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2019, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @author CodeIgniter community
|
||||
* @author Iban Eguia
|
||||
* @copyright Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['email_must_be_array'] = 'The email validation method must be passed an array.';
|
||||
$lang['email_invalid_address'] = 'Invalid email address: %s';
|
||||
$lang['email_attachment_missing'] = 'Unable to locate the following email attachment: %s';
|
||||
$lang['email_attachment_unreadable'] = 'Unable to open this attachment: %s';
|
||||
$lang['email_no_from'] = 'Cannot send mail with no "From" header.';
|
||||
$lang['email_no_recipients'] = 'You must include recipients: To, Cc, or Bcc';
|
||||
$lang['email_send_failure_phpmail'] = 'Unable to send email using PHP mail(). Your server might not be configured to send mail using this method.';
|
||||
$lang['email_send_failure_sendmail'] = 'Unable to send email using PHP Sendmail. Your server might not be configured to send mail using this method.';
|
||||
$lang['email_send_failure_smtp'] = 'Unable to send email using PHP SMTP. Your server might not be configured to send mail using this method.';
|
||||
$lang['email_sent'] = 'Your message has been successfully sent using the following protocol: %s';
|
||||
$lang['email_no_socket'] = 'Unable to open a socket to Sendmail. Please check settings.';
|
||||
$lang['email_no_hostname'] = 'You did not specify a SMTP hostname.';
|
||||
$lang['email_smtp_error'] = 'The following SMTP error was encountered: %s';
|
||||
$lang['email_no_smtp_unpw'] = 'Error: You must assign a SMTP username and password.';
|
||||
$lang['email_failed_smtp_login'] = 'Failed to send AUTH LOGIN command. Error: %s';
|
||||
$lang['email_smtp_auth_un'] = 'Failed to authenticate username. Error: %s';
|
||||
$lang['email_smtp_auth_pw'] = 'Failed to authenticate password. Error: %s';
|
||||
$lang['email_smtp_data_failure'] = 'Unable to send data: %s';
|
||||
$lang['email_exit_status'] = 'Exit status code: %s';
|
||||
$lang['email_must_be_array'] = 'Debes pasar un array al método de validación de email.';
|
||||
$lang['email_invalid_address'] = 'Correo electrónico no válido: %s';
|
||||
$lang['email_attachment_missing'] = 'No ha sido posible encontrar este adjunto: %s';
|
||||
$lang['email_attachment_unreadable'] = 'No ha sido posible abrir este adjunto: %s';
|
||||
$lang['email_no_from'] = 'No se puede enviar un email sin la cabecera "From".';
|
||||
$lang['email_no_recipients'] = 'Debes incluir destinatarios: Para, Cc, o Cco';
|
||||
$lang['email_send_failure_phpmail'] = 'No ha sido posible enviar el correo usando PHP mail(). Tu servidor podría no estar configurado para enviar emails con este método.';
|
||||
$lang['email_send_failure_sendmail'] = 'No ha sido posible enviar el correo usando PHP Sendmail. Tu servidor podría no estar configurado para enviar emails con este método.';
|
||||
$lang['email_send_failure_smtp'] = 'No ha sido posible enviar el correo usando PHP SMTP. Tu servidor podría no estar configurado para enviar emails con este método.';
|
||||
$lang['email_sent'] = 'Tu mensaje ha sido enviado con éxito usando este protocolo: %s';
|
||||
$lang['email_no_socket'] = 'No ha sido posible abrir un socket a Sendmail. Por favor, comprueba la configuración.';
|
||||
$lang['email_no_hostname'] = 'No has especificado un servidor SMTP.';
|
||||
$lang['email_smtp_error'] = 'Se ha encontrado este error SMTP: %s';
|
||||
$lang['email_no_smtp_unpw'] = 'Error: Debes asignar un usuario y una contraseña SMTP.';
|
||||
$lang['email_failed_smtp_login'] = 'Fallo al enviar el comando AUTH LOGIN. Error: %s';
|
||||
$lang['email_smtp_auth_un'] = 'Fallo al autenticar el usuario. Error: %s';
|
||||
$lang['email_smtp_auth_pw'] = 'Fallo al autenticar la contraseña. Error: %s';
|
||||
$lang['email_smtp_data_failure'] = 'No ha sido posible enviar los datos: %s';
|
||||
$lang['email_exit_status'] = 'Código estado al salir: %s';
|
||||
|
||||
@@ -1,70 +1,44 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2019, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @author CodeIgniter community
|
||||
* @author Iban Eguia
|
||||
* @author Juan P. Garcia
|
||||
* @copyright Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['form_validation_required'] = 'The "{field}" field is required.';
|
||||
$lang['form_validation_isset'] = 'The "{field}" field must have a value.';
|
||||
$lang['form_validation_valid_email'] = 'The "{field}" field must contain a valid email address.';
|
||||
$lang['form_validation_valid_emails'] = 'The "{field}" field must contain all valid email addresses.';
|
||||
$lang['form_validation_valid_url'] = 'The "{field}" field must contain a valid URL.';
|
||||
$lang['form_validation_valid_ip'] = 'The "{field}" field must contain a valid IP.';
|
||||
$lang['form_validation_valid_mac'] = 'The "{field}" field must contain a valid MAC.';
|
||||
$lang['form_validation_valid_base64'] = 'The "{field}" field must contain a valid Base64 string.';
|
||||
$lang['form_validation_min_length'] = 'The "{field}" field must be at least {param} characters in length.';
|
||||
$lang['form_validation_max_length'] = 'The "{field}" field cannot exceed {param} characters in length.';
|
||||
$lang['form_validation_exact_length'] = 'The "{field}" field must be exactly {param} characters in length.';
|
||||
$lang['form_validation_alpha'] = 'The "{field}" field may only contain alphabetical characters.';
|
||||
$lang['form_validation_alpha_numeric'] = 'The "{field}" field may only contain alpha-numeric characters.';
|
||||
$lang['form_validation_alpha_numeric_spaces'] = 'The "{field}" field may only contain alpha-numeric characters and spaces.';
|
||||
$lang['form_validation_alpha_dash'] = 'The "{field}" field may only contain alpha-numeric characters, underscores, and dashes.';
|
||||
$lang['form_validation_numeric'] = 'The "{field}" field must contain only numbers.';
|
||||
$lang['form_validation_is_numeric'] = 'The "{field}" field must contain only numeric characters.';
|
||||
$lang['form_validation_integer'] = 'The "{field}" field must contain an integer.';
|
||||
$lang['form_validation_regex_match'] = 'The "{field}" field is not in the correct format.';
|
||||
$lang['form_validation_matches'] = 'The "{field}" field does not match the {param} field.';
|
||||
$lang['form_validation_differs'] = 'The "{field}" field must differ from the {param} field.';
|
||||
$lang['form_validation_is_unique'] = 'The "{field}" field must contain a unique value.';
|
||||
$lang['form_validation_is_natural'] = 'The "{field}" field must only contain digits.';
|
||||
$lang['form_validation_is_natural_no_zero'] = 'The "{field}" field must only contain digits and must be greater than zero.';
|
||||
$lang['form_validation_decimal'] = 'The "{field}" field must contain a decimal number.';
|
||||
$lang['form_validation_less_than'] = 'The "{field}" field must contain a number less than {param}.';
|
||||
$lang['form_validation_less_than_equal_to'] = 'The "{field}" field must contain a number less than or equal to {param}.';
|
||||
$lang['form_validation_greater_than'] = 'The "{field}" field must contain a number greater than {param}.';
|
||||
$lang['form_validation_greater_than_equal_to'] = 'The "{field}" field must contain a number greater than or equal to {param}.';
|
||||
$lang['form_validation_error_message_not_set'] = 'Unable to access an error message corresponding to your field name "{field}".';
|
||||
$lang['form_validation_in_list'] = 'The "{field}" field must be one of: {param}.';
|
||||
$lang['form_validation_required'] = 'El campo "{field}" es obligatorio.';
|
||||
$lang['form_validation_isset'] = 'El campo "{field}" debe contener un valor.';
|
||||
$lang['form_validation_valid_email'] = 'El campo "{field}" debe contener un email válido.';
|
||||
$lang['form_validation_valid_emails'] = 'El campo "{field}" debe contener todos los emails válidos.';
|
||||
$lang['form_validation_valid_url'] = 'El campo "{field}" debe contener una URL válida.';
|
||||
$lang['form_validation_valid_ip'] = 'El campo "{field}" debe contener una IP válida.';
|
||||
$lang['form_validation_valid_mac'] = 'El campo "{field}" debe contener una MAC válida.';
|
||||
$lang['form_validation_valid_base64'] = 'El campo "{field}" debe contener un Base64 válido.';
|
||||
$lang['form_validation_min_length'] = 'El campo "{field}" debe ser de al menos {param} caracteres de longitud.';
|
||||
$lang['form_validation_max_length'] = 'El campo "{field}" no puede superar los {param} caracteres de longitud.';
|
||||
$lang['form_validation_exact_length'] = 'El campo "{field}" debe ser de exactamente {param} caracteres de longitud.';
|
||||
$lang['form_validation_alpha'] = 'El campo "{field}" solo puede contener caracteres alfabéticos.';
|
||||
$lang['form_validation_alpha_numeric'] = 'El campo "{field}" solo puede contener caracteres alfanuméricos.';
|
||||
$lang['form_validation_alpha_numeric_spaces'] = 'El campo "{field}" solo puede contener caracteres alfanuméricos y espacios.';
|
||||
$lang['form_validation_alpha_dash'] = 'El campo "{field}" solo puede contener caracteres alfanuméricos, guiones bajos y guiones.';
|
||||
$lang['form_validation_numeric'] = 'El campo "{field}" solo puede contener números.';
|
||||
$lang['form_validation_is_numeric'] = 'El campo "{field}" solo puede contener caracteres numéricos.';
|
||||
$lang['form_validation_integer'] = 'El campo "{field}" debe contener un entero.';
|
||||
$lang['form_validation_regex_match'] = 'El campo "{field}" no está en el formato correcto.';
|
||||
$lang['form_validation_matches'] = 'El campo "{field}" no coincide con el campo {param}.';
|
||||
$lang['form_validation_differs'] = 'El campo "{field}" debe ser distinto al campo {param}.';
|
||||
$lang['form_validation_is_unique'] = 'El campo "{field}" debe contener un valor único.';
|
||||
$lang['form_validation_is_natural'] = 'El campo "{field}" solo puede contener dígitos.';
|
||||
$lang['form_validation_is_natural_no_zero'] = 'El campo "{field}" solo puede contener dígitos y debe ser mayor que cero.';
|
||||
$lang['form_validation_decimal'] = 'El campo "{field}" debe contener un número decimal.';
|
||||
$lang['form_validation_less_than'] = 'El campo "{field}" debe contener un número menor que {param}.';
|
||||
$lang['form_validation_less_than_equal_to'] = 'El campo "{field}" debe contener un número menor o igual a {param}.';
|
||||
$lang['form_validation_greater_than'] = 'El campo "{field}" debe contener un número mayor que {param}.';
|
||||
$lang['form_validation_greater_than_equal_to'] = 'El campo "{field}" debe contener un número mayor o igual a {param}.';
|
||||
$lang['form_validation_error_message_not_set'] = 'No se ha podido acceder al mensaje de error correspondiente para el campo "{field}".';
|
||||
$lang['form_validation_in_list'] = 'El campo "{field}" debe contener uno de estos: {param}.';
|
||||
|
||||
@@ -1,51 +1,24 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2019, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @author CodeIgniter community
|
||||
* @author Iban Eguia
|
||||
* @copyright Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['ftp_no_connection'] = 'Unable to locate a valid connection ID. Please make sure you are connected before performing any file routines.';
|
||||
$lang['ftp_unable_to_connect'] = 'Unable to connect to your FTP server using the supplied hostname.';
|
||||
$lang['ftp_unable_to_login'] = 'Unable to login to your FTP server. Please check your username and password.';
|
||||
$lang['ftp_unable_to_mkdir'] = 'Unable to create the directory you have specified.';
|
||||
$lang['ftp_unable_to_changedir'] = 'Unable to change directories.';
|
||||
$lang['ftp_unable_to_chmod'] = 'Unable to set file permissions. Please check your path.';
|
||||
$lang['ftp_unable_to_upload'] = 'Unable to upload the specified file. Please check your path.';
|
||||
$lang['ftp_unable_to_download'] = 'Unable to download the specified file. Please check your path.';
|
||||
$lang['ftp_no_source_file'] = 'Unable to locate the source file. Please check your path.';
|
||||
$lang['ftp_unable_to_rename'] = 'Unable to rename the file.';
|
||||
$lang['ftp_unable_to_delete'] = 'Unable to delete the file.';
|
||||
$lang['ftp_unable_to_move'] = 'Unable to move the file. Please make sure the destination directory exists.';
|
||||
$lang['ftp_no_connection'] = 'No ha sido posible localizar una ID de conexión válida. Por favor, asegúrate de que estás conectado antes de realizar cualquier rutina de archivos.';
|
||||
$lang['ftp_unable_to_connect'] = 'No ha sido posible conectarse al servidor FTP usando el nombre de host proporcionado.';
|
||||
$lang['ftp_unable_to_login'] = 'No ha sido posible identificarse en el servidor. Por favor, comprueba el usuario y la contraseña.';
|
||||
$lang['ftp_unable_to_mkdir'] = 'No ha sido posible crear el directorio especificado.';
|
||||
$lang['ftp_unable_to_changedir'] = 'No ha sido posible cambiar de directorio.';
|
||||
$lang['ftp_unable_to_chmod'] = 'No ha sido posible configurar los permisos de archivo. Por favor, comprueba tu ruta.';
|
||||
$lang['ftp_unable_to_upload'] = 'No ha sido posible subir el archivo especificado. Por favor, comprueba tu ruta.';
|
||||
$lang['ftp_unable_to_download'] = 'No ha sido posible descargar el archivo especificado. Por favor, comprueba tu ruta.';
|
||||
$lang['ftp_no_source_file'] = 'No ha sido posible localizar el archivo fuente. Por favor, comprueba tu ruta.';
|
||||
$lang['ftp_unable_to_rename'] = 'No ha sido posible renombrar el archivo.';
|
||||
$lang['ftp_unable_to_delete'] = 'No ha sido posible borrar el archivo.';
|
||||
$lang['ftp_unable_to_move'] = 'No ha sido posible mover el archivo. Por favor, asegúrate de que la carpeta de destino existe.';
|
||||
|
||||
@@ -1,58 +1,31 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2019, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @author CodeIgniter community
|
||||
* @author Iban Eguia
|
||||
* @copyright Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['imglib_source_image_required'] = 'You must specify a source image in your preferences.';
|
||||
$lang['imglib_gd_required'] = 'The GD image library is required for this feature.';
|
||||
$lang['imglib_gd_required_for_props'] = 'Your server must support the GD image library in order to determine the image properties.';
|
||||
$lang['imglib_unsupported_imagecreate'] = 'Your server does not support the GD function required to process this type of image.';
|
||||
$lang['imglib_gif_not_supported'] = 'GIF images are often not supported due to licensing restrictions. You may have to use JPG or PNG images instead.';
|
||||
$lang['imglib_jpg_not_supported'] = 'JPG images are not supported.';
|
||||
$lang['imglib_png_not_supported'] = 'PNG images are not supported.';
|
||||
$lang['imglib_webp_not_supported'] = 'WEBP images are not supported.';
|
||||
$lang['imglib_jpg_or_png_required'] = 'The image resize protocol specified in your preferences only works with JPEG or PNG image types.';
|
||||
$lang['imglib_copy_error'] = 'An error was encountered while attempting to replace the file. Please make sure your file directory is writable.';
|
||||
$lang['imglib_rotate_unsupported'] = 'Image rotation does not appear to be supported by your server.';
|
||||
$lang['imglib_libpath_invalid'] = 'The path to your image library is not correct. Please set the correct path in your image preferences.';
|
||||
$lang['imglib_image_process_failed'] = 'Image processing failed. Please verify that your server supports the chosen protocol and that the path to your image library is correct.';
|
||||
$lang['imglib_rotation_angle_required'] = 'An angle of rotation is required to rotate the image.';
|
||||
$lang['imglib_invalid_path'] = 'The path to the image is not correct.';
|
||||
$lang['imglib_invalid_image'] = 'The provided image is not valid.';
|
||||
$lang['imglib_copy_failed'] = 'The image copy routine failed.';
|
||||
$lang['imglib_missing_font'] = 'Unable to find a font to use.';
|
||||
$lang['imglib_save_failed'] = 'Unable to save the image. Please make sure the image and file directory are writable.';
|
||||
$lang['imglib_source_image_required'] = 'Debes especificar una imagen fuente en las preferencias.';
|
||||
$lang['imglib_gd_required'] = 'Se requiere la librería de imagen GD para esta característica.';
|
||||
$lang['imglib_gd_required_for_props'] = 'El servidor debe soportar la librería de imagen GD para determinar las propiedades de la imagen.';
|
||||
$lang['imglib_unsupported_imagecreate'] = 'El servidor no soporta la función de GD requerida para procesar este tipo de imagen.';
|
||||
$lang['imglib_gif_not_supported'] = 'Las imágenes GIF no suelen estar soportadas habitualmente a causa de restricciones de licencias. Puede que debas usar imágenes JPG o PNG en su lugar.';
|
||||
$lang['imglib_jpg_not_supported'] = 'Las imágenes JPG no están soportadas.';
|
||||
$lang['imglib_png_not_supported'] = 'Las imágenes PNG no están soportadas.';
|
||||
$lang['imglib_webp_not_supported'] = 'Las imágenes WEBP no están soportadas.';
|
||||
$lang['imglib_jpg_or_png_required'] = 'El protocolo de redimensión de imagen especificado en las preferencias solo funciona con imágenes JPEG o PNG.';
|
||||
$lang['imglib_copy_error'] = 'Se ha encontrado un error al intentar reemplazar el archivo. Por favor, asegúrate de que la carpeta es escribible.';
|
||||
$lang['imglib_rotate_unsupported'] = 'Parece que la rotación de imágenes no está soportada en el servidor.';
|
||||
$lang['imglib_libpath_invalid'] = 'La ruta a la librería de imagen no es correcta. Por favor, configura la ruta correcta en las preferencias de imagen.';
|
||||
$lang['imglib_image_process_failed'] = 'Ha fallado el tratamiento de la imagen. Por favor, verifica que el servidor soporta el protocolo elegido y que la ruta a la librería de imagen es correcta.';
|
||||
$lang['imglib_rotation_angle_required'] = 'Se requiere un ángulo de rotación para rotar la imagen.';
|
||||
$lang['imglib_invalid_path'] = 'La ruta a la imagen no es correcta.';
|
||||
$lang['imglib_invalid_image'] = 'La imagen especificada no es válida.';
|
||||
$lang['imglib_copy_failed'] = 'La rutina de copia de imagen ha fallado.';
|
||||
$lang['imglib_missing_font'] = 'No se ha podido encontrar una fuente para su uso.';
|
||||
$lang['imglib_save_failed'] = 'No se ha podido guardar la imagen. Por favor, asegúrate de que la imagen y la carpeta son escribibles.';
|
||||
|
||||
@@ -1,47 +1,20 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2019, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @author CodeIgniter community
|
||||
* @author Iban Eguia
|
||||
* @copyright Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 3.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['migration_none_found'] = 'No migrations were found.';
|
||||
$lang['migration_not_found'] = 'No migration could be found with the version number: %s.';
|
||||
$lang['migration_sequence_gap'] = 'There is a gap in the migration sequence near version number: %s.';
|
||||
$lang['migration_multiple_version'] = 'There are multiple migrations with the same version number: %s.';
|
||||
$lang['migration_class_doesnt_exist'] = 'The migration class "%s" could not be found.';
|
||||
$lang['migration_missing_up_method'] = 'The migration class "%s" is missing an "up" method.';
|
||||
$lang['migration_missing_down_method'] = 'The migration class "%s" is missing a "down" method.';
|
||||
$lang['migration_invalid_filename'] = 'Migration "%s" has an invalid filename.';
|
||||
$lang['migration_none_found'] = 'No se ha encontrado ninguna migración.';
|
||||
$lang['migration_not_found'] = 'No se ha encontrado ninguna migración con el número de versión: %s.';
|
||||
$lang['migration_sequence_gap'] = 'Hay un vacío en la migración, cerca del número de versión: %s.';
|
||||
$lang['migration_multiple_version'] = 'Hay múltiples migraciones con el mismo número de versión: %s.';
|
||||
$lang['migration_class_doesnt_exist'] = 'La clase de migración "%s" no ha podido ser encontrada.';
|
||||
$lang['migration_missing_up_method'] = 'A la clase de migración "%s" le falta el método "up".';
|
||||
$lang['migration_missing_down_method'] = 'A la clase de migración "%s" le falta el método "down".';
|
||||
$lang['migration_invalid_filename'] = 'La migración "%s" tiene un nombre de archivo no válido.';
|
||||
|
||||
@@ -1,39 +1,12 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2019, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @author CodeIgniter community
|
||||
* @author Iban Eguia
|
||||
* @copyright Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
|
||||
@@ -1,43 +1,16 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2019, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @author CodeIgniter community
|
||||
* @author Iban Eguia
|
||||
* @copyright Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['pagination_first_link'] = '‹ First';
|
||||
$lang['pagination_next_link'] = '>';
|
||||
$lang['pagination_prev_link'] = '<';
|
||||
$lang['pagination_last_link'] = 'Last ›';
|
||||
$lang['pagination_first_link'] = '‹ Primera';
|
||||
$lang['pagination_next_link'] = '>';
|
||||
$lang['pagination_prev_link'] = '<';
|
||||
$lang['pagination_last_link'] = 'Última ›';
|
||||
|
||||
@@ -1,60 +1,33 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2019, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @author CodeIgniter community
|
||||
* @author Iban Eguia
|
||||
* @copyright Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['profiler_database'] = 'DATABASE';
|
||||
$lang['profiler_controller_info'] = 'CLASS/METHOD';
|
||||
$lang['profiler_benchmarks'] = 'BENCHMARKS';
|
||||
$lang['profiler_queries'] = 'QUERIES';
|
||||
$lang['profiler_get_data'] = 'GET DATA';
|
||||
$lang['profiler_post_data'] = 'POST DATA';
|
||||
$lang['profiler_uri_string'] = 'URI STRING';
|
||||
$lang['profiler_memory_usage'] = 'MEMORY USAGE';
|
||||
$lang['profiler_config'] = 'CONFIG VARIABLES';
|
||||
$lang['profiler_session_data'] = 'SESSION DATA';
|
||||
$lang['profiler_headers'] = 'HTTP HEADERS';
|
||||
$lang['profiler_no_db'] = 'Database driver is not currently loaded';
|
||||
$lang['profiler_no_queries'] = 'No queries were run';
|
||||
$lang['profiler_no_post'] = 'No POST data exists';
|
||||
$lang['profiler_no_get'] = 'No GET data exists';
|
||||
$lang['profiler_no_uri'] = 'No URI data exists';
|
||||
$lang['profiler_no_memory'] = 'Memory Usage Unavailable';
|
||||
$lang['profiler_no_profiles'] = 'No Profile data - all Profiler sections have been disabled.';
|
||||
$lang['profiler_section_hide'] = 'Hide';
|
||||
$lang['profiler_section_show'] = 'Show';
|
||||
$lang['profiler_seconds'] = 'seconds';
|
||||
$lang['profiler_database'] = 'BASE DE DATOS';
|
||||
$lang['profiler_controller_info'] = 'CLASE/MÉTODO';
|
||||
$lang['profiler_benchmarks'] = 'PUNTOS DE REFERENCIA';
|
||||
$lang['profiler_queries'] = 'CONSULTAS';
|
||||
$lang['profiler_get_data'] = 'DATOS GET';
|
||||
$lang['profiler_post_data'] = 'DATOS POST';
|
||||
$lang['profiler_uri_string'] = 'CADENA URI';
|
||||
$lang['profiler_memory_usage'] = 'USO DE MEMORIA';
|
||||
$lang['profiler_config'] = 'VARIABLES DE CONFIGURACIÓN';
|
||||
$lang['profiler_session_data'] = 'DATOS DE SESIÓN';
|
||||
$lang['profiler_headers'] = 'CABECERAS HTTP';
|
||||
$lang['profiler_no_db'] = 'El driver de la base de datos no está cargado actualmente';
|
||||
$lang['profiler_no_queries'] = 'No hubo ninguna consulta';
|
||||
$lang['profiler_no_post'] = 'No hay ningún dato POST';
|
||||
$lang['profiler_no_get'] = 'No hay ningún dato GET';
|
||||
$lang['profiler_no_uri'] = 'No hay ningún dato de la URI';
|
||||
$lang['profiler_no_memory'] = 'Uso de memoria no disponible';
|
||||
$lang['profiler_no_profiles'] = 'No hay datos del perfilador - todas las secciones han sido deshabilitadas.';
|
||||
$lang['profiler_section_hide'] = 'Ocultar';
|
||||
$lang['profiler_section_show'] = 'Mostrar';
|
||||
$lang['profiler_seconds'] = 'segundos';
|
||||
|
||||
@@ -1,58 +1,31 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2019, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @author CodeIgniter community
|
||||
* @author Iban Eguia
|
||||
* @copyright Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['ut_test_name'] = 'Test Name';
|
||||
$lang['ut_test_datatype'] = 'Test Datatype';
|
||||
$lang['ut_res_datatype'] = 'Expected Datatype';
|
||||
$lang['ut_result'] = 'Result';
|
||||
$lang['ut_undefined'] = 'Undefined Test Name';
|
||||
$lang['ut_file'] = 'File Name';
|
||||
$lang['ut_line'] = 'Line Number';
|
||||
$lang['ut_passed'] = 'Passed';
|
||||
$lang['ut_failed'] = 'Failed';
|
||||
$lang['ut_boolean'] = 'Boolean';
|
||||
$lang['ut_integer'] = 'Integer';
|
||||
$lang['ut_float'] = 'Float';
|
||||
$lang['ut_double'] = 'Float'; // can be the same as float
|
||||
$lang['ut_string'] = 'String';
|
||||
$lang['ut_array'] = 'Array';
|
||||
$lang['ut_object'] = 'Object';
|
||||
$lang['ut_resource'] = 'Resource';
|
||||
$lang['ut_null'] = 'Null';
|
||||
$lang['ut_notes'] = 'Notes';
|
||||
$lang['ut_test_name'] = 'Nombre del test';
|
||||
$lang['ut_test_datatype'] = 'Tipo de datos del test';
|
||||
$lang['ut_res_datatype'] = 'Tipo de datos esperado';
|
||||
$lang['ut_result'] = 'Resultado';
|
||||
$lang['ut_undefined'] = 'Nombre del test indefinido';
|
||||
$lang['ut_file'] = 'Nombre del archivo';
|
||||
$lang['ut_line'] = 'Número de línea';
|
||||
$lang['ut_passed'] = 'Correcto';
|
||||
$lang['ut_failed'] = 'Fallido';
|
||||
$lang['ut_boolean'] = 'Booleano';
|
||||
$lang['ut_integer'] = 'Entero';
|
||||
$lang['ut_float'] = 'Coma flotante';
|
||||
$lang['ut_double'] = 'Coma flotante'; // can be the same as float
|
||||
$lang['ut_string'] = 'Cadena';
|
||||
$lang['ut_array'] = 'Array';
|
||||
$lang['ut_object'] = 'Objeto';
|
||||
$lang['ut_resource'] = 'Recurso';
|
||||
$lang['ut_null'] = 'Nulo';
|
||||
$lang['ut_notes'] = 'Notas';
|
||||
|
||||
@@ -1,55 +1,28 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
* System messages translation for CodeIgniter(tm)
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2019, British Columbia Institute of Technology
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*
|
||||
* @package CodeIgniter
|
||||
* @author EllisLab Dev Team
|
||||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
||||
* @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @author CodeIgniter community
|
||||
* @author Iban Eguia
|
||||
* @copyright Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/)
|
||||
* @license http://opensource.org/licenses/MIT MIT License
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
$lang['upload_userfile_not_set'] = 'Unable to find a post variable called userfile.';
|
||||
$lang['upload_file_exceeds_limit'] = 'The uploaded file exceeds the maximum allowed size in your PHP configuration file.';
|
||||
$lang['upload_file_exceeds_form_limit'] = 'The uploaded file exceeds the maximum size allowed by the submission form.';
|
||||
$lang['upload_file_partial'] = 'The file was only partially uploaded.';
|
||||
$lang['upload_no_temp_directory'] = 'The temporary folder is missing.';
|
||||
$lang['upload_unable_to_write_file'] = 'The file could not be written to disk.';
|
||||
$lang['upload_stopped_by_extension'] = 'The file upload was stopped by extension.';
|
||||
$lang['upload_no_file_selected'] = 'You did not select a file to upload.';
|
||||
$lang['upload_invalid_filetype'] = 'The filetype you are attempting to upload is not allowed.';
|
||||
$lang['upload_invalid_filesize'] = 'The file you are attempting to upload is larger than the permitted size.';
|
||||
$lang['upload_invalid_dimensions'] = 'The image you are attempting to upload doesn\'t fit into the allowed dimensions.';
|
||||
$lang['upload_destination_error'] = 'A problem was encountered while attempting to move the uploaded file to the final destination.';
|
||||
$lang['upload_no_filepath'] = 'The upload path does not appear to be valid.';
|
||||
$lang['upload_no_file_types'] = 'You have not specified any allowed file types.';
|
||||
$lang['upload_bad_filename'] = 'The file name you submitted already exists on the server.';
|
||||
$lang['upload_not_writable'] = 'The upload destination folder does not appear to be writable.';
|
||||
$lang['upload_userfile_not_set'] = 'No ha sido posible encontrar una variable post llamada userfile.';
|
||||
$lang['upload_file_exceeds_limit'] = 'El archivo subido excede el tamaño máximo permitido por tu configuración de PHP.';
|
||||
$lang['upload_file_exceeds_form_limit'] = 'El archivo subido excede el tamaño máximo permitido por el formulario.';
|
||||
$lang['upload_file_partial'] = 'El archivo solo se subió parcialmente.';
|
||||
$lang['upload_no_temp_directory'] = 'No se encuentra el directorio temporal.';
|
||||
$lang['upload_unable_to_write_file'] = 'El archivo no pudo ser escrito en el disco.';
|
||||
$lang['upload_stopped_by_extension'] = 'La subida del archivo paró por extensión.';
|
||||
$lang['upload_no_file_selected'] = 'No seleccionaste un archivo para subir.';
|
||||
$lang['upload_invalid_filetype'] = 'El tipo de archivo que intentas subir no está permitido.';
|
||||
$lang['upload_invalid_filesize'] = 'El archivo que intentas subir es más grande que el tamaño permitido.';
|
||||
$lang['upload_invalid_dimensions'] = 'La imagen que intentas subir no encaja en las dimensiones permitidas.';
|
||||
$lang['upload_destination_error'] = 'Se encontró un problema al intentar mover el archivo subido a su destino final.';
|
||||
$lang['upload_no_filepath'] = 'La ruta de subida no parece válida.';
|
||||
$lang['upload_no_file_types'] = 'No has especificado ningún tipo de archivo permitido.';
|
||||
$lang['upload_bad_filename'] = 'El nombre de archivo que has proporcionado ya existe en el servidor.';
|
||||
$lang['upload_not_writable'] = 'La carpeta de destino de la subida no parece escribible.';
|
||||
|
||||
Reference in New Issue
Block a user