Add more translations (norwegian, latvian, lithuanian, bosnian, slovenian)

This commit is contained in:
Alex Tselegidis 2024-09-06 17:58:00 +02:00
parent 0b388a39e9
commit 0067d96a13
71 changed files with 6157 additions and 10 deletions

View file

@ -88,37 +88,42 @@ $config['url_suffix'] = '';
$languages = [
'ar' => 'arabic',
'bs' => 'bosnian',
'bu' => 'bulgarian',
'ca' => 'catalan',
'zh' => 'chinese',
'hr' => 'croatian',
'cs' => 'czech',
'da' => 'danish',
'nl' => 'dutch',
'en' => 'english',
'et' => 'estonian',
'fi' => 'finnish',
'fr' => 'french',
'de' => 'german',
'el' => 'greek',
'en' => 'english',
'es' => 'spanish',
'et' => 'estonian',
'fa' => 'persian',
'fi' => 'finnish',
'fr' => 'french',
'he' => 'hebrew',
'hi' => 'hindi',
'hr' => 'croatian',
'hu' => 'hungarian',
'it' => 'italian',
'ja' => 'japanese',
'fa' => 'persian',
'lb' => 'luxembourgish',
'lt' => 'lithuanian',
'lv' => 'latvian',
'mr' => 'marathi',
'nl' => 'dutch',
'no' => 'norwegian',
'pl' => 'polish',
'pt' => 'portuguese',
'ro' => 'romanian',
'ru' => 'russian',
'rs' => 'serbian',
'ru' => 'russian',
'sk' => 'slovak',
'es' => 'spanish',
'sl' => 'slovenian',
'sv' => 'swedish',
'th' => 'thai',
'tr' => 'turkish',
'zh' => 'chinese',
];
$config['language_codes'] = $languages;
@ -145,6 +150,7 @@ $config['language_code'] = array_search($config['language'], $languages) ?: 'en'
*/
$config['available_languages'] = [
'arabic',
'bosnian',
'bulgarian',
'catalan',
'chinese',
@ -163,8 +169,11 @@ $config['available_languages'] = [
'hungarian',
'italian',
'japanese',
'latvian',
'lithuanian',
'luxembourgish',
'marathi',
'norwegian',
'persian',
'polish',
'portuguese',
@ -173,6 +182,7 @@ $config['available_languages'] = [
'russian',
'serbian',
'slovak',
'slovenian',
'spanish',
'swedish',
'thai',

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,486 @@
<?php defined('BASEPATH') or exit('No direct script access allowed');
// Bosnian
$lang['page_title'] = 'Zakažite termin sa';
$lang['service_and_provider'] = 'Usluga i dobavljač';
$lang['select_service'] = 'Izaberite uslugu';
$lang['select_provider'] = 'Izaberite provajdera';
$lang['duration'] = 'Trajanje';
$lang['minutes'] = 'Minuti';
$lang['price'] = 'Cijena';
$lang['back'] = 'Nazad';
$lang['appointment_date_and_time'] = 'Datum i vrijeme sastanka';
$lang['no_available_hours'] = 'Nema raspoloživih sati za termine za odabrani datum. Molimo odaberite drugi datum.';
$lang['appointment_hour_missing'] = 'Molimo odaberite sat za termin prije nego što nastavite.';
$lang['customer_information'] = 'Informacije o klijentu';
$lang['first_name'] = 'Ime';
$lang['last_name'] = 'Prezime';
$lang['email'] = 'E-pošta';
$lang['phone_number'] = 'Broj telefona';
$lang['phone'] = 'Telefon';
$lang['address'] = 'Adresa';
$lang['city'] = 'Grad';
$lang['zip_code'] = 'Poštanski broj';
$lang['notes'] = 'Napomene';
$lang['language'] = 'Jezik';
$lang['no_language'] = 'Nema jezika';
$lang['fields_are_required'] = 'Polja sa * su obavezna.';
$lang['appointment_confirmation'] = 'Potvrda termina';
$lang['confirm'] = 'Potvrdi';
$lang['update'] = 'Ažuriraj';
$lang['cancel_appointment_hint'] = 'Pritisnite dugme "Otkaži" da uklonite termin iz rasporeda kompanije.';
$lang['cancel'] = 'Otkaži';
$lang['appointment_registered'] = 'Vaš termin je uspješno registrovan!';
$lang['cancel_appointment_title'] = 'Otkaži termin';
$lang['appointment_cancelled'] = 'Vaš termin je uspješno otkazan.';
$lang['appointment_cancelled_title'] = 'Sastanak otkazan';
$lang['reason'] = 'Razlog';
$lang['appointment_removed_from_schedule'] = 'Sljedeći sastanak je uklonjen iz rasporeda kompanije . ';
$lang['appointment_details_was_sent_to_you'] = 'E-mail sa detaljima sastanka vam je poslan.';
$lang['add_to_google_calendar'] = 'Dodaj u Google kalendar';
$lang['appointment_booked'] = 'Vaš termin je uspješno rezerviran';
$lang['thank_you_for_appointment'] = 'Hvala što ste dogovorili termin sa nama. U nastavku možete pogledati detalje termina. Napravite promjene klikom na link za termin.';
$lang['appointment_details_title'] = 'Detalji sastanka';
$lang['customer_details_title'] = 'Detalji o klijentu';
$lang['service'] = 'Usluga';
$lang['provider'] = 'Dobavljač';
$lang['customer'] = 'Kupac';
$lang['start'] = 'Pokreni';
$lang['end'] = 'Kraj';
$lang['name'] = 'Ime';
$lang['appointment_link_title'] = 'Veza za sastanak';
$lang['success'] = 'Uspjeh';
$lang['appointment_added_to_your_plan'] = 'Novi termin je dodat u vaš plan.';
$lang['appointment_link_description'] = 'Možete napraviti promjene klikom na link za sastanak ispod.';
$lang['appointment_locked'] = 'Modifikacija nemoguća!';
$lang['appointment_locked_message'] = 'Sastanak se ne može promijeniti manje od {$limit} sati unaprijed.';
$lang['appointment_not_found'] = 'Sastanak nije pronađen';
$lang['appointment_does_not_exist_in_db'] = 'Sastanak koji ste tražili ne postoji više u sistemskoj bazi podataka.';
$lang['display_calendar'] = 'Prikaži kalendar';
$lang['calendar'] = 'Kalendar';
$lang['users'] = 'Korisnici';
$lang['settings'] = 'Postavke';
$lang['log_out'] = 'Odjava';
$lang['synchronize'] = 'Sinhroniziraj';
$lang['enable_sync'] = 'Omogući sinhronizaciju';
$lang['disable_sync'] = 'Onemogući sinhronizaciju';
$lang['disable_sync_prompt'] = 'Da li ste sigurni da želite da onemogućite sinhronizaciju kalendara?';
$lang['reload'] = 'Ponovo učitaj';
$lang['appointment'] = 'Sastanak';
$lang['unavailability'] = 'Nedostupnost';
$lang['week'] = 'Sedmica';
$lang['month'] = 'Mjesec';
$lang['danas'] = 'Danas';
$lang['not_working'] = 'Ne radi';
$lang['break'] = 'Prekid';
$lang['add'] = 'Dodaj';
$lang['edit'] = 'Uredi';
$lang['hello'] = 'Zdravo';
$lang['all_day'] = 'Cijeli dan';
$lang['manage_appointment_record_hint'] = 'Upravljajte svim zapisima sastanaka dostupnih provajdera i usluga.';
$lang['select_filter_item_hint'] = 'Izaberite provajdera ili uslugu i pogledajte sastanke u kalendaru.';
$lang['enable_appointment_sync_hint'] = 'Omogući sinhronizaciju termina sa eksternim kalendarom.';
$lang['manage_customers_hint'] = 'Upravljajte registrovanim klijentima i pogledajte njihovu istoriju rezervacija.';
$lang['manage_services_hint'] = 'Upravljajte dostupnim uslugama i kategorijama sistema.';
$lang['manage_users_hint'] = 'Upravljajte pozadinskim korisnicima (administratori, provajderi, sekretari).';
$lang['settings_hint'] = 'Postavite sistemske i korisničke postavke.';
$lang['log_out_hint'] = 'Odjavite se sa sistema.';
$lang['unavailability_periods_hint'] = 'Tokom perioda nedostupnosti provajder neće prihvatiti nove sastanke.';
$lang['new_appointment_hint'] = 'Kreirajte novi sastanak i pohranite ga u bazu podataka.';
$lang['reload_appointments_hint'] = 'Ponovo učitaj termine u kalendaru.';
$lang['trigger_sync_hint'] = 'Pokreni proces sinhronizacije kalendara.';
$lang['appointment_updated'] = 'Sastanak je uspješno ažuriran.';
$lang['undo'] = 'Poništi';
$lang['appointment_details_changed'] = 'Detalji termina su promijenjeni';
$lang['appointment_changes_saved'] = 'Promjene termina su uspješno sačuvane.';
$lang['save'] = 'Sačuvaj';
$lang['new'] = 'Novo';
$lang['select'] = 'Odaberi';
$lang['hide'] = 'Sakrij';
$lang['type_to_filter_customers'] = 'Ukucajte za filtriranje kupaca.';
$lang['clear_fields_add_existing_customer_hint'] = 'Obrišite polja i unesite novog kupca.';
$lang['pick_existing_customer_hint'] = 'Izaberite postojećeg kupca.';
$lang['new_appointment_title'] = 'Novi sastanak';
$lang['edit_appointment_title'] = 'Uredi sastanak';
$lang['delete_appointment_title'] = 'Izbriši sastanak';
$lang['write_appointment_removal_reason'] = 'Odvojite minut da napišete razlog zbog kojeg brišete sastanak:';
$lang['appointment_saved'] = 'Sastanak je uspješno sačuvan.';
$lang['new_unavailability_title'] = 'Nova nedostupnost';
$lang['edit_unavailability_title'] = 'Uredi nedostupnost';
$lang['unavailability_saved'] = 'Nedostupnost je uspješno sačuvana.';
$lang['start_date_before_end_error'] = 'Vrijednost datuma početka je kasnija od datuma završetka.';
$lang['invalid_duration'] = 'Nevažeće trajanje.';
$lang['invalid_email'] = 'Nevažeća adresa e-pošte.';
$lang['customers'] = 'Kupci';
$lang['details'] = 'Detalji';
$lang['no_records_found'] = 'Nije pronađen nijedan zapis...';
$lang['services'] = 'Usluge';
$lang['duration_minutes'] = 'Trajanje (minute)';
$lang['currency'] = 'Valuta';
$lang['category'] = 'Kategorija';
$lang['no_category'] = 'Nema kategorije';
$lang['description'] = 'Opis';
$lang['categories'] = 'Kategorije';
$lang['admins'] = 'Admini';
$lang['providers'] = 'Provajderi';
$lang['secretaries'] = 'Sekretarice';
$lang['mobile_number'] = 'Broj mobilnog telefona';
$lang['mobile'] = 'Mobilni';
$lang['state'] = 'Stanje';
$lang['username'] = 'Korisničko ime';
$lang['password'] = 'Lozinka';
$lang['retype_password'] = 'Ponovo upišite lozinku';
$lang['receive_notifications'] = 'Primanje obavještenja';
$lang['passwords_mismatch'] = 'Nepodudaranje lozinki.';
$lang['admin_saved'] = 'Admin je uspješno sačuvan.';
$lang['provider_saved'] = 'Provajder je uspešno sačuvan.';
$lang['secretary_saved'] = 'Sekretar je uspješno sačuvan.';
$lang['admin_deleted'] = 'Admin je uspješno obrisan.';
$lang['provider_deleted'] = 'Provajder je uspešno obrisan.';
$lang['secretary_deleted'] = 'Sekretar je uspješno izbrisan.';
$lang['service_saved'] = 'Usluga je uspješno sačuvana.';
$lang['service_category_saved'] = 'Kategorija usluge je uspješno sačuvana.';
$lang['service_deleted'] = 'Usluga je uspješno izbrisana.';
$lang['service_category_deleted'] = 'Kategorija usluge je uspješno obrisana.';
$lang['customer_saved'] = 'Korisnik je uspješno sačuvan.';
$lang['customer_deleted'] = 'Korisnik je uspješno obrisan.';
$lang['current_view'] = 'Trenutni prikaz';
$lang['working_plan'] = 'Plan rada';
$lang['reset_plan'] = 'Resetuj plan';
$lang['monday'] = 'Ponedjeljak';
$lang['utorak'] = 'Utorak';
$lang['srijeda'] = 'Srijeda';
$lang['thursday'] = 'Četvrtak';
$lang['friday'] = 'Petak';
$lang['saturday'] = 'Subota';
$lang['sunday'] = 'Nedjelja';
$lang['breaks'] = 'Prekidi';
$lang['add_breaks_during_each_day'] = 'Dodajte radne pauze tokom svakog dana. U pauzama provajder neće prihvatiti nikakve sastanke.';
$lang['day'] = 'Dan';
$lang['days'] = 'Dani';
$lang['actions'] = 'Akcije';
$lang['reset_working_plan_hint'] = 'Resetujte radni plan nazad na podrazumevane vrednosti.';
$lang['company_name'] = 'Naziv kompanije';
$lang['company_name_hint'] = 'Naziv kompanije će biti prikazan svuda u sistemu (obavezno).';
$lang['company_email'] = 'E-pošta kompanije';
$lang['company_email_hint'] = 'Ovo će biti adresa e-pošte kompanije. Koristit će se kao pošiljatelj i adresa za odgovor sistemskih e-poruka (obavezno).';
$lang['company_link'] = 'Link kompanije';
$lang['company_link_hint'] = 'Link kompanije treba da vodi na službenu web stranicu kompanije (obavezno).';
$lang['go_to_booking_page'] = 'Idi na stranicu rezervacije';
$lang['settings_saved'] = 'Postavke su uspješno sačuvane.';
$lang['general'] = 'Opšte';
$lang['booking'] = 'Rezervacija';
$lang['visible'] = 'Vidljivo';
$lang['hidden'] = 'Skriveno';
$lang['business_logic'] = 'Poslovna logika';
$lang['current_user'] = 'Trenutni korisnik';
$lang['about_app'] = 'O Easy! Sastancima';
$lang['edit_working_plan_hint'] = 'Označite ispod dane i sate kada će vaša kompanija prihvatiti sastanke. Moći ćete prilagoditi termine u neradno vrijeme, ali klijenti neće moći sami zakazati termine u neradnim periodima. Ovaj radni plan će biti podrazumevani za svaki novi zapis provajdera, ali ćete moći da promenite plan svakog provajdera posebno uređivanjem njegovog zapisa. Nakon toga možete dodati periode pauze.';
$lang['edit_breaks_hint'] = 'Dodajte radne pauze tokom svakog dana. Ove pauze će se primjenjivati za sve nove provajdere.';
$lang['book_advance_timeout'] = 'Vreme za rezervaciju unapred';
$lang['book_advance_timeout_hint'] = 'Definiši vremensko ograničenje (u minutama) pre nego što klijenti mogu da rezervišu ili ponovo dogovore sastanke sa kompanijom.';
$lang['timeout_minutes'] = 'Vreme je isteklo (minuta)';
$lang['about_app_info'] = 'Easy! Sastanci su veoma prilagodljiva web aplikacija koja omogućava vašim klijentima da zakažu sastanke s vama putem weba. Štaviše, pruža mogućnost sinhronizacije vaših podataka sa Google kalendarom, tako da ih možete koristiti sa drugim uslugama.';
$lang['current_version'] = 'Trenutna verzija';
$lang['support'] = 'Podrška';
$lang['about_app_support'] = 'Ako naiđete na bilo kakve probleme kada koristite Easy!Appointments, možete pretražiti zvaničnu Google grupu za odgovore. Možda ćete također morati kreirati novi problem na stranici Google Code kako biste pomogli u razvoju.';
$lang['official_website'] = 'Službena web stranica';
$lang['google_plus_community'] = 'Google+ zajednica';
$lang['support_group'] = 'Grupa za podršku';
$lang['project_issues'] = 'Problemi projekta';
$lang['license'] = 'Licenca';
$lang['about_app_license'] = 'Easy! Sastanci su licencirani pod GPLv3 licencom. Korištenjem koda Easy!Appointments na bilo koji način pristajete na uslove opisane na sljedećem URL-u:';
$lang['logout_success'] = 'Uspješno ste odjavljeni! Kliknite na jedno od sljedećih dugmadi za navigaciju na drugu stranicu.';
$lang['book_appointment_title'] = 'Zakažite termin';
$lang['backend_section'] = 'Pozadinska sekcija';
$lang['you_need_to_login'] = 'Dobro došli! Morat ćete se prijaviti da biste vidjeli pozadinske stranice.';
$lang['enter_username_here'] = 'Ovdje unesite svoje korisničko ime...';
$lang['enter_password_here'] = 'Ovdje unesite svoju lozinku...';
$lang['login'] = 'Prijava';
$lang['forgot_your_password'] = 'Zaboravili ste lozinku?';
$lang['login_failed'] = 'Prijava nije uspjela, unesite ispravne akreditive i pokušajte ponovo.';
$lang['type_username_and_email_for_new_password'] = 'Upišite svoje korisničko ime i adresu e-pošte da dobijete novu lozinku.';
$lang['enter_email_here'] = 'Ovdje unesite svoju e-poštu...';
$lang['regenerate_password'] = 'Ponovo generišite lozinku';
$lang['go_to_login'] = 'Vrati se na stranicu za prijavu';
$lang['new_password_sent_with_email'] = 'Vaša nova lozinka vam je poslata putem e-pošte.';
$lang['new_account_password'] = 'Nova lozinka naloga';
$lang['new_password_is'] = 'Vaša nova lozinka naloga je $password. Molimo pohranite ovu e-poštu kako biste mogli povratiti vašu lozinku ako je potrebno. Također možete promijeniti ovu lozinku novom na stranici postavki.';
$lang['delete_record_prompt'] = 'Da li ste sigurni da želite da izbrišete ovaj zapis? Ova radnja se ne može poništiti.';
$lang['delete_admin'] = 'Izbriši administratora';
$lang['delete_customer'] = 'Izbriši kupca';
$lang['delete_service'] = 'Izbriši uslugu';
$lang['delete_service_category'] = 'Izbriši kategoriju usluge';
$lang['delete_provider'] = 'Izbriši dobavljača';
$lang['delete_secretary'] = 'Izbriši sekretara';
$lang['delete_appointment'] = 'Izbriši sastanak';
$lang['delete_unavailability'] = 'Izbriši nedostupnost';
$lang['delete'] = 'Izbriši';
$lang['unexpected_issues'] = 'Neočekivani problemi';
$lang['unexpected_issues_message'] = 'Operacija nije mogla da se završi zbog neočekivanih problema.';
$lang['close'] = 'Zatvori';
$lang['page_not_found'] = 'Stranica nije pronađena';
$lang['page_not_found_message'] = 'Nažalost stranica koju ste tražili ne postoji. Molimo provjerite URL vašeg pretraživača ili idite na drugu lokaciju koristeći dugmad ispod.';
$lang['error'] = 'Greška';
$lang['no_privileges'] = 'Nema privilegija';
$lang['no_privileges_message'] = 'Nemate potrebne privilegije da vidite ovu stranicu. Molimo idite na drugi odjeljak.';
$lang['backend_calendar'] = 'Pozadinski kalendar';
$lang['start_date_time'] = 'Datum početka/vrijeme';
$lang['end_date_time'] = 'Završni datum / vrijeme';
$lang['licensed_under'] = 'Manje licencirano';
$lang['unexpected_issues_occurred'] = 'Došlo je do neočekivanih problema.';
$lang['service_communication_error'] = 'Došlo je do greške u komunikaciji sa serverom, pokušajte ponovo.';
$lang['no_privileges_edit_appointments'] = 'Nemate potrebne privilegije za uređivanje sastanaka.';
$lang['unavailability_updated'] = 'Nedostupnost je uspješno ažurirana.';
$lang['appointments'] = 'Sastanci';
$lang['unexpected_warnings'] = 'Neočekivana upozorenja';
$lang['unexpected_warnings_message'] = 'Operacija je završena, ali su se pojavila neka upozorenja.';
$lang['filter'] = 'Filter';
$lang['clear'] = 'Obriši';
$lang['uncategorized'] = 'Nekategorizirano';
$lang['username_already_exists'] = 'Korisničko ime već postoji.';
$lang['password_length_notice'] = 'Lozinka mora imati najmanje $numer znakova.';
$lang['general_settings'] = 'Opšta podešavanja';
$lang['personal_information'] = 'Lični podaci';
$lang['system_login'] = 'Prijava sistema';
$lang['user_settings_are_invalid'] = 'Korisničke postavke su nevažeće! Pregledajte postavke i pokušajte ponovo.';
$lang['add_break'] = 'Dodaj prekid';
$lang['januar'] = 'Januar';
$lang['february'] = 'Februar';
$lang['march'] = 'Mart';
$lang['april'] = 'April';
$lang['may'] = 'Svibanj';
$lang['jun'] = 'Jun';
$lang['july'] = 'Jul';
$lang['august'] = 'Avgust';
$lang['september'] = 'Septembar';
$lang['oktobar'] = 'Oktobar';
$lang['novembar'] = 'Novembar';
$lang['december'] = 'Decembar';
$lang['previous'] = 'Prethodno';
$lang['next'] = 'Sledeći';
$lang['sada'] = 'Sada';
$lang['select_time'] = 'Odaberi vrijeme';
$lang['time'] = 'Vrijeme';
$lang['hour'] = 'Sat';
$lang['minute'] = 'Minuta';
$lang['calendar_sync_completed'] = 'Sinhronizacija kalendara je uspješno završena.';
$lang['calendar_sync_failed'] = 'Sinhronizacija kalendara nije uspjela: Nije moguće uspostaviti vezu sa serverom.';
$lang['select_sync_calendar'] = 'Izaberite kalendar';
$lang['select_sync_calendar_prompt'] = 'Izaberite kalendar sa kojim želite da sinhronizujete svoje obaveze.';
$lang['sync_calendar_selected'] = 'Sinhronizacija kalendara je uspješno odabrana.';
$lang['oops_something_went_wrong'] = 'Ups! Nešto je pošlo po zlu.';
$lang['ea_update_success'] = 'Lako! Sastanci su uspješno ažurirani.';
$lang['require_captcha'] = 'Zahtijeva CAPTCHA';
$lang['require_captcha_hint'] = 'Kada je omogućeno, klijenti će morati da unesu nasumično generisani CAPTCHA niz prije rezervacije/ažuriranja termina.';
$lang['captcha_is_wrong'] = 'CAPTCHA verifikacija nije uspjela, pokušajte ponovo.';
$lang['any_provider'] = 'Bilo koji provajder';
$lang['requested_hour_is_unavailable'] = 'Traženi termin nažalost nije dostupan. Molimo odaberite drugo vrijeme za svoj termin.';
$lang['customer_notifications'] = 'Obaveštenja korisnika';
$lang['customer_notifications_hint'] = 'Definiše da li će kupac primati obavještenja putem e-pošte kad god dođe do promjene rasporeda na jednom od njegovih termina.';
$lang['date_format'] = 'Format datuma';
$lang['date_format_hint'] = 'Promijenite format prikaza datuma (D - Datum, M - Mjesec, Y - Godina).';
$lang['time_format'] = 'Format vremena';
$lang['time_format_hint'] = 'Promijenite format prikaza vremena (H - sati, M - minute).';
$lang['first_weekday'] = 'Prvi dan u sedmici';
$lang['first_weekday_hint'] = 'Postavite prvi dan kalendarske sedmice.';
$lang['google_analytics_code_hint'] = 'Dodajte svoj Google Analytics kod da omogućite praćenje Google Analytics na stranicama za rezervacije.';
$lang['availabilities_type'] = 'Vrsta dostupnosti';
$lang['flexible'] = 'Fleksibilan';
$lang['fixed'] = 'Popravljeno';
$lang['attendants_number'] = 'Broj pratioca';
$lang['reset_working_plan'] = 'Resetujte radni plan nazad na podrazumevane vrednosti.';
$lang['legal_contents'] = 'Pravni sadržaj';
$lang['cookie_notice'] = 'Obaveštenje o kolačićima';
$lang['display_cookie_notice'] = 'Prikaži obaveštenje o kolačićima';
$lang['cookie_notice_content'] = 'Sadržaj obavještenja o kolačićima';
$lang['terms_and_conditions'] = 'Uslovi i odredbe';
$lang['display_terms_and_conditions'] = 'Prikaži odredbe i uslove';
$lang['terms_and_conditions_content'] = 'Sadržaj odredbi i uslova';
$lang['privacy_policy'] = 'Politika privatnosti';
$lang['display_privacy_policy'] = 'Prikaži politiku privatnosti';
$lang['privacy_policy_content'] = 'Sadržaj politike privatnosti';
$lang['website_using_cookies_to_ensure_best_experience'] = 'Ova web stranica koristi kolačiće kako bi vam osigurala najbolje iskustvo na našoj web stranici.';
$lang['read_and_agree_to_terms_and_conditions'] = 'Pročitao sam i slažem se sa {$link}Uslovima i odredbama{/$link}.';
$lang['read_and_agree_to_privacy_policy'] = 'Pročitao sam i slažem se sa {$link}Pravilima privatnosti{/$link}.';
$lang['delete_personal_information_hint'] = 'Uklonite sve svoje sastanke i lične podatke iz sistema.';
$lang['delete_personal_information'] = 'Izbriši lične podatke';
$lang['delete_personal_information_prompt'] = 'Da li ste sigurni da želite da izbrišete svoje lične podatke? Ova radnja se ne može poništiti.';
$lang['location'] = 'Lokacija';
$lang['working_plan_exception'] = 'Izuzetak radnog plana';
$lang['working_plan_exceptions'] = 'Izuzeci radnog plana';
$lang['working_plan_exceptions_hint'] = 'Dodaj dan izuzetka radnog plana, izvan radnog plana.';
$lang['new_working_plan_exception_title'] = 'Izuzetak novog radnog plana';
$lang['working_plan_exception_saved'] = 'Izuzetak radnog plana je uspješno sačuvan.';
$lang['working_plan_exception_deleted'] = 'Izuzetak radnog plana je uspješno izbrisan.';
$lang['add_working_plan_exceptions_during_each_day'] = 'Dodaj iznimke radnog plana, izvan radnog plana.';
$lang['add_working_plan_exception'] = 'Dodaj izuzetak radnog plana';
$lang['require_phone_number'] = 'Zahteva se broj telefona';
$lang['require_phone_number_hint'] = 'Kada je omogućeno, kupci i korisnici će morati da unesu broj telefona klijenta kada rezervišu termin';
$lang['check_spam_folder'] = 'Provjerite svoju spam folder ako email ne stigne u roku od nekoliko minuta.';
$lang['api_token_hint'] = 'Postavite tajni token da biste omogućili autentifikaciju baziranu na tokenu za Easy!Appointments API.';
$lang['timezone'] = 'Vremenska zona';
$lang['overwrite_existing_working_plans'] = 'Ovo će zameniti postojeće radne planove provajdera, jeste li sigurni da želite da nastavite?';
$lang['working_plans_got_updated'] = 'Svi radni planovi su ažurirani.';
$lang['apply_to_all_providers'] = 'Primijeniti na sve dobavljače';
$lang['display_any_provider'] = 'Prikaži bilo koju opciju dobavljača';
$lang['display_any_provider_hint'] = 'Stranica za rezervaciju će dobiti dodatnu opciju koja omogućava korisnicima da rezervišu bez navođenja provajdera.';
$lang['load_more'] = 'Učitaj više';
$lang['list'] = 'Lista';
$lang['default'] = 'Podrazumevano';
$lang['table'] = 'Tabela';
$lang['date'] = 'Datum';
$lang['about'] = 'O';
$lang['booking_settings'] = 'Postavke rezervacije';
$lang['display'] = 'Prikaz';
$lang['require'] = 'Zahteva';
$lang['color'] = 'Boja';
$lang['matomo_analytics_url_hint'] = 'Dodajte URL svojoj Matomo instalaciji da omogućite Matomo praćenje na stranicama za rezervacije.';
$lang['invalid_phone'] = 'Nevažeći broj telefona.';
$lang['legal'] = 'Pravno';
$lang['business'] = 'Posao';
$lang['account'] = 'Nalog';
$lang['disable_booking'] = 'Onemogući rezervaciju';
$lang['disable_booking_hint'] = 'Stranica za rezervaciju će biti onemogućena sve dok je ova postavka aktivna i kupci neće moći da registruju nove sastanke.';
$lang['display_message'] = 'Prikaži poruku';
$lang['booking_is_disabled'] = 'Rezervacija je onemogućena!';
$lang['appearance'] = 'Izgled';
$lang['company_logo'] = 'Logotip kompanije';
$lang['company_logo_hint'] = 'Logotip kompanije će biti prikazan na mnogim mjestima u aplikaciji, uključujući stranicu za rezervacije i e-poruke sa obavještenjima (fajl slike, maksimalno 2 MB).';
$lang['company_color'] = 'Boja kompanije';
$lang['company_color_hint'] = 'Boja kompanije će biti primijenjena na cijelu aplikaciju tako da aplikacija koristi vaš brend.';
$lang['localization'] = 'Lokalizacija';
$lang['integrations'] = 'Integracije';
$lang['company'] = 'Kompanija';
$lang['remove'] = 'Ukloni';
$lang['login_button'] = 'Dugme za prijavu';
$lang['display_login_button_hint'] = 'Definiše da li se dugme za prijavu prikazuje na stranici za rezervaciju.';
$lang['private'] = 'Privatno';
$lang['private_hint'] = 'Privatni zapisi neće biti prikazani ili obrađeni na javnim stranicama kao što je stranica za rezervacije.';
$lang['reset'] = 'Resetuj';
$lang['all'] = 'Sve';
$lang['booking_link'] = 'Link za rezervaciju';
$lang['add_new_event'] = 'Dodaj novi događaj';
$lang['what_kind_of_event'] = 'Kakvu vrstu događaja želite da dodate?';
$lang['theme'] = 'Tema';
$lang['limit_customer_access'] = 'Ograničite korisnički pristup';
$lang['limit_customer_access_hint'] = 'Ako je omogućeno, provajderi i sekretarice će moći pristupiti samo klijentima sa kojima imaju zakazani sastanak.';
$lang['url'] = 'URL';
$lang['secret_token'] = 'Tajni token';
$lang['verify_ssl'] = 'Proveri SSL';
$lang['appointment_save'] = 'Sačuvaj termin';
$lang['appointment_delete'] = 'Izbriši sastanak';
$lang['unavailability_save'] = 'Sačuvanje nedostupnosti';
$lang['unavailability_delete'] = 'Nedostupnost Obriši';
$lang['customer_save'] = 'Sačuvaj korisnika';
$lang['customer_delete'] = 'Izbriši korisnika';
$lang['service_save'] = 'Sačuvanje usluge';
$lang['service_delete'] = 'Izbriši uslugu';
$lang['service_category_save'] = 'Sačuvaj kategoriju usluge';
$lang['service_category_delete'] = 'Izbriši kategoriju usluge';
$lang['provider_save'] = 'Sačuvaj dobavljača';
$lang['provider_delete'] = 'Izbriši provajder';
$lang['secretary_save'] = 'Sačuvaj sekretara';
$lang['secretary_delete'] = 'Izbriši sekretaricu';
$lang['admin_save'] = 'Admin Sačuvaj';
$lang['admin_delete'] = 'Admin Izbriši';
$lang['options'] = 'Opcije';
$lang['webhooks'] = 'Webhooks';
$lang['webhooks_info'] = 'Webhookovi vam omogućavaju da šaljete HTTP obavještenja vanjskim web aplikacijama kao odgovor na različite događaje aplikacije, kao što je kreiranje termina ili uklanjanje korisnika.';
$lang['integrations_info'] = 'Integracije vam omogućavaju da uspostavite veze treće strane sa eksternim aplikacijama i API-jima.';
$lang['configure'] = 'Konfiguriši';
$lang['google_analytics'] = 'Google analitika';
$lang['google_analytics_info'] = 'Google Analytics vam omogućava da automatski dodate kod za praćenje i HTML oznake na javnu stranicu i pratite sve javne sesije rezervacije.';
$lang['matomo_analytics'] = 'Matomo analitika';
$lang['matomo_analytics_info'] = 'Matomo Analytics vam omogućava da automatski dodate kod za praćenje i HTML oznake na javnu stranicu i pratite sve javne sesije rezervacije.';
$lang['api'] = 'API';
$lang['api_info'] = 'API vam omogućava da komunicirate sa svim podacima Easy!Appointments putem HTTP protokola i dostupnih API krajnjih tačaka i kreirate sopstvene integracije.';
$lang['google_analytics_code'] = 'Google Analytics kod';
$lang['matomo_analytics_url'] = 'Matomo Analytics URL';
$lang['future_booking_limit'] = 'Ograničenje buduće rezervacije';
$lang['limit_days'] = 'Ograničenje (dana)';
$lang['future_booking_limit_hint'] = 'Postavite buduće ograničenje u danima koje klijenti mogu zakazati preko javne stranice za rezervacije.';
$lang['api_token'] = 'API token';
$lang['allow_rescheduling_cancellation_before'] = 'Dozvoli ponovno zakazivanje/otkazivanje prije';
$lang['at_least_one_field'] = 'Najmanje jedno polje mora biti prikazano na stranici za rezervaciju.';
$lang['status'] = 'Status';
$lang['appointment_status_options'] = 'Opcije statusa termina';
$lang['appointment_status_options_info'] = 'Definiši listu dostupnih opcija statusa obaveze koje se mogu koristiti na stranici kalendara (prva će automatski postati podrazumevana vrednost).';
$lang['sunday_short'] = 'Ned';
$lang['monday_short'] = 'pon';
$lang['tuesday_short'] = 'Uto';
$lang['wednesday_short'] = 'Srijeda';
$lang['thursday_short'] = 'Čet';
$lang['friday_short'] = 'Petak';
$lang['saturday_short'] = 'Sub';
$lang['january_short'] = 'Januar';
$lang['february_short'] = 'Februar';
$lang['march_short'] = 'Ožujak';
$lang['april_short'] = 'April';
$lang['may_short'] = 'Svibanj';
$lang['june_short'] = 'Jun';
$lang['july_short'] = 'Jul';
$lang['august_short'] = 'Avg';
$lang['september_short'] = 'Sep';
$lang['october_short'] = 'Oktobra';
$lang['november_short'] = 'Nov';
$lang['december_short'] = 'Decembar';
$lang['am'] = 'am';
$lang['pm'] = 'pm';
$lang['to'] = 'za';
$lang['click_to_toggle'] = 'Kliknite za prebacivanje';
$lang['week_short'] = 'Nedjelja';
$lang['scroll_to_increment'] = 'Skroluj do povećanja';
$lang['year'] = 'Godina';
$lang['make_non_working_day'] = 'Ovaj provajder neće biti dostupan za rad izabranog dana.';
$lang['no_breaks'] = 'Bez prekida';
$lang['service_categories'] = 'Kategorije usluga';
$lang['service_category'] = 'Kategorija usluge';
$lang['blocked_period_saved'] = 'Blokirani period je uspješno sačuvan.';
$lang['blocked_period_deleted'] = 'Blokirani period je uspješno izbrisan.';
$lang['delete_blocked_period'] = 'Izbriši blokirani period';
$lang['blocked_period'] = 'Blokirani period';
$lang['blocked_periods'] = 'Blokirani periodi';
$lang['blocked_period_save'] = 'Sačuvanje blokiranog perioda';
$lang['blocked_period_delete'] = 'Brisanje blokiranog perioda';
$lang['blocked_periods_hint'] = 'Odredite periode u kojima će javne rezervacije biti onemogućene za sve provajdere (npr. zatvoreni datumi, praznici itd.).';
$lang['custom_field'] = 'Prilagođeno polje';
$lang['custom_fields'] = 'Prilagođena polja';
$lang['label'] = 'Oznaka';
$lang['webhook_saved'] = 'Webhook je uspješno sačuvan.';
$lang['webhook_deleted'] = 'Webhook je uspješno obrisan.';
$lang['delete_webhook'] = 'Izbriši Webhook';
$lang['contact_info'] = 'Informacije o kontaktu';
$lang['hide_from_public'] = 'Sakrij od javnosti';
$lang['matomo_analytics_site_id'] = 'Matomo Analytics ID lokacije';
$lang['matomo_analytics_site_id_hint'] = 'Postavite ID lokacije koju će Matomo pratiti (podrazumevana lokacija ima ID "1").';
$lang['default_timezone'] = 'Podrazumevana vremenska zona';
$lang['default_timezone_hint'] = 'Postavite zadanu vrijednost vremenske zone koja će se koristiti za nove zapise.';
$lang['default_language'] = 'Podrazumevani jezik';
$lang['default_language_hint'] = 'Postavite zadanu vrijednost jezika koja će se koristiti za nove zapise.';
$lang['sync_method_prompt'] = 'Koji metod sinhronizacije želite da koristite?';
$lang['caldav_server'] = 'CalDAV server';
$lang['caldav_connection_info_prompt'] = 'Molimo unesite informacije o vezi ciljnog CalDAV kalendara.';
$lang['connect'] = 'Poveži se';
$lang['ldap'] = 'LDAP';
$lang['ldap_info'] = 'Ova integracija vam omogućava da se povežete na postojeći LDAP server i automatski uvezete korisnike u Easy!Appointments i dozvolite im da SSO sa svojom lozinkom direktorijuma (korisničko ime mora da se podudara).';
$lang['host'] = 'Host';
$lang['port'] = 'Port';
$lang['user_dn'] = 'Korisnički DN';
$lang['base_dn'] = 'Osnovni DN';
$lang['keyword'] = 'Ključna riječ';
$lang['ldap_search_hint'] = 'Navedite ključnu riječ za pretraživanje kroz LDAP direktorij za korisnike koji odgovaraju kriterijumima filtera.';
$lang['ldap_extension_not_loaded'] = 'LDAP PHP ekstenzija nije učitana, ali je potrebna da bi ova integracija radila.';
$lang['field_mapping'] = 'Mapiranje polja';
$lang['content'] = 'Sadržaj';
$lang['active'] = 'Aktivan';
$lang['user_imported'] = 'Korisnički zapis je uspješno uvezen.';
$lang['import'] = 'Uvezi';
$lang['ldap_dn'] = 'LDAP DN';
$lang['role'] = 'Uloga';
$lang['at_least_one_field_required'] = 'Najmanje jedno polje mora biti postavljeno kao što je potrebno na stranici za rezervacije.';
$lang['customer_is_already_booked'] = 'Ovaj korisnik već ima zakazan termin tokom traženog perioda rezervacije.';
$lang['fields'] = 'Polja';
$lang['invalid_credentials_provided'] = 'Nevažeći akreditivi su navedeni, pokušajte ponovo.';
$lang['calendar_url'] = 'URL kalendara';
$lang['please_select'] = 'Molimo izaberite';
// 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.';

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,486 @@
<?php defined('BASEPATH') or exit('No direct script access allowed');
// Latvian
$lang['page_title'] = 'Aizsirašyti satikšanu ar';
$lang['service_and_provider'] = 'Pakalpoja ir piegādātājs';
$lang['select_service'] = 'Pasirinkti pakalpojumu';
$lang['select_provider'] = 'Pasirinkti tiekėją';
$lang['ilgums'] = 'Trukmė';
$lang['minutes'] = 'Minutės';
$lang['price'] = 'Kaina';
$lang['back'] = 'Atgal';
$lang['appointment_date_and_time'] = 'Tikšanās datums un laiks';
$lang['no_available_hours'] = 'Pasirinktai datai nav brīvas tikšanās stundas. Prašām izvēlēties citu datumu.';
$lang['appointment_hour_missing'] = 'Prašām izvēlēties tikšanās stundu pirms tęsiant.';
$lang['customer_information'] = 'Kliento informācija';
$lang['first_name'] = 'Vardas';
$lang['last_name'] = 'Pavardė';
$lang['email'] = 'El. paštas';
$lang['phone_number'] = 'Telefona numurs';
$lang['phone'] = 'Telefonas';
$lang['address'] = 'Adresas';
$lang['city'] = 'Miestas';
$lang['zip_code'] = 'Pašto kods';
$lang['notes'] = 'Pastabos';
$lang['language'] = 'Kalba';
$lang['no_language'] = 'Nav valodas';
$lang['fields_are_required'] = 'Laukeliai ar * ir obligāti.';
$lang['appointment_confirmation'] = 'Susitikimo apstiprināšana';
$lang['confirm'] = 'Patvirtinti';
$lang['update'] = 'Atnaujināt';
$lang['cancel_appointment_hint'] = 'Paspauskite "Atšaukti", lai pašalintumėte tikšanos no uzņēmuma tvarkaraščio.';
$lang['cancel'] = 'Atšaukti';
$lang['appointment_registered'] = 'Jūsu apmeklējums bija veiksmīgi reģistrēts!';
$lang['cancel_appointment_title'] = 'Atšaukti tikšanos';
$lang['appointment_cancelled'] = 'Jūsu tikšanās bija veiksmīgi atšauktas.';
$lang['appointment_cancelled_title'] = 'Susitikimas atšauktas';
$lang['reason'] = 'Priežastis';
$lang['appointment_removed_from_schedule'] = 'Toliau pateiktas tikšanās bija pašalintas no uzņēmuma tvarkaraščio.';
$lang['appointment_details_was_sent_to_you'] = 'El. laiškas su susitikimo informācija tika nosūtīta jums.';
$lang['add_to_google_calendar'] = 'Pievienoties pie "Google" kalendāra';
$lang['appointment_booked'] = 'Jūsu tikšanās bija veiksmīgi pasūtīta';
$lang['thank_you_for_appointment'] = 'Dėkojame, ka nolīgėte tikšanos ar mums. Žemiau varat redzēt tikšanās detaļas. Atlikite pakeitimus paspaudę susitikimo ieteikumu.';
$lang['appointment_details_title'] = 'Tikšanās detaļas';
$lang['customer_details_title'] = 'Kliento detaļas';
$lang['service'] = 'Paslauga';
$lang['provider'] = 'Tiekējs';
$lang['customer'] = 'Klients';
$lang['start'] = 'Pradžia';
$lang['end'] = 'Pabaiga';
$lang['name'] = 'Vardas';
$lang['appointment_link_title'] = 'Sazinieties ar ieteikumiem';
$lang['success'] = 'Sėkme';
$lang['appointment_added_to_your_plan'] = 'Naujas tikšanās tika pievienots pie jūsu plāna.';
$lang['appointment_link_description'] = 'Pakeitimus varat veikt paspaudę zemāk esošu norādījumu.';
$lang['appointment_locked'] = 'Pakeitimai neįmanomi!';
$lang['appointment_locked_message'] = 'Susitikimo nevar mainīt likus mazāk nei {$limit} stundām.';
$lang['appointment_not_found'] = 'Susitikimas nerastas';
$lang['appointment_does_not_exist_in_db'] = 'Susitikimas, kura lūdzėte, sistēmas datu bazē nebeegzistē.';
$lang['display_calendar'] = 'Rodyti kalendorių';
$lang['kalendārs'] = 'Kalendorius';
$lang['users'] = 'Vartotāji';
$lang['settings'] = 'Nustatījumi';
$lang['log_out'] = 'Atsijungti';
$lang['synchronize'] = 'Sinhronizēt';
$lang['enable_sync'] = 'Ieslēgt sinhronizēšanu';
$lang['disable_sync'] = 'Izjungti sinhronizēšanu';
$lang['disable_sync_prompt'] = 'Vai tiešām vēlaties izslēgt kalendoriaus sinhronizēšanu?';
$lang['reload'] = 'Perkrauti';
$lang['tikšanās'] = 'Susitikimas';
$lang['nepieejamība'] = 'Nepasiekiamība';
$lang['week'] = 'Savaitė';
$lang['mēnesis'] = 'Mėnuo';
$lang['šodien'] = 'Šodien';
$lang['not_working'] = 'Nedirbama';
$lang['break'] = 'Pertrauka';
$lang['add'] = 'Pridēt';
$lang['edit'] = 'Redaguoti';
$lang['hello'] = 'Sveiki';
$lang['all_day'] = 'Visą dienu';
$lang['manage_appointment_record_hint'] = 'Tvarkykite visus galimų tiekēju un pakalpojumu saņemšanas ierakstus.';
$lang['select_filter_item_hint'] = 'Izvēlieties tiekėją jeb paslaugu un pārskatiniet tikimus kalendoriuje.';
$lang['enable_appointment_sync_hint'] = 'Ieslēdziet tikšanās sinhronizēšanu ar ārējo kalendoru.';
$lang['manage_customers_hint'] = 'Tvarkykite reģistrētos klientus un pārskatiet viņu pasūtījumu vēsturi.';
$lang['manage_services_hint'] = 'Tvarkykite galimas sistēmas pakalpojumus un kategorijas.';
$lang['manage_users_hint'] = 'Tvarkykite jaupakalinės sistēmas lietotāju (administratoru, lietotāju, sekretāru).';
$lang['settings_hint'] = 'Nustatykite sistēmas un lietotojo nustatymus.';
$lang['log_out_hint'] = 'Atsijunk no sistēmas.';
$lang['unavailability_periods_hint'] = 'Nepasiekiamumo periodiem piegādātājiem nepieims jaunu tikšanās veidu.';
$lang['new_appointment_hint'] = 'Sukurkite jaunu tikšanos un ierakstykite viņu uz datu bāzes.';
$lang['reload_appointments_hint'] = 'Atnaujiniet kalendoriaus susitikimus.';
$lang['trigger_sync_hint'] = 'Paleiskite kalendoriaus sinhronizēšanas procesu.';
$lang['appointment_updated'] = 'Susitikimas veiksmīgi atjaunināts.';
$lang['atsaukt'] = 'Atšaukti';
$lang['appointment_details_changed'] = 'Susitikimo detaļas tika mainītas';
$lang['appointment_changes_saved'] = 'Susitikimo pakeitimai bija veiksmīgi saglabāti.';
$lang['save'] = 'Saglabāt';
$lang['new'] = 'Naujas';
$lang['select'] = 'Pasirinkti';
$lang['hide'] = 'Paslēpti';
$lang['type_to_filter_customers'] = 'Iestatiet, lai filtrētu klientus.';
$lang['clear_fields_add_existing_customer_hint'] = 'Izvalykite laukelius un ievedkite jaunu klientu.';
$lang['pick_existing_customer_hint'] = 'Izvēlieties esošo klientu.';
$lang['new_appointment_title'] = 'Naujas tikšanās';
$lang['edit_appointment_title'] = 'Redaguoti tikšanos';
$lang['delete_appointment_title'] = 'Ištrinti tikšanos';
$lang['write_appointment_removal_reason'] = 'Skirkite minūti un parašykite iemeslu, kāpēc ištrinate susitikimą:';
$lang['appointment_saved'] = 'Susitikimas sėkmingai saglabāts.';
$lang['new_unavailability_title'] = 'Naujas nepasiņemiamumas';
$lang['edit_unavailability_title'] = 'Redaguoti nepasiėmiamumu';
$lang['unavailability_saved'] = 'Nepasiėmiamumas sėkmingai saglabāts.';
$lang['start_date_before_end_error'] = 'Pradžios dati ir vēlāk nekā beigās dati.';
$lang['invalid_duration'] = 'Neteisinga ilgums.';
$lang['invalid_email'] = 'Neteisingas el. pasta adrese.';
$lang['customers'] = 'Klientai';
$lang['details'] = 'Detalės';
$lang['no_records_found'] = 'Iestājos nerasta...';
$lang['services'] = 'Paslaugos';
$lang['duration_minutes'] = 'Trukmė (minūtēm)';
$lang['valūta'] = 'Valiuta';
$lang['category'] = 'Kategorija';
$lang['no_category'] = 'Nav kategorijas';
$lang['description'] = 'Apraksts';
$lang['categories'] = 'Kategorijas';
$lang['admins'] = 'Admins';
$lang['providers'] = 'Providers';
$lang['sekretāri'] = 'Sekretāri';
$lang['mobile_number'] = 'Mobilais numurs';
$lang['mobile'] = 'Mobile';
$lang['state'] = 'Valsts';
$lang['username'] = 'Lietotājvārds';
$lang['password'] = 'Parole';
$lang['retype_password'] = 'Retype Password';
$lang['receive_notifications'] = 'Saņemt paziņojumus';
$lang['passwords_mismatch'] = 'Paroles neatbilst.';
$lang['admin_saved'] = 'Administrators veiksmīgi saglabāts.';
$lang['provider_saved'] = 'Nodrošinātājs veiksmīgi saglabāts.';
$lang['secretary_saved'] = 'Sekretāre veiksmīgi saglabāta.';
$lang['admin_deleted'] = 'Administrators veiksmīgi izdzēsts.';
$lang['provider_deleted'] = 'Nodrošinātājs veiksmīgi izdzēsts.';
$lang['secretary_deleted'] = 'Sekretāre veiksmīgi izdzēsta.';
$lang['service_saved'] = 'Pakalpojums veiksmīgi saglabāts.';
$lang['service_category_saved'] = 'Pakalpojumu kategorija veiksmīgi saglabāta.';
$lang['service_deleted'] = 'Pakalpojums veiksmīgi izdzēsts.';
$lang['service_category_deleted'] = 'Pakalpojumu kategorija veiksmīgi dzēsta.';
$lang['customer_saved'] = 'Klients veiksmīgi saglabāts.';
$lang['customer_deleted'] = 'Klients veiksmīgi dzēsts.';
$lang['current_view'] = 'Pašreizējais skats';
$lang['working_plan'] = 'Darba plāns';
$lang['reset_plan'] = 'Atjaunot plānu';
$lang['monday'] = 'pirmdiena';
$lang['tuesday'] = 'otrdiena';
$lang['wednesday'] = 'Trešdiena';
$lang['thursday'] = 'ceturtdiena';
$lang['friday'] = 'piektdiena';
$lang['saturday'] = 'sestdiena';
$lang['sunday'] = 'svētdiena';
$lang['breaks'] = 'Breaks';
$lang['add_breaks_during_each_day'] = 'Pievienot darba pārtraukumus katras dienas laikā. Pārtraukumu laikā pakalpojumu sniedzējs nepieņems nevienu tikšanos.';
$lang['day'] = 'Diena';
$lang['days'] = 'Days';
$lang['actions'] = 'Actions';
$lang['reset_working_plan_hint'] = 'Atjaunot darba plāna noklusējuma vērtības.';
$lang['company_name'] = 'Uzņēmuma nosaukums';
$lang['company_name_hint'] = 'Uzņēmuma nosaukums tiks parādīts visur sistēmā (obligāts).';
$lang['company_email'] = 'Uzņēmuma e-pasts';
$lang['company_email_hint'] = 'Šī būs uzņēmuma e-pasta adrese. Tā tiks izmantota kā sistēmas e-pasta vēstuļu sūtītāja un atbildes adrese (obligāti).';
$lang['company_link'] = 'Uzņēmuma saite';
$lang['company_link_hint'] = 'Uzņēmuma saitei jānorāda uz uzņēmuma oficiālo tīmekļa vietni (obligāti).';
$lang['go_to_booking_page'] = 'Iet uz rezervēšanas lapu';
$lang['settings_saved'] = 'Iestatījumi veiksmīgi saglabāti.';
$lang['general'] = 'General';
$lang['booking'] = 'Booking';
$lang['visible'] = 'Visible';
$lang['hidden'] = 'Hidden';
$lang['business_logic'] = 'Biznesa loģika';
$lang['current_user'] = 'Pašreizējais lietotājs';
$lang['about_app'] = 'Par Easy!Appointments';
$lang['edit_working_plan_hint'] = 'Zemāk atzīmējiet dienas un stundas, kad jūsu uzņēmums pieņems tikšanās. Jūs varēsiet pielāgot tikšanās reizes ne darba laikā, bet klienti nevarēs paši rezervēt tikšanās reizes ne darba laikā. Šis darba plāns būs noklusējuma iestatījums katram jaunam pakalpojumu sniedzēja ierakstam, bet jūs varēsiet mainīt katra pakalpojumu sniedzēja plānu atsevišķi, rediģējot viņa ierakstu. Pēc tam varēsiet pievienot pārtraukuma periodus.';
$lang['edit_breaks_hint'] = 'Pievienojiet darba pārtraukumus katras dienas laikā. Šie pārtraukumi tiks piemēroti visiem jaunajiem pakalpojumu sniedzējiem.';
$lang['book_advance_timeout'] = 'Grāmatu iepriekšēja rezervējuma laika ierobežojums';
$lang['book_advance_timeout_hint'] = 'Nosakiet laika ierobežojumu (minūtēs), pirms klienti var rezervēt vai pārplānot tikšanās ar uzņēmumu.';
$lang['timeout_minutes'] = 'Laika limits (minūtes)';
$lang['about_app_info'] = 'Easy!Appointments ir ļoti pielāgojama tīmekļa lietojumprogramma, kas ļauj jūsu klientiem rezervēt tikšanās ar jums, izmantojot tīmekli. Turklāt tā nodrošina iespēju sinhronizēt datus ar Google kalendāru, lai jūs tos varētu izmantot ar citiem pakalpojumiem.';
$lang['current_version'] = 'Pašreizējā versija';
$lang['support'] = 'Support';
$lang['about_app_support'] = 'Ja, izmantojot Easy!Appointments, jums rodas problēmas, varat meklēt atbildes oficiālajā Google grupā. Iespējams, ka jums būs nepieciešams arī izveidot jaunu jautājumu Google Code lapā, lai palīdzētu virzīt izstrādi.';
$lang['official_website'] = 'Oficiālā vietne';
$lang['google_plus_community'] = 'Google+ Community';
$lang['support_group'] = 'Atbalsta grupa';
$lang['project_issues'] = 'Projekta jautājumi';
$lang['licence'] = 'Licence';
$lang['about_app_license'] = 'Easy!Appointments ir licencēta ar GPLv3 licenci. Jebkurā veidā izmantojot Easy!Appointments kodu, jūs piekrītat noteikumiem, kas aprakstīti šajā url:';
$lang['logout_success'] = 'Jūs esat veiksmīgi izrakstījies! Noklikšķiniet uz kādas no šīm pogām, lai pārietu uz citu lapu.';
$lang['book_appointment_title'] = 'Rezervēt tikšanos';
$lang['backend_section'] = 'Backend Section';
$lang['you_need_to_login'] = 'Laipni lūdzam! Jums būs nepieciešams pieteikties, lai apskatītu aizmugurējās lapas.';
$lang['enter_username_here'] = 'Ievadiet savu lietotājvārdu šeit ...';
$lang['enter_password_here'] = 'Ievadiet paroli šeit ...';
$lang['login'] = 'Pieteikšanās';
$lang['forgot_your_password'] = 'Aizmirsāt paroli?';
$lang['login_failed'] = 'Pieteikšanās neizdevās, lūdzu, ievadiet pareizos akreditācijas datus un mēģiniet vēlreiz.';
$lang['type_username_and_email_for_new_password'] = 'Ierakstiet savu lietotājvārdu un e-pasta adresi, lai iegūtu savu jauno paroli.';
$lang['enter_email_here'] = 'Ievadiet savu e-pastu šeit ...';
$lang['reģenerate_password'] = 'Reģenerēt paroli';
$lang['go_to_login'] = 'Atgriezties pie pieteikšanās lapas';
$lang['new_password_sent_with_email'] = 'Jūsu jaunā parole ir nosūtīta kopā ar e-pastu.';
$lang['new_account_password'] = 'Jaunā konta parole';
$lang['new_password_is'] = 'Jūsu jaunā konta parole ir $password. Lūdzu, saglabājiet šo e-pastu, lai vajadzības gadījumā varētu atgūt paroli. Šo paroli var arī nomainīt pret jaunu paroli iestatījumu lapā.';
$lang['delete_record_prompt'] = 'Vai esat pārliecināts, ka vēlaties dzēst šo ierakstu? Šo darbību nevar atsaukt.';
$lang['delete_admin'] = 'Dzēst admin';
$lang['delete_customer'] = 'Dzēst klientu';
$lang['delete_service'] = 'Dzēst pakalpojumu';
$lang['delete_service_category'] = 'Dzēst pakalpojumu kategoriju';
$lang['delete_provider'] = 'Delete Provider';
$lang['delete_secretary'] = 'Dzēst sekretāru';
$lang['delete_appointment'] = 'Delete Appointment';
$lang['delete_unavailability'] = 'Dzēst nepieejamību';
$lang['delete'] = 'Dzēst';
$lang['unexpected_issues'] = 'Negaidīti jautājumi';
$lang['unexpected_issues_message'] = 'Operāciju nevar pabeigt neparedzētu problēmu dēļ.';
$lang['close'] = 'Close';
$lang['page_not_found'] = 'Page Not Found';
$lang['page_not_found_message'] = 'Diemžēl jūsu pieprasītā lapa neeksistē. Lūdzu, pārbaudiet pārlūkprogrammas URL vai dodieties uz citu vietu, izmantojot zemāk redzamās pogas.';
$lang['error'] = 'Kļūda';
$lang['no_privileges'] = 'Nav tiesību';
$lang['no_privileges_message'] = 'Jums nav nepieciešamo tiesību, lai skatītu šo lapu. Lūdzu, pārejiet uz citu sadaļu.';
$lang['backend_calendar'] = 'Backend Calendar';
$lang['start_date_time'] = 'Sākums datums / laiks';
$lang['end_date_time'] = 'Beigu datums / laiks';
$lang['licensed_under'] = 'Licencēts saskaņā';
$lang['unexpected_issues_occurred'] = 'Radās neparedzēti jautājumi.';
$lang['service_communication_error'] = 'Lūdzu, mēģiniet vēlreiz.';
$lang['no_privileges_edit_appointments'] = 'Jums nav vajadzīgo tiesību rediģēt tikšanās.';
$lang['unavailability_updated'] = 'Pieejamība veiksmīgi atjaunināta.';
$lang['appointments'] = 'Appointments';
$lang['unexpected_warnings'] = 'Negaidīti brīdinājumi';
$lang['unexpected_warnings_message'] = 'Operācija pabeigta, bet parādījās daži brīdinājumi.';
$lang['filter'] = 'Filter';
$lang['clear'] = 'Clear';
$lang['uncategorized'] = 'Uncategorized';
$lang['username_already_exists'] = 'Lietotājvārds jau pastāv.';
$lang['password_length_notice'] = 'Parolei jābūt vismaz $number rakstzīmju garai.';
$lang['general_settings'] = 'Vispārīgie iestatījumi';
$lang['personal_information'] = 'Personīgā informācija';
$lang['system_login'] = 'Sistēmas pieteikšanās';
$lang['user_settings_are_invalid'] = 'Lietotāja iestatījumi ir nederīgi! Lūdzu, pārskatiet savus iestatījumus un mēģiniet vēlreiz.';
$lang['add_break'] = 'Pievienot pārtraukumu';
$lang['january'] = 'janvāris';
$lang['february'] = 'februāris';
$lang['march'] = 'Marts';
$lang['april'] = 'aprīlis';
$lang['may'] = 'May';
$lang['june'] = 'jūnijs';
$lang['july'] = 'jūlijs';
$lang['august'] = 'August';
$lang['september'] = 'septembris';
$lang['october'] = 'oktobris';
$lang['november'] = 'novembris';
$lang['december'] = 'decembris';
$lang['previous'] = 'Iepriekšējais';
$lang['next'] = 'Nākamais';
$lang['now'] = 'Tagad';
$lang['select_time'] = 'Select Time';
$lang['time'] = 'Time';
$lang['hour'] = 'Stunda';
$lang['minute'] = 'Minūte';
$lang['calendar_sync_completed'] = 'Kalendāra sinhronizācija veiksmīgi pabeigta.';
$lang['calendar_sync_failed'] = 'Kalendāra sinhronizācija neizdevās: Nevarēja izveidot servera savienojumu.';
$lang['select_sync_calendar'] = 'Select Calendar';
$lang['select_sync_calendar_prompt'] = 'Izvēlieties kalendāru, ar kuru vēlaties sinhronizēt savas tikšanās.';
$lang['sync_calendar_selected'] = 'Sinhronizācijas kalendārs ir veiksmīgi izvēlēts.';
$lang['oops_something_went_wrong'] = 'Oops! Kaut kas notika nepareizi.';
$lang['ea_update_success'] = 'Easy!Appointments ir veiksmīgi atjaunināts.';
$lang['require_captcha'] = 'Pieprasīt CAPTCHA';
$lang['require_captcha_hint'] = 'Ja šī funkcija ir iespējota, klientiem pirms tikšanās rezervēšanas/atjaunināšanas būs jāievada nejauši ģenerēta CAPTCHA virkne.';
$lang['captcha_is_wrong'] = 'CAPTCHA verifikācija neizdevās, mēģiniet vēlreiz.';
$lang['any_provider'] = 'Jebkurš pakalpojumu sniedzējs';
$lang['requested_hour_is_unavailable'] = 'Pieprasītā tikšanās diemžēl nav pieejama. Lūdzu, izvēlieties citu tikšanās stundu.';
$lang['customer_notifications'] = 'Klientu paziņojumi';
$lang['customer_notifications_hint'] = 'Nosaka, vai klients saņems e-pasta paziņojumus ikreiz, kad tiks mainīts kāds no viņa apmeklējumu grafikiem.';
$lang['date_format'] = 'Datuma formāts';
$lang['date_format_hint'] = 'Mainīt datuma attēlošanas formātu (D - datums, M - mēnesis, Y - gads).';
$lang['time_format'] = 'Laika formāts';
$lang['time_format_hint'] = 'Mainīt laika rādīšanas formātu (H - stundas, M - minūtes).';
$lang['first_weekday'] = 'Nedēļas pirmā diena';
$lang['first_weekday_hint'] = 'Iestatiet kalendārās nedēļas pirmo dienu.';
$lang['google_analytics_code_hint'] = 'Pievienojiet savu Google Analytics kodu, lai rezervēšanas lapās iespējotu Google Analytics izsekošanu.';
$lang['availabilities_type'] = 'Pieejamības tips';
$lang['flexible'] = 'Elastīgs';
$lang['fixed'] = 'Fiksēts';
$lang['attendants_number'] = 'Apmeklētāju numurs';
$lang['reset_working_plan'] = 'Atjaunot darba plāna noklusējuma vērtības.';
$lang['legal_contents'] = 'Juridiskais saturs';
$lang['cookie_notice'] = 'Paziņojums par sīkdatnēm';
$lang['display_cookie_notice'] = 'Display Cookie Notice';
$lang['cookie_notice_content'] = 'Paziņojuma par sīkdatnēm saturs';
$lang['terms_and_conditions'] = 'Noteikumi un nosacījumi';
$lang['display_terms_and_conditions'] = 'Rādīt noteikumus un nosacījumus';
$lang['terms_and_conditions_content'] = 'Noteikumu un nosacījumu saturs';
$lang['privacy_policy'] = 'Privātuma politika';
$lang['display_privacy_policy'] = 'Privātuma politika';
$lang['privacy_policy_content'] = 'Privātuma politikas saturs';
$lang['website_using_cookies_to_ensure_best_experience'] = 'Šajā tīmekļa vietnē tiek izmantotas sīkdatnes, lai nodrošinātu vislabāko pieredzi mūsu tīmekļa vietnē.';
$lang['read_and_agree_to_terms_and_conditions'] = 'Esmu iepazinies un piekrītu {$link}Terms & Conditions{/$link}.';
$lang['read_and_agree_to_privacy_policy'] = 'Esmu izlasījis un piekrītu {$link}Privātuma politikai{/$link}.';
$lang['delete_personal_information_hint'] = 'Noņemiet no sistēmas visas savas tikšanās un personisko informāciju.';
$lang['delete_personal_information'] = 'Dzēst personisko informāciju';
$lang['delete_personal_information_prompt'] = 'Vai esat pārliecināts, ka vēlaties dzēst savu personisko informāciju? Šo darbību nevar atcelt.';
$lang['location'] = 'Atrašanās vieta';
$lang['working_plan_exception'] = 'Darba plāna izņēmums';
$lang['working_plan_exceptions'] = 'Darba plāna izņēmumi';
$lang['working_plan_exceptions_hint'] = 'Pievienot darba plāna izņēmuma dienu ārpus darba plāna.';
$lang['new_working_plan_exception_title'] = 'Jauna darba plāna izņēmums';
$lang['working_plan_exception_saved'] = 'Darba plāna izņēmums veiksmīgi saglabāts.';
$lang['working_plan_exception_deleted'] = 'Darba plāna izņēmums veiksmīgi dzēsts.';
$lang['add_working_plan_exceptions_during_each_day'] = 'Pievienot darba plāna izņēmumus ārpus darba plāna.';
$lang['add_working_plan_exception'] = 'Pievienot darba plāna izņēmumu';
$lang['require_phone_number'] = 'Pieprasīt tālruņa numuru';
$lang['require_phone_number_hint'] = 'Ja šī funkcija ir iespējota, klientiem un lietotājiem, rezervējot tikšanos, būs jāievada klienta tālruņa numurs';
$lang['check_spam_folder'] = 'Lūdzu, pārbaudiet surogātpasta mapi, ja e-pasta vēstule nav saņemta dažu minūšu laikā.';
$lang['api_token_hint'] = 'Iestatiet slepeno žetonu, lai iespējotu uz žetonu balstītu autentifikāciju Easy!Appointments API.';
$lang['timezone'] = 'Timezone';
$lang['overwrite_existing_working_plans'] = 'Tas pārrakstīs esošos pakalpojumu sniedzēja darba plānus, vai esat pārliecināts, ka vēlaties turpināt?';
$lang['working_plans_got_updated'] = 'Visi darba plāni ir atjaunināti.';
$lang['apply_to_all_providers'] = 'Piemērot visiem pakalpojumu sniedzējiem';
$lang['display_any_provider'] = 'Rādīt jebkuru pakalpojumu sniedzēja opciju';
$lang['display_any_provider_hint'] = 'Rezervācijas lapā tiks pievienota papildu opcija, kas ļaus klientiem veikt rezervāciju, nenorādot pakalpojuma sniedzēju.';
$lang['load_more'] = 'Load More';
$lang['list'] = 'List';
$lang['default'] = 'Noklusējuma';
$lang['tabula'] = 'Tabula';
$lang['date'] = 'Date';
$lang['about'] = 'Par';
$lang['booking_settings'] = 'Rezervēšanas iestatījumi';
$lang['display'] = 'Display';
$lang['require'] = 'Pieprasīt';
$lang['color'] = 'Krāsa';
$lang['matomo_analytics_url_hint'] = 'Pievienojiet URL savam Matomo uzstādījumam, lai iespējotu Matomo izsekošanu rezervācijas lapās.';
$lang['invalid_phone'] = 'Nederīgs tālruņa numurs.';
$lang['legal'] = 'Legal';
$lang['business'] = 'Business';
$lang['account'] = 'Konts';
$lang['disable_booking'] = 'Atslēgt rezervēšanu';
$lang['disable_booking_hint'] = 'Kamēr šis iestatījums ir aktīvs, rezervēšanas lapa būs atspējota, un klienti nevarēs reģistrēt jaunas tikšanās.';
$lang['display_message'] = 'Displeja ziņojums';
$lang['booking_is_disabled'] = 'Rezervācija ir atspējota!';
$lang['appearance'] = 'Izskats';
$lang['company_logo'] = 'Uzņēmuma logotips';
$lang['company_logo_hint'] = 'Uzņēmuma logotips tiks parādīts daudzās lietotnes vietās, tostarp rezervēšanas lapā un paziņojumu e-pasta ziņojumos (attēla fails, maksimālais izmērs 2 MB).';
$lang['company_color'] = 'Uzņēmuma krāsa';
$lang['company_color_hint'] = 'Uzņēmuma krāsa tiks izmantota visā lietotnē, lai lietotne izmantotu jūsu zīmolu.';
$lang['localization'] = 'Lokalizācija';
$lang['integrācija'] = 'Integrācija';
$lang['company'] = 'Company';
$lang['remove'] = 'Noņemt';
$lang['login_button'] = 'Pieteikšanās poga';
$lang['display_login_button_hint'] = 'Nosaka, vai rezervēšanas lapā tiek rādīta pieteikšanās poga.';
$lang['private'] = 'Private';
$lang['private_hint'] = 'Privātie ieraksti netiks rādīti vai apstrādāti publiskajās lapās, piemēram, rezervēšanas lapā.';
$lang['reset'] = 'Reset';
$lang['all'] = 'All';
$lang['booking_link'] = 'Rezervēšanas saite';
$lang['add_new_event'] = 'Pievienot jaunu notikumu';
$lang['what_kind_of_event'] = 'Kādu notikumu vēlaties pievienot?';
$lang['theme'] = 'Theme';
$lang['limit_customer_access'] = 'Ierobežot klientu piekļuvi';
$lang['limit_customer_access_hint'] = 'Ja šī funkcija ir iespējota, pakalpojumu sniedzēji un sekretāri varēs piekļūt tikai tiem klientiem, ar kuriem viņiem ir norunāta tikšanās.';
$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'] = 'Nepieejamības saglabāšana';
$lang['unavailability_delete'] = 'Nepieejamība dzēst';
$lang['customer_save'] = 'Customer Save';
$lang['customer_delete'] = 'Customer Delete';
$lang['service_save'] = 'Service Save';
$lang['service_delete'] = 'Pakalpojuma dzēšana';
$lang['service_category_save'] = 'Pakalpojumu kategorijas saglabāšana';
$lang['service_category_delete'] = 'Pakalpojumu kategorijas dzēšana';
$lang['provider_save'] = 'Provider Save';
$lang['provider_delete'] = 'Provider Delete';
$lang['secretary_save'] = 'Sekretāra saglabāt';
$lang['secretary_delete'] = 'Sekretāra dzēšana';
$lang['admin_save'] = 'Admin Save';
$lang['admin_delete'] = 'Admin Delete';
$lang['options'] = 'Opcijas';
$lang['webhooks'] = 'Webhooks';
$lang['webhooks_info'] = 'Webhooks ļauj sūtīt HTTP paziņojumus ārējām tīmekļa lietojumprogrammām, reaģējot uz dažādiem lietojumprogrammas notikumiem, piemēram, tikšanās izveidošanu vai klienta atsaukšanu.';
$lang['integations_info'] = 'Integrācija ļauj izveidot trešo pušu savienojumus ar ārējām lietojumprogrammām un API.';
$lang['configure'] = 'Configure';
$lang['google_analytics'] = 'Google Analytics';
$lang['google_analytics_info'] = 'Google Analytics ļauj automātiski pievienot izsekošanas kodu un HTML iezīmējumu publiskajā lapā un izsekot visas publiskās rezervācijas sesijas.';
$lang['matomo_analytics'] = 'Matomo Analytics';
$lang['matomo_analytics_info'] = 'Matomo Analytics ļauj automātiski pievienot izsekošanas kodu un HTML iezīmējumu publiskajā lapā un izsekot visas publiskās rezervācijas sesijas.';
$lang['api'] = 'API';
$lang['api_info'] = 'API ļauj jums mijiedarboties ar visiem Easy!Appointments datiem, izmantojot HTTP protokolu un pieejamos API galapunktus, kā arī izveidot savu integrāciju.';
$lang['google_analytics_code'] = 'Google Analytics kods';
$lang['matomo_analytics_url'] = 'Matomo Analytics URL';
$lang['future_booking_limit'] = 'Nākotnes rezervācijas limits';
$lang['limit_days'] = 'Limit (Days)';
$lang['future_booking_limit_hint'] = 'Iestatiet nākotnes ierobežojumu dienās, līdz kuram klienti var veikt tikšanās, izmantojot publisko rezervēšanas lapu.';
$lang['api_token'] = 'API žetons';
$lang['allow_rescheduling_cancellation_before'] = 'Atļaut pārplānošanu/atcelšanu pirms';
$lang['at_least_one_field'] = 'Rezervācijas lapā jānorāda vismaz viens lauks.';
$lang['status'] = 'Status';
$lang['appointment_status_options'] = 'Tikšanās statusa opcijas';
$lang['appointment_status_options_info'] = 'Noteikt sarakstu ar pieejamām tikšanās statusa opcijām, ko var izmantot kalendāra lapā (pirmā automātiski kļūst par noklusējuma vērtību).';
$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'] = 'līdz';
$lang['click_to_to_toggle'] = 'Noklikšķiniet, lai pārslēgtos';
$lang['week_short'] = 'Wk';
$lang['scroll_to_increment'] = 'Ritināt, lai palielinātu';
$lang['gads'] = 'Gads';
$lang['make_non_working_day'] = 'Šis pakalpojumu sniedzējs nebūs pieejams darbam izvēlētajā dienā.';
$lang['no_breaks'] = 'Nav pārtraukumu';
$lang['service_categories'] = 'Pakalpojumu kategorijas';
$lang['service_category'] = 'Pakalpojumu kategorija';
$lang['blocked_period_saved'] = 'Bloķētais periods veiksmīgi saglabāts.';
$lang['blocked_period_deleted'] = 'Bloķētais periods veiksmīgi dzēsts.';
$lang['delete_blocked_period'] = 'Dzēst bloķēto periodu';
$lang['blocked_period'] = 'Bloķētais periods';
$lang['blocked_periods'] = 'Bloķētie periodi';
$lang['blocked_period_save'] = 'Bloķētā perioda saglabāšana';
$lang['blocked_period_delete'] = 'Bloķētā perioda dzēšana';
$lang['blocked_periods_hint'] = 'Noteikt laika periodus, kad publiski rezervējumi visiem pakalpojumu sniedzējiem būs atspējoti (piemēram, slēgšanas datumi, brīvdienas u. c.).';
$lang['custom_field'] = 'Pielāgotais lauks';
$lang['custom_fields'] = 'Custom Fields';
$lang['label'] = 'Etiķete';
$lang['webhook_saved'] = 'Webhook ir veiksmīgi saglabāts.';
$lang['webhook_deleted'] = 'Webhook veiksmīgi izdzēsts.';
$lang['delete_webhook'] = 'Delete Webhook';
$lang['contact_info'] = 'Kontaktinformācija';
$lang['hide_from_public'] = 'Paslēpt no sabiedrības';
$lang['matomo_analytics_site_id'] = 'Matomo Analytics Site ID';
$lang['matomo_analytics_site_id_hint'] = 'Iestatiet vietnes ID, ko Matomo uzraudzīs (pēc noklusējuma vietnei ir ID "1").';
$lang['default_timezone'] = 'Noklusējuma laika zona';
$lang['default_timezone_hint'] = 'Iestatiet noklusējuma laika zonas vērtību, kas tiks izmantota jauniem ierakstiem.';
$lang['default_language'] = 'Noklusējuma valoda';
$lang['default_language_hint'] = 'Iestatiet noklusējuma valodas vērtību, kas tiks izmantota jauniem ierakstiem.';
$lang['sync_method_prompt'] = 'Kuru sinhronizācijas metodi vēlaties izmantot?';
$lang['caldav_server'] = 'CalDAV Server';
$lang['caldav_connection_info_prompt'] = 'Lūdzu, ievadiet mērķa CalDAV kalendāra savienojuma informāciju.';
$lang['connect'] = 'Connect';
$lang['ldap'] = 'LDAP';
$lang['ldap_info'] = 'Šī integrācija ļauj izveidot savienojumu ar esošo LDAP serveri un automātiski importēt lietotājus programmā Easy!Appointments, kā arī ļaut viņiem veikt SSO ar direktorija paroli (lietotājvārdam jābūt vienādam).';
$lang['host'] = 'Host';
$lang['port'] = 'Port';
$lang['user_dn'] = 'Lietotāja DN';
$lang['base_dn'] = 'Bāzes DN';
$lang['keyword'] = 'Atslēgvārds';
$lang['ldap_search_hint'] = 'Norādiet atslēgvārdu, lai LDAP direktorijā meklētu lietotājus, kas atbilst filtra kritērijiem.';
$lang['ldap_extension_not_loaded'] = 'LDAP PHP paplašinājums nav ielādēts, bet ir nepieciešams, lai šī integrācija darbotos.';
$lang['field_mapping'] = 'Field Mapping';
$lang['content'] = 'Saturs';
$lang['active'] = 'Active';
$lang['user_imported'] = 'Lietotāja ieraksts tika veiksmīgi importēts.';
$lang['import'] = 'Importēt';
$lang['ldap_dn'] = 'LDAP DN';
$lang['role'] = 'Role';
$lang['at_least_one_field_required'] = 'Rezervācijas lapā vismaz vienam laukam jābūt iestatītam kā obligātam.';
$lang['customer_is_already_booked'] = 'Šim klientam jau ir norunāta tikšanās pieprasītā rezervācijas perioda laikā.';
$lang['fields'] = 'Lauki';
$lang['invalid_credentials_provided'] = 'Sniegti nepareizi akreditācijas dati, lūdzu, mēģiniet vēlreiz.';
$lang['calendar_url'] = 'Kalendāra URL';
$lang['please_select'] = 'Lūdzu, izvēlieties';
// 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.';

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,486 @@
<?php defined('BASEPATH') or exit('No direct script access allowed');
// Lithuanian
$lang['page_title'] = 'Užsakyti susitikimą su';
$lang['service_and_provider'] = 'Paslauga ir paslaugų teikėjas';
$lang['select_service'] = 'Pasirinkite paslaugą';
$lang['select_provider'] = 'Pasirinkti teikėją';
$lang['duration'] = 'Trukmė';
$lang['minutes'] = 'Minutės';
$lang['price'] = 'Kaina';
$lang['back'] = 'Atgal';
$lang['appointment_date_and_time'] = 'Paskyrimo data ir laikas';
$lang['no_available_hours'] = 'Pasirinktą datą nėra laisvų susitikimo valandų. Prašome pasirinkti kitą datą.';
$lang['appointment_hour_missing'] = 'Prieš tęsdami pasirinkite susitikimo valandą.';
$lang['customer_information'] = 'Kliento informacija';
$lang['first_name'] = 'Vardas';
$lang['last_name'] = 'Pavardė';
$lang['email'] = 'El. paštas';
$lang['phone_number'] = 'Telefono numeris';
$lang['phone'] = 'Telefonas';
$lang['address'] = 'Adresas';
$lang['city'] = 'Miestas';
$lang['zip_code'] = 'Zip Code';
$lang['notes'] = 'Notes';
$lang['language'] = 'Kalba';
$lang['no_language'] = 'Nėra kalbos';
$lang['fields_are_required'] = 'Laukai su * yra privalomi.';
$lang['appointment_confirmation'] = 'Paskyrimo patvirtinimas';
$lang['confirm'] = 'Patvirtinti';
$lang['update'] = 'Atnaujinti';
$lang['cancel_appointment_hint'] = 'Paspauskite mygtuką "Cancel", kad pašalintumėte susitikimą iš įmonės tvarkaraščio.';
$lang['cancel'] = 'Atšaukti';
$lang['appointment_registered'] = 'Jūsų susitikimas sėkmingai užregistruotas!';
$lang['cancel_appointment_title'] = 'Atšaukti susitikimą';
$lang['appointment_cancelled'] = 'Jūsų susitikimas sėkmingai atšauktas.';
$lang['appointment_cancelled_title'] = 'Paskyrimas atšauktas';
$lang['reason'] = 'Priežastis';
$lang['appointment_removed_from_schedule'] = 'Iš įmonės tvarkaraščio buvo pašalintas šis susitikimas.';
$lang['appointment_details_was_sent_to_you'] = 'Jums buvo išsiųstas el. laiškas su susitikimo informacija.';
$lang['add_to_google_calendar'] = 'Įtraukti į "Google" kalendorių';
$lang['appointment_booked'] = 'Jūsų susitikimas sėkmingai rezervuotas';
$lang['thank_you_for_appointment'] = 'Dėkojame, kad susitarėte dėl susitikimo su mumis. Žemiau galite pamatyti susitikimo informaciją. Pakeitimus atlikite spustelėję susitikimo nuorodą.';
$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'] = 'Vardas';
$lang['appointment_link_title'] = 'Paskyrimo nuoroda';
$lang['success'] = 'Sėkmė';
$lang['appointment_added_to_your_plan'] = 'Į jūsų planą įtrauktas naujas susitikimas.';
$lang['appointment_link_description'] = 'Paspaudę toliau esančią paskyrimo nuorodą, galite atlikti pakeitimus.';
$lang['appointment_locked'] = 'Pakeisti neįmanoma!';
$lang['appointment_locked_message'] = 'Susitikimo negalima keisti likus mažiau nei {$limit} valandų iki susitikimo.';
$lang['appointment_not_found'] = 'Paskyrimas nerastas';
$lang['appointment_does_not_exist_in_db'] = 'Jūsų prašomo susitikimo nebėra sistemos duomenų bazėje.';
$lang['display_calendar'] = 'Rodyti kalendorių';
$lang['calendar'] = 'Kalendorius';
$lang['users'] = 'Users';
$lang['settings'] = 'Nustatymai';
$lang['log_out'] = 'Atsijungti';
$lang['synchronize'] = 'Sinchronizuoti';
$lang['enable_sync'] = 'Įjungti sinchronizavimą';
$lang['disable_sync'] = 'Išjungti sinchronizavimą';
$lang['disable_sync_prompt'] = 'Ar tikrai norite išjungti kalendoriaus sinchronizavimą?';
$lang['reload'] = 'Perkrauti';
$lang['appointment'] = 'Paskyrimas';
$lang['unavailability'] = 'Nepasiekiamumas';
$lang['week'] = 'Savaitė';
$lang['month'] = 'Mėnuo';
$lang['today'] = 'Šiandien';
$lang['not_working'] = 'Neveikia';
$lang['break'] = 'Pertrauka';
$lang['add'] = 'Add';
$lang['edit'] = 'Redaguoti';
$lang['hello'] = 'Hello';
$lang['all_day'] = 'Visa diena';
$lang['manage_appointment_record_hint'] = 'Tvarkykite visus turimų paslaugų teikėjų ir paslaugų paskyrimų įrašus.';
$lang['select_filter_item_hint'] = 'Pasirinkite paslaugų teikėją arba paslaugą ir peržiūrėkite susitikimus kalendoriuje.';
$lang['enable_appointment_sync_hint'] = 'Įjungti susitikimų sinchronizavimą su išoriniu kalendoriumi.';
$lang['manage_customers_hint'] = 'Tvarkykite registruotus klientus ir peržiūrėkite jų užsakymų istoriją.';
$lang['manage_services_hint'] = 'Tvarkykite galimas sistemos paslaugas ir kategorijas.';
$lang['manage_users_hint'] = 'Tvarkykite galinius naudotojus (administratorius, paslaugų teikėjus, sekretorius).';
$lang['settings_hint'] = 'Nustatyti sistemos ir naudotojo nustatymus.';
$lang['log_out_hint'] = 'Atsijungti nuo sistemos.';
$lang['unavailability_periods_hint'] = 'Neprieinamumo laikotarpiais paslaugų teikėjas nepriima naujų paskyrimų.';
$lang['new_appointment_hint'] = 'Sukurti naują susitikimą ir įrašyti jį į duomenų bazę.';
$lang['reload_appointments_hint'] = 'Perkrauti kalendoriaus susitikimus.';
$lang['trigger_sync_hint'] = 'Įjungti kalendoriaus sinchronizavimo procesą.';
$lang['appointment_updated'] = 'Paskyrimas sėkmingai atnaujintas.';
$lang['undo'] = 'Atšaukti';
$lang['appointment_details_changed'] = 'Paskyrimo duomenys pasikeitė';
$lang['appointment_changes_saved'] = 'Paskyrimo pakeitimai sėkmingai išsaugoti.';
$lang['save'] = 'Išsaugoti';
$lang['new'] = 'New';
$lang['select'] = 'Select';
$lang['hide'] = 'Paslėpti';
$lang['type_to_filter_customers'] = 'Tipas, kuriuo filtruojami klientai.';
$lang['clear_fields_add_existing_customer_hint'] = 'Išvalykite laukus ir įveskite naują klientą.';
$lang['pick_existing_customer_hint'] = 'Pasirinkite esamą klientą.';
$lang['new_appointment_title'] = 'Naujas paskyrimas';
$lang['edit_appointment_title'] = 'Redaguoti paskyrimą';
$lang['delete_appointment_title'] = 'Ištrinti paskyrimą';
$lang['write_appointment_removal_reason'] = 'Prašome skirti minutę ir parašyti priežastį, dėl kurios naikinate susitikimą:';
$lang['appointment_saved'] = 'Paskyrimas sėkmingai išsaugotas.';
$lang['new_unavailability_title'] = 'Naujas neprieinamumas';
$lang['edit_unavailability_title'] = 'Redaguoti nepasiekiamumą';
$lang['unavailability_saved'] = 'Sėkmingai išsaugotas neprieinamumas.';
$lang['start_date_before_end_error'] = 'Pradžios datos reikšmė yra vėlesnė už pabaigos datą.';
$lang['invalid_duration'] = 'Negaliojanti trukmė.';
$lang['invalid_email'] = 'Negaliojantis el. pašto adresas.';
$lang['customers'] = 'Customers';
$lang['details'] = 'Details';
$lang['no_records_found'] = 'Įrašų nerasta...';
$lang['services'] = 'Paslaugos';
$lang['duration_minutes'] = 'Trukmė (minutėmis)';
$lang['currency'] = 'Valiuta';
$lang['category'] = 'Kategorija';
$lang['no_category'] = 'Nėra kategorijos';
$lang['description'] = 'Aprašymas';
$lang['categories'] = 'Kategorijos';
$lang['admins'] = 'Admins';
$lang['providers'] = 'Providers';
$lang['secretaries'] = 'Sekretoriai';
$lang['mobile_number'] = 'Mobilusis numeris';
$lang['mobile'] = 'Mobile';
$lang['state'] = 'State';
$lang['username'] = 'Vartotojo vardas';
$lang['password'] = 'Slaptažodis';
$lang['retype_password'] = 'Retype Password';
$lang['receive_notifications'] = 'Gauti pranešimus';
$lang['passwords_mismatch'] = 'Nesutampa slaptažodžiai.';
$lang['admin_saved'] = 'Administratorius sėkmingai išsaugotas.';
$lang['provider_saved'] = 'Teikėjas sėkmingai išsaugotas.';
$lang['secretary_saved'] = 'Sekretorė sėkmingai išsaugota.';
$lang['admin_deleted'] = 'Administratorius sėkmingai ištrintas.';
$lang['provider_deleted'] = 'Teikėjas sėkmingai ištrintas.';
$lang['secretary_deleted'] = 'Sekretorė sėkmingai ištrinta.';
$lang['service_saved'] = 'Paslauga sėkmingai išsaugota.';
$lang['service_category_saved'] = 'Paslaugų kategorija sėkmingai išsaugota.';
$lang['service_deleted'] = 'Paslauga sėkmingai pašalinta.';
$lang['service_category_deleted'] = 'Paslaugų kategorija sėkmingai ištrinta.';
$lang['customer_saved'] = 'Klientas sėkmingai išsaugotas.';
$lang['customer_deleted'] = 'Klientas sėkmingai ištrintas.';
$lang['current_view'] = 'Dabartinis vaizdas';
$lang['working_plan'] = 'Darbo planas';
$lang['reset_plan'] = 'Iš naujo nustatyti planą';
$lang['monday'] = 'Pirmadienis';
$lang['tuesday'] = 'Antradienis';
$lang['wednesday'] = 'Trečiadienis';
$lang['thursday'] = 'Ketvirtadienis';
$lang['friday'] = 'Penktadienis';
$lang['saturday'] = 'šeštadienis';
$lang['sunday'] = 'sekmadienis';
$lang['breaks'] = 'Breaks';
$lang['add_breaks_during_each_day'] = 'Pridėti darbo pertraukas per kiekvieną dieną. Pertraukų metu paslaugų teikėjas nepriims jokių susitikimų.';
$lang['day'] = 'Diena';
$lang['days'] = 'Days';
$lang['actions'] = 'Actions';
$lang['reset_working_plan_hint'] = 'Atstatykite darbo plano numatytąsias reikšmes.';
$lang['company_name'] = 'Įmonės pavadinimas';
$lang['company_name_hint'] = 'Įmonės pavadinimas bus rodomas visur sistemoje (privaloma).';
$lang['company_email'] = 'Įmonės el. paštas';
$lang['company_email_hint'] = 'Tai bus įmonės el. pašto adresas. Jis bus naudojamas kaip sisteminių el. laiškų siuntėjo ir atsakymo adresas (privalomas).';
$lang['company_link'] = 'Company Link';
$lang['company_link_hint'] = 'Įmonės nuoroda turėtų nukreipti į oficialią įmonės svetainę (privaloma).';
$lang['go_to_booking_page'] = 'Eiti į užsakymo puslapį';
$lang['settings_saved'] = 'Nustatymai sėkmingai išsaugoti.';
$lang['general'] = 'General';
$lang['booking'] = 'Booking';
$lang['visible'] = 'Visible';
$lang['hidden'] = 'Paslėpta';
$lang['business_logic'] = 'Verslo logika';
$lang['current_user'] = 'Dabartinis naudotojas';
$lang['about_app'] = 'Apie Easy!Appointments';
$lang['edit_working_plan_hint'] = 'Pažymėkite žemiau dienas ir valandas, kuriomis jūsų įmonė priims susitikimus. Galėsite koreguoti susitikimus ne darbo valandomis, tačiau klientai negalės patys užsisakyti susitikimų ne darbo valandomis. Šis darbo planas bus numatytasis kiekvienam naujam paslaugų teikėjo įrašui, tačiau kiekvieno paslaugų teikėjo planą galėsite keisti atskirai, redaguodami jo įrašą. Po to galėsite pridėti pertraukų laikotarpius.';
$lang['edit_breaks_hint'] = 'Pridėkite kiekvienos dienos darbo pertraukas. Šios pertraukos bus taikomos visiems naujiems paslaugų teikėjams.';
$lang['book_advance_timeout'] = 'Book Advance Timeout';
$lang['book_advance_timeout_hint'] = 'Nustatykite laiko tarpą (minutėmis), per kurį klientai gali rezervuoti arba perplanuoti susitikimus su įmone.';
$lang['timeout_minutes'] = 'Timeout (Minutes)';
$lang['about_app_info'] = 'Easy!Appointments - tai labai lengvai pritaikoma žiniatinklio programa, leidžianti jūsų klientams užsisakyti susitikimus su jumis internetu. Be to, ji suteikia galimybę sinchronizuoti duomenis su "Google" kalendoriumi, todėl galite juos naudoti su kitomis paslaugomis.';
$lang['current_version'] = 'Dabartinė versija';
$lang['support'] = 'Support';
$lang['about_app_support'] = 'Jei naudodamiesi "Easy!Appointments" susidursite su kokiomis nors problemomis, atsakymų galite ieškoti oficialioje "Google" grupėje. Taip pat gali tekti sukurti naują problemą "Google Code" puslapyje, kad padėtumėte vystyti programą.';
$lang['official_website'] = 'Oficiali svetainė';
$lang['google_plus_community'] = 'Google+ bendruomenė';
$lang['support_group'] = 'Paramos grupė';
$lang['project_issues'] = 'Projekto klausimai';
$lang['license'] = 'Licencija';
$lang['about_app_license'] = 'Easy!Appointments yra licencijuota pagal GPLv3 licenciją. Bet kokiu būdu naudodami Easy!Appointments kodą, jūs sutinkate su sąlygomis, aprašytomis šiame url adrese:';
$lang['logout_success'] = 'Jūs sėkmingai atsijungėte! Norėdami pereiti į kitą puslapį, spustelėkite vieną iš toliau nurodytų mygtukų.';
$lang['book_appointment_title'] = 'Book Appointment';
$lang['backend_section'] = 'Backend Section';
$lang['you_need_to_login'] = 'Sveiki atvykę! Norint peržiūrėti galinius puslapius, reikia prisijungti.';
$lang['enter_username_here'] = 'Įveskite savo vartotojo vardą čia ...';
$lang['enter_password_here'] = 'Įveskite slaptažodį čia ...';
$lang['login'] = 'Login';
$lang['forgot_your_password'] = 'Pamiršote slaptažodį?';
$lang['login_failed'] = 'Prisijungti nepavyko, įveskite teisingus duomenis ir bandykite dar kartą.';
$lang['type_username_and_email_for_new_password'] = 'Įveskite savo vartotojo vardą ir el. pašto adresą, kad gautumėte naują slaptažodį.';
$lang['enter_email_here'] = 'Įveskite savo el. pašto adresą čia ...';
$lang['regenerate_password'] = 'Regeneruoti slaptažodį';
$lang['go_to_login'] = 'Grįžti į prisijungimo puslapį';
$lang['new_password_sent_with_email'] = 'Naujas slaptažodis buvo išsiųstas kartu su el. paštu.';
$lang['new_account_password'] = 'Naujas paskyros slaptažodis';
$lang['new_password_is'] = 'Jūsų naujas paskyros slaptažodis yra $password. Išsaugokite šį el. laišką, kad prireikus galėtumėte atkurti slaptažodį. Šį slaptažodį taip pat galite pakeisti nauju slaptažodžiu nustatymų puslapyje.';
$lang['delete_record_prompt'] = 'Ar tikrai norite ištrinti šį įrašą? Šio veiksmo atšaukti negalima.';
$lang['delete_admin'] = 'Ištrinti administratorių';
$lang['delete_customer'] = 'Ištrinti klientą';
$lang['delete_service'] = 'Ištrinti paslaugą';
$lang['delete_service_category'] = 'Ištrinti paslaugų kategoriją';
$lang['delete_provider'] = 'Ištrinti teikėją';
$lang['delete_secretary'] = 'Ištrinti sekretorę';
$lang['delete_appointment'] = 'Ištrinti paskyrimą';
$lang['delete_unavailability'] = 'Ištrinti neprieinamumą';
$lang['delete'] = 'Ištrinti';
$lang['unexpected_issues'] = 'Netikėtos problemos';
$lang['unexpected_issues_message'] = 'Operacija negalėjo būti baigta dėl nenumatytų priežasčių.';
$lang['close'] = 'Uždaryti';
$lang['page_not_found'] = 'Puslapis nerastas';
$lang['page_not_found_message'] = 'Deja, prašomas puslapis neegzistuoja. Patikrinkite savo naršyklės URL arba pereikite į kitą vietą naudodamiesi toliau nurodytais mygtukais.';
$lang['error'] = 'Klaida';
$lang['no_privileges'] = 'Nėra teisių';
$lang['no_privileges_message'] = 'Jūs neturite reikiamų teisių peržiūrėti šį puslapį. Prašome pereiti į kitą skyrių.';
$lang['backend_calendar'] = 'Backend Calendar';
$lang['start_date_time'] = 'Pradžios data / laikas';
$lang['end_date_time'] = 'Pabaigos data / laikas';
$lang['licensed_under'] = 'Licencijuota pagal';
$lang['unexpected_issues_occurred'] = 'Atsirado netikėtų problemų.';
$lang['service_communication_error'] = 'Įvyko serverio ryšio klaida, bandykite dar kartą.';
$lang['no_privileges_edit_appointments'] = 'Jūs neturite reikiamų teisių redaguoti susitikimus.';
$lang['unavailability_updated'] = 'Sėkmingai atnaujintas neprieinamumas.';
$lang['appointments'] = 'Appointments';
$lang['unexpected_warnings'] = 'Netikėti įspėjimai';
$lang['unexpected_warnings_message'] = 'Operacija baigta, bet pasirodė keletas įspėjimų.';
$lang['filter'] = 'Filtras';
$lang['clear'] = 'Clear';
$lang['uncategorized'] = 'Uncategorized';
$lang['username_already_exists'] = 'Vartotojo vardas jau egzistuoja.';
$lang['password_length_notice'] = 'Slaptažodis turi būti ne trumpesnis nei $number simbolių.';
$lang['general_settings'] = 'Bendrieji nustatymai';
$lang['personal_information'] = 'Asmeninė informacija';
$lang['system_login'] = 'Sistemos prisijungimas';
$lang['user_settings_are_invalid'] = 'Naudotojo nustatymai negalioja! Peržiūrėkite savo nustatymus ir bandykite dar kartą.';
$lang['add_break'] = 'Pridėti pertrauką';
$lang['january'] = 'Sausis';
$lang['february'] = 'February';
$lang['march'] = 'Kovas';
$lang['april'] = 'April';
$lang['may'] = 'May';
$lang['june'] = 'June';
$lang['july'] = 'Liepa';
$lang['august'] = 'Rugpjūtis';
$lang['september'] = 'Rugsėjis';
$lang['october'] = 'spalio';
$lang['november'] = 'November';
$lang['december'] = 'Gruodis';
$lang['previous'] = 'Ankstesnis';
$lang['next'] = 'Next';
$lang['now'] = 'Dabar';
$lang['select_time'] = 'Pasirinkimo laikas';
$lang['time'] = 'Laikas';
$lang['hour'] = 'Valanda';
$lang['minute'] = 'Minutė';
$lang['calendar_sync_completed'] = 'Kalendoriaus sinchronizavimas sėkmingai baigtas.';
$lang['calendar_sync_failed'] = 'Kalendoriaus sinchronizavimas nepavyko: Nepavyko užmegzti ryšio su serveriu.';
$lang['select_sync_calendar'] = 'Pasirinkti kalendorių';
$lang['select_sync_calendar_prompt'] = 'Pasirinkite kalendorių, su kuriuo norite sinchronizuoti susitikimus.';
$lang['sync_calendar_selected'] = 'Sėkmingai pasirinktas sinchronizavimo kalendorius.';
$lang['oops_something_went_wrong'] = 'Oops! Something Wenthing Went Wrong.';
$lang['ea_update_success'] = 'Easy!Appointments sėkmingai atnaujinta.';
$lang['require_captcha'] = 'Reikalauti CAPTCHA';
$lang['require_captcha_hint'] = 'Kai ši funkcija įjungta, prieš užsakydami/atnaujindami susitikimą klientai turės įvesti atsitiktinai sugeneruotą CAPTCHA eilutę.';
$lang['captcha_is_wrong'] = 'CAPTCHA patikra nepavyko, bandykite dar kartą.';
$lang['any_provider'] = 'Bet kuris teikėjas';
$lang['requested_hour_is_unavailable'] = 'Prašomas susitikimas, deja, nepasiekiamas. Prašome pasirinkti kitą susitikimo valandą.';
$lang['customer_notifications'] = 'Klientų pranešimai';
$lang['customer_notifications_hint'] = 'Nustato, ar klientas gaus pranešimus el. paštu, kai pasikeis vieno iš jo susitikimų tvarkaraštis.';
$lang['date_format'] = 'Datos formatas';
$lang['date_format_hint'] = 'Pakeiskite datos rodymo formatą (D - data, M - mėnuo, Y - metai).';
$lang['time_format'] = 'Laiko formatas';
$lang['time_format_hint'] = 'Pakeiskite laiko rodymo formatą (H - valandos, M - minutės).';
$lang['first_weekday'] = 'Pirmoji savaitės diena';
$lang['first_weekday_hint'] = 'Nustatykite pirmąją kalendorinės savaitės dieną.';
$lang['google_analytics_code_hint'] = 'Įtraukite "Google Analytics" kodą, kad užsakymo puslapiuose būtų įjungtas "Google Analytics" stebėjimas.';
$lang['availabilities_type'] = 'Availabilities Type';
$lang['flexible'] = 'Lankstus';
$lang['fixed'] = 'Fixed';
$lang['attendants_number'] = 'Dalyvių numeris';
$lang['reset_working_plan'] = 'Atstatyti darbo plano numatytąsias reikšmes.';
$lang['legal_contents'] = 'Teisinis turinys';
$lang['cookie_notice'] = 'Pranešimas apie slapukus';
$lang['display_cookie_notice'] = 'Rodyti pranešimą apie slapukus';
$lang['cookie_notice_content'] = 'Pranešimo apie slapukus turinys';
$lang['terms_and_conditions'] = 'Terminai ir sąlygos';
$lang['display_terms_and_conditions'] = 'Rodyti sąlygas ir terminus';
$lang['terms_and_conditions_content'] = 'Sąlygų turinys';
$lang['privacy_policy'] = 'Privatumo politika';
$lang['display_privacy_policy'] = 'Rodyti privatumo politiką';
$lang['privacy_policy_content'] = 'Privatumo politikos turinys';
$lang['website_using_cookies_to_ensure_best_experience'] = 'Šioje svetainėje naudojami slapukai, kad užtikrintume geriausią patirtį mūsų svetainėje.';
$lang['read_and_agree_to_terms_and_conditions'] = 'Aš perskaičiau ir sutinku su {$link}Terms & Conditions{/$link}.';
$lang['read_and_agree_to_privacy_policy'] = 'Aš perskaičiau ir sutinku su {$link}Privatumo politika{/$link}.';
$lang['delete_personal_information_hint'] = 'Pašalinkite iš sistemos visus savo susitikimus ir asmeninę informaciją.';
$lang['delete_personal_information'] = 'Ištrinti asmeninę informaciją';
$lang['delete_personal_information_prompt'] = 'Ar tikrai norite ištrinti savo asmeninę informaciją? Šio veiksmo atšaukti negalima.';
$lang['location'] = 'Location';
$lang['working_plan_exception'] = 'Darbo plano išimtis';
$lang['working_plan_exceptions'] = 'Darbo plano išimtys';
$lang['working_plan_exceptions_hint'] = 'Pridėti darbo plano išimties dieną, nepriklausančią darbo planui.';
$lang['new_working_plan_exception_title'] = 'Nauja darbo plano išimtis';
$lang['working_plan_exception_saved'] = 'Darbo plano išimtis sėkmingai išsaugota.';
$lang['working_plan_exception_deleted'] = 'Darbo plano išimtis sėkmingai pašalinta.';
$lang['add_working_plan_exceptions_during_each_day'] = 'Pridėti darbo plano išimtis ne pagal darbo planą.';
$lang['add_working_plan_exception'] = 'Pridėti darbo plano išimtį';
$lang['require_phone_number'] = 'Reikalauti telefono numerio';
$lang['require_phone_number_hint'] = 'Kai funkcija įjungta, užsakydami susitikimą klientai ir naudotojai turės įvesti kliento telefono numerį';
$lang['check_spam_folder'] = 'Prašome patikrinti nepageidaujamų laiškų aplanką, jei laiškas negautas per kelias minutes.';
$lang['api_token_hint'] = 'Nustatykite slaptą simbolį, kad įjungtumėte "Easy!Appointments" API autentifikavimą pagal simbolį.';
$lang['timezone'] = 'Timezone';
$lang['overwrite_existing_working_plans'] = 'Tai perrašys esamus paslaugų teikėjo darbo planus, ar tikrai norite tęsti?';
$lang['working_plans_got_updated'] = 'Visi darbo planai atnaujinti.';
$lang['apply_to_all_providers'] = 'Taikyti visiems paslaugų teikėjams';
$lang['display_any_provider'] = 'Rodyti bet kurio teikėjo parinktį';
$lang['display_any_provider_hint'] = 'Užsakymo puslapyje atsiras papildoma parinktis, leidžianti klientams užsisakyti nenurodant paslaugų teikėjo.';
$lang['load_more'] = 'Įkelti daugiau';
$lang['list'] = 'List';
$lang['default'] = 'Numatytoji';
$lang['table'] = 'Table';
$lang['date'] = 'Data';
$lang['about'] = 'Apie';
$lang['booking_settings'] = 'Booking Settings';
$lang['display'] = 'Display';
$lang['require'] = 'Reikalauti';
$lang['color'] = 'Spalva';
$lang['matomo_analytics_url_hint'] = 'Pridėkite URL adresą prie savo "Matomo" įrenginio, kad įjungtumėte "Matomo" stebėjimą užsakymo puslapiuose.';
$lang['invalid_phone'] = 'Netinkamas telefono numeris.';
$lang['legal'] = 'Legal';
$lang['business'] = 'Verslas';
$lang['account'] = 'Account';
$lang['disable_booking'] = 'Išjungti rezervavimą';
$lang['disable_booking_hint'] = 'Rezervavimo puslapis bus išjungtas tol, kol šis nustatymas bus aktyvus, ir klientai negalės registruoti naujų susitikimų.';
$lang['display_message'] = 'Rodyti pranešimą';
$lang['booking_is_disabled'] = 'Rezervavimas yra išjungtas!';
$lang['appearance'] = 'Išvaizda';
$lang['company_logo'] = 'Įmonės logotipas';
$lang['company_logo_hint'] = 'Įmonės logotipas bus rodomas daugelyje programėlės vietų, įskaitant užsakymo puslapį ir pranešimų el. laiškus (paveikslėlio failas, ne daugiau kaip 2 MB).';
$lang['company_color'] = 'Įmonės spalva';
$lang['company_color_hint'] = 'Įmonės spalva bus taikoma visoje programoje, kad programa naudotų jūsų prekės ženklą.';
$lang['localization'] = 'Lokalizacija';
$lang['integrations'] = 'Integrations';
$lang['company'] = 'Company';
$lang['remove'] = 'Pašalinti';
$lang['login_button'] = 'Prisijungimo mygtukas';
$lang['display_login_button_hint'] = 'Nustato, ar užsakymo puslapyje rodomas prisijungimo mygtukas.';
$lang['private'] = 'Private';
$lang['private_hint'] = 'Viešuose puslapiuose, pavyzdžiui, užsakymo puslapyje, privatūs įrašai nebus rodomi ir apdorojami.';
$lang['reset'] = 'Reset';
$lang['all'] = 'All';
$lang['booking_link'] = 'Booking Link';
$lang['add_new_event'] = 'Pridėti naują įvykį';
$lang['what_kind_of_event'] = 'Kokio pobūdžio įvykį norėtumėte pridėti?';
$lang['theme'] = 'Tema';
$lang['limit_customer_access'] = 'Apriboti klientų prieigą';
$lang['limit_customer_access_hint'] = 'Jei įjungta, paslaugų teikėjai ir sekretorės galės pasiekti tik tuos klientus, su kuriais yra susitarę dėl susitikimo.';
$lang['url'] = 'URL';
$lang['secret_token'] = 'Slaptas žetonas';
$lang['verify_ssl'] = 'Patikrinti SSL';
$lang['appointment_save'] = 'Appointment Save';
$lang['appointment_delete'] = 'Paskyrimo ištrynimas';
$lang['unavailability_save'] = 'Nepasiekiamumo išsaugojimas';
$lang['unavailability_delete'] = 'Nepasiekiamumo pašalinimas';
$lang['customer_save'] = 'Customer Save';
$lang['customer_delete'] = 'Customer Delete';
$lang['service_save'] = 'Service Save';
$lang['service_delete'] = 'Paslaugos ištrynimas';
$lang['service_category_save'] = 'Paslaugų kategorijos išsaugojimas';
$lang['service_category_delete'] = 'Paslaugų kategorijos ištrynimas';
$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 leidžia siųsti HTTP pranešimus išorinėms žiniatinklio programoms, reaguojant į įvairius programos įvykius, pvz., susitikimo sukūrimą arba kliento pašalinimą.';
$lang['integrations_info'] = 'Integracijos leidžia užmegzti trečiųjų šalių ryšius su išorinėmis programomis ir API.';
$lang['configure'] = 'Konfigūruoti';
$lang['google_analytics'] = 'Google Analytics';
$lang['google_analytics_info'] = 'Google Analytics leidžia automatiškai pridėti stebėjimo kodą ir HTML žymėjimą į viešąjį puslapį ir sekti visas viešąsias užsakymo sesijas.';
$lang['matomo_analytics'] = 'Matomo Analytics';
$lang['matomo_analytics_info'] = 'Matomo Analytics leidžia automatiškai pridėti sekimo kodą ir HTML žymą į viešąjį puslapį ir sekti visas viešąsias užsakymo sesijas.';
$lang['api'] = 'API';
$lang['api_info'] = 'API leidžia jums bendrauti su visais "Easy!Appointments" duomenimis per HTTP protokolą ir galimus API galinius taškus bei kurti savo integracijas.';
$lang['google_analytics_code'] = 'Google Analytics kodas';
$lang['matomo_analytics_url'] = 'Matomo Analytics URL';
$lang['future_booking_limit'] = 'Ateities užsakymų limitas';
$lang['limit_days'] = 'Limitas (dienos)';
$lang['future_booking_limit_hint'] = 'Nustatykite būsimą dienų limitą, per kurį klientai gali rezervuoti susitikimus viešajame užsakymo puslapyje.';
$lang['api_token'] = 'API žetonas';
$lang['allow_rescheduling_cancellation_before'] = 'Leisti iš naujo planuoti/atšaukti prieš';
$lang['at_least_one_field'] = 'Užsakymo puslapyje turi būti rodomas bent vienas laukas.';
$lang['status'] = 'Status';
$lang['appointment_status_options'] = 'Paskyrimo būsenos parinktys';
$lang['appointment_status_options_info'] = 'Nustatykite galimų paskyrimo būsenos parinkčių, kurias galima naudoti kalendoriaus puslapyje, sąrašą (pirmoji parinktis automatiškai taps numatytąja reikšme).';
$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'] = 'iki';
$lang['click_to_to_toggle'] = 'Click To Toggle';
$lang['week_short'] = 'Wk';
$lang['scroll_to_increment'] = 'Slinkti į didinimą';
$lang['year'] = 'Metai';
$lang['make_non_working_day'] = 'Šis paslaugų teikėjas negalės dirbti pasirinktą dieną.';
$lang['no_breaks'] = 'Be pertraukų';
$lang['service_categories'] = 'Paslaugų kategorijos';
$lang['service_category'] = 'Paslaugų kategorija';
$lang['blocked_period_saved'] = 'Blokuotas laikotarpis sėkmingai išsaugotas.';
$lang['blocked_period_deleted'] = 'Blokuotas laikotarpis sėkmingai ištrintas.';
$lang['delete_blocked_period'] = 'Ištrinti užblokuotą laikotarpį';
$lang['blocked_period'] = 'Blokuotas laikotarpis';
$lang['blocked_periods'] = 'Blokuoti laikotarpiai';
$lang['blocked_period_save'] = 'Blocked Period Save';
$lang['blocked_period_delete'] = 'Blokuoto laikotarpio ištrynimas';
$lang['blocked_periods_hint'] = 'Apibrėžkite laikotarpius, kai viešos rezervacijos bus neleidžiamos visiems paslaugų teikėjams (pvz., uždarymo datos, šventės ir pan.).';
$lang['custom_field'] = 'Pasirinktinis laukas';
$lang['custom_fields'] = 'Custom Fields';
$lang['label'] = 'Label';
$lang['webhook_saved'] = 'Webhook_saved sėkmingai išsaugotas.';
$lang['webhook_deleted'] = 'Webhook ištrintas sėkmingai.';
$lang['delete_webhook'] = 'Delete Webhook';
$lang['contact_info'] = 'Kontaktinė informacija';
$lang['hide_from_public'] = 'Paslėpti nuo visuomenės';
$lang['matomo_analytics_site_id'] = 'Matomo Analytics svetainės ID';
$lang['matomo_analytics_site_id_hint'] = 'Nustatykite svetainės ID, kurį stebės "Matomo" (numatytoji svetainė turi ID "1").';
$lang['default_timezone'] = 'Numatytoji laiko juosta';
$lang['default_timezone_hint'] = 'Nustatykite numatytąją laiko juostos reikšmę, kuri bus naudojama naujiems įrašams.';
$lang['default_language'] = 'Numatytoji kalba';
$lang['default_language_hint'] = 'Nustatykite numatytąją kalbos reikšmę, kuri bus naudojama naujiems įrašams.';
$lang['sync_method_prompt'] = 'Kurį sinchronizavimo metodą norite naudoti?';
$lang['caldav_server'] = 'CalDAV serveris';
$lang['caldav_connection_info_prompt'] = 'Įveskite tikslinio CalDAV kalendoriaus ryšio informaciją.';
$lang['connect'] = 'Connect';
$lang['ldap'] = 'LDAP';
$lang['ldap_info'] = 'Ši integracija leidžia prisijungti prie esamo LDAP serverio ir automatiškai importuoti naudotojus į "Easy!Appointments" bei leisti jiems SSO su jų katalogo slaptažodžiu (naudotojo vardas turi sutapti).';
$lang['host'] = 'Host';
$lang['port'] = 'Port';
$lang['user_dn'] = 'Vartotojo DN';
$lang['base_dn'] = 'Bazinis DN';
$lang['keyword'] = 'Keyword';
$lang['ldap_search_hint'] = 'Pateikite raktinį žodį, pagal kurį LDAP kataloge bus ieškoma naudotojų, atitinkančių filtro kriterijus.';
$lang['ldap_extension_not_loaded'] = 'LDAP PHP plėtinys nėra įkeltas, tačiau jis reikalingas, kad ši integracija veiktų.';
$lang['field_mapping'] = 'Field Mapping';
$lang['content'] = 'Turinys';
$lang['active'] = 'Active';
$lang['user_imported'] = 'Vartotojo įrašas sėkmingai importuotas.';
$lang['import'] = 'Import';
$lang['ldap_dn'] = 'LDAP DN';
$lang['role'] = 'Role';
$lang['at_least_one_field_required'] = 'Užsakymo puslapyje turi būti nustatytas bent vienas privalomas laukas.';
$lang['customer_is_already_booked'] = 'Šis klientas jau turi susitikimą prašomu rezervavimo laikotarpiu.';
$lang['fields'] = 'Fields';
$lang['invalid_credentials_provided'] = 'Pateikti negaliojantys duomenys, bandykite dar kartą.';
$lang['calendar_url'] = 'Kalendoriaus URL';
$lang['please_select'] = 'Prašome pasirinkti';
// 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.';

View file

@ -0,0 +1,85 @@
<?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'] = 'Sø';
$lang['cal_mo'] = 'Ma';
$lang['cal_tu'] = 'Ti';
$lang['cal_we'] = 'On';
$lang['cal_th'] = 'To';
$lang['cal_fr'] = 'Fr';
$lang['cal_sa'] = 'Lø';
$lang['cal_sun'] = 'Søn';
$lang['cal_mon'] = 'Man';
$lang['cal_tue'] = 'Tir';
$lang['cal_wed'] = 'Ons';
$lang['cal_thu'] = 'Tor';
$lang['cal_fri'] = 'Fre';
$lang['cal_sat'] = 'Lør';
$lang['cal_sunday'] = 'Søndag';
$lang['cal_monday'] = 'Mandag';
$lang['cal_tuesday'] = 'Tirsdag';
$lang['cal_wednesday'] = 'Onsdag';
$lang['cal_thursday'] = 'Torsdag';
$lang['cal_friday'] = 'Fredag';
$lang['cal_saturday'] = 'Lørdag';
$lang['cal_jan'] = 'Jan';
$lang['cal_feb'] = 'Feb';
$lang['cal_mar'] = 'Mar';
$lang['cal_apr'] = 'Apr';
$lang['cal_may'] = 'Mai';
$lang['cal_jun'] = 'Jun';
$lang['cal_jul'] = 'Jul';
$lang['cal_aug'] = 'Aug';
$lang['cal_sep'] = 'Sep';
$lang['cal_oct'] = 'Okt';
$lang['cal_nov'] = 'Nov';
$lang['cal_dec'] = 'Des';
$lang['cal_january'] = 'Januar';
$lang['cal_february'] = 'Februar';
$lang['cal_march'] = 'Mars';
$lang['cal_april'] = 'April';
$lang['cal_mayl'] = 'Mai';
$lang['cal_june'] = 'Juni';
$lang['cal_july'] = 'Juli';
$lang['cal_august'] = 'August';
$lang['cal_september'] = 'September';
$lang['cal_october'] = 'Oktober';
$lang['cal_november'] = 'November';
$lang['cal_december'] = 'Desember';

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'] = 'År';
$lang['date_years'] = 'År';
$lang['date_month'] = 'Måned';
$lang['date_months'] = 'Måneder';
$lang['date_week'] = 'Uke';
$lang['date_weeks'] = 'Uker';
$lang['date_day'] = 'Dag';
$lang['date_days'] = 'Dager';
$lang['date_hour'] = 'Time';
$lang['date_hours'] = 'Timer';
$lang['date_minute'] = 'Minutt';
$lang['date_minutes'] = 'Minutter';
$lang['date_second'] = 'Sekund';
$lang['date_seconds'] = 'Sekunder';
$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'] = 'Kunne ikke bestemme databaseinnstillingene basert på tilkoblingsstrengen du sendte inn.';
$lang['db_unable_to_connect'] = 'Kunne ikke koble til databaseserveren din ved hjelp av de angitte innstillingene.';
$lang['db_unable_to_select'] = 'Kunne ikke velge den angitte databasen: %s';
$lang['db_unable_to_create'] = 'Kunne ikke opprette den angitte databasen: %s';
$lang['db_invalid_query'] = 'Spørringen du sendte inn, er ikke gyldig.';
$lang['db_must_set_table'] = 'Du må angi databasetabellen som skal brukes med spørringen din.';
$lang['db_must_use_set'] = 'Du må bruke set-metoden for å oppdatere en oppføring.';
$lang['db_must_use_index'] = 'Du må spesifisere en indeks å matche på for batchoppdateringer.';
$lang['db_batch_missing_index'] = 'En eller flere rader som er sendt inn for batchoppdatering, mangler den angitte indeksen.';
$lang['db_must_use_where'] = 'Oppdateringer er ikke tillatt med mindre de inneholder en \'where\'-klausul.';
$lang['db_del_must_use_where'] = 'Sletting er ikke tillatt med mindre de inneholder en where- eller like-klausul.';
$lang['db_field_param_missing'] = 'For å hente felt kreves navnet på tabellen som en parameter.';
$lang['db_unsupported_function'] = 'Denne funksjonen er ikke tilgjengelig for databasen du bruker.';
$lang['db_transaction_failure'] = 'Transaksjonsfeil: Rollback utført.';
$lang['db_unable_to_drop'] = 'Kunne ikke slette den angitte databasen.';
$lang['db_unsupported_feature'] = 'Funksjon som ikke støttes av databaseplattformen du bruker.';
$lang['db_unsupported_compression'] = 'Filkomprimeringsformatet du valgte, støttes ikke av serveren din.';
$lang['db_filepath_error'] = 'Kunne ikke skrive data til filbanen du har sendt inn.';
$lang['db_invalid_cache_path'] = 'Cache-banen du sendte inn, er ikke gyldig eller skrivbar.';
$lang['db_table_name_required'] = 'Et tabellnavn er påkrevd for denne operasjonen.';
$lang['db_column_name_required'] = 'Et kolonnenavn er påkrevd for denne operasjonen.';
$lang['db_column_definition_required'] = 'En kolonnedefinisjon er påkrevd for denne operasjonen.';
$lang['db_unable_to_set_charset'] = 'Kunne ikke angi tegnsett for klienttilkobling: %s';
$lang['db_error_heading'] = 'En databasefeil oppstod';

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'] = 'E-postvalideringsmetoden må sendes til en matrise.';
$lang['email_invalid_address'] = 'Ugyldig e-postadresse: %s';
$lang['email_attachment_missing'] = 'Kunne ikke finne følgende e-postvedlegg: %s';
$lang['email_attachment_unreadable'] = 'Kan ikke åpne dette vedlegget: %s';
$lang['email_no_from'] = 'Kan ikke sende e-post uten «From»-overskrift.';
$lang['email_no_recipients'] = 'Du må inkludere mottakere: To, Cc eller Bcc';
$lang['email_send_failure_phpmail'] = 'Kunne ikke sende e-post ved hjelp av PHP mail(). Serveren din er kanskje ikke konfigurert til å sende e-post ved hjelp av denne metoden.';
$lang['email_send_failure_sendmail'] = 'Kunne ikke sende e-post ved hjelp av PHP Sendmail. Serveren din er kanskje ikke konfigurert til å sende e-post ved hjelp av denne metoden.';
$lang['email_send_failure_smtp'] = 'Kunne ikke sende e-post ved hjelp av PHP SMTP. Serveren din er kanskje ikke konfigurert til å sende e-post ved hjelp av denne metoden.';
$lang['email_sent'] = 'Meldingen din har blitt sendt ved hjelp av følgende protokoll: %s';
$lang['email_no_socket'] = 'Kunne ikke åpne en socket til Sendmail. Vennligst sjekk innstillingene.';
$lang['email_no_hostname'] = 'Du har ikke angitt et SMTP-vertsnavn.';
$lang['email_smtp_error'] = 'Følgende SMTP-feil ble oppdaget: %s';
$lang['email_no_smtp_unpw'] = 'Feil: Du må tilordne et SMTP-brukernavn og passord.';
$lang['email_failed_smtp_login'] = 'Kunne ikke sende AUTH LOGIN-kommandoen. Feil: %s';
$lang['email_smtp_auth_un'] = 'Kunne ikke autentisere brukernavn. Feil: %s';
$lang['email_smtp_auth_pw'] = 'Kunne ikke godkjenne passord. Feil: %s';
$lang['email_smtp_data_failure'] = 'Kunne ikke sende data: %s';
$lang['email_exit_status'] = 'Avslutt statuskode: %s';

View file

@ -0,0 +1,70 @@
<?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'] = 'Feltet {field} er påkrevd.';
$lang['form_validation_isset'] = 'Feltet {field} må ha en verdi';
$lang['form_validation_isset'] = 'Feltet {field} må ha en verdi.';
$lang['form_validation_valid_email'] = 'Feltet {field} må inneholde en gyldig e-postadresse.';
$lang['form_validation_valid_emails'] = 'Feltet {field} må inneholde alle gyldige e-postadresser.';
$lang['form_validation_valid_url'] = 'Feltet {field} må inneholde en gyldig URL.';
$lang['form_validation_valid_ip'] = 'Feltet {field} må inneholde en gyldig IP.';
$lang['form_validation_valid_base64'] = 'Feltet {field} må inneholde en gyldig Base64-streng.';
$lang['form_validation_min_length'] = 'Feltet {field} må være minst {param} tegn langt.';
$lang['form_validation_max_length'] = 'Feltet {field} kan ikke overstige {param} tegn i lengde.';
$lang['form_validation_exact_length'] = 'Feltet {field} må være nøyaktig {param} tegn langt.';
$lang['form_validation_alpha'] = '{field}-feltet kan bare inneholde alfabetiske tegn.';
$lang['form_validation_alpha_numeric'] = 'Feltet {field} kan bare inneholde alfanumeriske tegn.';
$lang['form_validation_alpha_numeric_spaces'] = 'Feltet {field} kan bare inneholde alfanumeriske tegn og mellomrom.';
$lang['form_validation_alpha_dash'] = 'Feltet {field} kan bare inneholde alfanumeriske tegn, understrekninger og bindestreker.';
$lang['form_validation_numeric'] = 'Feltet {field} må bare inneholde tall.';
$lang['form_validation_is_numeric'] = 'Feltet {field} må bare inneholde numeriske tegn.';
$lang['form_validation_integer'] = 'Feltet {field} må inneholde et heltall.';
$lang['form_validation_regex_match'] = 'Feltet {field} er ikke i riktig format.';
$lang['form_validation_matches'] = '{field}-feltet samsvarer ikke med {param}-feltet.';
$lang['form_validation_differs'] = '{field}-feltet må avvike fra {param}-feltet.';
$lang['form_validation_is_unique'] = 'Feltet {field} må inneholde en unik verdi.';
$lang['form_validation_is_natural'] = '{field}-feltet må bare inneholde sifre.';
$lang['form_validation_is_natural_no_zero'] = 'Feltet {field} må bare inneholde sifre og må være større enn null.';
$lang['form_validation_decimal'] = 'Feltet {field} må inneholde et desimaltall.';
$lang['form_validation_less_than'] = 'Feltet {field} må inneholde et tall som er mindre enn {param}.';
$lang['form_validation_less_than_equal_to'] = 'Feltet {field} må inneholde et tall som er mindre enn eller lik {param}.';
$lang['form_validation_greater_than'] = 'Feltet {field} må inneholde et tall som er større enn {param}.';
$lang['form_validation_greater_than_equal_to'] = 'Feltet {field} må inneholde et tall som er større enn eller lik {param}.';
$lang['form_validation_error_message_not_set'] = 'Kan ikke få tilgang til en feilmelding som tilsvarer feltnavnet {field}.';
$lang['form_validation_in_list'] = '{field}-feltet må være ett av: {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'] = 'Kunne ikke finne en gyldig tilkoblings-ID. Kontroller at du er tilkoblet før du utfører noen filrutiner.';
$lang['ftp_unable_to_connect'] = 'Kunne ikke koble til FTP-serveren din ved hjelp av det angitte vertsnavnet.';
$lang['ftp_unable_to_login'] = 'Kunne ikke logge på FTP-serveren. Vennligst sjekk brukernavnet og passordet ditt.';
$lang['ftp_unable_to_mkdir'] = 'Kunne ikke opprette katalogen du har angitt.';
$lang['ftp_unable_to_changedir'] = 'Kan ikke endre kataloger.';
$lang['ftp_unable_to_chmod'] = 'Kunne ikke angi filtillatelser. Vennligst sjekk banen din.';
$lang['ftp_unable_to_upload'] = 'Kunne ikke laste opp den angitte filen. Vennligst sjekk banen din.';
$lang['ftp_unable_to_download'] = 'Kan ikke laste ned den angitte filen. Vennligst sjekk banen din.';
$lang['ftp_no_source_file'] = 'Kunne ikke finne kildefilen. Vennligst sjekk banen din.';
$lang['ftp_unable_to_rename'] = 'Kunne ikke gi nytt navn til filen.';
$lang['ftp_unable_to_delete'] = 'Kunne ikke slette filen.';
$lang['ftp_unable_to_move'] = 'Kunne ikke flytte filen. Kontroller at målkatalogen finnes.';

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,461 @@
<?php defined('BASEPATH') or exit('No direct script access allowed');
// Norwegian
$lang['page_title'] = 'Bestill avtale med';
$lang['service_and_provider'] = 'Tjeneste & Leverandør';
$lang['select_service'] = 'Velg Tjeneste';
$lang['select_provider'] = 'Velg Leverandør';
$lang['duration'] = 'Varighet';
$lang['minutes'] = 'Minutter';
$lang['price'] = 'Pris';
$lang['back'] = 'Tilbake';
$lang['appointment_date_and_time'] = 'Avtaledato & Tid';
$lang['no_available_hours'] = 'Det er ingen tilgjengelige avtaletimer for den valgte datoen. Vennligst velg en annen dato.';
$lang['appointment_hour_missing'] = 'Vennligst velg en avtaletid før du fortsetter.';
$lang['customer_information'] = 'Kundeinformasjon';
$lang['first_name'] = 'Fornavn';
$lang['etternavn'] = 'Etternavn';
$lang['email'] = 'E-post';
$lang['phone_number'] = 'Telefonnummer';
$lang['phone'] = 'Telefon';
$lang['address'] = 'Adresse';
$lang['city'] = 'By';
$lang['zip_code'] = 'Postnummer';
$lang['notes'] = 'Notater';
$lang['language'] = 'Språk';
$lang['no_language'] = 'Ingen språk';
$lang['fields_are_required'] = 'Felt merket med * er obligatoriske.';
$lang['appointment_confirmation'] = 'Avtalebekreftelse';
$lang['confirm'] = 'Bekreft';
$lang['update'] = 'Oppdater';
$lang['cancel_appointment_hint'] = 'Trykk på "Avbryt"-knappen for å fjerne avtalen fra bedriftens timeplan.';
$lang['cancel'] = 'Avbryt';
$lang['appointment_registered'] = 'Din avtale er registrert!';
$lang['cancel_appointment_title'] = 'Avbryt Avtale';
$lang['appointment_cancelled'] = 'Din avtale er avbrutt.';
$lang['appointment_cancelled_title'] = 'Avtale Avbrutt';
$lang['reason'] = 'Årsak';
$lang['appointment_removed_from_schedule'] = 'Den følgende avtalen ble fjernet fra bedriftens timeplan.';
$lang['appointment_details_was_sent_to_you'] = 'En e-post med avtaledetaljene er sendt til deg.';
$lang['add_to_google_calendar'] = 'Legg til i Google Kalender';
$lang['appointment_booked'] = 'Din avtale er bestilt';
$lang['thank_you_for_appointment'] = 'Takk for at du har bestilt en avtale med oss. Nedenfor kan du se avtaledetaljene. Gjør endringer ved å klikke på avtalen.';
$lang['appointment_details_title'] = 'Avtaledetaljer';
$lang['customer_details_title'] = 'Kundedetaljer';
$lang['service'] = 'Tjeneste';
$lang['provider'] = 'Leverandør';
$lang['customer'] = 'Kunde';
$lang['start'] = 'Start';
$lang['end'] = 'Slutt';
$lang['name'] = 'Navn';
$lang['appointment_link_title'] = 'Avtalelenke';
$lang['success'] = 'Suksess';
$lang['appointment_added_to_your_plan'] = 'En ny avtale er lagt til din plan.';
$lang['appointment_link_description'] = 'Du kan gjøre endringer ved å klikke på avtalen under.';
$lang['appointment_locked'] = 'Endring umulig!';
$lang['appointment_locked_message'] = 'Avtalen kan ikke endres mindre enn {$limit} timer i forveien.';
$lang['appointment_not_found'] = 'Avtale Ikke Funnet';
$lang['appointment_does_not_exist_in_db'] = 'Avtalen du forespurte eksisterer ikke lenger i systemets database.';
$lang['display_calendar'] = 'Vis Kalender';
$lang['calendar'] = 'Kalender';
$lang['users'] = 'Brukere';
$lang['settings'] = 'Innstillinger';
$lang['log_out'] = 'Logg ut';
$lang['synchronize'] = 'Synkroniser';
$lang['enable_sync'] = 'Aktiver Synkronisering';
$lang['disable_sync'] = 'Deaktiver Synkronisering';
$lang['disable_sync_prompt'] = 'Er du sikker på at du vil deaktivere kalendersynkronisering?';
$lang['reload'] = 'Last Inn På Nytt';
$lang['avtale'] = 'Avtale';
$lang['unavailability'] = 'Utilgjengelighet';
$lang['week'] = 'Uke';
$lang['month'] = 'Måned';
$lang['today'] = 'I Dag';
$lang['not_working'] = 'Ikke Arbeidende';
$lang['break'] = 'Pause';
$lang['add'] = 'Legg Til';
$lang['edit'] = 'Rediger';
$lang['hello'] = 'Hei';
$lang['all_day'] = 'Hele dagen';
$lang['manage_appointment_record_hint'] = 'Administrer alle avtaleoppføringene til de tilgjengelige leverandørene og tjenestene.';
$lang['select_filter_item_hint'] = 'Velg en leverandør eller en tjeneste og se avtalene i kalenderen.';
$lang['enable_appointment_sync_hint'] = 'Aktiver avtalessynkronisering med en ekstern kalender.';
$lang['manage_customers_hint'] = 'Administrer registrerte kunder og se deres bestillingshistorikk.';
$lang['manage_services_hint'] = 'Administrer de tilgjengelige tjenestene og kategoriene i systemet.';
$lang['manage_users_hint'] = 'Administrer backend-brukere (administratorer, leverandører, sekretærer).';
$lang['settings_hint'] = 'Angi system- og brukerinnstillinger.';
$lang['log_out_hint'] = 'Logg ut av systemet.';
$lang['unavailability_periods_hint'] = 'I perioder med utilgjengelighet vil leverandøren ikke akseptere nye avtaler.';
$lang['new_appointment_hint'] = 'Opprett en ny avtale og lagre den i databasen.';
$lang['reload_appointments_hint'] = 'Last inn avtaler på nytt i kalenderen.';
$lang['trigger_sync_hint'] = 'Start synkroniseringsprosessen for kalenderen.';
$lang['appointment_updated'] = 'Avtale oppdatert.';
$lang['undo'] = 'Angre';
$lang['appointment_details_changed'] = 'Avtaledetaljer har endret seg';
$lang['appointment_changes_saved'] = 'Endringer i avtalen er lagret.';
$lang['save'] = 'Lagre';
$lang['new'] = 'Ny';
$lang['select'] = 'Velg';
$lang['hide'] = 'Skjul';
$lang['type_to_filter_customers'] = 'Skriv for å filtrere kunder.';
$lang['clear_fields_add_existing_customer_hint'] = 'Tøm feltene og skriv inn en ny kunde.';
$lang['pick_existing_customer_hint'] = 'Velg en eksisterende kunde.';
$lang['new_appointment_title'] = 'Ny Avtale';
$lang['edit_appointment_title'] = 'Rediger Avtale';
$lang['delete_appointment_title'] = 'Slett Avtale';
$lang['write_appointment_removal_reason'] = 'Vennligst skriv årsaken til at du sletter avtalen:';
$lang['appointment_saved'] = 'Avtale lagret.';
$lang['new_unavailability_title'] = 'Ny Utilgjengelighet';
$lang['edit_unavailability_title'] = 'Rediger Utilgjengelighet';
$lang['unavailability_saved'] = 'Utilgjengelighet lagret.';
$lang['start_date_before_end_error'] = 'Startdatoen er etter sluttdatoen.';
$lang['invalid_duration'] = 'Ugyldig varighet.';
$lang['invalid_email'] = 'Ugyldig e-postadresse.';
$lang['customers'] = 'Kunder';
$lang['details'] = 'Detaljer';
$lang['no_records_found'] = 'Ingen oppføringer funnet...';
$lang['services'] = 'Tjenester';
$lang['duration_minutes'] = 'Varighet (Minutter)';
$lang['currency'] = 'Valuta';
$lang['category'] = 'Kategori';
$lang['no_category'] = 'Ingen Kategori';
$lang['description'] = 'Beskrivelse';
$lang['categories'] = 'Kategorier';
$lang['admins'] = 'Administratorer';
$lang['providers'] = 'Leverandører';
$lang['secretaries'] = 'Sekretærer';
$lang['mobile_number'] = 'Mobilnummer';
$lang['mobile'] = 'Mobil';
$lang['state'] = 'Stat';
$lang['brukernavn'] = 'Brukernavn';
$lang['password'] = 'Passord';
$lang['retype_password'] = 'Skriv inn passord på nytt';
$lang['receive_notifications'] = 'Motta Varsler';
$lang['passwords_mismatch'] = 'Passordene stemmer ikke overens.';
$lang['admin_saved'] = 'Administrator lagret.';
$lang['provider_saved'] = 'Leverandør lagret.';
$lang['secretary_saved'] = 'Sekretær lagret.';
$lang['admin_deleted'] = 'Administrator slettet.';
$lang['provider_deleted'] = 'Leverandør slettet.';
$lang['secretary_deleted'] = 'Sekretær slettet.';
$lang['service_saved'] = 'Tjeneste lagret.';
$lang['service_category_saved'] = 'Tjenestekategori lagret.';
$lang['service_deleted'] = 'Tjeneste slettet.';
$lang['service_category_deleted'] = 'Tjenestekategori slettet.';
$lang['customer_saved'] = 'Kunde lagret.';
$lang['customer_deleted'] = 'Kunde slettet.';
$lang['current_view'] = 'Nåværende Visning';
$lang['working_plan'] = 'Arbeidsplan';
$lang['reset_plan'] = 'Tilbakestill plan';
$lang['monday'] = 'Mandag';
$lang['tuesday'] = 'Tirsdag';
$lang['wednesday'] = 'Onsdag';
$lang['thursday'] = 'Torsdag';
$lang['friday'] = 'Fredag';
$lang['saturday'] = 'Lørdag';
$lang['sunday'] = 'Søndag';
$lang['breaks'] = 'Pauser';
$lang['add_breaks_during_each_day'] = 'Legg til arbeidspauser i løpet av hver dag. Under pauser vil leverandøren ikke akseptere noen avtaler.';
$lang['day'] = 'Dag';
$lang['days'] = 'Dager';
$lang['actions'] = 'Handlinger';
$lang['reset_working_plan_hint'] = 'Tilbakestill arbeidsplanen til standardverdiene.';
$lang['company_name'] = 'Firmanavn';
$lang['company_name_hint'] = 'Firmanavnet vil bli vist overalt i systemet (påkrevd).';
$lang['company_email'] = 'Firma E-post';
$lang['company_email_hint'] = 'Dette vil være firmaets e-postadresse. Den vil bli brukt som avsender og svaradresse for systemets e-poster (påkrevd).';
$lang['company_link'] = 'Firma Link';
$lang['company_link_hint'] = 'Firmaets lenke bør peke til firmaets offisielle nettside (påkrevd).';
$lang['go_to_booking_page'] = 'Gå Til Bestillingsside';
$lang['settings_saved'] = 'Innstillinger lagret.';
$lang['general'] = 'Generelt';
$lang['booking'] = 'Bestilling';
$lang['visible'] = 'Synlig';
$lang['hidden'] = 'Skjult';
$lang['business_logic'] = 'Forretningslogikk';
$lang['current_user'] = 'Nåværende Bruker';
$lang['about_app'] = 'Om Easy!Appointments';
$lang['edit_working_plan_hint'] = 'Marker dagene og tidspunktene nedenfor som selskapet ditt vil akseptere avtaler. Du vil kunne justere avtaler i ikke-arbeidstimer, men kundene vil ikke kunne bestille avtaler selv i ikke-arbeidstider. Denne arbeidsplanen vil være standard for hver ny leverandørpost, men du vil kunne endre hver leverandørs plan separat ved å redigere posten hans. Etterpå kan du legge til pauseperioder.';
$lang['edit_breaks_hint'] = 'Legg til arbeidspauser i løpet av hver dag. Disse pausene vil bli brukt for alle nye leverandører.';
$lang['book_advance_timeout'] = 'Forhåndsbestilling Timeout';
$lang['book_advance_timeout_hint'] = 'Definer timeout (i minutter) før kundene kan bestille eller omorganisere avtaler med firmaet.';
$lang['timeout_minutes'] = 'Tidsavbrudd (Minutter)';
$lang['about_app_info'] = 'Easy!Appointments er en svært tilpassbar webapplikasjon som lar kundene dine bestille avtaler med deg via nettet. Videre gir den muligheten til å synkronisere dataene dine med Google Kalender, slik at du kan bruke dem med andre tjenester.';
$lang['current_version'] = 'Nåværende Versjon';
$lang['support'] = 'Support';
$lang['about_app_support'] = 'Hvis du støter på problemer når du bruker Easy!Appointments, kan du søke i det offisielle Google-gruppen etter svar. Du kan også trenge å opprette en ny sak på Google Code-siden for å hjelpe utviklingen fremover.';
$lang['official_website'] = 'Offisiell Nettside';
$lang['google_plus_community'] = 'Google+ Fellesskap';
$lang['support_group'] = 'Support Gruppe';
$lang['project_issues'] = 'Prosjektproblemer';
$lang['license'] = 'Lisens';
$lang['about_app_license'] = 'Easy!Appointments er lisensiert under GPLv3-lisensen. Ved å bruke koden til Easy!Appointments på noen måte godtar du vilkårene beskrevet i følgende URL:';
$lang['logout_success'] = 'Du har blitt logget ut! Klikk på en av de følgende knappene for å navigere til en annen side.';
$lang['book_appointment_title'] = 'Bestill tid';
$lang['backend_section'] = 'Backend Seksjon';
$lang['you_need_to_login'] = 'Velkommen! Du må logge inn for å se backend-sider.';
$lang['enter_username_here'] = 'Skriv inn brukernavnet ditt her ...';
$lang['enter_password_here'] = 'Skriv inn passordet ditt her ...';
$lang['login'] = 'Logg Inn';
$lang['forgot_your_password'] = 'Glemt Passordet?';
$lang['login_failed'] = 'Innlogging mislyktes, vennligst skriv inn riktige legitimasjoner og prøv igjen.';
$lang['type_username_and_email_for_new_password'] = 'Skriv inn brukernavnet ditt og e-postadressen din for å få nytt passord.';
$lang['enter_email_here'] = 'Skriv inn e-posten din her ...';
$lang['regenerate_password'] = 'Generer Nytt Passord';
$lang['go_to_login'] = 'Gå Tilbake Til Innloggingssiden';
$lang['new_password_sent_with_email'] = 'Ditt nye passord er sendt til deg med e-post.';
$lang['new_account_password'] = 'Nytt Kontopassord';
$lang['new_password_is'] = 'Ditt nye kontopassord er $password. Vennligst oppbevar denne e-posten for å kunne hente passordet ditt om nødvendig. Du kan også endre dette passordet til et nytt i innstillingssiden.';
$lang['delete_record_prompt'] = 'Er du sikker på at du vil slette denne posten? Denne handlingen kan ikke angres.';
$lang['delete_admin'] = 'Slett administrator';
$lang['delete_customer'] = 'Slett Kunde';
$lang['delete_service'] = 'Slett Tjeneste';
$lang['delete_service_category'] = 'Slett Tjenestekategori';
$lang['delete_provider'] = 'Slett Leverandør';
$lang['delete_secretary'] = 'Slett Sekretær';
$lang['delete_appointment'] = 'Slett tid';
$lang['delete_unavailability'] = 'Slett Utilgjengelighet';
$lang['delete'] = 'Slett';
$lang['unexpected_issues'] = 'Uventede problemer';
$lang['unexpected_issues_message'] = 'Operasjonen kunne ikke fullføres på grunn av uventede problemer.';
$lang['close'] = 'Lukk';
$lang['page_not_found'] = 'Siden Ble Ikke Funnet';
$lang['page_not_found_message'] = 'Dessverre eksisterer ikke siden du ba om. Vennligst sjekk nettleserens URL eller gå til en annen plassering ved å bruke knappene nedenfor.';
$lang['error'] = 'Feil';
$lang['no_privileges'] = 'Ingen Privilegier';
$lang['no_privileges_message'] = 'Du har ikke nødvendige privilegier for å se denne siden. Vennligst naviger til en annen seksjon.';
$lang['backend_calendar'] = 'Backend Kalender';
$lang['start_date_time'] = 'Startdato / Tid';
$lang['end_date_time'] = 'Sluttdato / Tid';
$lang['licensed_under'] = 'Lisensiert Under';
$lang['unexpected_issues_occurred'] = 'Uventede problemer oppstod.';
$lang['service_communication_error'] = 'En serverkommunikasjonsfeil oppstod, vennligst prøv igjen.';
$lang['no_privileges_edit_appointments'] = 'Du har ikke nødvendige privilegier for å redigere avtaler.';
$lang['unavailability_updated'] = 'Utilgjengelighet oppdatert.';
$lang['appointments'] = 'Avtaler';
$lang['unexpected_warnings'] = 'Uventede advarsler';
$lang['unexpected_warnings_message'] = 'Operasjonen ble fullført, men noen advarsler dukket opp.';
$lang['filter'] = 'Filtrer';
$lang['clear'] = 'Rydd';
$lang['uncategorized'] = 'Uklassifisert';
$lang['username_already_exists'] = 'Brukernavnet eksisterer allerede.';
$lang['password_length_notice'] = 'Passordet må være minst $number tegn langt.';
$lang['general_settings'] = 'Generelle Innstillinger';
$lang['personal_information'] = 'Personlig Informasjon';
$lang['system_login'] = 'System Innlogging';
$lang['user_settings_are_invalid'] = 'Brukerinnstillingene er ugyldige! Vennligst gjennomgå innstillingene dine og prøv igjen.';
$lang['add_break'] = 'Legg til pause';
$lang['january'] = 'Januar';
$lang['february'] = 'Februar';
$lang['march'] = 'Mars';
$lang['april'] = 'April';
$lang['may'] = 'Mai';
$lang['june'] = 'Juni';
$lang['july'] = 'Juli';
$lang['august'] = 'August';
$lang['september'] = 'September';
$lang['october'] = 'Oktober';
$lang['november'] = 'November';
$lang['december'] = 'Desember';
$lang['previous'] = 'Forrige';
$lang['next'] = 'Neste';
$lang['now'] = 'Nå';
$lang['select_time'] = 'Velg tid';
$lang['time'] = 'Tid';
$lang['hour'] = 'Time';
$lang['minute'] = 'Minutt';
$lang['calendar_sync_completed'] = 'Kalendersynkronisering fullført.';
$lang['calendar_sync_failed'] = 'Kalendersynkronisering mislyktes: Kunne ikke opprette servertilkobling.';
$lang['select_sync_calendar'] = 'Velg kalender';
$lang['select_sync_calendar_prompt'] = 'Velg kalenderen du vil synkronisere avtalene dine med.';
$lang['sync_calendar_selected'] = 'Synkroniseringskalenderen har blitt valgt.';
$lang['oops_something_went_wrong'] = 'Oops! Noe gikk galt.';
$lang['ea_update_success'] = 'Easy!Appointments har blitt oppdatert.';
$lang['require_captcha'] = 'Krev CAPTCHA';
$lang['require_captcha_hint'] = 'Når dette er aktivert, må kundene skrive inn en tilfeldig generert CAPTCHA-streng før de bestiller/oppdaterer en avtale.';
$lang['captcha_is_wrong'] = 'CAPTCHA-bekreftelse mislyktes, vennligst prøv igjen.';
$lang['any_provider'] = 'Enhver leverandør';
$lang['requested_hour_is_unavailable'] = 'Den forespurte avtalen er dessverre ikke tilgjengelig. Vennligst velg en annen time for din avtale.';
$lang['customer_notifications'] = 'Kundevarsler';
$lang['customer_notifications_hint'] = 'Definerer om kunden skal motta e-postvarsler når det skjer en endring i en av avtalene hans.';
$lang['date_format'] = 'Datoformat';
$lang['date_format_hint'] = 'Endre datovisningsformatet (D - Dato, M - Måned, Y - År).';
$lang['time_format'] = 'Tidsformat';
$lang['time_format_hint'] = 'Endre visningsformatet for klokkeslett (H - timer, M - minutter).';
$lang['first_weekday'] = 'Første dag i uken';
$lang['first_weekday_hint'] = 'Angi den første dagen i kalenderuken.';
$lang['google_analytics_code_hint'] = 'Legg til Google Analytics-koden din for å aktivere Google Analytics-sporing på bestillingssidene.';
$lang['availabilities_type'] = 'Availabilities Type';
$lang['flexible'] = 'Fleksibel';
$lang['fixed'] = 'Fixed';
$lang['attendants_number'] = 'Nummer på ledsagere';
$lang['reset_working_plan'] = 'Tilbakestill arbeidsplanen til standardverdiene.';
$lang['legal_contents'] = 'Juridisk innhold';
$lang['cookie_notice'] = 'Cookie Notice';
$lang['display_cookie_notice'] = 'Vis varsel om informasjonskapsler';
$lang['cookie_notice_content'] = 'Cookie Notice Content';
$lang['terms_and_conditions'] = 'Vilkår og betingelser';
$lang['display_terms_and_conditions'] = 'Vis vilkår og betingelser';
$lang['terms_and_conditions_content'] = 'Innhold i vilkår og betingelser';
$lang['privacy_policy'] = 'Personvernregler';
$lang['display_privacy_policy'] = 'Vis personvernregler';
$lang['privacy_policy_content'] = 'Personvernpolicyinnhold';
$lang['website_using_cookies_to_ensure_best_experience'] = 'Dette nettstedet bruker informasjonskapsler for å sikre at du får den beste opplevelsen på nettstedet vårt.';
$lang['read_and_agree_to_terms_and_conditions'] = 'Jeg har lest og godtar {$link}Vilkår og betingelser{/$link}.';
$lang['read_and_agree_to_privacy_policy'] = 'Jeg har lest og godtar {$link}Privacy Policy{/$link}.';
$lang['delete_personal_information_hint'] = 'Fjern alle avtaler og personlig informasjon fra systemet.';
$lang['delete_personal_information'] = 'Slett personlig informasjon';
$lang['delete_personal_information_prompt'] = 'Er du sikker på at du vil slette personopplysningene dine? Denne handlingen kan ikke angres.';
$lang['location'] = 'Sted';
$lang['working_plan_exception'] = 'Unntak fra arbeidsplan';
$lang['working_plan_exceptions'] = 'Unntak fra arbeidsplanen';
$lang['working_plan_exceptions_hint'] = 'Legg til en unntaksdag for arbeidsplanen, utenfor arbeidsplanen.';
$lang['new_working_plan_exception_title'] = 'Nytt unntak for arbeidsplan';
$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'] = 'Legg til unntak fra arbeidsplanen, utenfor arbeidsplanen.';
$lang['add_working_plan_exception'] = 'Legg til unntak for arbeidsplan';
$lang['require_phone_number'] = 'Krev telefonnummer';
$lang['require_phone_number_hint'] = 'Når denne funksjonen er aktivert, må kunder og brukere oppgi kundens telefonnummer når de bestiller en time';
$lang['check_spam_folder'] = 'Vennligst sjekk søppelpostmappen din hvis e-posten ikke kommer innen noen minutter';
$lang['api_token_hint'] = 'Angi et hemmelig token for å aktivere tokenbasert autentisering av Easy!Appointments API.';
$lang['timezone'] = 'Timezone';
$lang['overwrite_existing_working_plans'] = 'Dette vil overskrive de eksisterende arbeidsplanene til leverandøren, er du sikker på at du vil fortsette?';
$lang['working_plans_got_updated'] = 'Alle arbeidsplanene ble oppdatert.';
$lang['apply_to_all_providers'] = 'Bruk på alle tilbydere';
$lang['display_any_provider'] = 'Vis alle leverandøralternativer';
$lang['display_any_provider_hint'] = 'Bestillingssiden vil få et ekstra alternativ som gjør det mulig for kunder å bestille uten å spesifisere en leverandør.';
$lang['load_more'] = 'Last inn mer';
$lang['list'] = 'Liste';
$lang['default'] = 'Standard';
$lang['table'] = 'Tabell';
$lang['date'] = 'Dato';
$lang['about'] = 'Om';
$lang['booking_settings'] = 'Bookinginnstillinger';
$lang['display'] = 'Display';
$lang['require'] = 'Krev';
$lang['color'] = 'Farge';
$lang['matomo_analytics_url_hint'] = 'Legg til URL-en i din egen Matomo-installasjon for å aktivere Matomo-sporing på bestillingssidene.';
$lang['invalid_phone'] = 'Ugyldig telefonnummer.';
$lang['legal'] = 'Legal';
$lang['business'] = 'Business';
$lang['account'] = 'Konto';
$lang['disable_booking'] = 'Deaktiver booking';
$lang['disable_booking_hint'] = 'Bookingsiden vil være deaktivert så lenge denne innstillingen er aktiv, og kundene vil ikke kunne registrere nye avtaler.';
$lang['display_message'] = 'Vis melding';
$lang['booking_is_disabled'] = 'Booking er deaktivert!';
$lang['appearance'] = 'Utseende';
$lang['company_logo'] = 'Firmalogo';
$lang['company_logo_hint'] = 'Selskapslogoen vil vises mange steder i appen, inkludert bestillingssiden og e-postvarslene (bildefil, maks. 2 MB).';
$lang['company_color'] = 'Firmafarge';
$lang['company_color_hint'] = 'Selskapets farge vil bli brukt i hele appen, slik at appen bruker merkevaren din.';
$lang['localization'] = 'Lokalisering';
$lang['integrations'] = 'Integrations';
$lang['company'] = 'Company';
$lang['remove'] = 'Fjern';
$lang['login_button'] = 'Innloggingsknapp';
$lang['display_login_button_hint'] = 'Definerer om påloggingsknappen vises på bestillingssiden.';
$lang['private'] = 'Privat';
$lang['private_hint'] = 'Private poster vil ikke bli vist eller behandlet på offentlige sider, for eksempel bestillingssiden.';
$lang['reset'] = 'Tilbakestill';
$lang['all'] = 'All';
$lang['booking_link'] = 'Booking Link';
$lang['add_new_event'] = 'Legg til ny hendelse';
$lang['what_kind_of_event'] = 'Hva slags arrangement ønsker du å legge til?';
$lang['theme'] = 'Theme';
$lang['limit_customer_access'] = 'Begrens kundetilgang';
$lang['limit_customer_access_hint'] = 'Hvis aktivert, vil leverandører og sekretærer bare kunne få tilgang til kunder de har en avtale med.';
$lang['url'] = 'URL';
$lang['secret_token'] = 'Secret Token';
$lang['verify_ssl'] = 'Verifiser SSL';
$lang['appointment_save'] = 'Lagre avtale';
$lang['appointment_delete'] = 'Sletting av avtale';
$lang['unavailability_save'] = 'Utilgjengelighet Lagre';
$lang['unavailability_delete'] = 'Slett utilgjengelighet';
$lang['customer_save'] = 'Customer Save';
$lang['customer_delete'] = 'Customer Delete';
$lang['service_save'] = 'Service Save';
$lang['service_delete'] = 'Service Delete';
$lang['service_category_save'] = 'Lagre tjenestekategori';
$lang['service_category_delete'] = 'Slett tjenestekategori';
$lang['provider_save'] = 'Provider Save';
$lang['provider_delete'] = 'Provider Delete';
$lang['secretary_save'] = 'Secretary Save';
$lang['secretary_delete'] = 'Sekretær Slett';
$lang['admin_save'] = 'Admin Save';
$lang['admin_delete'] = 'Admin Delete';
$lang['options'] = 'Alternativer';
$lang['webhooks'] = 'Webhooks';
$lang['webhooks_info'] = 'Med webhooks kan du sende HTTP-varsler til eksterne webapplikasjoner som svar på ulike applikasjonshendelser, for eksempel opprettelse av en avtale eller fjerning av en kunde.';
$lang['integrations_info'] = 'Integrasjoner gjør det mulig å opprette tredjepartsforbindelser med eksterne applikasjoner og API-er.';
$lang['configure'] = 'Konfigurer';
$lang['google_analytics'] = 'Google Analytics';
$lang['google_analytics_info'] = 'Google Analytics gjør det mulig for deg å automatisk legge til sporingskoden og HTML-markering på den offentlige siden og spore alle offentlige bestillingsøkter.';
$lang['matomo_analytics'] = 'Matomo Analytics';
$lang['matomo_analytics_info'] = 'Matomo Analytics gjør det mulig for deg å automatisk legge til sporingskoden og HTML-markering på den offentlige siden og spore alle offentlige bestillingsøkter';
$lang['api'] = 'API';
$lang['api_info'] = 'API gjør det mulig for deg å samhandle med alle Easy!Appointments-data via HTTP-protokollen og de tilgjengelige API-endepunktene og opprette dine egne integrasjoner.';
$lang['google_analytics_code'] = 'Google Analytics-kode';
$lang['matomo_analytics_url'] = 'Matomo Analytics URL';
$lang['future_booking_limit'] = 'Fremtidig bestillingsgrense';
$lang['limit_days'] = 'Grense (dager)';
$lang['future_booking_limit_hint'] = 'Angi den fremtidige grensen i dager kunder kan gjøre avtaler via den offentlige bestillingssiden';
$lang['api_token'] = 'API Token';
$lang['allow_rescheduling_cancellation_before'] = 'Tillat omplanlegging/avbestilling før';
$lang['at_least_one_field'] = 'Minst ett felt må vises på bestillingssiden.';
$lang['status'] = 'Status';
$lang['appointment_status_options'] = 'Alternativer for avtalestatus';
$lang['appointment_status_options_info'] = 'Definer en liste over tilgjengelige alternativer for avtalestatus som kan brukes på kalendersiden (den første blir automatisk standardverdien).';
$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'] = 'Klikk for å veksle';
$lang['week_short'] = 'Wk';
$lang['scroll_to_increment'] = 'Scroll To Increment';
$lang['year'] = 'År';
$lang['make_non_working_day'] = 'Denne leverandøren vil ikke være tilgjengelig for arbeid på den valgte dagen.';
$lang['no_breaks'] = 'Ingen pauser';
$lang['service_categories'] = 'Tjenestekategorier';
$lang['service_category'] = 'Tjenestekategori';
$lang['blocked_period_saved'] = 'Sperret periode lagret vellykket.';
$lang['blocked_period_deleted'] = 'Sperret periode slettet vellykket.';
$lang['delete_blocked_period'] = 'Slett sperret periode';
$lang['blocked_period'] = 'Sperret periode';
$lang['blocked_periods'] = 'Sperrede perioder';
$lang['blocked_period_save'] = 'Sperret periode-lagring';
$lang['blocked_period_delete'] = 'Sperret periode slettes';
$lang['blocked_periods_hint'] = 'Definer tidsperioder der offentlige bestillinger vil bli deaktivert for alle leverandører (f.eks. stengte datoer, helligdager osv.).';
$lang['custom_field'] = 'Egendefinert felt';
$lang['custom_fields'] = 'Egendefinerte felt';
$lang['label'] = 'Etikett';
$lang['webhook_saved'] = 'Webhook lagret vellykket.';
$lang['webhook_deleted'] = 'Webhook slettet vellykket.';
$lang['delete_webhook'] = 'Slett webhook';
$lang['contact_info'] = 'Kontaktinfo';
$lang['hide_from_public'] = 'Skjul fra offentligheten';
$lang['matomo_analytics_site_id'] = 'Matomo Analytics Site ID';
$lang['matomo_analytics_site_id_hint'] = 'Angi nettsteds-ID-en som skal spores av Matomo (standardnettstedet har ID-en "1").';
$lang['default_timezone'] = 'Standard tidssone';
$lang['default_timezone_hint'] = 'Angi standard tidssoneverdi som skal brukes for nye poster.';
$lang['default_language'] = 'Standardspråk';
$lang['default_language_hint'] = 'Angi standard språkverdi som skal brukes for nye poster.';
$lang['sync_method_prompt'] = 'Hvilken synkroniseringsmetode ønsker du å bruke?';
// 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.';

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,486 @@
<?php defined('BASEPATH') or exit('No direct script access allowed');
// Bosnian
$lang['page_title'] = 'Rezerviraj termin z';
$lang['service_and_provider'] = 'Storitev in ponudnik';
$lang['select_service'] = 'Izberi storitev';
$lang['select_provider'] = 'Izberite ponudnika';
$lang['duration'] = 'Trajanje';
$lang['minutes'] = 'Minute';
$lang['price'] = 'Cena';
$lang['back'] = 'Nazaj';
$lang['appointment_date_and_time'] = 'Datum in ura sestanka';
$lang['no_available_hours'] = 'Za izbrani datum ni prostih ur za sestanke. Prosimo izberite drug datum.';
$lang['appointment_hour_missing'] = 'Prosimo, izberite uro sestanka, preden nadaljujete.';
$lang['customer_information'] = 'Podatki o stranki';
$lang['first_name'] = 'Ime';
$lang['last_name'] = 'Priimek';
$lang['email'] = 'E-pošta';
$lang['phone_number'] = 'Telefonska številka';
$lang['phone'] = 'Telefon';
$lang['address'] = 'Naslov';
$lang['city'] = 'Mesto';
$lang['zip_code'] = 'Poštna številka';
$lang['notes'] = 'Opombe';
$lang['language'] = 'Jezik';
$lang['no_language'] = 'Ni jezika';
$lang['fields_are_required'] = 'Polja z * so obvezna.';
$lang['appointment_confirmation'] = 'Potrditev termina';
$lang['confirm'] = 'Potrdi';
$lang['update'] = 'Posodobi';
$lang['cancel_appointment_hint'] = 'Pritisnite gumb "Prekliči", da odstranite sestanek iz urnika podjetja.';
$lang['cancel'] = 'Prekliči';
$lang['appointment_registered'] = 'Vaš termin je bil uspešno registriran!';
$lang['cancel_appointment_title'] = 'Prekliči sestanek';
$lang['appointment_cancelled'] = 'Vaš termin je bil uspešno preklican.';
$lang['appointment_cancelled_title'] = 'Sestanek odpovedan';
$lang['reason'] = 'Razlog';
$lang['appointment_removed_from_schedule'] = 'Naslednji sestanek je bil odstranjen iz urnika podjetja . ';
$lang['appointment_details_was_sent_to_you'] = 'E-poštno sporočilo s podrobnostmi o sestanku vam je bilo poslano.';
$lang['add_to_google_calendar'] = 'Dodaj v Google Koledar';
$lang['appointment_booked'] = 'Vaš termin je bil uspešno rezerviran';
$lang['thank_you_for_appointment'] = 'Hvala, ker ste se dogovorili za sestanek z nami. Spodaj si lahko ogledate podrobnosti termina. Izvedite spremembe s klikom na povezavo za termin.';
$lang['appointment_details_title'] = 'Podrobnosti o terminu';
$lang['customer_details_title'] = 'Podrobnosti o stranki';
$lang['service'] = 'Storitev';
$lang['provider'] = 'Ponudnik';
$lang['customer'] = 'Stranka';
$lang['start'] = 'Začetek';
$lang['end'] = 'Konec';
$lang['name'] = 'Ime';
$lang['appointment_link_title'] = 'Povezava do termina';
$lang['success'] = 'Uspeh';
$lang['appointment_added_to_your_plan'] = 'V vaš načrt je bil dodan nov termin.';
$lang['appointment_link_description'] = 'Spremenite lahko s klikom na spodnjo povezavo za sestanek.';
$lang['appointment_locked'] = 'Spreminjanje ni mogoče!';
$lang['appointment_locked_message'] = 'Sestanka ni mogoče spremeniti manj kot {$limit} ur vnaprej.';
$lang['appointment_not_found'] = 'Sestanka ni bilo mogoče najti';
$lang['appointment_does_not_exist_in_db'] = 'Sestanek, ki ste ga zahtevali, ne obstaja več v sistemski bazi podatkov.';
$lang['display_calendar'] = 'Prikaži koledar';
$lang['calendar'] = 'Koledar';
$lang['users'] = 'Uporabniki';
$lang['settings'] = 'Nastavitve';
$lang['log_out'] = 'Odjava';
$lang['synchronize'] = 'Sinhroniziraj';
$lang['enable_sync'] = 'Omogoči sinhronizacijo';
$lang['disable_sync'] = 'Onemogoči sinhronizacijo';
$lang['disable_sync_prompt'] = 'Ali ste prepričani, da želite onemogočiti sinhronizacijo koledarja?';
$lang['reload'] = 'Ponovno naloži';
$lang['appointment'] = 'Sestanek';
$lang['unavailability'] = 'Nerazpoložljivost';
$lang['week'] = 'Teden';
$lang['month'] = 'Mesec';
$lang['today'] = 'Danes';
$lang['not_working'] = 'Ne deluje';
$lang['break'] = 'Prekinitev';
$lang['add'] = 'Dodaj';
$lang['edit'] = 'Uredi';
$lang['hello'] = 'Pozdravljeni';
$lang['all_day'] = 'Ves dan';
$lang['manage_appointment_record_hint'] = 'Upravljaj vse zapise o sestankih razpoložljivih ponudnikov in storitev.';
$lang['select_filter_item_hint'] = 'Izberite ponudnika ali storitev in si oglejte termine na koledarju.';
$lang['enable_appointment_sync_hint'] = 'Omogoči sinhronizacijo sestankov z zunanjim koledarjem.';
$lang['manage_customers_hint'] = 'Upravljajte registrirane stranke in si oglejte zgodovino njihovih rezervacij.';
$lang['manage_services_hint'] = 'Upravljanje razpoložljivih storitev in kategorij sistema.';
$lang['manage_users_hint'] = 'Upravljanje zalednih uporabnikov (skrbniki, ponudniki, tajniki).';
$lang['settings_hint'] = 'Nastavi sistemske in uporabniške nastavitve.';
$lang['log_out_hint'] = 'Odjava iz sistema.';
$lang['unavailability_periods_hint'] = 'Med obdobji nedosegljivosti ponudnik ne sprejema novih terminov.';
$lang['new_appointment_hint'] = 'Ustvarite nov termin in ga shranite v bazo podatkov.';
$lang['reload_appointments_hint'] = 'Ponovno naloži sestanke v koledarju.';
$lang['trigger_sync_hint'] = 'Sproži postopek sinhronizacije koledarja.';
$lang['appointment_updated'] = 'Sestanek je bil uspešno posodobljen.';
$lang['undo'] = 'Razveljavi';
$lang['appointment_details_changed'] = 'Podrobnosti o terminu so spremenjene';
$lang['appointment_changes_saved'] = 'Spremembe termina so bile uspešno shranjene.';
$lang['save'] = 'Shrani';
$lang['new'] = 'Novo';
$lang['select'] = 'Izberi';
$lang['hide'] = 'Skrij';
$lang['type_to_filter_customers'] = 'Vnesite za filtriranje strank.';
$lang['clear_fields_add_existing_customer_hint'] = 'Počistite polja in vnesite novo stranko.';
$lang['pick_existing_customer_hint'] = 'Izberi obstoječo stranko.';
$lang['new_appointment_title'] = 'Nov termin';
$lang['edit_appointment_title'] = 'Uredi termin';
$lang['delete_appointment_title'] = 'Izbriši sestanek';
$lang['write_appointment_removal_reason'] = 'Prosimo, vzemite si minuto in napišite razlog, zakaj brišete sestanek:';
$lang['appointment_saved'] = 'Sestanek je uspešno shranjen.';
$lang['new_unavailability_title'] = 'Nova nedostopnost';
$lang['edit_unavailability_title'] = 'Uredi nerazpoložljivost';
$lang['unavailability_saved'] = 'Nerazpoložljivost je bila uspešno shranjena.';
$lang['start_date_before_end_error'] = 'Vrednost začetnega datuma je poznejša od končnega datuma.';
$lang['invalid_duration'] = 'Neveljavno trajanje.';
$lang['invalid_email'] = 'Neveljaven e-poštni naslov.';
$lang['customers'] = 'Stranke';
$lang['details'] = 'Podrobnosti';
$lang['no_records_found'] = 'Ni najdenih zapisov ...';
$lang['services'] = 'Storitve';
$lang['duration_minutes'] = 'Trajanje (minute)';
$lang['currency'] = 'Valuta';
$lang['category'] = 'Kategorija';
$lang['no_category'] = 'Brez kategorije';
$lang['description'] = 'Opis';
$lang['categories'] = 'Kategorije';
$lang['admins'] = 'Skrbniki';
$lang['providers'] = 'Ponudniki';
$lang['secretaries'] = 'Tajnice';
$lang['mobile_number'] = 'Mobilna številka';
$lang['mobile'] = 'Mobilni';
$lang['state'] = 'Stanje';
$lang['username'] = 'Uporabniško ime';
$lang['password'] = 'Geslo';
$lang['retype_password'] = 'Znova vnesite geslo';
$lang['receive_notifications'] = 'Prejemanje obvestil';
$lang['passwords_mismatch'] = 'Gesla se ne ujemajo.';
$lang['admin_saved'] = 'Skrbnik je uspešno shranjen.';
$lang['provider_saved'] = 'Ponudnik je uspešno shranjen.';
$lang['secretary_saved'] = 'Tajnik je uspešno shranjen.';
$lang['admin_deleted'] = 'Skrbnik uspešno izbrisan.';
$lang['provider_deleted'] = 'Ponudnik je bil uspešno izbrisan.';
$lang['secretary_deleted'] = 'Tajnik je bil uspešno izbrisan.';
$lang['service_saved'] = 'Storitev je uspešno shranjena.';
$lang['service_category_saved'] = 'Kategorija storitve je uspešno shranjena.';
$lang['service_deleted'] = 'Storitev je bila uspešno izbrisana.';
$lang['service_category_deleted'] = 'Kategorija storitve je bila uspešno izbrisana.';
$lang['customer_saved'] = 'Stranka je uspešno shranjena.';
$lang['customer_deleted'] = 'Stranka je bila uspešno izbrisana.';
$lang['current_view'] = 'Trenutni pogled';
$lang['working_plan'] = 'Delovni načrt';
$lang['reset_plan'] = 'Ponastavi načrt';
$lang['monday'] = 'ponedeljek';
$lang['tuesday'] = 'torek';
$lang['wednesday'] = 'sreda';
$lang['thursday'] = 'četrtek';
$lang['friday'] = 'petek';
$lang['saturday'] = 'sobota';
$lang['sunday'] = 'nedelja';
$lang['breaks'] = 'Prekini';
$lang['add_breaks_during_each_day'] = 'Dodaj delovne odmore med vsakim dnem. Med odmori izvajalec ne sprejema terminov.';
$lang[ 'day' ] = 'Dan' ;
$lang[ 'days' ] = 'Dnevi' ;
$lang[ 'actions' ] = 'Dejanja' ;
$lang[ 'reset_working_plan_hint' ] = 'Ponastavi delovni načrt nazaj na privzete vrednosti . ' ;
$lang[ 'company_name' ] = 'Ime podjetja' ;
$lang[ 'company_name_hint' ] = 'Ime podjetja bo prikazano povsod v sistemu(obvezno) . ' ;
$lang[ 'company_email' ] = 'E - pošta podjetja' ;
$lang[ 'company_email_hint' ] = 'To bo e - poštni naslov podjetja . Uporabljen bo kot pošiljatelj in naslov za odgovor sistemske e - pošte(obvezno) . ' ;
$lang[ 'company_link' ] = 'Povezava do podjetja' ;
$lang[ 'company_link_hint' ] = 'Povezava podjetja mora kazati na uradno spletno stran podjetja(obvezno) . ' ;
$lang[ 'go_to_booking_page' ] = 'Pojdi na stran za rezervacije' ;
$lang[ 'settings_saved' ] = 'Nastavitve so uspešno shranjene . ' ;
$lang[ 'general' ] = 'Splošno' ;
$lang[ 'booking' ] = 'Rezervacija' ;
$lang[ 'visible' ] = 'Viden' ;
$lang[ 'hidden' ] = 'Skrito' ;
$lang[ 'business_logic' ] = 'Poslovna logika' ;
$lang[ 'current_user' ] = 'Trenutni uporabnik' ;
$lang[ 'about_app' ] = 'O Easy! Appointments' ;
$lang[ 'edit_working_plan_hint' ] = 'Spodaj označite dneve in ure, ko bo vaše podjetje sprejelo sestanke . Termine v izven delovnem času boste lahko prilagajali, v prostem času pa stranke ne bodo mogle same rezervirati terminov . Ta delovni načrt bo privzet za vsak nov zapis ponudnika, vendar boste lahko spreminjali načrt vsakega ponudnika posebej z urejanjem njegovega zapisa . Po tem lahko dodate obdobja odmora . ' ;
$lang[ 'edit_breaks_hint' ] = 'Dodaj delovne odmore za vsak dan . Te prekinitve bodo veljale za vse nove ponudnike . ';
$lang['book_advance_timeout'] = 'Časovna omejitev pred knjigo vnaprej';
$lang['book_advance_timeout_hint'] = 'Določite časovno omejitev (v minutah), preden lahko stranke rezervirajo ali se ponovno dogovorijo za sestanke s podjetjem.';
$lang['timeout_minutes'] = 'Časovna omejitev (minute)';
$lang['about_app_info'] = 'Easy!Appointments je zelo prilagodljiva spletna aplikacija, ki vašim strankam omogoča, da rezervirajo sestanke pri vas prek spleta. Poleg tega ponuja možnost sinhronizacije vaših podatkov z Google Koledarjem, tako da jih lahko uporabljate z drugimi storitvami.';
$lang['current_version'] = 'Trenutna različica';
$lang['support'] = 'Podpora';
$lang['about_app_support'] = 'Če naletite na težave pri uporabi Easy!Appointments, lahko poiščete odgovore v uradni Googlovi skupini. Morda boste morali ustvariti tudi novo številko na strani Google Code, da bi pomagali pri napredovanju razvoja.';
$lang['official_website'] = 'Uradna spletna stran';
$lang['google_plus_community'] = 'Skupnost Google+';
$lang['support_group'] = 'Skupina za podporo';
$lang['project_issues'] = 'Projektne težave';
$lang['license'] = 'Licenca';
$lang['about_app_license'] = 'Easy!Appointments je licenciran pod licenco GPLv3. Z uporabo kode Easy!Appointments na kakršen koli način soglašate s pogoji, opisanimi na naslednjem url-ju:';
$lang['logout_success'] = 'Uspešno ste bili odjavljeni! Za navigacijo na drugo stran kliknite enega od naslednjih gumbov.';
$lang['book_appointment_title'] = 'Rezerviraj termin';
$lang['backend_section'] = 'Zaledni razdelek';
$lang['you_need_to_login'] = 'Dobrodošli! Za ogled zalednih strani se boste morali prijaviti.';
$lang['enter_username_here'] = 'Sem vnesite svoje uporabniško ime ...';
$lang['enter_password_here'] = 'Tukaj vnesite svoje geslo ...';
$lang['login'] = 'Prijava';
$lang['forgot_your_password'] = 'Ste pozabili geslo?';
$lang['login_failed'] = 'Prijava ni uspela, vnesite pravilne poverilnice in poskusite znova.';
$lang['type_username_and_email_for_new_password'] = 'Vnesite vaše uporabniško ime in vaš e-poštni naslov, da dobite novo geslo.';
$lang['enter_email_here'] = 'Tukaj vnesite svoj e-poštni naslov ...';
$lang['regenerate_password'] = 'Ponovno ustvari geslo';
$lang['go_to_login'] = 'Nazaj na prijavno stran';
$lang['new_password_sent_with_email'] = 'Vaše novo geslo vam je bilo poslano z e-pošto.';
$lang['new_account_password'] = 'Novo geslo za račun';
$lang['new_password_is'] = 'Vaše novo geslo za račun je $password. Prosimo, shranite to e-pošto, da boste lahko po potrebi pridobili svoje geslo. To geslo lahko tudi spremenite z novim na strani z nastavitvami.';
$lang['delete_record_prompt'] = 'Ali ste prepričani, da želite izbrisati ta zapis? Tega dejanja ni mogoče razveljaviti.';
$lang['delete_admin'] = 'Izbriši skrbnika';
$lang['delete_customer'] = 'Izbriši stranko';
$lang['delete_service'] = 'Izbriši storitev';
$lang['delete_service_category'] = 'Izbriši kategorijo storitve';
$lang['delete_provider'] = 'Izbriši ponudnika';
$lang['delete_secretary'] = 'Izbriši tajnika';
$lang['delete_appointment'] = 'Izbriši sestanek';
$lang['delete_unavailability'] = 'Izbriši nedostopnost';
$lang['delete'] = 'Izbriši';
$lang['unexpected_issues'] = 'Nepričakovane težave';
$lang['unexpected_issues_message'] = 'Operacije ni bilo mogoče dokončati zaradi nepričakovanih težav.';
$lang['close'] = 'Zapri';
$lang['page_not_found'] = 'Strani ni bilo mogoče najti';
$lang['page_not_found_message'] = 'Stran, ki ste jo zahtevali, žal ne obstaja. Preverite URL svojega brskalnika ali se pomaknite na drugo lokacijo s spodnjimi gumbi.';
$lang['error'] = 'Napaka';
$lang['no_privileges'] = 'Brez privilegijev';
$lang['no_privileges_message'] = 'Nimate potrebnih privilegijev za ogled te strani. Pomaknite se do drugega razdelka.';
$lang['backend_calendar'] = 'Zaledni koledar';
$lang['start_date_time'] = 'Začetni datum/čas';
$lang['end_date_time'] = 'Končni datum/čas';
$lang['licensed_under'] = 'Licencirano pod';
$lang['unexpected_issues_occurred'] = 'Prišlo je do nepričakovanih težav.';
$lang['service_communication_error'] = 'Prišlo je do napake v komunikaciji strežnika, poskusite znova.';
$lang['no_privileges_edit_appointments'] = 'Nimate potrebnih pravic za urejanje sestankov.';
$lang['unavailability_updated'] = 'Nerazpoložljivost je bila uspešno posodobljena.';
$lang['appointments'] = 'Sestanki';
$lang['unexpected_warnings'] = 'Nepričakovana opozorila';
$lang['unexpected_warnings_message'] = 'Operacija je bila končana, vendar se je pojavilo nekaj opozoril.';
$lang['filter'] = 'Filter';
$lang['clear'] = 'Počisti';
$lang['uncategorized'] = 'Nekategorizirano';
$lang['username_already_exists'] = 'Uporabniško ime že obstaja.';
$lang['password_length_notice'] = 'Geslo mora vsebovati najmanj $number znakov.';
$lang['general_settings'] = 'Splošne nastavitve';
$lang['personal_information'] = 'Osebni podatki';
$lang['system_login'] = 'Prijava v sistem';
$lang['user_settings_are_invalid'] = 'Uporabniške nastavitve so neveljavne! Preverite svoje nastavitve in poskusite znova.';
$lang['add_break'] = 'Dodaj prelom';
$lang['january'] = 'Januar';
$lang['february'] = 'februar';
$lang['march'] = 'marec';
$lang['april'] = 'april';
$lang['may'] = 'Maj';
$lang['junij'] = 'junij';
$lang['july'] = 'julij';
$lang['avgust'] = 'avgust';
$lang['september'] = 'september';
$lang['october'] = 'oktober';
$lang['november'] = 'november';
$lang['december'] = 'december';
$lang['previous'] = 'Prejšnji';
$lang['next'] = 'Naprej';
$lang['now'] = 'Zdaj';
$lang['select_time'] = 'Izberi čas';
$lang['time'] = 'Čas';
$lang['hour'] = 'Ura';
$lang['minute'] = 'Minuta';
$lang['calendar_sync_completed'] = 'Sinhronizacija koledarja je bila uspešno zaključena.';
$lang['calendar_sync_failed'] = 'Sinhronizacija koledarja ni uspela: povezave s strežnikom ni bilo mogoče vzpostaviti.';
$lang['select_sync_calendar'] = 'Izberi koledar';
$lang['select_sync_calendar_prompt'] = 'Izberite koledar, s katerim želite sinhronizirati svoje sestanke.';
$lang['sync_calendar_selected'] = 'Koledar za sinhronizacijo je bil uspešno izbran.';
$lang['oops_something_went_wrong'] = 'Ojoj! Nekaj je šlo narobe.';
$lang['ea_update_success'] = 'Easy!Appointments je bil uspešno posodobljen.';
$lang['require_captcha'] = 'Zahtevaj CAPTCHA';
$lang['require_captcha_hint'] = 'Ko je omogočeno, bodo morale stranke pred rezervacijo/posodabljanjem termina vnesti naključno ustvarjen niz CAPTCHA.';
$lang['captcha_is_wrong'] = 'CAPTCHA preverjanje ni uspelo, poskusite znova.';
$lang['any_provider'] = 'Kateri koli ponudnik';
$lang['requested_hour_is_unavailable'] = 'Zahtevani termin žal ni na voljo. Prosimo izberite drugo uro za vaš termin.';
$lang['customer_notifications'] = 'Obvestila strank';
$lang['customer_notifications_hint'] = 'Določi, ali bo stranka prejela e-poštna obvestila vsakič, ko pride do spremembe urnika enega od njegovih terminov.';
$lang['date_format'] = 'Oblika datuma';
$lang['date_format_hint'] = 'Spremeni obliko prikaza datuma (D - datum, M - mesec, Y - leto).';
$lang['time_format'] = 'Časovna oblika';
$lang['time_format_hint'] = 'Spremeni obliko prikaza časa (H - ure, M - minute).';
$lang['first_weekday'] = 'Prvi dan v tednu';
$lang['first_weekday_hint'] = 'Nastavi prvi dan koledarskega tedna.';
$lang['google_analytics_code_hint'] = 'Dodajte kodo Google Analytics, da omogočite sledenje Google Analytics na straneh za rezervacije.';
$lang['availabilities_type'] = 'Vrsta razpoložljivosti';
$lang['flexible'] = 'Prilagodljiv';
$lang['fixed'] = 'Fiksno';
$lang['attendants_number'] = 'Številka spremljevalcev';
$lang['reset_working_plan'] = 'Ponastavi delovni načrt nazaj na privzete vrednosti.';
$lang['legal_contents'] = 'Pravna vsebina';
$lang['cookie_notice'] = 'Obvestilo o piškotkih';
$lang['display_cookie_notice'] = 'Prikaži obvestilo o piškotkih';
$lang['cookie_notice_content'] = 'Vsebina obvestila o piškotkih';
$lang['terms_and_conditions'] = 'Določila in pogoji';
$lang['display_terms_and_conditions'] = 'Prikaži določila in pogoje';
$lang['terms_and_conditions_content'] = 'Vsebina določil in pogojev';
$lang['privacy_policy'] = 'Politika zasebnosti';
$lang['display_privacy_policy'] = 'Prikaži pravilnik o zasebnosti';
$lang['privacy_policy_content'] = 'Vsebina pravilnika o zasebnosti';
$lang['website_using_cookies_to_ensure_best_experience'] = 'To spletno mesto uporablja piškotke, da vam zagotovi najboljšo izkušnjo na našem spletnem mestu.';
$lang['read_and_agree_to_terms_and_conditions'] = 'Prebral sem {$link}pogoje in določila{/$link} in se strinjam z njimi.';
$lang['read_and_agree_to_privacy_policy'] = 'Prebral sem in se strinjam s {$link}pravilnikom o zasebnosti{/$link}.';
$lang['delete_personal_information_hint'] = 'Odstrani vse svoje sestanke in osebne podatke iz sistema.';
$lang['delete_personal_information'] = 'Izbriši osebne podatke';
$lang['delete_personal_information_prompt'] = 'Ali ste prepričani, da želite izbrisati svoje osebne podatke? Tega dejanja ni mogoče razveljaviti.';
$lang['location'] = 'Lokacija';
$lang['working_plan_exception'] = 'Izjema delovnega načrta';
$lang['working_plan_exceptions'] = 'Izjeme delovnega načrta';
$lang['working_plan_exceptions_hint'] = 'Dodaj dan izjeme delovnega načrta, zunaj delovnega načrta.';
$lang['new_working_plan_exception_title'] = 'Nova izjema delovnega načrta';
$lang['working_plan_exception_saved'] = 'Izjema delovnega načrta je uspešno shranjena.';
$lang['working_plan_exception_deleted'] = 'Izjema delovnega načrta je bila uspešno izbrisana.';
$lang['add_working_plan_exceptions_during_each_day'] = 'Dodaj izjeme delovnega načrta zunaj delovnega načrta.';
$lang['add_working_plan_exception'] = 'Dodaj izjemo delovnega načrta';
$lang['require_phone_number'] = 'Zahtevaj telefonsko številko';
$lang['require_phone_number_hint'] = 'Ko je omogočeno, bodo stranke in uporabniki morali vnesti telefonsko številko stranke pri rezervaciji termina';
$lang['check_spam_folder'] = 'Prosimo, preverite mapo z vsiljeno pošto, če e-pošta ne prispe v nekaj minutah.';
$lang['api_token_hint'] = 'Nastavite skrivni žeton, da omogočite avtentikacijo Easy!Appointments API na podlagi žetonov.';
$lang['timezone'] = 'Časovni pas';
$lang['overwrite_existing_working_plans'] = 'To bo prepisalo obstoječe delovne načrte ponudnika. Ali ste prepričani, da želite nadaljevati?';
$lang['working_plans_got_updated'] = 'Vsi delovni načrti so bili posodobljeni.';
$lang['apply_to_all_providers'] = 'Uporabi za vse ponudnike';
$lang['display_any_provider'] = 'Prikaži katero koli možnost ponudnika';
$lang['display_any_provider_hint'] = 'Stran za rezervacije bo dobila dodatno možnost, ki strankam omogoča rezervacijo brez navedbe ponudnika.';
$lang['load_more'] = 'Naloži več';
$lang['list'] = 'Seznam';
$lang['default'] = 'Privzeto';
$lang['table'] = 'Tabela';
$lang['date'] = 'Datum';
$lang['about'] = 'O';
$lang['booking_settings'] = 'Nastavitve rezervacije';
$lang['display'] = 'Prikaz';
$lang['require'] = 'Zahtevaj';
$lang['color'] = 'Barva';
$lang['matomo_analytics_url_hint'] = 'Dodajte URL svoji lastni namestitvi Matomo, da omogočite sledenje Matomo na straneh za rezervacije.';
$lang['invalid_phone'] = 'Neveljavna telefonska številka.';
$lang['legal'] = 'Pravno';
$lang['business'] = 'Posel';
$lang['account'] = 'Račun';
$lang['disable_booking'] = 'Onemogoči rezervacijo';
$lang['disable_booking_hint'] = 'Stran za rezervacije bo onemogočena, dokler je ta nastavitev aktivna in stranke ne bodo mogle registrirati novih terminov.';
$lang['display_message'] = 'Prikaži sporočilo';
$lang['booking_is_disabled'] = 'Rezervacija je onemogočena!';
$lang['appearance'] = 'Videz';
$lang['company_logo'] = 'Logotip podjetja';
$lang['company_logo_hint'] = 'Logotip podjetja bo prikazan na mnogih mestih v aplikaciji, vključno s stranjo za rezervacije in e-poštnimi obvestili (slikovna datoteka, največ 2 MB).';
$lang['company_color'] = 'Barva podjetja';
$lang['company_color_hint'] = 'Barva podjetja bo uporabljena v celotni aplikaciji, tako da aplikacija uporablja vašo blagovno znamko.';
$lang['localization'] = 'Lokalizacija';
$lang['integrations'] = 'Integracije';
$lang['company'] = 'Podjetje';
$lang['remove'] = 'Odstrani';
$lang['login_button'] = 'Gumb za prijavo';
$lang['display_login_button_hint'] = 'Določi, ali je gumb za prijavo prikazan na strani za rezervacije.';
$lang['private'] = 'Zasebno';
$lang['private_hint'] = 'Zasebni zapisi ne bodo prikazani ali obdelani na javnih straneh, kot je stran za rezervacije.';
$lang['reset'] = 'Ponastavi';
$lang['all'] = 'Vse';
$lang['booking_link'] = 'Povezava za rezervacijo';
$lang['add_new_event'] = 'Dodaj nov dogodek';
$lang['what_kind_of_event'] = 'Kakšno vrsto dogodka želite dodati?';
$lang['theme'] = 'Tema';
$lang['limit_customer_access'] = 'Omeji dostop strank';
$lang['limit_customer_access_hint'] = 'Če je omogočeno, bodo ponudniki in tajniki lahko dostopali le do strank, s katerimi so dogovorjeni za sestanek.';
$lang['url'] = 'URL';
$lang['secret_token'] = 'Skrivni žeton';
$lang['verify_ssl'] = 'Preveri SSL';
$lang['appointment_save'] = 'Shranjevanje termina';
$lang['appointment_delete'] = 'Brisanje termina';
$lang['unavailability_save'] = 'Shrani zaradi nerazpoložljivosti';
$lang['unavailability_delete'] = 'Brisanje nerazpoložljivosti';
$lang['customer_save'] = 'Shrani stranko';
$lang['customer_delete'] = 'Izbris stranke';
$lang['service_save'] = 'Shranjevanje storitve';
$lang['service_delete'] = 'Brisanje storitve';
$lang['service_category_save'] = 'Shrani kategorijo storitve';
$lang['service_category_delete'] = 'Brisanje kategorije storitve';
$lang['provider_save'] = 'Shranjevanje ponudnika';
$lang['provider_delete'] = 'Izbris ponudnika';
$lang['secretary_save'] = 'Tajniško shranjevanje';
$lang['secretary_delete'] = 'Izbriši tajnika';
$lang['admin_save'] = 'Skrbniško shranjevanje';
$lang['admin_delete'] = 'Skrbniško brisanje';
$lang['options'] = 'Možnosti';
$lang['webhooks'] = 'Spletne trnke';
$lang['webhooks_info'] = 'Webhooks vam omogočajo pošiljanje obvestil HTTP zunanjim spletnim aplikacijam kot odgovor na različne dogodke aplikacije, kot je ustvarjanje sestanka ali odstranitev stranke.';
$lang['integrations_info'] = 'Integracije vam omogočajo vzpostavljanje povezav tretjih oseb z zunanjimi aplikacijami in API-ji.';
$lang['configure'] = 'Konfiguriraj';
$lang['google_analytics'] = 'Google Analytics';
$lang['google_analytics_info'] = 'Google Analytics vam omogoča samodejno dodajanje kode za sledenje in oznake HTML na javno stran ter sledenje vsem javnim rezervacijskim sejam.';
$lang['matomo_analytics'] = 'Matomo Analytics';
$lang['matomo_analytics_info'] = 'Matomo Analytics vam omogoča samodejno dodajanje kode za sledenje in oznake HTML na javno stran ter sledenje vsem javnim rezervacijskim sejam.';
$lang['api'] = 'API';
$lang['api_info'] = 'API vam omogoča interakcijo z vsemi podatki Easy!Appointments prek protokola HTTP in razpoložljivih končnih točk API ter ustvarjanje lastnih integracij.';
$lang['google_analytics_code'] = 'Koda Google Analytics';
$lang['matomo_analytics_url'] = 'URL Matomo Analytics';
$lang['future_booking_limit'] = 'Prihodnja omejitev rezervacij';
$lang['limit_days'] = 'Omejitev (dnevi)';
$lang['future_booking_limit_hint'] = 'Nastavite prihodnjo omejitev v dneh, ko se lahko stranke naročijo prek javne strani za rezervacije.';
$lang['api_token'] = 'API žeton';
$lang['allow_rescheduling_cancellation_before'] = 'Dovoli prestavitev/preklic pred';
$lang['at_least_one_field'] = 'Vsaj eno polje mora biti prikazano na strani za rezervacije.';
$lang['status'] = 'Stanje';
$lang['appointment_status_options'] = 'Možnosti statusa sestanka';
$lang['appointment_status_options_info'] = 'Določite seznam razpoložljivih možnosti statusa sestanka, ki jih je mogoče uporabiti na strani koledarja (prva bo samodejno postala privzeta vrednost).';
$lang['sunday_short'] = 'Sonce';
$lang['monday_short'] = 'pon';
$lang['tuesday_short'] = 'tor';
$lang['wednesday_short'] = 'Sre';
$lang['thursday_short'] = 'čet';
$lang['friday_short'] = 'pet';
$lang['saturday_short'] = 'sob';
$lang['january_short'] = 'Januar';
$lang['february_short'] = 'februar';
$lang['march_short'] = 'mar';
$lang['april_short'] = 'Apr';
$lang['may_short'] = 'Maj';
$lang['june_short'] = 'junij';
$lang['july_short'] = 'Jul';
$lang['august_short'] = 'avgust';
$lang['september_short'] = 'september';
$lang['october_short'] = 'Okt';
$lang['november_short'] = 'nov';
$lang['december_short'] = 'dec';
$lang['am'] = 'am';
$lang['pm'] = 'pm';
$lang['do'] = 'do';
$lang['click_to_toggle'] = 'Kliknite za preklop';
$lang['week_short'] = 'Ted';
$lang['scroll_to_increment'] = 'Pomakni se za povečanje';
$lang['year'] = 'Leto';
$lang['make_non_working_day'] = 'Ta ponudnik ne bo na voljo za delo na izbrani dan.';
$lang['no_breaks'] = 'Brez prekinitev';
$lang['service_categories'] = 'Kategorije storitev';
$lang['service_category'] = 'Kategorija storitve';
$lang['blocked_period_saved'] = 'Blokirano obdobje je uspešno shranjeno.';
$lang['blocked_period_deleted'] = 'Blokirano obdobje je bilo uspešno izbrisano.';
$lang['delete_blocked_period'] = 'Izbriši blokirano obdobje';
$lang['blocked_period'] = 'Blokirano obdobje';
$lang['blocked_periods'] = 'Blokirana obdobja';
$lang['blocked_period_save'] = 'Shranjevanje blokiranega obdobja';
$lang['blocked_period_delete'] = 'Brisanje blokiranega obdobja';
$lang['blocked_periods_hint'] = 'Določite časovna obdobja, v katerih bodo javne rezervacije onemogočene za vse ponudnike (npr. zaprti datumi, prazniki itd.).';
$lang['custom_field'] = 'Polje po meri';
$lang['custom_fields'] = 'Polja po meri';
$lang['label'] = 'Oznaka';
$lang['webhook_saved'] = 'Webhook je uspešno shranjen.';
$lang['webhook_deleted'] = 'Webhook je bil uspešno izbrisan.';
$lang['delete_webhook'] = 'Izbriši Webhook';
$lang['contact_info'] = 'Podatki za stik';
$lang['hide_from_public'] = 'Skrij pred javnostjo';
$lang['matomo_analytics_site_id'] = 'ID spletnega mesta Matomo Analytics';
$lang['matomo_analytics_site_id_hint'] = 'Nastavite ID mesta, ki mu bo sledil Matomo (privzeto mesto ima ID »1«).';
$lang['default_timezone'] = 'Privzeti časovni pas';
$lang['default_timezone_hint'] = 'Nastavite privzeto vrednost časovnega pasu, ki bo uporabljena za nove zapise.';
$lang['default_language'] = 'Privzeti jezik';
$lang['default_language_hint'] = 'Nastavite privzeto jezikovno vrednost, ki bo uporabljena za nove zapise.';
$lang['sync_method_prompt'] = 'Katero metodo sinhronizacije želite uporabiti?';
$lang['caldav_server'] = 'Strežnik CalDAV';
$lang['caldav_connection_info_prompt'] = 'Prosimo, vnesite podatke o povezavi ciljnega koledarja CalDAV.';
$lang['connect'] = 'Poveži';
$lang['ldap'] = 'LDAP';
$lang['ldap_info'] = 'Ta integracija vam omogoča, da se povežete z obstoječim strežnikom LDAP in samodejno uvozite uporabnike v Easy!Appointments ter jim omogočite SSO z njihovim geslom imenika (uporabniško ime se mora ujemati).';
$lang['host'] = 'Gostitelj';
$lang['port'] = 'Vrata';
$lang['user_dn'] = 'Uporabniško DN';
$lang['base_dn'] = 'Osnovni DN';
$lang['keyword'] = 'Ključna beseda';
$lang['ldap_search_hint'] = 'Vnesite ključno besedo za iskanje po imeniku LDAP za uporabnike, ki ustrezajo kriterijem filtra.';
$lang['ldap_extension_not_loaded'] = 'Razširitev LDAP PHP ni naložena, vendar je potrebna za delovanje te integracije.';
$lang['field_mapping'] = 'Preslikava polj';
$lang['content'] = 'Vsebina';
$lang['active'] = 'Aktivno';
$lang['user_imported'] = 'Uporabniški zapis je bil uspešno uvožen.';
$lang['import'] = 'Uvoz';
$lang['ldap_dn'] = 'LDAP DN';
$lang['role'] = 'Vloga';
$lang['at_least_one_field_required'] = 'Vsaj eno polje mora biti nastavljeno kot zahtevano na strani za rezervacije.';
$lang['customer_is_already_booked'] = 'Ta stranka že ima termin v zahtevanem obdobju rezervacije.';
$lang['fields'] = 'Polja';
$lang['invalid_credentials_provided'] = 'Navedene neveljavne poverilnice, poskusite znova.';
$lang['calendar_url'] = 'URL koledarja';
$lang['please_select'] = 'Prosim izberite';
// 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.';