Add thai translation files

This commit is contained in:
Alex Tselegidis 2024-03-04 10:02:51 +01:00
parent 609dc93e1e
commit 69c2bfef8a
15 changed files with 1219 additions and 15 deletions

View File

@ -17,7 +17,7 @@
$protocol =
(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on') ||
(isset($_SERVER['SERVER_PORT']) && (int)$_SERVER['SERVER_PORT'] === 443) ||
(isset($_SERVER['SERVER_PORT']) && (int) $_SERVER['SERVER_PORT'] === 443) ||
(isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https')
? 'https://'
: 'http://';
@ -26,8 +26,7 @@ $domain = $_SERVER['HTTP_HOST'] ?? 'localhost';
$request_uri = dirname($_SERVER['SCRIPT_NAME']);
if ($request_uri === '.')
{
if ($request_uri === '.') {
$request_uri = '';
}
@ -118,7 +117,8 @@ $languages = [
'sk' => 'slovak',
'es' => 'spanish',
'sv' => 'swedish',
'tr' => 'turkish'
'th' => 'thai',
'tr' => 'turkish',
];
$config['language_codes'] = $languages;
@ -173,7 +173,8 @@ $config['available_languages'] = [
'slovak',
'spanish',
'swedish',
'turkish'
'thai',
'turkish',
];
/*
@ -196,7 +197,7 @@ $config['charset'] = 'UTF-8';
| setting this variable to TRUE (boolean). See the user guide for details.
|
*/
$config['enable_hooks'] = TRUE;
$config['enable_hooks'] = true;
/*
|--------------------------------------------------------------------------
@ -256,8 +257,8 @@ $config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-';
| use segment based URLs.
|
*/
$config['allow_get_array'] = TRUE;
$config['enable_query_strings'] = FALSE;
$config['allow_get_array'] = true;
$config['enable_query_strings'] = false;
$config['controller_trigger'] = 'c';
$config['function_trigger'] = 'm';
$config['directory_trigger'] = 'd'; // experimental not currently in use
@ -350,9 +351,9 @@ $config['sess_driver'] = 'files';
$config['sess_cookie_name'] = 'ea_session';
$config['sess_expiration'] = 7200;
$config['sess_save_path'] = __DIR__ . '/../../storage/sessions';
$config['sess_match_ip'] = FALSE;
$config['sess_match_ip'] = false;
$config['sess_time_to_update'] = 300;
$config['sess_regenerate_destroy'] = FALSE;
$config['sess_regenerate_destroy'] = false;
/*
|--------------------------------------------------------------------------
@ -368,7 +369,7 @@ $config['sess_regenerate_destroy'] = FALSE;
$config['cookie_prefix'] = '';
$config['cookie_domain'] = '';
$config['cookie_path'] = '/';
$config['cookie_secure'] = strpos($config['base_url'], 'https') !== FALSE;
$config['cookie_secure'] = strpos($config['base_url'], 'https') !== false;
/*
|--------------------------------------------------------------------------
@ -382,7 +383,7 @@ $config['cookie_secure'] = strpos($config['base_url'], 'https') !== FALSE;
| 'csrf_cookie_name' = The cookie name
| 'csrf_expire' = The number in seconds the token should expire.
*/
$config['csrf_protection'] = TRUE;
$config['csrf_protection'] = true;
$config['csrf_token_name'] = 'csrf_token';
$config['csrf_cookie_name'] = 'csrf_cookie';
$config['csrf_expire'] = 7200;
@ -405,7 +406,7 @@ $config['csrf_exclude_uris'] = ['api/v1/.*', 'booking/.*', 'booking_cancellation
| by the output class. Do not 'echo' any values with compression enabled.
|
*/
$config['compress_output'] = FALSE;
$config['compress_output'] = false;
/*
|--------------------------------------------------------------------------
@ -430,7 +431,7 @@ $config['time_reference'] = 'local';
| in your view files. Options are TRUE or FALSE (boolean)
|
*/
$config['rewrite_short_tags'] = FALSE;
$config['rewrite_short_tags'] = false;
/*
|--------------------------------------------------------------------------
@ -454,7 +455,7 @@ $config['proxy_ips'] = '';
| will control the number of requests a client can sent to the app.
|
*/
$config['rate_limiting'] = TRUE;
$config['rate_limiting'] = true;
/* End of file config.php */
/* Location: ./application/config/config.php */

View 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';

View 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';

View 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';

View 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';

View 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}.';

View 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.';

View 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.';

View File

@ -0,0 +1,10 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>

View 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';

View 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'] = '&lsaquo; First';
$lang['pagination_next_link'] = '&gt;';
$lang['pagination_prev_link'] = '&lt;';
$lang['pagination_last_link'] = 'Last &rsaquo;';

View 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';

View File

@ -0,0 +1,457 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed');
// Thai
$lang['page_title'] = 'จองการนัดหมายกับ';
$lang['service_and_provider'] = 'บริการและผู้ให้บริการ';
$lang['select_service'] = 'เลือก บริการ';
$lang['select_provider'] = 'เลือก ผู้ให้บริการ';
$lang['duration'] = 'ระยะเวลา';
$lang['minutes'] = 'นาที';
$lang['price'] = 'ราคา';
$lang['back'] = 'ย้อนกลับ';
$lang['appointment_date_and_time'] = 'วันที่และเวลานัดหมาย';
$lang['no_available_hours'] = 'ไม่มีเวลานัดหมายสำหรับวันที่เลือก โปรดเลือกวันอื่น';
$lang['appointment_hour_missing'] = 'โปรดเลือกเวลานัดหมายก่อนดำเนินการต่อ';
$lang['customer_information'] = 'ข้อมูลลูกค้า';
$lang['first_name'] = 'ชื่อจริง';
$lang['last_name'] = 'นามสกุล';
$lang['email'] = 'อีเมล';
$lang['phone_number'] = 'หมายเลขโทรศัพท์';
$lang['phone'] = 'โทรศัพท์';
$lang['address'] = 'ที่อยู่';
$lang['city'] = 'เมือง';
$lang['zip_code'] = 'รหัสไปรษณีย์';
$lang['notes'] = 'หมายเหตุ';
$lang['language'] = 'ภาษา';
$lang['no_language'] = 'ไม่มีภาษา';
$lang['fields_are_required'] = 'ช่องที่มีเครื่องหมาย * จำเป็นต้องกรอก';
$lang['appointment_confirmation'] = 'ยืนยันการนัดหมาย';
$lang['confirm'] = 'ยืนยัน';
$lang['update'] = 'อัปเดต';
$lang['cancel_appointment_hint'] = 'กดปุ่ม "ยกเลิก" เพื่อลบการนัดหมายออกจากกำหนดการของบริษัท';
$lang['cancel'] = 'ยกเลิก';
$lang['appointment_registered'] = 'การนัดหมายของคุณได้รับการลงทะเบียนเรียบร้อยแล้ว';
$lang['cancel_appointment_title'] = 'ยกเลิกการนัดหมาย';
$lang['appointment_cancelled'] = 'การนัดหมายของคุณถูกยกเลิกเรียบร้อยแล้ว';
$lang['appointment_cancelled_title'] = 'การนัดหมายถูกยกเลิก';
$lang['reason'] = 'เหตุผล';
$lang['appointment_removed_from_schedule'] = 'การนัดหมายต่อไปนี้ถูกลบออกจากกำหนดการของบริษัท';
$lang['appointment_details_was_sent_to_you'] = 'อีเมลพร้อมรายละเอียดการนัดหมายได้ถูกส่งไปยังคุณแล้ว';
$lang['add_to_google_calendar'] = 'เพิ่มลงใน Google ปฏิทิน';
$lang['appointment_booked'] = 'การนัดหมายของคุณได้รับการจองเรียบร้อยแล้ว';
$lang['thank_you_for_appointment'] = 'ขอบคุณที่จัดการการนัดหมายกับเรา คุณสามารถดูรายละเอียดการนัดหมายได้ที่ด้านล่างนี้ คลิกลิงก์การนัดหมายเพื่อทำการเปลี่ยนแปลง';
$lang['appointment_details_title'] = 'รายละเอียดการนัดหมาย';
$lang['customer_details_title'] = 'รายละเอียดลูกค้า';
$lang['service'] = 'บริการ';
$lang['provider'] = 'ผู้ให้บริการ';
$lang['customer'] = 'ลูกค้า';
$lang['start'] = 'เริ่ม';
$lang['end'] = 'เสร็จสิ้น';
$lang['name'] = 'ชื่อ';
$lang['appointment_link_title'] = 'ลิงค์นัดหมาย';
$lang['success'] = 'เสร็จสมบูรณ์';
$lang['appointment_added_to_google_calendar'] = 'เพิ่มการนัดหมายของคุณลงในบัญชี Google ปฏิทินของคุณแล้ว';
$lang['view_appointment_in_google_calendar'] = 'คลิกที่นี่เพื่อดูการนัดหมายของคุณใน Google ปฏิทิน';
$lang['appointment_added_to_your_plan'] = 'เพิ่มการนัดหมายใหม่ลงในแผนของคุณแล้ว';
$lang['appointment_link_description'] = 'คุณสามารถเปลี่ยนแปลงได้โดยคลิกลิงก์การนัดหมายด้านล่าง';
$lang['appointment_locked'] = 'ไม่สามารถทำการปรับเปลี่ยนได้';
$lang['appointment_locked_message'] = 'ไม่สามารถเปลี่ยนแปลงการนัดหมายล่วงหน้าได้น้อยกว่า {$limit} ชั่วโมง';
$lang['appointment_not_found'] = 'ไม่พบการนัดหมาย';
$lang['appointment_does_not_exist_in_db'] = 'การนัดหมายที่คุณร้องขอไม่มีอยู่ในฐานข้อมูลระบบอีกต่อไป';
$lang['display_calendar'] = 'แสดงปฏิทิน';
$lang['calendar'] = 'ปฏิทิน';
$lang['users'] = 'ผู้ใช้';
$lang['settings'] = 'การตั้งค่า';
$lang['log_out'] = 'ออกจากระบบ';
$lang['synchronize'] = 'ซิงโครไนซ์';
$lang['enable_sync'] = 'เปิดใช้งานการซิงค์';
$lang['disable_sync'] = 'ปิดใช้งานการซิงค์';
$lang['disable_sync_prompt'] = 'คุณแน่ใจหรือไม่ว่าต้องการปิดใช้งานการซิงโครไนซ์ปฏิทิน';
$lang['reload'] = 'โหลดซ้ำ';
$lang['appointment'] = 'การนัดหมาย';
$lang['unavailable'] = 'ไม่พร้อมใช้งาน';
$lang['week'] = 'สัปดาห์';
$lang['month'] = 'เดือน';
$lang['today'] = 'วันนี้';
$lang['not_working'] = 'ไม่ทำงาน';
$lang['break'] = 'หยุด';
$lang['add'] = 'เพิ่ม';
$lang['edit'] = 'แก้ไข';
$lang['hello'] = 'สวัสดี';
$lang['all_day'] = 'ตลอดวัน';
$lang['manage_appointment_record_hint'] = 'จัดการบันทึกการนัดหมายทั้งหมดของผู้ให้บริการและบริการที่มีอยู่';
$lang['select_filter_item_hint'] = 'เลือกผู้ให้บริการหรือบริการและดูการนัดหมายในปฏิทิน';
$lang['enable_appointment_sync_hint'] = 'เปิดใช้งานการซิงโครไนซ์การนัดหมายกับบัญชี Google ปฏิทินของผู้ให้บริการ';
$lang['manage_customers_hint'] = 'จัดการลูกค้าที่ลงทะเบียนและดูประวัติการจองของพวกเขา';
$lang['manage_services_hint'] = 'จัดการบริการและหมวดหมู่ที่มีอยู่ของระบบ';
$lang['manage_users_hint'] = 'จัดการผู้ใช้แบ็กเอนด์ (ผู้ดูแลระบบ ผู้ให้บริการ โปรเซสเซอร์)';
$lang['settings_hint'] = 'ตั้งค่าระบบและการตั้งค่าผู้ใช้';
$lang['log_out_hint'] = 'ออกจากระบบ';
$lang['unavailable_periods_hint'] = 'ในช่วงที่ปรับปรุงระบบ ผู้ให้บริการจะไม่ยอมรับการนัดหมายใหม่';
$lang['new_appointment_hint'] = 'สร้างการนัดหมายใหม่และจัดเก็บไว้ในฐานข้อมูล';
$lang['reload_appointments_hint'] = 'โหลดการนัดหมายในปฏิทินซ้ำ';
$lang['trigger_google_sync_hint'] = 'ทริกเกอร์กระบวนการซิงโครไนซ์ Google ปฏิทิน';
$lang['appointment_updated'] = 'อัปเดตการนัดหมายสำเร็จแล้ว';
$lang['undo'] = 'เลิกทำ';
$lang['appointment_details_changed'] = 'รายละเอียดการนัดหมายมีการเปลี่ยนแปลง';
$lang['appointment_changes_saved'] = 'บันทึกการเปลี่ยนแปลงการนัดหมายเรียบร้อยแล้ว';
$lang['save'] = 'บันทึก';
$lang['new'] = 'ใหม่';
$lang['select'] = 'เลือก';
$lang['hide'] = 'ซ่อน';
$lang['type_to_filter_customers'] = 'พิมพ์เพื่อกรองลูกค้า';
$lang['clear_fields_add_existing_customer_hint'] = 'เคลียร์พื้นที่และป้อนลูกค้าใหม่';
$lang['pick_existing_customer_hint'] = 'เลือกลูกค้าที่มีอยู่';
$lang['new_appointment_title'] = 'การนัดหมายใหม่';
$lang['edit_appointment_title'] = 'แก้ไขการนัดหมาย';
$lang['delete_appointment_title'] = 'ลบการนัดหมาย';
$lang['write_appointment_removal_reason'] = 'โปรดสละเวลาสักครู่เพื่อเขียนเหตุผลที่คุณลบการนัดหมาย:';
$lang['appointment_saved'] = 'บันทึกการนัดหมายเรียบร้อยแล้ว';
$lang['new_unavailable_title'] = 'ช่วงเวลาที่ไม่พร้อมใช้งานใหม่';
$lang['edit_unavailable_title'] = 'แก้ไขช่วงเวลาที่ไม่พร้อมใช้งาน';
$lang['unavailable_saved'] = 'บันทึกช่วงเวลาที่ไม่พร้อมใช้งานเรียบร้อยแล้ว';
$lang['start_date_before_end_error'] = 'ค่าวันที่เริ่มต้นอยู่หลังวันที่สิ้นสุด';
$lang['invalid_duration'] = 'ระยะเวลาไม่ถูกต้อง';
$lang['invalid_email'] = 'ที่อยู่อีเมลที่ไม่ถูกต้อง.';
$lang['customers'] = 'ลูกค้า';
$lang['details'] = 'รายละเอียด';
$lang['no_records_found'] = 'ไม่พบบันทึก...';
$lang['services'] = 'บริการ';
$lang['duration_minutes'] = 'ระยะเวลา (นาที)';
$lang['currency'] = 'สกุลเงิน';
$lang['category'] = 'หมวดหมู่';
$lang['no_category'] = 'ไม่มีหมวดหมู่';
$lang['description'] = 'คำอธิบาย';
$lang['categories'] = 'หมวดหมู่';
$lang['admins'] = 'ผู้ดูแลระบบ';
$lang['providers'] = 'ผู้ให้บริการ';
$lang['secretaries'] = 'โปรเซสเซอร์';
$lang['mobile_number'] = 'เบอร์มือถือ';
$lang['mobile'] = 'มือถือ';
$lang['state'] = 'เมือง/รัฐ';
$lang['username'] = 'ชื่อผู้ใช้';
$lang['password'] = 'รหัสผ่าน';
$lang['retype_password'] = 'พิมพ์รหัสผ่านอีกครั้ง';
$lang['receive_notifications'] = 'รับการแจ้งเตือน';
$lang['passwords_mismatch'] = 'รหัสผ่านไม่ตรงกัน';
$lang['admin_saved'] = 'บันทึกผู้ดูแลระบบเรียบร้อยแล้ว';
$lang['provider_saved'] = 'บันทึกผู้ให้บริการเรียบร้อยแล้ว';
$lang['secretary_saved'] = 'บันทึกเลขานุการเรียบร้อยแล้ว';
$lang['admin_deleted'] = 'ลบผู้ดูแลระบบเรียบร้อยแล้ว';
$lang['provider_deleted'] = 'ลบผู้ให้บริการเรียบร้อยแล้ว';
$lang['secretary_deleted'] = 'ลบโปรเซสเซอร์สำเร็จแล้ว';
$lang['service_saved'] = 'บันทึกบริการเรียบร้อยแล้ว';
$lang['service_category_saved'] = 'บันทึกหมวดหมู่บริการเรียบร้อยแล้ว';
$lang['service_deleted'] = 'ลบบริการเรียบร้อยแล้ว';
$lang['service_category_deleted'] = 'ลบหมวดหมู่บริการเรียบร้อยแล้ว';
$lang['customer_saved'] = 'บันทึกลูกค้าเรียบร้อยแล้ว';
$lang['customer_deleted'] = 'ลบลูกค้าเรียบร้อยแล้ว';
$lang['current_view'] = 'หน้าปัจจุบัน';
$lang['working_plan'] = 'แผนการทำงาน';
$lang['reset_plan'] = 'รีเซ็ตแผน';
$lang['monday'] = 'วันจันทร์';
$lang['tuesday'] = 'วันอังคาร';
$lang['wednesday'] = 'วันพุธ';
$lang['thursday'] = 'วันพฤหัสบดี';
$lang['friday'] = 'วันศุกร์';
$lang['saturday'] = 'วันเสาร์';
$lang['sunday'] = 'วันอาทิตย์';
$lang['breaks'] = 'พัก';
$lang['add_breaks_during_each_day'] = 'เพิ่มช่วงพักการทำงานในแต่ละวัน ในช่วงพัก ผู้ให้บริการจะไม่รับการนัดหมายใดๆ';
$lang['day'] = 'วัน';
$lang['days'] = 'วัน';
$lang['actions'] = 'การดำเนินการ';
$lang['reset_working_plan_hint'] = 'รีเซ็ตแผนการทำงานกลับเป็นค่าเริ่มต้น';
$lang['company_name'] = 'ชื่อ บริษัท';
$lang['company_name_hint'] = 'ชื่อบริษัทจะแสดงทุกที่ในระบบ (จำเป็น)';
$lang['company_email'] = 'อีเมล์บริษัท';
$lang['company_email_hint'] = 'นี่จะเป็นที่อยู่อีเมลของบริษัท โดยจะใช้เป็นผู้ส่งและที่อยู่ตอบกลับของอีเมลระบบ (จำเป็น)';
$lang['company_link'] = 'ลิงค์บริษัท';
$lang['company_link_hint'] = 'ลิงค์บริษัทควรชี้ไปยังเว็บไซต์อย่างเป็นทางการของบริษัท (จำเป็น)';
$lang['go_to_booking_page'] = 'ไปที่หน้าการจอง';
$lang['settings_saved'] = 'บันทึกการตั้งค่าเรียบร้อยแล้ว';
$lang['general'] = 'ทั่วไป';
$lang['business_logic'] = 'ตรรกะทางธุรกิจ';
$lang['current_user'] = 'ผู้ใช้ปัจจุบัน';
$lang['about_app'] = 'เกี่ยวกับ Easy!Appointments';
$lang['edit_working_plan_hint'] = 'ทำเครื่องหมายวันและเวลาที่บริษัทของคุณจะยอมรับการนัดหมายด้านล่าง คุณจะสามารถปรับการนัดหมายนอกเวลางานได้ แต่ลูกค้าจะไม่สามารถจองการนัดหมายด้วยตนเองในช่วงนอกเวลางานได้ แผนการทำงานนี้จะเป็นค่าเริ่มต้นสำหรับบันทึกของผู้ให้บริการใหม่ทุกราย แต่คุณสามารถเปลี่ยนแผนของผู้ให้บริการแต่ละรายแยกกันได้โดยการแก้ไขบันทึกของเขา หลังจากนั้นคุณสามารถเพิ่มช่วงพักได้';
$lang['edit_breaks_hint'] = 'เพิ่มช่วงพักการทำงานในแต่ละวัน การพักเหล่านี้จะนำไปใช้กับผู้ให้บริการรายใหม่ทั้งหมด';
$lang['book_advance_timeout'] = 'การจองล่วงหน้าหมดเวลา';
$lang['book_advance_timeout_hint'] = 'ระบุการหมดเวลา (เป็นนาที) ก่อนที่ลูกค้าจะสามารถจองหรือนัดหมายใหม่กับบริษัทได้';
$lang['timeout_minutes'] = 'หมดเวลา (นาที)';
$lang['about_app_info'] = 'Easy!Appointments เป็นเว็บแอปพลิเคชั่นที่ปรับแต่งได้สูง ซึ่งช่วยให้ลูกค้าของคุณสามารถจองการนัดหมายกับคุณผ่านทางเว็บได้ นอกจากนี้ยังให้ความสามารถในการซิงค์ข้อมูลของคุณกับ Google ปฏิทินเพื่อให้คุณสามารถใช้กับบริการอื่นๆ ได้';
$lang['current_version'] = 'เวอร์ชันปัจจุบัน';
$lang['support'] = 'สนับสนุน';
$lang['about_app_support'] = 'หากคุณพบปัญหาใดๆ เมื่อใช้ Easy!Appointments คุณสามารถค้นหาคำตอบได้ใน Google Group อย่างเป็นทางการ คุณอาจต้องสร้างประเด็นใหม่ในหน้า Google Code เพื่อช่วยในการพัฒนาระบบต่อไป';
$lang['official_website'] = 'เว็บไซต์อย่างเป็นทางการ';
$lang['google_plus_community'] = 'ชุมชน Google+';
$lang['support_group'] = 'กลุ่มสนับสนุน';
$lang['project_issues'] = 'ปัญหาที่เกิดขึ้น';
$lang['license'] = 'ใบอนุญาต';
$lang['about_app_license'] = 'Easy!Appointments ได้รับอนุญาตภายใต้ใบอนุญาต GPLv3 โดยใช้รหัส Easy!Appointments ในทางใดทางหนึ่งถือว่าคุณยอมรับเงื่อนไขที่อธิบายไว้ใน URL ต่อไปนี้:';
$lang['logout_success'] = 'คุณออกจากระบบสำเร็จแล้ว! คลิกที่ปุ่มใดปุ่มหนึ่งต่อไปนี้เพื่อไปยังหน้าอื่น';
$lang['book_appointment_title'] = 'จองการนัดหมาย';
$lang['backend_section'] = 'ส่วนแบ็กเอนด์';
$lang['you_need_to_login'] = 'ยินดีต้อนรับ! คุณจะต้องเข้าสู่ระบบเพื่อดูหน้าแบ็กเอนด์';
$lang['enter_username_here'] = 'ป้อนชื่อผู้ใช้ของคุณที่นี่ ...';
$lang['enter_password_here'] = 'ป้อนรหัสผ่านของคุณที่นี่...';
$lang['login'] = 'เข้าสู่ระบบ';
$lang['forgot_your_password'] = 'ลืมรหัสผ่านใช่หรือไม่';
$lang['login_failed'] = 'การเข้าสู่ระบบล้มเหลว โปรดป้อนข้อมูลรับรองที่ถูกต้องแล้วลองอีกครั้ง';
$lang['type_username_and_email_for_new_password'] = 'พิมพ์ชื่อผู้ใช้และที่อยู่อีเมลของคุณเพื่อรับรหัสผ่านใหม่';
$lang['enter_email_here'] = 'ใส่อีเมล์ของคุณที่นี่...';
$lang['regenerate_password'] = 'สร้างรหัสผ่านใหม่';
$lang['go_to_login'] = 'กลับไปที่หน้าเข้าสู่ระบบ';
$lang['new_password_sent_with_email'] = 'รหัสผ่านใหม่ของคุณถูกส่งไปยังอีเมลของคุณแล้ว';
$lang['new_account_password'] = 'รหัสผ่านบัญชีใหม่';
$lang['new_password_is'] = 'รหัสผ่านบัญชีใหม่ของคุณคือ $password โปรดเก็บอีเมลนี้เพื่อให้สามารถเรียกรหัสผ่านของคุณได้หากจำเป็น คุณยังสามารถเปลี่ยนรหัสผ่านนี้ด้วยรหัสผ่านใหม่ได้ในหน้าการตั้งค่า';
$lang['delete_record_prompt'] = 'คุณแน่ใจหรือไม่ว่าต้องการลบบันทึกนี้? การดำเนินการนี้ไม่สามารถยกเลิกได้';
$lang['delete_admin'] = 'ลบผู้ดูแลระบบ';
$lang['delete_customer'] = 'ลบลูกค้า';
$lang['delete_service'] = 'ลบบริการ';
$lang['delete_category'] = 'ลบหมวดหมู่บริการ';
$lang['delete_provider'] = 'ลบผู้ให้บริการ';
$lang['delete_secretary'] = 'ลบโปรเซสเซอร์';
$lang['delete_appointment'] = 'ลบการนัดหมาย';
$lang['delete_unavailable'] = 'ลบช่วงเวลาที่ไม่พร้อมใช้งาน';
$lang['delete'] = 'ลบ';
$lang['unexpected_issues'] = 'ปัญหาที่ไม่คาดคิด';
$lang['unexpected_issues_message'] = 'ไม่สามารถดำเนินการให้เสร็จสิ้นได้เนื่องจากพบปัญหาที่ไม่คาดคิด';
$lang['close'] = 'ปิด';
$lang['page_not_found'] = 'ไม่พบหน้านี้';
$lang['page_not_found_message'] = 'ขออภัย หน้าเว็บที่คุณร้องขอไม่มีอยู่ โปรดตรวจสอบ URL เบราว์เซอร์ของคุณหรือไปที่ตำแหน่งอื่นโดยใช้ปุ่มด้านล่าง';
$lang['error'] = 'ข้อผิดพลาด';
$lang['no_privileges'] = 'ไม่มีสิทธิพิเศษ';
$lang['no_privileges_message'] = 'คุณไม่มีสิทธิพิเศษในการดูหน้านี้ โปรดนำทางไปยังส่วนอื่น';
$lang['backend_calendar'] = 'ปฏิทินแบ็กเอนด์';
$lang['start_date_time'] = 'วันที่/เวลาที่เริ่มต้น';
$lang['end_date_time'] = 'วันที่ / เวลาที่สิ้นสุด';
$lang['licensed_under'] = 'ได้รับอนุญาตภายใต้';
$lang['unexpected_issues_occurred'] = 'เกิดปัญหาที่ไม่คาดคิด';
$lang['service_communication_error'] = 'เกิดข้อผิดพลาดในการสื่อสารของเซิร์ฟเวอร์ โปรดลองอีกครั้ง';
$lang['no_privileges_edit_appointments'] = 'คุณไม่มีสิทธิพิเศษในการแก้ไขการนัดหมาย';
$lang['unavailable_updated'] = 'อัปเดตช่วงเวลาที่ไม่พร้อมใช้งานเรียบร้อยแล้ว';
$lang['appointments'] = 'การนัดหมาย';
$lang['unexpected_warnings'] = 'คำเตือนที่ไม่คาดคิด';
$lang['unexpected_warnings_message'] = 'การดำเนินการเสร็จสิ้น แต่มีคำเตือนบางอย่างปรากฏขึ้น';
$lang['filter'] = 'ตัวกรอง';
$lang['clear'] = 'เคลียร์';
$lang['uncategorized'] = 'ไม่มีหมวดหมู่';
$lang['username_already_exists'] = 'มีชื่อผู้ใช้อยู่แล้ว.';
$lang['password_length_notice'] = 'รหัสผ่านต้องมีความยาวอย่างน้อย $number ตัวอักษร';
$lang['general_settings'] = 'การตั้งค่าทั่วไป';
$lang['personal_information'] = 'ข้อมูลส่วนบุคคล';
$lang['system_login'] = 'เข้าสู่ระบบ';
$lang['user_settings_are_invalid'] = 'การตั้งค่าผู้ใช้ไม่ถูกต้อง! โปรดตรวจสอบการตั้งค่าของคุณแล้วลองอีกครั้ง';
$lang['add_break'] = 'เพิ่มเวลาพัก';
$lang['january'] = 'มกราคม';
$lang['february'] = 'กุมภาพันธ์';
$lang['march'] = 'มีนาคม';
$lang['april'] = 'เมษายน';
$lang['may'] = 'พฤษภาคม';
$lang['june'] = 'มิถุนายน';
$lang['july'] = 'กรกฎาคม';
$lang['august'] = 'สิงหาคม';
$lang['september'] = 'กันยายน';
$lang['october'] = 'ตุลาคม';
$lang['november'] = 'พฤศจิกายน';
$lang['december'] = 'ธันวาคม';
$lang['previous'] = 'ก่อนหน้า';
$lang['next'] = 'ถัดไป';
$lang['now'] = 'ตอนนี้';
$lang['select_time'] = 'เลือก เวลา';
$lang['time'] = 'เวลา';
$lang['hour'] = 'ชั่วโมง';
$lang['minute'] = 'นาที';
$lang['google_sync_completed'] = 'การซิงโครไนซ์ของ Google เสร็จสมบูรณ์';
$lang['google_sync_failed'] = 'การซิงโครไนซ์ของ Google ล้มเหลว: ไม่สามารถสร้างการเชื่อมต่อเซิร์ฟเวอร์';
$lang['select_google_calendar'] = 'เลือก Google ปฏิทิน';
$lang['select_google_calendar_prompt'] = 'เลือกปฏิทินที่คุณต้องการซิงค์การนัดหมายของคุณ หากคุณไม่ต้องการเลือกปฏิทินใดโดยเฉพาะ ระบบจะใช้ปฏิทินเริ่มต้น';
$lang['google_calendar_selected'] = 'เลือก Google ปฏิทินเรียบร้อยแล้ว';
$lang['oops_something_went_wrong'] = 'อ๊ะ! มีบางอย่างผิดพลาด.';
$lang['could_not_add_to_google_calendar'] = 'ไม่สามารถเพิ่มการนัดหมายของคุณลงในบัญชี Google ปฏิทินของคุณได้';
$lang['ea_update_success'] = 'Easy!Appointments อัปเดตเรียบร้อยแล้ว';
$lang['require_captcha'] = 'ต้องมี CAPTCHA';
$lang['require_captcha_hint'] = 'เมื่อเปิดใช้งาน ลูกค้าจะต้องพิมพ์ CAPTCHA ที่สร้างแบบสุ่มก่อนจอง/อัปเดตการนัดหมาย';
$lang['captcha_is_wrong'] = 'การยืนยัน CAPTCHA ล้มเหลว โปรดลองอีกครั้ง';
$lang['any_provider'] = 'ผู้ให้บริการใดๆ';
$lang['requested_hour_is_unavailable'] = 'น่าเสียดาย ไม่สามารถนัดหมายที่ร้องขอได้ โปรดเลือกเวลาอื่นสำหรับการนัดหมายของคุณ';
$lang['customer_notifications'] = 'การแจ้งเตือนลูกค้า';
$lang['customer_notifications_hint'] = 'ลูกค้าจะได้รับการแจ้งเตือนทางอีเมลทุกครั้งที่มีการเปลี่ยนแปลงกำหนดการในการนัดหมาย';
$lang['date_format'] = 'รูปแบบวันที่';
$lang['date_format_hint'] = 'เปลี่ยนรูปแบบการแสดงวันที่ (D - วันที่, M - เดือน, Y - ปี)';
$lang['time_format'] = 'รูปแบบเวลา';
$lang['time_format_hint'] = 'เปลี่ยนรูปแบบการแสดงเวลา (H - ชั่วโมง, M - นาที)';
$lang['first_weekday'] = 'วันแรกของสัปดาห์';
$lang['first_weekday_hint'] = 'ตั้งค่าวันแรกของสัปดาห์ตามปฏิทิน';
$lang['google_analytics_code_hint'] = 'เพิ่มรหัส Google Analytics ของคุณเพื่อรวมไว้ในหน้าการจอง คุณสามารถใช้รหัสติดตามหรือรหัสการวัดได้';
$lang['availabilities_type'] = 'ประเภทความพร้อมใช้งาน';
$lang['flexible'] = 'แบบยืดหยุ่น';
$lang['fixed'] = 'แบบตายตัว';
$lang['attendants_number'] = 'หมายเลขผู้เข้าร่วม';
$lang['reset_working_plan'] = 'รีเซ็ตแผนการทำงานกลับเป็นค่าเริ่มต้น';
$lang['legal_contents'] = 'เนื้อหาทางกฎหมาย';
$lang['cookie_notice'] = 'ประกาศเกี่ยวกับคุกกี้';
$lang['display_cookie_notice'] = 'แสดงประกาศเกี่ยวกับคุกกี้';
$lang['cookie_notice_content'] = 'เนื้อหาประกาศเกี่ยวกับคุกกี้';
$lang['terms_and_conditions'] = 'ข้อกำหนดและเงื่อนไข';
$lang['display_terms_and_conditions'] = 'แสดงข้อกำหนดและเงื่อนไข';
$lang['terms_and_conditions_content'] = 'รายละเอียดข้อกำหนดและเงื่อนไข';
$lang['privacy_policy'] = 'นโยบายความเป็นส่วนตัว';
$lang['display_privacy_policy'] = 'แสดงนโยบายความเป็นส่วนตัว';
$lang['privacy_policy_content'] = 'รายละเอียดนโยบายความเป็นส่วนตัว';
$lang['website_using_cookies_to_ensure_best_experience'] = 'เว็บไซต์นี้ใช้คุกกี้เพื่อให้แน่ใจว่าคุณได้รับประสบการณ์ที่ดีที่สุดบนเว็บไซต์ของเรา';
$lang['read_and_agree_to_terms_and_conditions'] = 'ฉันได้อ่านและยอมรับ{$link}ข้อกำหนดและเงื่อนไข{/$link}แล้ว';
$lang['read_and_agree_to_privacy_policy'] = 'ฉันได้อ่านและยอมรับ{$link}นโยบายความเป็นส่วนตัว{/$link}';
$lang['delete_personal_information_hint'] = 'ลบการนัดหมายและข้อมูลส่วนบุคคลทั้งหมดของคุณออกจากระบบ';
$lang['delete_personal_information'] = 'ลบข้อมูลส่วนบุคคล';
$lang['delete_personal_information_prompt'] = 'คุณแน่ใจหรือไม่ว่าต้องการลบข้อมูลส่วนบุคคลของคุณ การดำเนินการนี้ไม่สามารถยกเลิกได้';
$lang['location'] = 'ที่ตั้ง';
$lang['working_plan_exception'] = 'ข้อยกเว้นแผนการทำงาน';
$lang['working_plan_exceptions'] = 'ข้อยกเว้นแผนการทำงาน';
$lang['working_plan_exceptions_hint'] = 'เพิ่มวันยกเว้นแผนการทำงานนอกแผนการทำงาน';
$lang['new_working_plan_exception_title'] = 'ข้อยกเว้นแผนการทำงานใหม่';
$lang['working_plan_exception_saved'] = 'บันทึกข้อยกเว้นแผนการทำงานเรียบร้อยแล้ว';
$lang['working_plan_exception_deleted'] = 'ลบข้อยกเว้นแผนการทำงานเรียบร้อยแล้ว';
$lang['add_working_plan_exceptions_during_each_day'] = 'เพิ่มข้อยกเว้นแผนการทำงานนอกแผนการทำงาน';
$lang['add_working_plan_exception'] = 'เพิ่มข้อยกเว้นแผนการทำงาน';
$lang['require_phone_number'] = 'ต้องการหมายเลขโทรศัพท์';
$lang['require_phone_number_hint'] = 'เมื่อเปิดใช้งาน ลูกค้าและผู้ใช้จะต้องป้อนหมายเลขโทรศัพท์ของลูกค้าเมื่อจองการนัดหมาย';
$lang['check_spam_folder'] = 'โปรดตรวจสอบโฟลเดอร์สแปมของคุณ หากคุณไม่ได้รับอีเมลภายในไม่กี่นาที';
$lang['api_token_hint'] = 'ตั้งค่าโทเค็นลับเพื่อเปิดใช้งานการตรวจสอบสิทธิ์โดยใช้โทเค็นของ Easy!Appointments API';
$lang['timezone'] = 'เขตเวลา';
$lang['overwrite_existing_working_plans'] = 'การดำเนินการนี้จะเขียนทับแผนการทำงานของผู้ให้บริการที่มีอยู่ คุณแน่ใจหรือไม่ว่าต้องการดำเนินการต่อ';
$lang['working_plans_got_updated'] = 'แผนการทำงานทั้งหมดได้รับการปรับปรุง';
$lang['apply_to_all_providers'] = 'นำไปใช้กับผู้ให้บริการทั้งหมด';
$lang['display_any_provider'] = 'แสดงตัวเลือกผู้ให้บริการ';
$lang['display_any_provider_hint'] = 'หน้าการจองจะได้รับตัวเลือกเพิ่มเติมที่ให้ลูกค้าจองได้โดยไม่ต้องระบุผู้ให้บริการ';
$lang['load_more'] = 'โหลดเพิ่มเติม';
$lang['list'] = 'รายการ';
$lang['default'] = 'ค่าเริ่มต้น';
$lang['table'] = 'ตาราง';
$lang['date'] = 'วันที่';
$lang['about'] = 'เกี่ยวกับ';
$lang['booking_settings'] = 'การตั้งค่าการจอง';
$lang['display'] = 'แสดง';
$lang['require'] = 'จำเป็นต้อง';
$lang['color'] = 'สี';
$lang['matomo_analytics_url_hint'] = 'เพิ่ม URL ลงในการติดตั้ง Matomo ของคุณเองเพื่อเปิดใช้งานการติดตาม Matomo บนหน้าการจอง';
$lang['invalid_phone'] = 'หมายเลขโทรศัพท์ไม่ถูกต้อง';
$lang['legal'] = 'ถูกกฎหมาย';
$lang['business'] = 'ธุรกิจ';
$lang['account'] = 'บัญชี';
$lang['disable_booking'] = 'ปิดการใช้งานการจอง';
$lang['disable_booking_hint'] = 'หน้าการจองจะถูกปิดใช้งานตราบใดที่การตั้งค่านี้ทำงานอยู่ และลูกค้าจะไม่สามารถลงทะเบียนการนัดหมายใหม่ได้';
$lang['display_message'] = 'แสดงข้อความ';
$lang['booking_is_disabled'] = 'การจองถูกปิดใช้งาน!';
$lang['appearance'] = 'รูปร่าง';
$lang['company_logo'] = 'โลโก้บริษัท';
$lang['company_logo_hint'] = 'โลโก้บริษัทจะแสดงอยู่ในหลายๆ ที่ของแอป รวมถึงหน้าการจองและอีเมลแจ้งเตือน (ไฟล์รูปภาพ ขนาดสูงสุด 2MB)';
$lang['company_color'] = 'สีของบริษัท';
$lang['company_color_hint'] = 'สีของบริษัทจะถูกนำไปใช้ทั่วทั้งแอป เพื่อให้แอปใช้ตราสินค้าของคุณ';
$lang['localization'] = 'รองรับหลายภาษา';
$lang['integrations'] = 'บูรณาการ';
$lang['company'] = 'บริษัท';
$lang['remove'] = 'ลบ';
$lang['login_button'] = 'ปุ่มเข้าสู่ระบบ';
$lang['display_login_button_hint'] = 'กำหนดว่าปุ่มเข้าสู่ระบบจะแสดงในหน้าการจองหรือไม่';
$lang['private'] = 'ส่วนตัว';
$lang['private_hint'] = 'บันทึกส่วนตัวจะไม่แสดงหรือประมวลผลในหน้าสาธารณะ เช่น หน้าการจอง';
$lang['reset'] = 'รีเซ็ต';
$lang['all'] = 'ทั้งหมด';
$lang['booking_link'] = 'ลิงค์จอง';
$lang['add_new_event'] = 'เพิ่มกิจกรรมใหม่';
$lang['what_kind_of_event'] = 'คุณต้องการเพิ่มกิจกรรมประเภทใด';
$lang['theme'] = 'ธีม';
$lang['limit_customer_access'] = 'จำกัดการเข้าถึงของลูกค้า';
$lang['limit_customer_access_hint'] = 'หากเปิดใช้งาน ผู้ให้บริการและเลขานุการจะสามารถเข้าถึงเฉพาะลูกค้าที่มีการนัดหมายเท่านั้น';
$lang['url'] = 'URL';
$lang['secret_token'] = 'โทเค็นลับ';
$lang['verify_ssl'] = 'ตรวจสอบ SSL';
$lang['appointment_save'] = 'บันทึกการนัดหมาย';
$lang['appointment_delete'] = 'การนัดหมาย ลบ';
$lang['unavailability_save'] = 'บันทึกความไม่พร้อมใช้งาน';
$lang['unavailability_delete'] = 'ไม่พร้อมใช้งาน ลบ';
$lang['customer_save'] = 'บันทึกลูกค้า';
$lang['customer_delete'] = 'ลบลูกค้า';
$lang['service_save'] = 'บันทึกการบริการ';
$lang['service_delete'] = 'บริการลบ';
$lang['service_category_save'] = 'บันทึกประเภทบริการ';
$lang['service_category_delete'] = 'ลบประเภทบริการ';
$lang['provider_save'] = 'บันทึกของผู้ให้บริการ';
$lang['provider_delete'] = 'ผู้ให้บริการลบ';
$lang['secretary_save'] = 'เลขานุการบันทึก';
$lang['secretary_delete'] = 'เลขา ลบ';
$lang['admin_save'] = 'ผู้ดูแลระบบบันทึก';
$lang['admin_delete'] = 'แอดมินลบ';
$lang['options'] = 'ตัวเลือก';
$lang['webhooks'] = 'เว็บฮุค';
$lang['webhooks_info'] = 'Webhooks ช่วยให้คุณสามารถส่งการแจ้งเตือน HTTP ไปยังเว็บแอปพลิเคชันภายนอกเพื่อตอบสนองต่อเหตุการณ์ต่างๆ ของแอปพลิเคชัน เช่น การสร้างการนัดหมายหรือการลบลูกค้าออก';
$lang['integrations_info'] = 'การผสานรวมทำให้คุณสามารถสร้างการเชื่อมต่อของบริษัทอื่นกับแอปพลิเคชันและ API ภายนอกได้';
$lang['configure'] = 'กำหนดค่า';
$lang['google_analytics'] = 'Google Analytics';
$lang['google_analytics_info'] = 'Google Analytics ช่วยให้คุณสามารถเพิ่มโค้ดติดตามและมาร์กอัป HTML ลงในหน้าสาธารณะได้โดยอัตโนมัติ และติดตามเซสชันการจองสาธารณะทั้งหมด';
$lang['matomo_analytics'] = 'การวิเคราะห์มาโตโม่';
$lang['matomo_analytics_info'] = 'Matomo Analytics ช่วยให้คุณสามารถเพิ่มโค้ดติดตามและมาร์กอัป HTML ลงในหน้าสาธารณะได้โดยอัตโนมัติ และติดตามเซสชันการจองสาธารณะทั้งหมด';
$lang['api'] = 'เอพีไอ';
$lang['api_info'] = 'API ช่วยให้คุณสามารถโต้ตอบกับข้อมูล Easy! Appointments ทั้งหมดผ่านโปรโตคอล HTTP และจุดสิ้นสุด API ที่มีอยู่ และสร้างการผสานรวมของคุณเอง';
$lang['google_analytics_code'] = 'รหัส Google Analytics';
$lang['matomo_analytics_url'] = 'URL การวิเคราะห์ Matomo';
$lang['future_booking_limit'] = 'วงเงินการจองในอนาคต';
$lang['limit_days'] = 'ขีดจำกัด (วัน)';
$lang['future_booking_limit_hint'] = 'กำหนดขีดจำกัดในอนาคตเป็นจำนวนวันที่ลูกค้าสามารถนัดหมายได้ผ่านหน้าการจองสาธารณะ';
$lang['api_token'] = 'โทเค็น API';
$lang['allow_rescheduling_cancellation_before'] = 'อนุญาตให้มีการจัดกำหนดการใหม่/ยกเลิกก่อน';
$lang['at_least_one_field'] = 'ต้องแสดงอย่างน้อยหนึ่งช่องในหน้าการจอง';
$lang['status'] = 'สถานะ';
$lang['appointment_status_options'] = 'ตัวเลือกสถานะการนัดหมาย';
$lang['appointment_status_options_info'] = 'กำหนดรายการตัวเลือกสถานะการนัดหมายที่สามารถใช้ได้ในหน้าปฏิทิน (ตัวเลือกแรกจะกลายเป็นค่าเริ่มต้นโดยอัตโนมัติ)';
$lang['sunday_short'] = 'ดวงอาทิตย์';
$lang['monday_short'] = 'จันทร์';
$lang['tuesday_short'] = 'อ';
$lang['wednesday_short'] = 'พุธ';
$lang['thursday_short'] = 'พฤ';
$lang['friday_short'] = 'ศุกร์';
$lang['saturday_short'] = 'นั่ง';
$lang['january_short'] = 'ม.ค';
$lang['february_short'] = 'ก.พ';
$lang['march_short'] = 'มี.ค';
$lang['april_short'] = 'เม.ย';
$lang['may_short'] = 'อาจ';
$lang['june_short'] = 'มิ.ย';
$lang['july_short'] = 'ก.ค';
$lang['august_short'] = 'ส.ค';
$lang['september_short'] = 'ก.ย';
$lang['october_short'] = 'ต.ค';
$lang['november_short'] = 'พ.ย';
$lang['december_short'] = 'ธ.ค';
$lang['am'] = 'เช้า';
$lang['pm'] = 'น';
$lang['to'] = 'ถึง';
$lang['click_to_toggle'] = 'คลิกเพื่อสลับ';
$lang['week_short'] = 'สัปดาห์';
$lang['scroll_to_increment'] = 'เลื่อนเพื่อเพิ่ม';
$lang['year'] = 'ปี';
$lang['make_non_working_day'] = 'ผู้ให้บริการรายนี้จะไม่พร้อมทำงานในวันที่เลือก';
$lang['no_breaks'] = 'ไม่มีการหยุดพัก';
$lang['service_categories'] = 'หมวดหมู่บริการ';
$lang['service_category'] = 'หมวดบริการ';
$lang['blocked_period_saved'] = 'บันทึกช่วงเวลาที่บล็อกสำเร็จแล้ว';
$lang['blocked_period_deleted'] = 'ลบช่วงเวลาที่บล็อกสำเร็จแล้ว';
$lang['delete_blocked_period'] = 'ลบระยะเวลาที่ถูกบล็อก';
$lang['blocked_period'] = 'ระยะเวลาที่ถูกบล็อค';
$lang['blocked_periods'] = 'ระยะเวลาที่ถูกบล็อก';
$lang['blocked_period_save'] = 'บันทึกช่วงเวลาที่ถูกบล็อก';
$lang['blocked_period_delete'] = 'ลบระยะเวลาที่ถูกบล็อก';
$lang['blocked_periods_hint'] = 'กำหนดระยะเวลาที่การจองสาธารณะจะถูกปิดใช้งานสำหรับผู้ให้บริการทั้งหมด (เช่น วันที่ปิด วันหยุด ฯลฯ)';
$lang['custom_field'] = 'ฟิลด์ที่กำหนดเอง';
$lang['custom_fields'] = 'ฟิลด์ที่กำหนดเอง';
$lang['label'] = 'ฉลาก';
$lang['webhook_saved'] = 'บันทึก Webhook เรียบร้อยแล้ว';
$lang['webhook_deleted'] = 'ลบ Webhook สำเร็จแล้ว';
$lang['delete_webhook'] = 'ลบเว็บฮุค';
$lang['contact_info'] = 'ข้อมูลติดต่อ';
$lang['sync_method_prompt'] = 'คุณต้องการใช้วิธีซิงค์แบบใด';
$lang['caldav_server'] = 'เซิร์ฟเวอร์ CalDAV';
$lang['caldav_connection_info_prompt'] = 'โปรดป้อนข้อมูลการเชื่อมต่อของเซิร์ฟเวอร์ CalDAV เป้าหมาย';
$lang['connect'] = 'เชื่อมต่อ';
// End

View 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';

View 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.';