This commit is contained in:
84
application/language/english/calendar_lang.php
Normal file
84
application/language/english/calendar_lang.php
Normal file
@@ -0,0 +1,84 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
*
|
||||
* 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
|
||||
* @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';
|
||||
94
application/language/english/date_lang.php
Normal file
94
application/language/english/date_lang.php
Normal file
@@ -0,0 +1,94 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
*
|
||||
* 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
|
||||
* @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['UM12'] = '(UTC -12:00) Baker/Howland Island';
|
||||
$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';
|
||||
63
application/language/english/db_lang.php
Normal file
63
application/language/english/db_lang.php
Normal file
@@ -0,0 +1,63 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2017, 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 - 2017, British Columbia Institute of Technology (http://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';
|
||||
58
application/language/english/email_lang.php
Normal file
58
application/language/english/email_lang.php
Normal file
@@ -0,0 +1,58 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
*
|
||||
* An open source application development framework for PHP
|
||||
*
|
||||
* This content is released under the MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 - 2017, 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 - 2017, British Columbia Institute of Technology (http://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';
|
||||
69
application/language/english/form_validation_lang.php
Normal file
69
application/language/english/form_validation_lang.php
Normal file
@@ -0,0 +1,69 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
*
|
||||
* 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
|
||||
* @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_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}.';
|
||||
51
application/language/english/ftp_lang.php
Normal file
51
application/language/english/ftp_lang.php
Normal file
@@ -0,0 +1,51 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
*
|
||||
* 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
|
||||
* @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.';
|
||||
57
application/language/english/imglib_lang.php
Normal file
57
application/language/english/imglib_lang.php
Normal file
@@ -0,0 +1,57 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
*
|
||||
* 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
|
||||
* @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_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.';
|
||||
10
application/language/english/index.html
Normal file
10
application/language/english/index.html
Normal file
@@ -0,0 +1,10 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<p>Directory access is forbidden.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
44
application/language/english/number_lang.php
Normal file
44
application/language/english/number_lang.php
Normal file
@@ -0,0 +1,44 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
*
|
||||
* 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
|
||||
* @link https://codeigniter.com
|
||||
* @since Version 1.0.0
|
||||
* @filesource
|
||||
*/
|
||||
defined('BASEPATH') or exit('No direct script access allowed');
|
||||
|
||||
$lang['terabyte_abbr'] = 'TB';
|
||||
$lang['gigabyte_abbr'] = 'GB';
|
||||
$lang['megabyte_abbr'] = 'MB';
|
||||
$lang['kilobyte_abbr'] = 'KB';
|
||||
$lang['bytes'] = 'Bytes';
|
||||
43
application/language/english/pagination_lang.php
Normal file
43
application/language/english/pagination_lang.php
Normal file
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
*
|
||||
* 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
|
||||
* @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 ›';
|
||||
60
application/language/english/profiler_lang.php
Normal file
60
application/language/english/profiler_lang.php
Normal file
@@ -0,0 +1,60 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
*
|
||||
* 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
|
||||
* @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';
|
||||
487
application/language/english/translations_lang.php
Normal file
487
application/language/english/translations_lang.php
Normal file
@@ -0,0 +1,487 @@
|
||||
<?php defined('BASEPATH') or exit('No direct script access allowed');
|
||||
// English
|
||||
$lang['page_title'] = 'Book Appointment With';
|
||||
$lang['service_and_provider'] = 'Service & Provider';
|
||||
$lang['select_service'] = 'Select Service';
|
||||
$lang['select_provider'] = 'Select Provider';
|
||||
$lang['duration'] = 'Duration';
|
||||
$lang['minutes'] = 'Minutes';
|
||||
$lang['price'] = 'Price';
|
||||
$lang['back'] = 'Back';
|
||||
$lang['appointment_date_and_time'] = 'Appointment Date & Time';
|
||||
$lang['no_available_hours'] = 'There are no available appointment hours for the selected date. Please choose another date.';
|
||||
$lang['appointment_hour_missing'] = 'Please select an appointment hour before continuing.';
|
||||
$lang['customer_information'] = 'Customer Information';
|
||||
$lang['first_name'] = 'First Name';
|
||||
$lang['last_name'] = 'Last Name';
|
||||
$lang['email'] = 'Email';
|
||||
$lang['phone_number'] = 'Phone Number';
|
||||
$lang['phone'] = 'Phone';
|
||||
$lang['address'] = 'Address';
|
||||
$lang['city'] = 'City';
|
||||
$lang['zip_code'] = 'Zip Code';
|
||||
$lang['notes'] = 'Notes';
|
||||
$lang['language'] = 'Language';
|
||||
$lang['no_language'] = 'No language';
|
||||
$lang['fields_are_required'] = 'Fields with * are required.';
|
||||
$lang['appointment_confirmation'] = 'Appointment Confirmation';
|
||||
$lang['confirm'] = 'Confirm';
|
||||
$lang['update'] = 'Update';
|
||||
$lang['cancel_appointment_hint'] = 'Press the "Cancel" button to remove the appointment from the company schedule.';
|
||||
$lang['cancel'] = 'Cancel';
|
||||
$lang['appointment_registered'] = 'Your appointment has been successfully registered!';
|
||||
$lang['cancel_appointment_title'] = 'Cancel Appointment';
|
||||
$lang['appointment_cancelled'] = 'Your appointment has been successfully cancelled.';
|
||||
$lang['appointment_cancelled_title'] = 'Appointment Cancelled';
|
||||
$lang['reason'] = 'Reason';
|
||||
$lang['appointment_removed_from_schedule'] = 'The following appointment was removed from the company\'s schedule.';
|
||||
$lang['appointment_details_was_sent_to_you'] = 'An email with the appointment details has been sent to you.';
|
||||
$lang['add_to_google_calendar'] = 'Add to Google Calendar';
|
||||
$lang['appointment_booked'] = 'Your appointment has been successfully booked';
|
||||
$lang['thank_you_for_appointment'] = 'Thank you for arranging an appointment with us. Below you can see the appointment details. Make changes by clicking the appointment link.';
|
||||
$lang['appointment_details_title'] = 'Appointment Details';
|
||||
$lang['customer_details_title'] = 'Customer Details';
|
||||
$lang['service'] = 'Service';
|
||||
$lang['provider'] = 'Provider';
|
||||
$lang['customer'] = 'Customer';
|
||||
$lang['start'] = 'Start';
|
||||
$lang['end'] = 'End';
|
||||
$lang['name'] = 'Name';
|
||||
$lang['appointment_link_title'] = 'Appointment Link';
|
||||
$lang['success'] = 'Success';
|
||||
$lang['appointment_added_to_your_plan'] = 'A new appointment has been added to your plan.';
|
||||
$lang['appointment_link_description'] = 'You can make changes by clicking the appointment link below.';
|
||||
$lang['appointment_locked'] = 'Modification impossible!';
|
||||
$lang['appointment_locked_message'] = 'The appointment cannot be changed less than {$limit} hours in advance.';
|
||||
$lang['appointment_not_found'] = 'Appointment Not Found';
|
||||
$lang['appointment_does_not_exist_in_db'] = 'The appointment you requested does not exist in the system database anymore.';
|
||||
$lang['display_calendar'] = 'Display Calendar';
|
||||
$lang['calendar'] = 'Calendar';
|
||||
$lang['users'] = 'Users';
|
||||
$lang['settings'] = 'Settings';
|
||||
$lang['log_out'] = 'Log Out';
|
||||
$lang['synchronize'] = 'Synchronize';
|
||||
$lang['enable_sync'] = 'Enable Sync';
|
||||
$lang['disable_sync'] = 'Disable Sync';
|
||||
$lang['disable_sync_prompt'] = 'Are you sure that you want to disable the calendar synchronization?';
|
||||
$lang['reload'] = 'Reload';
|
||||
$lang['appointment'] = 'Appointment';
|
||||
$lang['unavailability'] = 'Unavailability';
|
||||
$lang['week'] = 'Week';
|
||||
$lang['month'] = 'Month';
|
||||
$lang['today'] = 'Today';
|
||||
$lang['not_working'] = 'Not Working';
|
||||
$lang['break'] = 'Break';
|
||||
$lang['add'] = 'Add';
|
||||
$lang['edit'] = 'Edit';
|
||||
$lang['hello'] = 'Hello';
|
||||
$lang['all_day'] = 'All Day';
|
||||
$lang['manage_appointment_record_hint'] = 'Manage all the appointment records of the available providers and services.';
|
||||
$lang['select_filter_item_hint'] = 'Select a provider or a service and view the appointments on the calendar.';
|
||||
$lang['enable_appointment_sync_hint'] = 'Enable appointment synchronization with an external calendar.';
|
||||
$lang['manage_customers_hint'] = 'Manage the registered customers and view their booking history.';
|
||||
$lang['manage_services_hint'] = 'Manage the available services and categories of the system.';
|
||||
$lang['manage_users_hint'] = 'Manage the backend users (admins, providers, secretaries).';
|
||||
$lang['settings_hint'] = 'Set system and user settings.';
|
||||
$lang['log_out_hint'] = 'Log out of the system.';
|
||||
$lang['unavailability_periods_hint'] = 'During unavailability periods the provider won\'t accept new appointments.';
|
||||
$lang['new_appointment_hint'] = 'Create a new appointment and store it into the database.';
|
||||
$lang['reload_appointments_hint'] = 'Reload calendar appointments.';
|
||||
$lang['trigger_sync_hint'] = 'Trigger the calendar synchronization process.';
|
||||
$lang['appointment_updated'] = 'Appointment updated successfully.';
|
||||
$lang['undo'] = 'Undo';
|
||||
$lang['appointment_details_changed'] = 'Appointment details have changed';
|
||||
$lang['appointment_changes_saved'] = 'Appointment changes have been successfully saved.';
|
||||
$lang['save'] = 'Save';
|
||||
$lang['new'] = 'New';
|
||||
$lang['select'] = 'Select';
|
||||
$lang['hide'] = 'Hide';
|
||||
$lang['type_to_filter_customers'] = 'Type to filter customers.';
|
||||
$lang['clear_fields_add_existing_customer_hint'] = 'Clear the fields and enter a new customer.';
|
||||
$lang['pick_existing_customer_hint'] = 'Pick an existing customer.';
|
||||
$lang['new_appointment_title'] = 'New Appointment';
|
||||
$lang['edit_appointment_title'] = 'Edit Appointment';
|
||||
$lang['delete_appointment_title'] = 'Delete Appointment';
|
||||
$lang['write_appointment_removal_reason'] = 'Please take a minute to write the reason you are deleting the appointment:';
|
||||
$lang['appointment_saved'] = 'Appointment saved successfully.';
|
||||
$lang['new_unavailability_title'] = 'New Unavailability';
|
||||
$lang['edit_unavailability_title'] = 'Edit Unavailability';
|
||||
$lang['unavailability_saved'] = 'Unavailability saved successfully.';
|
||||
$lang['start_date_before_end_error'] = 'Start date value is latter than end date.';
|
||||
$lang['invalid_duration'] = 'Invalid duration.';
|
||||
$lang['invalid_email'] = 'Invalid email address.';
|
||||
$lang['customers'] = 'Customers';
|
||||
$lang['details'] = 'Details';
|
||||
$lang['no_records_found'] = 'No records found...';
|
||||
$lang['services'] = 'Services';
|
||||
$lang['duration_minutes'] = 'Duration (Minutes)';
|
||||
$lang['currency'] = 'Currency';
|
||||
$lang['category'] = 'Category';
|
||||
$lang['no_category'] = 'No Category';
|
||||
$lang['description'] = 'Description';
|
||||
$lang['categories'] = 'Categories';
|
||||
$lang['admins'] = 'Admins';
|
||||
$lang['providers'] = 'Providers';
|
||||
$lang['secretaries'] = 'Secretaries';
|
||||
$lang['mobile_number'] = 'Mobile Number';
|
||||
$lang['mobile'] = 'Mobile';
|
||||
$lang['state'] = 'State';
|
||||
$lang['username'] = 'Username';
|
||||
$lang['password'] = 'Password';
|
||||
$lang['retype_password'] = 'Retype Password';
|
||||
$lang['receive_notifications'] = 'Receive Notifications';
|
||||
$lang['passwords_mismatch'] = 'Passwords mismatch.';
|
||||
$lang['admin_saved'] = 'Admin saved successfully.';
|
||||
$lang['provider_saved'] = 'Provider saved successfully.';
|
||||
$lang['secretary_saved'] = 'Secretary saved successfully.';
|
||||
$lang['admin_deleted'] = 'Admin deleted successfully.';
|
||||
$lang['provider_deleted'] = 'Provider deleted successfully.';
|
||||
$lang['secretary_deleted'] = 'Secretary deleted successfully.';
|
||||
$lang['service_saved'] = 'Service saved successfully.';
|
||||
$lang['service_category_saved'] = 'Service category saved successfully.';
|
||||
$lang['service_deleted'] = 'Service deleted successfully.';
|
||||
$lang['service_category_deleted'] = 'Service category deleted successfully.';
|
||||
$lang['customer_saved'] = 'Customer saved successfully.';
|
||||
$lang['customer_deleted'] = 'Customer deleted successfully.';
|
||||
$lang['current_view'] = 'Current View';
|
||||
$lang['working_plan'] = 'Working Plan';
|
||||
$lang['reset_plan'] = 'Reset Plan';
|
||||
$lang['monday'] = 'Monday';
|
||||
$lang['tuesday'] = 'Tuesday';
|
||||
$lang['wednesday'] = 'Wednesday';
|
||||
$lang['thursday'] = 'Thursday';
|
||||
$lang['friday'] = 'Friday';
|
||||
$lang['saturday'] = 'Saturday';
|
||||
$lang['sunday'] = 'Sunday';
|
||||
$lang['breaks'] = 'Breaks';
|
||||
$lang['add_breaks_during_each_day'] = 'Add the working breaks during each day. During breaks the provider will not accept any appointments.';
|
||||
$lang['day'] = 'Day';
|
||||
$lang['days'] = 'Days';
|
||||
$lang['actions'] = 'Actions';
|
||||
$lang['reset_working_plan_hint'] = 'Reset the working plan back to the default values.';
|
||||
$lang['company_name'] = 'Company Name';
|
||||
$lang['company_name_hint'] = 'Company name will be displayed everywhere on the system (required).';
|
||||
$lang['company_email'] = 'Company Email';
|
||||
$lang['company_email_hint'] = 'This will be the company email address. It will be used as the sender and the reply address of the system emails (required).';
|
||||
$lang['company_link'] = 'Company Link';
|
||||
$lang['company_link_hint'] = 'Company link should point to the official website of the company (required).';
|
||||
$lang['go_to_booking_page'] = 'Go To Booking Page';
|
||||
$lang['settings_saved'] = 'Settings saved successfully.';
|
||||
$lang['general'] = 'General';
|
||||
$lang['booking'] = 'Booking';
|
||||
$lang['visible'] = 'Visible';
|
||||
$lang['hidden'] = 'Hidden';
|
||||
$lang['business_logic'] = 'Business Logic';
|
||||
$lang['current_user'] = 'Current User';
|
||||
$lang['about_app'] = 'About Easy!Appointments';
|
||||
$lang['edit_working_plan_hint'] = 'Mark below the days and hours that your company will accept appointments. You will be able to adjust appointments in non-working hours but the customers will not be able to book appointments by themselves in non-working periods. This working plan will be the default for every new provider record, but you will be able to change each provider\'s plan separately by editing his record. After that you can add break periods.';
|
||||
$lang['edit_breaks_hint'] = 'Add the working breaks during each day. These breaks will be applied for all new providers.';
|
||||
$lang['book_advance_timeout'] = 'Book Advance Timeout';
|
||||
$lang['book_advance_timeout_hint'] = 'Define the timeout (in minutes) before the customers can book or re-arrange appointments with the company.';
|
||||
$lang['timeout_minutes'] = 'Timeout (Minutes)';
|
||||
$lang['about_app_info'] = 'Easy!Appointments is a highly customizable web application that allows your customers to book appointments with you via the web. Moreover, it provides the ability to sync your data with Google Calendar, so you can use them with other services.';
|
||||
$lang['current_version'] = 'Current Version';
|
||||
$lang['support'] = 'Support';
|
||||
$lang['about_app_support'] = 'If you encounter any problems when using Easy!Appointments you can search the official Google Group for answers. You might also need to create a new issue on the Google Code page in order to help the development progress.';
|
||||
$lang['official_website'] = 'Official Website';
|
||||
$lang['google_plus_community'] = 'Google+ Community';
|
||||
$lang['support_group'] = 'Support Group';
|
||||
$lang['project_issues'] = 'Project Issues';
|
||||
$lang['license'] = 'License';
|
||||
$lang['about_app_license'] = 'Easy!Appointments is licensed under the GPLv3 license. By using the code of Easy!Appointments in any way you are agreeing to the terms described in the following url:';
|
||||
$lang['logout_success'] = 'You have been successfully logged out! Click on one of the following buttons to navigate to a different page.';
|
||||
$lang['book_appointment_title'] = 'Book Appointment';
|
||||
$lang['backend_section'] = 'Backend Section';
|
||||
$lang['you_need_to_login'] = 'Welcome! You will need to login in order to view backend pages.';
|
||||
$lang['enter_username_here'] = 'Enter your username here ...';
|
||||
$lang['enter_password_here'] = 'Enter your password here ...';
|
||||
$lang['login'] = 'Login';
|
||||
$lang['forgot_your_password'] = 'Forgot Your Password?';
|
||||
$lang['login_failed'] = 'Login failed, please enter the correct credentials and try again.';
|
||||
$lang['type_username_and_email_for_new_password'] = 'Type your username and your email address to get your new password.';
|
||||
$lang['enter_email_here'] = 'Enter your email here ...';
|
||||
$lang['regenerate_password'] = 'Regenerate Password';
|
||||
$lang['go_to_login'] = 'Go Back To Login Page';
|
||||
$lang['new_password_sent_with_email'] = 'Your new password has been sent to you with an email.';
|
||||
$lang['new_account_password'] = 'New Account Password';
|
||||
$lang['new_password_is'] = 'Your new account password is $password. Please store this email to be able to retrieve your password if necessary. You can also change this password with a new one in the settings page.';
|
||||
$lang['delete_record_prompt'] = 'Are you sure that you want to delete this record? This action cannot be undone.';
|
||||
$lang['delete_admin'] = 'Delete Admin';
|
||||
$lang['delete_customer'] = 'Delete Customer';
|
||||
$lang['delete_service'] = 'Delete Service';
|
||||
$lang['delete_service_category'] = 'Delete Service Category';
|
||||
$lang['delete_provider'] = 'Delete Provider';
|
||||
$lang['delete_secretary'] = 'Delete Secretary';
|
||||
$lang['delete_appointment'] = 'Delete Appointment';
|
||||
$lang['delete_unavailability'] = 'Delete Unavailability';
|
||||
$lang['delete'] = 'Delete';
|
||||
$lang['unexpected_issues'] = 'Unexpected Issues';
|
||||
$lang['unexpected_issues_message'] = 'The operation could not complete due to unexpected issues.';
|
||||
$lang['close'] = 'Close';
|
||||
$lang['page_not_found'] = 'Page Not Found';
|
||||
$lang['page_not_found_message'] = 'Unfortunately the page you requested does not exist. Please check your browser URL or head to another location using the buttons below.';
|
||||
$lang['error'] = 'Error';
|
||||
$lang['no_privileges'] = 'No Privileges';
|
||||
$lang['no_privileges_message'] = 'You do not have the required privileges to view this page. Please navigate to a different section.';
|
||||
$lang['backend_calendar'] = 'Backend Calendar';
|
||||
$lang['start_date_time'] = 'Start Date / Time';
|
||||
$lang['end_date_time'] = 'End Date / Time';
|
||||
$lang['licensed_under'] = 'Licensed Under';
|
||||
$lang['unexpected_issues_occurred'] = 'Unexpected issues occurred.';
|
||||
$lang['service_communication_error'] = 'A server communication error occurred, please try again.';
|
||||
$lang['no_privileges_edit_appointments'] = 'You do not have the required privileges to edit appointments.';
|
||||
$lang['unavailability_updated'] = 'Unavailability updated successfully.';
|
||||
$lang['appointments'] = 'Appointments';
|
||||
$lang['unexpected_warnings'] = 'Unexpected Warnings';
|
||||
$lang['unexpected_warnings_message'] = 'The operation completed but some warnings appeared.';
|
||||
$lang['filter'] = 'Filter';
|
||||
$lang['clear'] = 'Clear';
|
||||
$lang['uncategorized'] = 'Uncategorized';
|
||||
$lang['username_already_exists'] = 'Username already exists.';
|
||||
$lang['password_length_notice'] = 'Password must be at least $number characters long.';
|
||||
$lang['general_settings'] = 'General Settings';
|
||||
$lang['personal_information'] = 'Personal Information';
|
||||
$lang['system_login'] = 'System Login';
|
||||
$lang['user_settings_are_invalid'] = 'User settings are invalid! Please review your settings and try again.';
|
||||
$lang['add_break'] = 'Add Break';
|
||||
$lang['january'] = 'January';
|
||||
$lang['february'] = 'February';
|
||||
$lang['march'] = 'March';
|
||||
$lang['april'] = 'April';
|
||||
$lang['may'] = 'May';
|
||||
$lang['june'] = 'June';
|
||||
$lang['july'] = 'July';
|
||||
$lang['august'] = 'August';
|
||||
$lang['september'] = 'September';
|
||||
$lang['october'] = 'October';
|
||||
$lang['november'] = 'November';
|
||||
$lang['december'] = 'December';
|
||||
$lang['previous'] = 'Previous';
|
||||
$lang['next'] = 'Next';
|
||||
$lang['now'] = 'Now';
|
||||
$lang['select_time'] = 'Select Time';
|
||||
$lang['time'] = 'Time';
|
||||
$lang['hour'] = 'Hour';
|
||||
$lang['minute'] = 'Minute';
|
||||
$lang['calendar_sync_completed'] = 'Calendar synchronization completed successfully.';
|
||||
$lang['calendar_sync_failed'] = 'Calendar synchronization failed: Could not establish server connection.';
|
||||
$lang['select_sync_calendar'] = 'Select Calendar';
|
||||
$lang['select_sync_calendar_prompt'] = 'Select the calendar that you want to sync your appointments with.';
|
||||
$lang['sync_calendar_selected'] = 'Sync calendar has been successfully selected.';
|
||||
$lang['oops_something_went_wrong'] = 'Oops! Something Went Wrong.';
|
||||
$lang['ea_update_success'] = 'Easy!Appointments has been successfully updated.';
|
||||
$lang['require_captcha'] = 'Require CAPTCHA';
|
||||
$lang['require_captcha_hint'] = 'When enabled, the customers will have to type a random generated CAPTCHA string before booking/updating an appointment.';
|
||||
$lang['captcha_is_wrong'] = 'CAPTCHA verification failed, please try again.';
|
||||
$lang['any_provider'] = 'Any Provider';
|
||||
$lang['requested_hour_is_unavailable'] = 'The requested appointment is unfortunately not available. Please select a different hour for your appointment.';
|
||||
$lang['customer_notifications'] = 'Customer Notifications';
|
||||
$lang['customer_notifications_hint'] = 'Defines whether the customer will receive email notifications whenever there is a schedule change on one of his appointments.';
|
||||
$lang['date_format'] = 'Date Format';
|
||||
$lang['date_format_hint'] = 'Change the date display format (D - Date, M - Month, Y - Year).';
|
||||
$lang['time_format'] = 'Time Format';
|
||||
$lang['time_format_hint'] = 'Change the time display format (H - Hours, M - Minutes).';
|
||||
$lang['first_weekday'] = 'First day of week';
|
||||
$lang['first_weekday_hint'] = 'Set the first day of the calendar week.';
|
||||
$lang['google_analytics_code_hint'] = 'Add your Google Analytics Code to enable Google Analytics tracking on the booking pages.';
|
||||
$lang['availabilities_type'] = 'Availabilities Type';
|
||||
$lang['flexible'] = 'Flexible';
|
||||
$lang['fixed'] = 'Fixed';
|
||||
$lang['attendants_number'] = 'Attendants Number';
|
||||
$lang['reset_working_plan'] = 'Reset the working plan back to the default values.';
|
||||
$lang['legal_contents'] = 'Legal Contents';
|
||||
$lang['cookie_notice'] = 'Cookie Notice';
|
||||
$lang['display_cookie_notice'] = 'Display Cookie Notice';
|
||||
$lang['cookie_notice_content'] = 'Cookie Notice Content';
|
||||
$lang['terms_and_conditions'] = 'Terms & Conditions';
|
||||
$lang['display_terms_and_conditions'] = 'Display Terms & Conditions';
|
||||
$lang['terms_and_conditions_content'] = 'Terms & Conditions Content';
|
||||
$lang['privacy_policy'] = 'Privacy Policy';
|
||||
$lang['display_privacy_policy'] = 'Display Privacy Policy';
|
||||
$lang['privacy_policy_content'] = 'Privacy Policy Content';
|
||||
$lang['website_using_cookies_to_ensure_best_experience'] = 'This website uses cookies to ensure you get the best experience on our website.';
|
||||
$lang['read_and_agree_to_terms_and_conditions'] = 'I have read and agree to the {$link}Terms & Conditions{/$link}.';
|
||||
$lang['read_and_agree_to_privacy_policy'] = 'I have read and agree to the {$link}Privacy Policy{/$link}.';
|
||||
$lang['delete_personal_information_hint'] = 'Remove all your appointments and personal information from the system.';
|
||||
$lang['delete_personal_information'] = 'Delete Personal Information';
|
||||
$lang['delete_personal_information_prompt'] = 'Are you sure that you want to delete your personal information? This action cannot be undone.';
|
||||
$lang['location'] = 'Location';
|
||||
$lang['working_plan_exception'] = 'Working Plan Exception';
|
||||
$lang['working_plan_exceptions'] = 'Working Plan Exceptions';
|
||||
$lang['working_plan_exceptions_hint'] = 'Add a working plan exception day, outside the working plan.';
|
||||
$lang['new_working_plan_exception_title'] = 'New Working Plan Exception';
|
||||
$lang['working_plan_exception_saved'] = 'Working plan exception saved successfully.';
|
||||
$lang['working_plan_exception_deleted'] = 'Working plan exception deleted successfully.';
|
||||
$lang['add_working_plan_exceptions_during_each_day'] = 'Add working plan exceptions, outside the working plan.';
|
||||
$lang['add_working_plan_exception'] = 'Add Working Plan Exception';
|
||||
$lang['require_phone_number'] = 'Require phone number';
|
||||
$lang['require_phone_number_hint'] = 'When enabled, customers and users will need to enter the customer\'s phone number when booking an appointment';
|
||||
$lang['check_spam_folder'] = 'Please check your spam folder if the email does not arrive within a few minutes.';
|
||||
$lang['api_token_hint'] = 'Set a secret token in order to enable the token based authentication of the Easy!Appointments API.';
|
||||
$lang['timezone'] = 'Timezone';
|
||||
$lang['overwrite_existing_working_plans'] = 'This will overwrite the existing provider working plans, are you sure that you want to continue?';
|
||||
$lang['working_plans_got_updated'] = 'All the working plans got updated.';
|
||||
$lang['apply_to_all_providers'] = 'Apply To All Providers';
|
||||
$lang['display_any_provider'] = 'Display Any Provider Option';
|
||||
$lang['display_any_provider_hint'] = 'The booking page will get an additional option that allows customers to book without specifying a provider.';
|
||||
$lang['load_more'] = 'Load More';
|
||||
$lang['list'] = 'List';
|
||||
$lang['default'] = 'Default';
|
||||
$lang['table'] = 'Table';
|
||||
$lang['date'] = 'Date';
|
||||
$lang['about'] = 'About';
|
||||
$lang['booking_settings'] = 'Booking Settings';
|
||||
$lang['display'] = 'Display';
|
||||
$lang['require'] = 'Require';
|
||||
$lang['color'] = 'Color';
|
||||
$lang['matomo_analytics_url_hint'] = 'Add the URL to your own Matomo installation to enable Matomo tracking on the booking pages.';
|
||||
$lang['invalid_phone'] = 'Invalid phone number.';
|
||||
$lang['legal'] = 'Legal';
|
||||
$lang['business'] = 'Business';
|
||||
$lang['account'] = 'Account';
|
||||
$lang['disable_booking'] = 'Disable Booking';
|
||||
$lang['disable_booking_hint'] = 'The booking page will be disabled for as long as this setting is active and customers will not be able to register new appointments.';
|
||||
$lang['display_message'] = 'Display Message';
|
||||
$lang['booking_is_disabled'] = 'Booking Is Disabled!';
|
||||
$lang['appearance'] = 'Appearance';
|
||||
$lang['company_logo'] = 'Company Logo';
|
||||
$lang['company_logo_hint'] = 'The company logo will be displayed in many places of the app, including the booking page and the notification emails (image file, max 2MB).';
|
||||
$lang['company_color'] = 'Company Color';
|
||||
$lang['company_color_hint'] = 'The company color will be applied across the app so that it the app uses your branding.';
|
||||
$lang['localization'] = 'Localization';
|
||||
$lang['integrations'] = 'Integrations';
|
||||
$lang['company'] = 'Company';
|
||||
$lang['remove'] = 'Remove';
|
||||
$lang['login_button'] = 'Login Button';
|
||||
$lang['display_login_button_hint'] = 'Defines whether the login button is being displayed in the booking page.';
|
||||
$lang['private'] = 'Private';
|
||||
$lang['private_hint'] = 'Private records will not be displayed or processed in public pages such as the booking page.';
|
||||
$lang['reset'] = 'Reset';
|
||||
$lang['all'] = 'All';
|
||||
$lang['booking_link'] = 'Booking Link';
|
||||
$lang['add_new_event'] = 'Add New Event';
|
||||
$lang['what_kind_of_event'] = 'What kind of event would you like to add?';
|
||||
$lang['theme'] = 'Theme';
|
||||
$lang['limit_customer_access'] = 'Limit Customer Access';
|
||||
$lang['limit_customer_access_hint'] = 'If enabled, providers and secretaries will only be able to access customers they have an appointment with.';
|
||||
$lang['url'] = 'URL';
|
||||
$lang['secret_token'] = 'Secret Token';
|
||||
$lang['verify_ssl'] = 'Verify SSL';
|
||||
$lang['appointment_save'] = 'Appointment Save';
|
||||
$lang['appointment_delete'] = 'Appointment Delete';
|
||||
$lang['unavailability_save'] = 'Unavailability Save';
|
||||
$lang['unavailability_delete'] = 'Unavailability Delete';
|
||||
$lang['customer_save'] = 'Customer Save';
|
||||
$lang['customer_delete'] = 'Customer Delete';
|
||||
$lang['service_save'] = 'Service Save';
|
||||
$lang['service_delete'] = 'Service Delete';
|
||||
$lang['service_category_save'] = 'Service Category Save';
|
||||
$lang['service_category_delete'] = 'Service Category Delete';
|
||||
$lang['provider_save'] = 'Provider Save';
|
||||
$lang['provider_delete'] = 'Provider Delete';
|
||||
$lang['secretary_save'] = 'Secretary Save';
|
||||
$lang['secretary_delete'] = 'Secretary Delete';
|
||||
$lang['admin_save'] = 'Admin Save';
|
||||
$lang['admin_delete'] = 'Admin Delete';
|
||||
$lang['options'] = 'Options';
|
||||
$lang['webhooks'] = 'Webhooks';
|
||||
$lang['webhooks_info'] = 'Webhooks enable you to send HTTP notifications to external web applications in response to various application events, such as the creation of an appointment or the removal of a customer.';
|
||||
$lang['integrations_info'] = 'Integrations enable you to make third-party connections with external applications and APIs.';
|
||||
$lang['configure'] = 'Configure';
|
||||
$lang['google_analytics'] = 'Google Analytics';
|
||||
$lang['google_analytics_info'] = 'Google Analytics enable you to automatically add the tracking code and HTML markup to the public page and track all the public booking sessions.';
|
||||
$lang['matomo_analytics'] = 'Matomo Analytics';
|
||||
$lang['matomo_analytics_info'] = 'Matomo Analytics enable you to automatically add the tracking code and HTML markup to the public page and track all the public booking sessions.';
|
||||
$lang['api'] = 'API';
|
||||
$lang['api_info'] = 'API enable you to interact with all the Easy!Appointments data via the HTTP protocol and the available API endpoints and create your own integrations.';
|
||||
$lang['google_analytics_code'] = 'Google Analytics Code';
|
||||
$lang['matomo_analytics_url'] = 'Matomo Analytics URL';
|
||||
$lang['future_booking_limit'] = 'Future Booking Limit';
|
||||
$lang['limit_days'] = 'Limit (Days)';
|
||||
$lang['future_booking_limit_hint'] = 'Set the future limit in days customers can make appointments via the public booking page.';
|
||||
$lang['api_token'] = 'API Token';
|
||||
$lang['allow_rescheduling_cancellation_before'] = 'Allow Rescheduling/Cancellation Before';
|
||||
$lang['at_least_one_field'] = 'At least one field must be displayed in the booking page.';
|
||||
$lang['status'] = 'Status';
|
||||
$lang['appointment_status_options'] = 'Appointment Status Options';
|
||||
$lang['appointment_status_options_info'] = 'Define a list of available appointment status options that can be used in the the calendar page (the first one will automatically become the default value).';
|
||||
$lang['sunday_short'] = 'Sun';
|
||||
$lang['monday_short'] = 'Mon';
|
||||
$lang['tuesday_short'] = 'Tue';
|
||||
$lang['wednesday_short'] = 'Wed';
|
||||
$lang['thursday_short'] = 'Thu';
|
||||
$lang['friday_short'] = 'Fri';
|
||||
$lang['saturday_short'] = 'Sat';
|
||||
$lang['january_short'] = 'Jan';
|
||||
$lang['february_short'] = 'Feb';
|
||||
$lang['march_short'] = 'Mar';
|
||||
$lang['april_short'] = 'Apr';
|
||||
$lang['may_short'] = 'May';
|
||||
$lang['june_short'] = 'Jun';
|
||||
$lang['july_short'] = 'Jul';
|
||||
$lang['august_short'] = 'Aug';
|
||||
$lang['september_short'] = 'Sep';
|
||||
$lang['october_short'] = 'Oct';
|
||||
$lang['november_short'] = 'Nov';
|
||||
$lang['december_short'] = 'Dec';
|
||||
$lang['am'] = 'am';
|
||||
$lang['pm'] = 'pm';
|
||||
$lang['to'] = 'to';
|
||||
$lang['click_to_toggle'] = 'Click To Toggle';
|
||||
$lang['week_short'] = 'Wk';
|
||||
$lang['scroll_to_increment'] = 'Scroll To Increment';
|
||||
$lang['year'] = 'Year';
|
||||
$lang['make_non_working_day'] = 'This provider will not be available for work on the selected day.';
|
||||
$lang['no_breaks'] = 'No Breaks';
|
||||
$lang['service_categories'] = 'Service Categories';
|
||||
$lang['service_category'] = 'Service Category';
|
||||
$lang['blocked_period_saved'] = 'Blocked period saved successfully.';
|
||||
$lang['blocked_period_deleted'] = 'Blocked period deleted successfully.';
|
||||
$lang['delete_blocked_period'] = 'Delete Blocked Period';
|
||||
$lang['blocked_period'] = 'Blocked Period';
|
||||
$lang['blocked_periods'] = 'Blocked Periods';
|
||||
$lang['blocked_period_save'] = 'Blocked Period Save';
|
||||
$lang['blocked_period_delete'] = 'Blocked Period Delete';
|
||||
$lang['blocked_periods_hint'] = 'Define periods of time where public bookings will be disabled for all providers (e.g. closed dates, holidays etc.).';
|
||||
$lang['custom_field'] = 'Custom Field';
|
||||
$lang['custom_fields'] = 'Custom Fields';
|
||||
$lang['label'] = 'Label';
|
||||
$lang['webhook_saved'] = 'Webhook saved successfully.';
|
||||
$lang['webhook_deleted'] = 'Webhook deleted successfully.';
|
||||
$lang['delete_webhook'] = 'Delete Webhook';
|
||||
$lang['contact_info'] = 'Contact Info';
|
||||
$lang['hide_from_public'] = 'Hide From Public';
|
||||
$lang['matomo_analytics_site_id'] = 'Matomo Analytics Site ID';
|
||||
$lang['matomo_analytics_site_id_hint'] = 'Set the site ID that will be tracked by Matomo (the default site has the ID "1").';
|
||||
$lang['default_timezone'] = 'Default Timezone';
|
||||
$lang['default_timezone_hint'] = 'Set the default timezone value that will be used for new records.';
|
||||
$lang['default_language'] = 'Default Language';
|
||||
$lang['default_language_hint'] = 'Set the default language value that will be used for new records.';
|
||||
$lang['sync_method_prompt'] = 'Which sync method would you like to use?';
|
||||
$lang['caldav_server'] = 'CalDAV Server';
|
||||
$lang['caldav_connection_info_prompt'] = 'Please enter the connection information of the target CalDAV Calendar.';
|
||||
$lang['connect'] = 'Connect';
|
||||
$lang['ldap'] = 'LDAP';
|
||||
$lang['ldap_info'] = 'This integration enables you to connect to an existing LDAP server and automatically import users into Easy!Appointments and let them SSO with their directory password (username must match).';
|
||||
$lang['host'] = 'Host';
|
||||
$lang['port'] = 'Port';
|
||||
$lang['user_dn'] = 'User DN';
|
||||
$lang['base_dn'] = 'Base DN';
|
||||
$lang['keyword'] = 'Keyword';
|
||||
$lang['ldap_search_hint'] = 'Provide a keyword to search through the LDAP directory for users that match the filter criteria.';
|
||||
$lang['ldap_extension_not_loaded'] = 'The LDAP PHP extension is not loaded, but is required for this integration to work.';
|
||||
$lang['field_mapping'] = 'Field Mapping';
|
||||
$lang['content'] = 'Content';
|
||||
$lang['active'] = 'Active';
|
||||
$lang['user_imported'] = 'The user record was imported successfully.';
|
||||
$lang['import'] = 'Import';
|
||||
$lang['ldap_dn'] = 'LDAP DN';
|
||||
$lang['role'] = 'Role';
|
||||
$lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.';
|
||||
$lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.';
|
||||
$lang['fields'] = 'Fields';
|
||||
$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.';
|
||||
$lang['calendar_url'] = 'Calendar URL';
|
||||
$lang['please_select'] = 'Please Select';
|
||||
$lang['secret_header'] = 'Secret Header';
|
||||
// End
|
||||
58
application/language/english/unit_test_lang.php
Normal file
58
application/language/english/unit_test_lang.php
Normal file
@@ -0,0 +1,58 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
*
|
||||
* 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
|
||||
* @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';
|
||||
55
application/language/english/upload_lang.php
Normal file
55
application/language/english/upload_lang.php
Normal file
@@ -0,0 +1,55 @@
|
||||
<?php
|
||||
/**
|
||||
* CodeIgniter
|
||||
*
|
||||
* 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
|
||||
* @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.';
|
||||
Reference in New Issue
Block a user