merge changes from master branch

This commit is contained in:
Aliberk Sandıkçı 2023-12-22 23:44:48 +03:00
parent 054c4fe36d
commit abfac25d81
Signed by: asandikci
GPG key ID: 25C67A03B5666BC1
475 changed files with 671 additions and 47571 deletions

1
.gitignore vendored
View file

@ -6,6 +6,7 @@
/docs/jsdoc/html
/docs/plato/html
/docker/mysql/*
/docker/build/iflrandevu-*
!/docker/mysql/.gitkeep
/node_modules/
/npm-debug.log

View file

@ -64,6 +64,7 @@ $autoload['libraries'] = ['database', 'session'];
*/
$autoload['helper'] = [
'iflrandevu/branding',
'array',
'asset',
'config',
@ -86,6 +87,7 @@ $autoload['helper'] = [
'url',
'validation'
];
// security, render and custom_exceptions helpers are missing (comparing to master branch MASTER-DEV-NOTE)
/*
| -------------------------------------------------------------------
@ -102,6 +104,7 @@ $autoload['helper'] = [
$autoload['config'] = ['app', 'google', 'email'];
/*
| -------------------------------------------------------------------
| Auto-load Language files
@ -115,7 +118,7 @@ $autoload['config'] = ['app', 'google', 'email'];
|
*/
$autoload['language'] = [];
$autoload['language'] = []; // see /application/core/EA_Controller.php for other added languages
/*
| -------------------------------------------------------------------

View file

@ -87,37 +87,8 @@ $config['url_suffix'] = '';
*/
$languages = [
'ar' => 'arabic',
'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',
'he' => 'hebrew',
'hi' => 'hindi',
'hu' => 'hungarian',
'it' => 'italian',
'ja' => 'japanese',
'fa' => 'persian',
'lb' => 'luxembourgish',
'mr' => 'marathi',
'pl' => 'polish',
'pt' => 'portuguese',
'ro' => 'romanian',
'ru' => 'russian',
'rs' => 'serbian',
'sk' => 'slovak',
'es' => 'spanish',
'sv' => 'swedish',
'tr' => 'turkish'
// 'en' => 'english',
'tr' => 'turkish',
];
$config['language_codes'] = $languages;
@ -141,37 +112,7 @@ $config['language_code'] = array_search($config['language'], $languages) ?: 'en'
|
*/
$config['available_languages'] = [
'arabic',
'bulgarian',
'catalan',
'chinese',
'croatian',
'czech',
'danish',
'dutch',
'english',
'estonian',
'finnish',
'french',
'german',
'greek',
'hebrew',
'hindi',
'hungarian',
'italian',
'japanese',
'luxembourgish',
'marathi',
'persian',
'polish',
'portuguese',
'portuguese-br',
'romanian',
'russian',
'serbian',
'slovak',
'spanish',
'swedish',
'turkish'
];

View file

@ -122,6 +122,7 @@ class EA_Controller extends CI_Controller
}
$this->lang->load('translations');
$this->lang->load('iflrandevu/translations');
}
/**

View file

@ -0,0 +1,86 @@
<?php
/**
* Copyleft
*
* @package iflrandevu
* @author asandikci
* @copyright Copyleft (c) 2023 - 2024
* @license https://opensource.org/licenses/GPL-3.0 GPL3.0 License
* @link https://iflpanel.com/about/randevu
* @since Version 1.4.3
* @filesource
*/
use function PHPSTORM_META\type;
defined('BASEPATH') or exit('No direct script access allowed');
/**
* IFLRandevu Branding Helper
*
* @package iflrandevu
* @subpackage Helpers
* @category Helpers
* @author asandikci
*/
// ------------------------------------------------------------------------
if (!function_exists('branding')) {
/**
* Branding
* Update Branding
*
* @param string product
* @param string type
* @return string
*/
function branding($product, $type)
{
// Yazılım Sağlayıcı Bilgileri
$software = array(
"name" => "İFL Randevu",
"description" => "İzmir Fen Lisesi Randevu Portalı",
"maintainers" => "Aliberk Sandıı & Alex Tselegidis", // to also give credit to original maintainer
"maintainer_nickname" => "asandikci",
"maintainer_name" => "Aliberk Sandıı",
"maintainer_website" => "https://asandikci.com/",
"license" => "GPL3.0",
"website" => "https://iflpanel.com/about/iflrandevu",
"example" => "https://randevu.iflpanel.com/",
"source" => "https://git.aliberksandikci.com.tr/ifl/iflrandevu",
"issues" => "https://git.aliberksandikci.com.tr/ifl/iflrandevu/issues"
);
// Upstream Yazılım Sağlayıcı Bilgileri
$upstream = array (
"name" => "Easy!Appointments",
"description" => "Self Hosted Appointment Scheduler ",
"maintainer_nickname" => "alextselegidis",
"maintainer_name" => "Alex Tselegidis",
"maintainer_website" => "https://alextselegidis.com",
"license" => "GPL3.0",
"website" => "https://easyappointments.org",
"example" => "https://demo.easyappointments.org/",
"source" => "https://github.com/alextselegidis/easyappointments",
"issues" => "https://github.com/alextselegidis/easyappointments/issues",
);
switch ($product) {
case 'software':
return $software[$type];
break;
case 'type':
return $upstream[$type];
break;
}
}
}

View file

@ -1,84 +0,0 @@
<?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

@ -1,94 +0,0 @@
<?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

@ -1,35 +0,0 @@
<?php
/**
* System messages translation for CodeIgniter(tm)
*
* @author CodeIgniter community
* @copyright Copyright (c) 2014-2018, British Columbia Institute of Technology (http://bcit.ca/)
* @license http://opensource.org/licenses/MIT MIT License
* @link https://codeigniter.com
*/
defined('BASEPATH') or exit('No direct script access allowed');
$lang['db_invalid_connection_str'] = 'غير قادر على إيجاد إعدادات الإتصال بقواعد البيانات بناء على البيانات المرسلة.';
$lang['db_unable_to_connect'] = 'غير قادر على الإتصال بقواعد البيانات بناء على الإعدادات المقدمة.';
$lang['db_unable_to_select'] = 'غير قادر على تحديد قاعدة البيانات التالية: %s';
$lang['db_unable_to_create'] = 'غير قادر على إنشاء قاعدة البيانات التالية: %s';
$lang['db_invalid_query'] = 'الإستعلام المرسل غير صحيح.';
$lang['db_must_set_table'] = 'يجب وضع جدول قاعدة بيانات للإستخدام مع الإستعلام.';
$lang['db_must_use_set'] = 'يجب إستخدام خاصية "set" لتحديث السجل.';
$lang['db_must_use_index'] = 'يجب تحديد رقم للتحديثات.';
$lang['db_batch_missing_index'] = 'سجل أو أكثر لا يحتوي على رقم التحديث.';
$lang['db_must_use_where'] = 'التحديث غير مسموح به ما لم يحتوي على جملة "where" أو "like".';
$lang['db_del_must_use_where'] = 'الحذف غير مسموح به ما لم يحتوي على جملة "where" أو "like".';
$lang['db_field_param_missing'] = 'لجلب أسماء الحقول يجب إرسال اسم الجدول بصفته متغيرا.';
$lang['db_unsupported_function'] = 'هذه الميزة غير متوفرة في قاعدة البيانات التي تستخدمها.';
$lang['db_transaction_failure'] = 'فشل في الإجراء: تم التراجع عن الإجراء.';
$lang['db_unable_to_drop'] = 'غير قادر على إزالة قاعدة البيانات المحددة.';
$lang['db_unsupported_feature'] = 'ميزة غير متوفرة في قاعدة البيانات التي تستخدمها.';
$lang['db_unsupported_compression'] = 'نوع ضغط الملف المحدد غير مدعوم على الخادم.';
$lang['db_filepath_error'] = 'غير قادر على كتابة الملف في المسار المحدد.';
$lang['db_invalid_cache_path'] = 'مسار التخزين المؤقت غير صحيح أو غير قابل للكتابة.';
$lang['db_table_name_required'] = 'اسم الجدول مطلوب لهذه العملية.';
$lang['db_column_name_required'] = 'اسم العمود مطلوب لهذه العملية.';
$lang['db_column_definition_required'] = 'تعريف العمود مطلوب لهذه العملية.';
$lang['db_unable_to_set_charset'] = 'غير قادر على تحديد نوع الترميز: %s';
$lang['db_error_heading'] = 'حصل خطأ في قاعدة البيانات';

View file

@ -1,30 +0,0 @@
<?php
/**
* System messages translation for CodeIgniter(tm)
*
* @author CodeIgniter community
* @copyright Copyright (c) 2014-2018, British Columbia Institute of Technology (http://bcit.ca/)
* @license http://opensource.org/licenses/MIT MIT License
* @link https://codeigniter.com
*/
defined('BASEPATH') or exit('No direct script access allowed');
$lang['email_must_be_array'] = 'يجب تمرير مصفوفة إلى دالة التحقق من البريد الإلكتروني.';
$lang['email_invalid_address'] = 'عنوان بريد إلكتروني خاطئ: %s';
$lang['email_attachment_missing'] = 'غير قادر على إيجاد الملف المرفق: %s';
$lang['email_attachment_unreadable'] = 'غير قاد على فتح الملف المرفق: %s';
$lang['email_no_from'] = 'لا يمكن إرسال البريد الإلكتروني بدون تحديد المرسل.';
$lang['email_no_recipients'] = 'يجب إضافة مستقبلين: To, Cc, or Bcc';
$lang['email_send_failure_phpmail'] = 'غير قادر على الإرسال باستخدام PHP mail(). قد يكون الخادم غير معد للإرسال باستخدام هذه الطريقة.';
$lang['email_send_failure_sendmail'] = 'غير قادر على الإرسال باستخدام PHP Sendmail. قد يكون الخادم غير معد للإرسال باستخدام هذه الطريقة.';
$lang['email_send_failure_smtp'] = 'غير قادر على الإرسال باستخدام PHP SMTP. قد يكون الخادم غير معد للإرسال باستخدام هذه الطريقة.';
$lang['email_sent'] = 'تم إرسال الرسالة بنجاح باستخدام البروتوكول التالي: %s';
$lang['email_no_socket'] = 'غير قادر على فتح إتصال مع Sendmail. الرجاء التأكد من الإعدادات.';
$lang['email_no_hostname'] = 'لم تحدد إسم المضيف لـ SMTP.';
$lang['email_smtp_error'] = 'خطأ SMTP حدث: %s';
$lang['email_no_smtp_unpw'] = 'خطأ: يجب تحديد إسم مستخدم وكلمة مرور لـ SMTP.';
$lang['email_failed_smtp_login'] = 'فشل في إرسال أمر AUTH LOGIN command. الخطأ: %s';
$lang['email_smtp_auth_un'] = 'فشل في التحقق من اسم المستخدم. الخطأ: %s';
$lang['email_smtp_auth_pw'] = 'فشل في التحقق من كلمة مرور. الخطأ: %s';
$lang['email_smtp_data_failure'] = 'غير قادر على إرسال البيانات: %s';
$lang['email_exit_status'] = 'رمز الخطأ: %s';

View file

@ -1,69 +0,0 @@
<?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

@ -1,51 +0,0 @@
<?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

@ -1,57 +0,0 @@
<?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

@ -1,10 +0,0 @@
<html>
<head>
<title> ٤٠٣ غير مصرح للوصول هنا </title>
</head>
<body>
<p>الوصول هنا غير مصرح به.</p>
</body>
</html>

View file

@ -1,19 +0,0 @@
<?php
/**
* System messages translation for CodeIgniter(tm)
*
* @author CodeIgniter community
* @copyright Copyright (c) 2014-2018, British Columbia Institute of Technology (http://bcit.ca/)
* @license http://opensource.org/licenses/MIT MIT License
* @link https://codeigniter.com
*/
defined('BASEPATH') or exit('No direct script access allowed');
$lang['migration_none_found'] = 'لا يوجد أي عمليات ترحيل.';
$lang['migration_not_found'] = 'تعذر العثور على عملية الترحيل هذه.';
$lang['migration_sequence_gap'] = 'هناك فجوة بين تسلسل عمليات الترحيل عند الرقم : %s.';
$lang['migration_multiple_version'] = 'هناك عدة عمليات ترحيل لها نفس التعداد: %d.';
$lang['migration_class_doesnt_exist'] = "تعذر العثور على صنف الترحيل \"%s\".";
$lang['migration_missing_up_method'] = "صنف الترحيل \"%s\" يفتقد إلى دالة 'up'.";
$lang['migration_missing_down_method'] = "صنف الترحيل \"%s\" يفتقد إلى دالة 'down'.";
$lang['migration_invalid_filename'] = "اسم الملف الخاص بالترحيل \"%s\" غير صحيح.";

View file

@ -1,44 +0,0 @@
<?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

@ -1,43 +0,0 @@
<?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

@ -1,60 +0,0 @@
<?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

@ -1,452 +0,0 @@
<?php defined('BASEPATH') or exit('No direct script access allowed');
// Arabic
$lang['page_title'] = 'احجز موعد مع';
$lang['service_and_provider'] = 'اختر الخدمة والمزود';
$lang['select_service'] = 'اختر الخدمة';
$lang['select_provider'] = 'اختر المزود';
$lang['duration'] = 'المدة';
$lang['minutes'] = 'دقائق';
$lang['price'] = 'السعر';
$lang['back'] = 'الخلف';
$lang['appointment_date_and_time'] = 'اختر وقت وتاريخ الموعد';
$lang['no_available_hours'] = 'لا يوجد مواعيد متاحة في الوقت الذي تم إختياره الرجاء اختيار وقت آخر';
$lang['appointment_hour_missing'] = 'الرجاء اختيار ساعة الموعد قبل الإكمال';
$lang['customer_information'] = 'أدخل بياناتك';
$lang['first_name'] = 'الاسم الأول';
$lang['last_name'] = 'العائلة';
$lang['email'] = 'البريد الإلكتروني';
$lang['phone_number'] = 'رقم الجوال';
$lang['phone'] = 'Phone';
$lang['address'] = 'العنوان';
$lang['city'] = 'المدينة';
$lang['zip_code'] = 'الرمز البريدي';
$lang['notes'] = 'ملاحظات';
$lang['language'] = 'Language';
$lang['no_language'] = 'No language';
$lang['fields_are_required'] = 'الحقول ب* مطلوب تعبئتها';
$lang['appointment_confirmation'] = 'تأكيد الموعد';
$lang['confirm'] = 'تأكيد';
$lang['update'] = 'تحديث';
$lang['cancel_appointment_hint'] = ' .إضغط زر "إلغاء" لحذف الموعد من الجدول';
$lang['cancel'] = 'إلغاء';
$lang['appointment_registered'] = '!تم تسجيل الموعد بنجاح';
$lang['cancel_appointment_title'] = 'إلغاء الموعد';
$lang['appointment_cancelled'] = '!تم إلغاء الموعد بنجاح';
$lang['appointment_cancelled_title'] = 'تم إلغاء الموعد';
$lang['reason'] = 'السبب';
$lang['appointment_removed_from_schedule'] = 'المواعيد التالية تم حذفها من الجدول';
$lang['appointment_details_was_sent_to_you'] = 'تم إرسال تفاصيل الموعد الى البريد الالكتروني الخاص بك';
$lang['add_to_google_calendar'] = 'اضافة تقويم جوجل';
$lang['appointment_booked'] = '!تم حجز الموعد بنجاح';
$lang['thank_you_for_appointment'] = 'شكرا لحجزك معنا موعد . تستطيع رؤية تفاصيل الموعد والحجز أدناه . يمكنك التعديل عليه بالضغط على الرابط.';
$lang['appointment_details_title'] = 'تفاصيل الموعد';
$lang['customer_details_title'] = 'تفاصيل الزبون';
$lang['service'] = 'الخدمة';
$lang['provider'] = 'المزود';
$lang['customer'] = 'الزبون';
$lang['start'] = 'البداية';
$lang['end'] = 'النهاية';
$lang['name'] = 'الإسم';
$lang['appointment_link_title'] = 'رابط الموعد';
$lang['success'] = ' !تم بنجاح';
$lang['appointment_added_to_google_calendar'] = 'تم اضافة الموعد الى تقويم جوجل الخاص بحسابك';
$lang['view_appointment_in_google_calendar'] = ' اضغط هنا لمشاهدة الموعد على تقويم جوجل الخاص بحسابك ';
$lang['appointment_added_to_your_plan'] = 'تم اضافة موعد الى خطتك';
$lang['appointment_link_description'] = 'تستطيع عمل اي تعديلات بالضغط على رابط الموعد أدناه';
$lang['appointment_locked'] = 'Modification impossible.';
$lang['appointment_locked_message'] = 'The appointment cannot be changed less than {$limit} hours in advance.';
$lang['appointment_not_found'] = 'لم يتم العثور على الموعد.';
$lang['appointment_does_not_exist_in_db'] = 'الموعد الذي قمت بطلبه لم يعد موجودا في بيانات البرنامج';
$lang['display_calendar'] = 'اظهار التقويم';
$lang['calendar'] = 'التقويم';
$lang['users'] = 'المستخدمون';
$lang['settings'] = 'الاعدادات';
$lang['log_out'] = 'تسجيل الخروج';
$lang['synchronize'] = 'المزامنة';
$lang['enable_sync'] = 'تمكين المزامنة';
$lang['disable_sync'] = 'تعطيل المزامنة';
$lang['disable_sync_prompt'] = 'Are you sure that you want to disable the calendar synchronization?';
$lang['reload'] = 'اعادة التحميل';
$lang['appointment'] = 'الموعد';
$lang['unavailability'] = 'غير متوفر';
$lang['week'] = 'الأسبوع';
$lang['month'] = 'الشهر';
$lang['today'] = 'اليوم';
$lang['not_working'] = 'لا يعمل';
$lang['break'] = 'استراحة';
$lang['add'] = 'اضافة';
$lang['edit'] = 'تعديل';
$lang['hello'] = 'مرحبا';
$lang['all_day'] = 'طوال اليوم';
$lang['manage_appointment_record_hint'] = 'إدارة جميع سجلات المواعيد للمزودين والخدمات';
$lang['select_filter_item_hint'] = 'اختار مزود أو خدمة وانظر للمواعيد على التقويم ';
$lang['enable_appointment_sync_hint'] = 'تمكين المزامنة للمواعيد على تقويم جوجل الخاص بالمزود';
$lang['manage_customers_hint'] = 'ادارة الزبائن المسجلين واستعراض حجوزاتهم السابقة';
$lang['manage_services_hint'] = 'ادارة الخدمات والأقسام أو الفئات المتاحة في البرنامج';
$lang['manage_users_hint'] = 'ادارة المستخدمين (مدراء البرنامج, المزودين, السكرتيريين).';
$lang['settings_hint'] = 'ضبط البرنامج أو اعدادات المستخدمين';
$lang['log_out_hint'] = 'تسجيل الخروج من البرنامج';
$lang['unavailability_periods_hint'] = 'خلال الفترات الغير متوفرة لن يقبل المزود اي موعد';
$lang['new_appointment_hint'] = 'انشاء موعد جديد وتخزينه في قاعدة البيانات';
$lang['reload_appointments_hint'] = 'اعادة تحميل تقويم المواعيد';
$lang['trigger_google_sync_hint'] = 'تشغيل عملية مزامنة تقويم جوجل.';
$lang['appointment_updated'] = 'تم تحديث الموعد بنجاح.';
$lang['undo'] = 'تراجع';
$lang['appointment_details_changed'] = 'تم تعديل تفاصيل الموعد بنجاح';
$lang['appointment_changes_saved'] = 'تم حفظ التعديلات على الموعد بنجاح.';
$lang['save'] = 'تخزين';
$lang['new'] = 'جديد';
$lang['select'] = 'تحديد';
$lang['hide'] = 'اخفاء';
$lang['type_to_filter_customers'] = 'اكتب لتصفية الزبائن';
$lang['clear_fields_add_existing_customer_hint'] = 'تنظيف الحقول واضافة زبون جديد';
$lang['pick_existing_customer_hint'] = 'اختيار زبون موجود سابقا';
$lang['new_appointment_title'] = 'موعد جديد';
$lang['edit_appointment_title'] = 'تعديل موعد';
$lang['delete_appointment_title'] = 'حذف موعد';
$lang['write_appointment_removal_reason'] = ':الرجاء كتابة سبب حذف الموعد ';
$lang['appointment_saved'] = 'تم حفظ الموعد بنجاح';
$lang['new_unavailability_title'] = 'فترة غير متاحة جديدة';
$lang['edit_unavailability_title'] = 'تعديل فترة غير متاحة';
$lang['unavailability_saved'] = 'تم حفظ الفترة الغير متاحة بنجاح';
$lang['start_date_before_end_error'] = 'تاريخ البداية أكبر من تاريخ الانتهاء.';
$lang['invalid_duration'] = 'Invalid duration.';
$lang['invalid_email'] = 'بريد الكتروني غير صحيح';
$lang['customers'] = 'الزبائن';
$lang['details'] = 'التفاصيل';
$lang['no_records_found'] = 'لا يوجد أي تسجيل ..';
$lang['services'] = 'الخدمات';
$lang['duration_minutes'] = 'المدة (الدقائق)';
$lang['currency'] = 'العملة';
$lang['category'] = 'الفئة';
$lang['no_category'] = 'لا يوجد فئة';
$lang['description'] = 'الوصف';
$lang['categories'] = 'الفئات';
$lang['admins'] = 'المسؤولين';
$lang['providers'] = 'المزودون';
$lang['secretaries'] = 'السيكرتاريين';
$lang['mobile_number'] = 'رقم الهاتف';
$lang['mobile'] = 'Mobile';
$lang['state'] = 'الحالة';
$lang['username'] = 'اسم المستخدم';
$lang['password'] = 'كلمة المرور';
$lang['retype_password'] = 'كتابة كلمة المرور مرة أخرى';
$lang['receive_notifications'] = 'تلّقي الاشعارات';
$lang['passwords_mismatch'] = 'كلمتا السر غير متطابقتين';
$lang['admin_saved'] = 'تم حفظ المسؤول بنجاح';
$lang['provider_saved'] = 'تم حفظ المزود بنجاح';
$lang['secretary_saved'] = 'تم حفظ السكرتير بنجاح';
$lang['admin_deleted'] = 'تم حذف المسؤول بنجاح';
$lang['provider_deleted'] = 'تم حذف المزود بنجاح';
$lang['secretary_deleted'] = 'تم حذف السيكرتير بنجاح';
$lang['service_saved'] = 'تم حفظ الخدمة بنجاح';
$lang['service_category_saved'] = 'تم حفظ فئة الخدمة بنجاح';
$lang['service_deleted'] = 'تم حذف الخدمة بنجاح';
$lang['service_category_deleted'] = 'تم حذف فئة الخدمة بنجاح';
$lang['customer_saved'] = 'تم حفظ الزبون بنجاح';
$lang['customer_deleted'] = 'تم حذف الزبون بنجاح';
$lang['current_view'] = 'الرعض الحالي';
$lang['working_plan'] = 'خطة العمل';
$lang['reset_plan'] = 'اعادة تهيئة الخطة';
$lang['monday'] = 'الاثنين';
$lang['tuesday'] = 'الثلاثاء';
$lang['wednesday'] = 'الأربعاء';
$lang['thursday'] = 'الخميس';
$lang['friday'] = 'الجمعة';
$lang['saturday'] = 'السبت';
$lang['sunday'] = 'الأحد';
$lang['breaks'] = 'الاستراحات';
$lang['add_breaks_during_each_day'] = 'اضافة فترة الاستراحة في كل يوم . في فترة الاستراحة لن يستقبل المزود أي موعد';
$lang['day'] = 'اليوم';
$lang['days'] = 'الأيام';
$lang['actions'] = 'الحركات';
$lang['reset_working_plan_hint'] = 'اعادة تهئية خطة العمل لتعود الى الاعدادات الافتراضية';
$lang['company_name'] = 'اسم الشركة';
$lang['company_name_hint'] = 'اسم الشركة سيظهر في كل مكان في البرنامج (مطلوب).';
$lang['company_email'] = 'البريد الالكتروني للشركة';
$lang['company_email_hint'] = 'هذا سيكون البريد الالكتروني للشركة وسيكون المرسل للايميلات والردود من البرنامج(مطلوب).';
$lang['company_link'] = 'الموقع الالكتروني للشركة';
$lang['company_link_hint'] = 'الموقع الالكتروني للشركة يجب ان يكون موقع رسمي للشركة (مطلوب).';
$lang['go_to_booking_page'] = 'الذهاب الى صفحة الحجوزات';
$lang['settings_saved'] = 'تم حفظ الاعدادات بنجاح';
$lang['general'] = 'عام';
$lang['booking'] = 'Booking';
$lang['visible'] = 'مرئي';
$lang['hidden'] = 'مختفي';
$lang['business_logic'] = 'منطق الأعمال';
$lang['current_user'] = 'المستخدم الحالي';
$lang['about_app'] = 'About E!A';
$lang['edit_working_plan_hint'] = 'ضع علامة أسفل الأيام والساعات التي تقبل فيها شركتك المواعيد سوف تكون قادرا على ضبط المواعيد في غير ساعات العمل ولكن الزبائن لن يكونون قادرين على حجز المواعيد في غير فترات العمل ستكون خطة العمل هذه هي الطريقة الافتراضية لكل مزود خدمة جديد ولكنك ستتمكن من تغيير خطة كل مزود خدمة بشكل منفصل عن طريق تعديل سجله بعد ذلك يمكنك إضافة فترات استراحة';
$lang['edit_breaks_hint'] = 'اضافة فترات الاستراحة لكل يوم. فترات الاستراحة هذه سيتم تطبيقها لكل مزودي الخدمات';
$lang['book_advance_timeout'] = 'حجز مهلة مسبقا';
$lang['book_advance_timeout_hint'] = 'تعريف المهلة (بالدقائق) قبل أن يحجز الزبائن الموعد او يقومون باعادة ترتيب حجزهم';
$lang['timeout_minutes'] = 'المهلة (الدقائق)';
$lang['about_app_info'] = 'Easy!Appointments is a highly customizable web application that allows your customers to book appointments with you via the web. Moreover, it provides the ability to sync your data with Google Calendar so you can use them with other services.';
$lang['current_version'] = 'النسخة الحالية';
$lang['support'] = 'الدعم';
$lang['about_app_support'] = 'If you encounter any problems when using Easy!Appointments you can search the official Google Group for answers. You might also need to create a new issue on the Google Code page in order to help the development progress.';
$lang['official_website'] = 'الموقع الرسمي';
$lang['google_plus_community'] = 'Google+ مجتمع';
$lang['support_group'] = 'مجموعة الدعم';
$lang['project_issues'] = 'مشاكل المشروع';
$lang['license'] = 'الرخصة';
$lang['about_app_license'] = 'Easy!Appointments is licensed under the GPLv3 license. By using the code of Easy!Appointments in any way you are agreeing to the terms described in the following url:';
$lang['logout_success'] = 'تم تسجيل الخروج بنجاح';
$lang['book_appointment_title'] = 'احجز موعد';
$lang['backend_section'] = 'صفحة الدخول للبرنامج';
$lang['you_need_to_login'] = 'مرحبا بك ! يجب عليك تسجيل الدخول لمعاينة صفحات البرنامج وادارته';
$lang['enter_username_here'] = 'ادخل اسم المستخدم هنا ...';
$lang['enter_password_here'] = 'ادخل كلمة المرور هنا ...';
$lang['login'] = 'تسجيل الدخول';
$lang['forgot_your_password'] = 'نسيت كلمة المرور؟';
$lang['login_failed'] = 'تعذر تسجيل الدخول . الرجاء التأكد من اسم المستخدم وكلمة المرور مرة أخرى.';
$lang['type_username_and_email_for_new_password'] = 'ادخل اسم المستخدم والبريد الالكتروني لاعادة تعيين كلمة المرور';
$lang['enter_email_here'] = 'ادخل البريد الالكتروني هنا ...';
$lang['regenerate_password'] = 'اعادة تجديد كلمة المرور';
$lang['go_to_login'] = 'العودة الى صفحة تسجيل الدخول';
$lang['new_password_sent_with_email'] = 'تم ارسال كلمة المرور الى البريد الالكتروني';
$lang['new_account_password'] = 'كلمة المرور للحساب الجديد';
$lang['new_password_is'] = 'يرجى حفظ هذا البريد الالكتروني في مكان آمن ، ويمكنك تغيير كلمة السر من صفحة الاعدادات في البرنامج $password كلمة المرور لحسابك الجديد ';
$lang['delete_record_prompt'] = 'هل انت متاكد من حذف هذا التسجيل ؟ لا يمكن التراجع عن الحذف بعد حذفه';
$lang['delete_admin'] = 'حذف المسؤول';
$lang['delete_customer'] = 'حذف الزبون';
$lang['delete_service'] = 'حذف الخدمة';
$lang['delete_service_category'] = 'حذف فئة الخدمة';
$lang['delete_provider'] = 'حذف المزود';
$lang['delete_secretary'] = 'حذف السكرتير';
$lang['delete_appointment'] = 'حذف الموعد';
$lang['delete_unavailability'] = 'حذف الفترة الغير متاحة';
$lang['delete'] = 'حذف';
$lang['unexpected_issues'] = 'مشكلة غير متوقعة';
$lang['unexpected_issues_message'] = 'هذه العملية لا يمكن ان تتم في ظل وجود مشكلة غير متوقعة';
$lang['close'] = 'إغلاق';
$lang['page_not_found'] = 'لم يتم الحثور على الصفحة';
$lang['page_not_found_message'] = 'لم يتم العثور على الصفحة للأسف .يرجى التاكد من الرابط في المتصفح او الذهاب الى مكان آخر باستخدام الازرار أدناه';
$lang['error'] = 'خطأ';
$lang['no_privileges'] = 'لا يوجد صلاحيات';
$lang['no_privileges_message'] = 'لا يوجد لك صلاحيات لمعاينة هذه الصفحة . يرجى التوجه الى مكان آخر';
$lang['backend_calendar'] = 'التقويم الخاص بالمستخدمين ';
$lang['start_date_time'] = 'وقت البداية / الوقت';
$lang['end_date_time'] = 'وقت النهاية / الوقت';
$lang['licensed_under'] = 'مرخصة تحت';
$lang['unexpected_issues_occurred'] = 'حدثت مشكلة غير متوقعة.';
$lang['service_communication_error'] = 'فشل الاتصال بالخادم . يرجى اعادة التحميل مرة أخرى';
$lang['no_privileges_edit_appointments'] = 'لا تملك الصلاحايات للتعديل على الموعد';
$lang['unavailability_updated'] = 'تم تحديث الفترة الغير متاحة بنجاح.';
$lang['appointments'] = 'المواعيد';
$lang['unexpected_warnings'] = 'تحذيرات غير متوقعة';
$lang['unexpected_warnings_message'] = 'العملية تمت بنجاح لكن ظهرت بعض التحذيرات';
$lang['filter'] = 'تنقية/فلترة';
$lang['clear'] = 'تنظيف';
$lang['uncategorized'] = 'غير مصنّف';
$lang['username_already_exists'] = 'اسم المستخدم موجود مسبقا';
$lang['password_length_notice'] = 'حرف على الأقل $number اسم المستخدم يجب ان يكون';
$lang['general_settings'] = 'الاعدادات العامة';
$lang['personal_information'] = 'المعلومات الشخصية';
$lang['system_login'] = 'تسجيل الدخول الى النظام';
$lang['user_settings_are_invalid'] = 'اعدادات المستخدم غير صحيحة . يرجى تعديل الاعدادات والمحاولة مرة أخرى';
$lang['add_break'] = 'إضافة فترة استراحة';
$lang['january'] = 'يناير / January';
$lang['february'] = 'فبراير / February';
$lang['march'] = 'مارس / March';
$lang['april'] = ' أبريل / April';
$lang['may'] = 'مايو / May';
$lang['june'] = 'يونيو / June';
$lang['july'] = 'يوليو / July';
$lang['august'] = 'أغسطس / August';
$lang['september'] = 'سبتمبر / September';
$lang['october'] = 'أوكتوبر / October';
$lang['november'] = 'نوفمبر / November';
$lang['december'] = 'ديسمبر / December';
$lang['previous'] = 'السابق';
$lang['next'] = 'التالي';
$lang['now'] = 'الآن';
$lang['select_time'] = 'إختر الوقت';
$lang['time'] = 'الوقت';
$lang['hour'] = 'الساعة';
$lang['minute'] = 'الدقيقة';
$lang['google_sync_completed'] = 'اكتملت مزامنة جوجل بنجاح .';
$lang['google_sync_failed'] = 'فشلت المزامنة مع جوجل: تعذر انشاءالاتصال مع الخادم';
$lang['select_google_calendar'] = 'اختيار تقويم جوجل';
$lang['select_google_calendar_prompt'] = 'يرجى اختيار التقويم الذي تريد مزامنته مع مواعيدك. اذا لم تريد اختيار اي تقويم سيتم استخدام التقويم الافتراضي.';
$lang['google_calendar_selected'] = 'تم اختيار تقويم جوجل بنجاح';
$lang['oops_something_went_wrong'] = 'للأسف ! حصل خطأ ما .';
$lang['could_not_add_to_google_calendar'] = 'لا يمكن اضافة موعدك على تقويم جوجل';
$lang['ea_update_success'] = 'تم تحديث برنامج الحجوزات بنجاح';
$lang['require_captcha'] = 'مطلوب CAPTCHA';
$lang['require_captcha_hint'] = 'عند التمكين ، سيتوجب على الزبون ادخال رمز عشوائي عند الحجز او التعديل على الموعد ';
$lang['captcha_is_wrong'] = 'الرجاء المحاولة مرة أخرى CAPTCHA لم يتم تأكيد';
$lang['any_provider'] = 'أيْ مزوّد خدمة';
$lang['requested_hour_is_unavailable'] = 'الموعد الذي طلبته غير متاح للأسف . يرجى اختيار ساعة مختلفة لحجز الموعد ';
$lang['customer_notifications'] = 'اشعارات الزبون';
$lang['customer_notifications_hint'] = 'سيتم تلقي اشعارات للزبون عند تغيّر موعد الحجز أو عند تحديثه';
$lang['date_format'] = 'صيغة التاريخ';
$lang['date_format_hint'] = 'تغيير صيغة وعرض التاريخ (D - Date, M - Month, Y - Year).';
$lang['time_format'] = 'Time Format';
$lang['time_format_hint'] = 'Change the time display format (H - Hours, M - Minutes).';
$lang['first_weekday'] = 'First day of week';
$lang['first_weekday_hint'] = 'Set the first day of the calendar week.';
$lang['google_analytics_code_hint'] = 'ليتم تضمينه في صفحة الحجز Google Analytics ID أضف معرّف';
$lang['availabilities_type'] = 'نوع التوفر أو الإتاحة';
$lang['flexible'] = 'مرن';
$lang['fixed'] = 'ثابت';
$lang['attendants_number'] = 'عدد الحاضرين';
$lang['reset_working_plan'] = 'Reset the working plan back to the default values.';
$lang['legal_contents'] = 'Legal Contents';
$lang['cookie_notice'] = 'Cookie Notice';
$lang['display_cookie_notice'] = 'Display Cookie Notice';
$lang['cookie_notice_content'] = 'Cookie Notice Content';
$lang['terms_and_conditions'] = 'Terms & Conditions';
$lang['display_terms_and_conditions'] = 'Display Terms & Conditions';
$lang['terms_and_conditions_content'] = 'Terms & Conditions Content';
$lang['privacy_policy'] = 'Privacy Policy';
$lang['display_privacy_policy'] = 'Display Privacy Policy';
$lang['privacy_policy_content'] = 'Privacy Policy Content';
$lang['website_using_cookies_to_ensure_best_experience'] = 'This website uses cookies to ensure you get the best experience on our website.';
$lang['read_and_agree_to_terms_and_conditions'] = 'I have read and agree to the {$link}Terms & Conditions{/$link}.';
$lang['read_and_agree_to_privacy_policy'] = 'I have read and agree to the {$link}Privacy Policy{/$link}.';
$lang['delete_personal_information_hint'] = 'Delete all personal information from the system.';
$lang['delete_personal_information'] = 'Delete Personal Information';
$lang['delete_personal_information_prompt'] = 'Are you sure that you want to delete your personal information? This action cannot be undone.';
$lang['location'] = 'Location';
$lang['working_plan_exception'] = 'Working Plan Exception';
$lang['working_plan_exceptions'] = 'Working Plan Exceptions';
$lang['working_plan_exceptions_hint'] = 'Add a working plan exception day, outside the working plan.';
$lang['new_working_plan_exception_title'] = 'New Working Plan Exception';
$lang['working_plan_exception_saved'] = 'Working plan exception saved successfully.';
$lang['working_plan_exception_deleted'] = 'Working plan exception deleted successfully.';
$lang['add_working_plan_exceptions_during_each_day'] = 'Add working plan exceptions, outside the working plan.';
$lang['add_working_plan_exception'] = 'Add Working Plan Exception';
$lang['require_phone_number'] = 'Require phone number';
$lang['require_phone_number_hint'] = 'When enabled, customers and users will need to enter the customer\'s phone number when booking an appointment';
$lang['check_spam_folder'] = 'Please check your spam folder if the email does not arrive within a few minutes.';
$lang['api_token_hint'] = 'Set a secret token in order to enable the token based authentication of the Easy!Appointments API.';
$lang['timezone'] = 'Timezone';
$lang['overwrite_existing_working_plans'] = 'This will overwrite the existing provider working plans, are you sure that you want to continue?';
$lang['working_plans_got_updated'] = 'All the working plans got updated.';
$lang['apply_to_all_providers'] = 'Apply To All Providers';
$lang['display_any_provider'] = 'Display Any Provider Option';
$lang['display_any_provider_hint'] = 'The booking page will get an additional option that allows customers to book without specifying a provider.';
$lang['load_more'] = 'Load More';
$lang['list'] = 'List';
$lang['default'] = 'Default';
$lang['table'] = 'Table';
$lang['date'] = 'Date';
$lang['about'] = 'About';
$lang['booking_settings'] = 'Booking Settings';
$lang['display'] = 'Display';
$lang['require'] = 'Require';
$lang['color'] = 'Color';
$lang['matomo_analytics_url_hint'] = 'Add the URL to your own Matomo installation to enable Matomo tracking on the booking pages.';
$lang['invalid_phone'] = 'Invalid phone number.';
$lang['legal'] = 'Legal';
$lang['business'] = 'Business';
$lang['account'] = 'Account';
$lang['disable_booking'] = 'Disable Booking';
$lang['disable_booking_hint'] = 'The booking page will be disabled for as long as this setting is active and customers will not be able to register new appointments.';
$lang['display_message'] = 'Display Message';
$lang['booking_is_disabled'] = 'Booking Is Disabled!';
$lang['appearance'] = 'Appearance';
$lang['company_logo'] = 'Company Logo';
$lang['company_logo_hint'] = 'The company logo will be displayed in many places of the app, including the booking page and the notification emails (image file, max 2MB).';
$lang['company_color'] = 'Company Color';
$lang['company_color_hint'] = 'The company color will be applied across the app so that it the app uses your branding.';
$lang['localization'] = 'Localization';
$lang['integrations'] = 'Integrations';
$lang['company'] = 'Company';
$lang['remove'] = 'Remove';
$lang['login_button'] = 'Login Button';
$lang['display_login_button_hint'] = 'Defines whether the login button is being displayed in the booking page.';
$lang['private'] = 'Private';
$lang['private_hint'] = 'Private records will not be displayed or processed in public pages such as the booking page.';
$lang['reset'] = 'Reset';
$lang['all'] = 'All';
$lang['booking_link'] = 'Booking Link';
$lang['add_new_event'] = 'Add New Event';
$lang['what_kind_of_event'] = 'What kind of event would you like to add?';
$lang['theme'] = 'Theme';
$lang['limit_customer_access'] = 'Limit Customer Access';
$lang['limit_customer_access_hint'] = 'If enabled, providers and secretaries will only be able to access customers they have an appointment with.';
$lang['url'] = 'URL';
$lang['secret_token'] = 'Secret Token';
$lang['verify_ssl'] = 'Verify SSL';
$lang['appointment_save'] = 'Appointment Save';
$lang['appointment_delete'] = 'Appointment Delete';
$lang['unavailability_save'] = 'Unavailability Save';
$lang['unavailability_delete'] = 'Unavailability Delete';
$lang['customer_save'] = 'Customer Save';
$lang['customer_delete'] = 'Customer Delete';
$lang['service_save'] = 'Service Save';
$lang['service_delete'] = 'Service Delete';
$lang['service_category_save'] = 'Category Save';
$lang['service_category_delete'] = 'Category Delete';
$lang['provider_save'] = 'Provider Save';
$lang['provider_delete'] = 'Provider Delete';
$lang['secretary_save'] = 'Secretary Save';
$lang['secretary_delete'] = 'Secretary Delete';
$lang['admin_save'] = 'Admin Save';
$lang['admin_delete'] = 'Admin Delete';
$lang['options'] = 'Options';
$lang['webhooks'] = 'Webhooks';
$lang['webhooks_info'] = 'Webhooks enable you to send HTTP notifications to external web applications in response to various application events, such as the creation of an appointment or the removal of a customer.';
$lang['integrations_info'] = 'Integrations enable you to make third-party connections with external applications and APIs.';
$lang['configure'] = 'Configure';
$lang['google_analytics'] = 'Google Analytics';
$lang['google_analytics_info'] = 'Google Analytics enable you to automatically add the tracking code and HTML markup to the public page and track all the public booking sessions.';
$lang['matomo_analytics'] = 'Matomo Analytics';
$lang['matomo_analytics_info'] = 'Matomo Analytics enable you to automatically add the tracking code and HTML markup to the public page and track all the public booking sessions.';
$lang['api'] = 'API';
$lang['api_info'] = 'API enable you to interact with all the Easy!Appointments data via the HTTP protocol and the available API endpoints and create your own integrations.';
$lang['google_analytics_code'] = 'Google Analytics Code';
$lang['matomo_analytics_url'] = 'Matomo Analytics URL';
$lang['future_booking_limit'] = 'Future Booking Limit';
$lang['limit_days'] = 'Limit (Days)';
$lang['future_booking_limit_hint'] = 'Set the future limit in days customers can make appointments via the public booking page.';
$lang['api_token'] = 'API Token';
$lang['allow_rescheduling_cancellation_before'] = 'Allow Rescheduling/Cancellation Before';
$lang['at_least_one_field'] = 'At least one field must be displayed in the booking page.';
$lang['status'] = 'Status';
$lang['appointment_status_options'] = 'Appointment Status Options';
$lang['appointment_status_options_info'] = 'Define a list of available appointment status options that can be used in the the calendar page (the first one will automatically become the default value).';
$lang['sunday_short'] = 'Sun';
$lang['monday_short'] = 'Mon';
$lang['tuesday_short'] = 'Tue';
$lang['wednesday_short'] = 'Wed';
$lang['thursday_short'] = 'Thu';
$lang['friday_short'] = 'Fri';
$lang['saturday_short'] = 'Sat';
$lang['january_short'] = 'Jan';
$lang['february_short'] = 'Feb';
$lang['march_short'] = 'Mar';
$lang['april_short'] = 'Apr';
$lang['may_short'] = 'May';
$lang['june_short'] = 'Jun';
$lang['july_short'] = 'Jul';
$lang['august_short'] = 'Aug';
$lang['september_short'] = 'Sep';
$lang['october_short'] = 'Oct';
$lang['november_short'] = 'Nov';
$lang['december_short'] = 'Dec';
$lang['am'] = 'am';
$lang['pm'] = 'pm';
$lang['to'] = 'to';
$lang['click_to_toggle'] = 'Click To Toggle';
$lang['week_short'] = 'Wk';
$lang['scroll_to_increment'] = 'Scroll To Increment';
$lang['year'] = 'Year';
$lang['make_non_working_day'] = 'This provider will not be available for work on the selected day.';
$lang['no_breaks'] = 'No Breaks';
$lang['service_categories'] = 'Service Categories';
$lang['service_category'] = 'Service Category';
$lang['blocked_period_saved'] = 'Blocked period saved successfully.';
$lang['blocked_period_deleted'] = 'Blocked period deleted successfully.';
$lang['delete_blocked_period'] = 'Delete Blocked Period';
$lang['blocked_period'] = 'Blocked Period';
$lang['blocked_periods'] = 'Blocked Periods';
$lang['blocked_period_save'] = 'Blocked Period Save';
$lang['blocked_period_delete'] = 'Blocked Period Delete';
$lang['blocked_periods_hint'] = 'Define periods of time where public bookings will be disabled for all providers (e.g. closed dates, holidays etc.).';
$lang['custom_field'] = 'Custom Field';
$lang['custom_fields'] = 'Custom Fields';
$lang['label'] = 'Label';
// End

View file

@ -1,58 +0,0 @@
<?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

@ -1,55 +0,0 @@
<?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

@ -1,84 +0,0 @@
<?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

@ -1,94 +0,0 @@
<?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

@ -1,36 +0,0 @@
<?php
/**
* System messages translation for CodeIgniter(tm)
*
* @author CodeIgniter community
* @author Ivan Tcholakov
* @copyright Copyright (c) 2014-2018, British Columbia Institute of Technology (http://bcit.ca/)
* @license http://opensource.org/licenses/MIT MIT License
* @link https://codeigniter.com
*/
defined('BASEPATH') or exit('No direct script access allowed');
$lang['db_invalid_connection_str'] = 'Невъзможно е да се определят настройките за базата данни от "connection string"-a, който сте въвели.';
$lang['db_unable_to_connect'] = 'Не може да се осъществи връзка с Вашата база данни чрез посочените данни.';
$lang['db_unable_to_select'] = 'Не може да избере посочената база данни: %s';
$lang['db_unable_to_create'] = 'Не може да бъде създадена посочената база данни: %s';
$lang['db_invalid_query'] = 'Подадената заявка не е валидна.';
$lang['db_must_set_table'] = 'Трябва да зададете таблица за да се използва от Вашата заявка.';
$lang['db_must_use_set'] = 'Трябва да използвате "set" метод за актуализиране на данните.';
$lang['db_must_use_index'] = 'Трябва да посочите съответен индекс за пакетно обновяване.';
$lang['db_batch_missing_index'] = 'Един или повече редове, представени за актуализиране на пакетното обновяване са с липсващ индекс.';
$lang['db_must_use_where'] = 'Актуализации не са позволени, освен ако не съдържат "WHERE" клауза.';
$lang['db_del_must_use_where'] = 'Изтриването не е позволено, освен ако не съдържа "WHERE" или "LIKE" клауза.';
$lang['db_field_param_missing'] = 'При изтеглянето на полета се изисква името на таблицата като параметър.';
$lang['db_unsupported_function'] = 'Функцията не е достъпна за вида база данни, която използвате.';
$lang['db_transaction_failure'] = 'Грешка в транзакция: Връщане на предишното състояние.';
$lang['db_unable_to_drop'] = 'Не може да се изтрие посочената база данни.';
$lang['db_unsupported_feature'] = 'Неподдържана функционалност от Вашата база данни.';
$lang['db_unsupported_compression'] = 'Форматът за компресиране, който сте избрали не се поддържа от вашия сървър.';
$lang['db_filepath_error'] = 'Не е възможно записването на данни в пътя на файла, който сте посочили.';
$lang['db_invalid_cache_path'] = 'Пътят до кеш директорията, който сте описали не е правилен или без права.';
$lang['db_table_name_required'] = 'Името на таблицата е задължително за тази операция.';
$lang['db_column_name_required'] = 'Името на колоната е задължително за тази операция.';
$lang['db_column_definition_required'] = 'Дефинирането на колоната е задължително за тази операция.';
$lang['db_unable_to_set_charset'] = 'Не може да настрои клиентът с правилен енкодинг: %s';
$lang['db_error_heading'] = 'Възникна грешка в базата данни';

View file

@ -1,31 +0,0 @@
<?php
/**
* System messages translation for CodeIgniter(tm)
*
* @author CodeIgniter community
* @author Ivan Tcholakov
* @copyright Copyright (c) 2014-2018, British Columbia Institute of Technology (http://bcit.ca/)
* @license http://opensource.org/licenses/MIT MIT License
* @link https://codeigniter.com
*/
defined('BASEPATH') or exit('No direct script access allowed');
$lang['email_must_be_array'] = 'Email-адресът трябва да се предаде за валидиране чрез масив (array).';
$lang['email_invalid_address'] = 'Грешен email-адрес: %s';
$lang['email_attachment_missing'] = 'Не може да се намери прикачения файл: %s';
$lang['email_attachment_unreadable'] = 'Не може да се отвори прикачения файл: %s';
$lang['email_no_from'] = 'Не е посочен подателят на съобщението (From).';
$lang['email_no_recipients'] = 'Трябва да включите получателите: To, Cc или Bcc';
$lang['email_send_failure_phpmail'] = 'Съобщението не може да бъде изпратено чрез PHP mail(). Вашият сървър може да не е конфигуриран да изпраща поща, използвайки този метод.';
$lang['email_send_failure_sendmail'] = 'Съобщението не може да бъде изпратено чрез PHP Sendmail. Вашият сървър може да не е конфигуриран да изпраща поща, използвайки този метод.';
$lang['email_send_failure_smtp'] = 'Съобщението не може да бъде изпратено чрез PHP SMTP. Вашият сървър може да не е конфигуриран да изпраща поща, използвайки този метод.';
$lang['email_sent'] = 'Вашето съобщение е изпратено успешно и използва следния протокол: %s';
$lang['email_no_socket'] = 'Не може да се отвори връзка към Sendmail. Моля, проверете настройките.';
$lang['email_no_hostname'] = 'Не сте посочили SMTP сървър.';
$lang['email_smtp_error'] = 'Получи се следната SMTP грешка: %s';
$lang['email_no_smtp_unpw'] = 'Грешка: Трябва да посочите име и парола за SMTP.';
$lang['email_failed_smtp_login'] = 'Не може да се изпрати AUTH LOGIN. Грешка: %s';
$lang['email_smtp_auth_un'] = 'Не може да се удостовери потребителското име. Грешка: %s';
$lang['email_smtp_auth_pw'] = 'Не може да се удостовери паролата. Грешка: %s';
$lang['email_smtp_data_failure'] = 'Не могат да се изпращат данни: %s';
$lang['email_exit_status'] = 'Код на завършване: %s';

View file

@ -1,69 +0,0 @@
<?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

@ -1,51 +0,0 @@
<?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

@ -1,57 +0,0 @@
<?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

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

View file

@ -1,20 +0,0 @@
<?php
/**
* System messages translation for CodeIgniter(tm)
*
* @author CodeIgniter community
* @author Ivan Tcholakov
* @copyright Copyright (c) 2014-2018, British Columbia Institute of Technology (http://bcit.ca/)
* @license http://opensource.org/licenses/MIT MIT License
* @link https://codeigniter.com
*/
defined('BASEPATH') or exit('No direct script access allowed');
$lang['migration_none_found'] = 'Не са намерени миграции.';
$lang['migration_not_found'] = 'Миграцията %s не може да бъде намерена.';
$lang['migration_sequence_gap'] = 'Има липса в последователносста за миграция близо до версия: %s.';
$lang['migration_multiple_version'] = 'Има няколко миграции с една и съща версия: %s.';
$lang['migration_class_doesnt_exist'] = 'Класът за миграция "%s" не може да бъде намерен.';
$lang['migration_missing_up_method'] = 'В класа за миграция "%s" липсва методът "up".';
$lang['migration_missing_down_method'] = 'В класа за миграция "%s" липсва методът "down".';
$lang['migration_invalid_filename'] = 'Миграцията "%s" е с невалидно име на файл.';

View file

@ -1,44 +0,0 @@
<?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

@ -1,43 +0,0 @@
<?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

@ -1,60 +0,0 @@
<?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

@ -1,452 +0,0 @@
<?php defined('BASEPATH') or exit('No direct script access allowed');
// Bulgarian
$lang['page_title'] = 'Запазете час с ...';
$lang['service_and_provider'] = 'Изберете Услуга и Изпълнител';
$lang['select_service'] = 'Изберете Услуга';
$lang['select_provider'] = 'Изберете Изпълнител';
$lang['duration'] = 'Продължителност';
$lang['minutes'] = 'Минути';
$lang['price'] = 'Цена';
$lang['back'] = 'Обратно';
$lang['appointment_date_and_time'] = 'Изберете дата и час';
$lang['no_available_hours'] = 'Не са налични свободни часове за избраната дата. Моля изберете друга дата.';
$lang['appointment_hour_missing'] = 'Моля изберете час преди да продължите.';
$lang['customer_information'] = 'Моля попълнете Вашите данни';
$lang['first_name'] = 'Име';
$lang['last_name'] = 'Фамилия';
$lang['email'] = 'електронна поща';
$lang['phone_number'] = 'Телефонен номер';
$lang['phone'] = 'Телефонен';
$lang['address'] = 'Адрес';
$lang['city'] = 'Град';
$lang['zip_code'] = 'Пощенски Код';
$lang['notes'] = 'Записки';
$lang['language'] = 'Language';
$lang['no_language'] = 'No language';
$lang['fields_are_required'] = 'Полетата обозначени с * са задължителни.';
$lang['appointment_confirmation'] = 'Потвърдете часът';
$lang['confirm'] = 'Потвърждение';
$lang['update'] = 'Актуализиране';
$lang['cancel_appointment_hint'] = 'Натиснете бутон "отказ" за да отстраните часът си от графика.';
$lang['cancel'] = 'Отказ';
$lang['appointment_registered'] = 'Часът Ви бе успешно регистриран.';
$lang['cancel_appointment_title'] = 'Отказ на Час';
$lang['appointment_cancelled'] = 'Часът Ви бе успешно анулиран.';
$lang['appointment_cancelled_title'] = 'Часът анулиран.';
$lang['reason'] = 'Причина';
$lang['appointment_removed_from_schedule'] = 'Следният час бе отстранен от графика.';
$lang['appointment_details_was_sent_to_you'] = 'Електронно писмо с информация за часа Ви бе изпратено.';
$lang['add_to_google_calendar'] = 'Добавяне в Google Calendar';
$lang['appointment_booked'] = 'Часът Ви бе успешно запазен.';
$lang['thank_you_for_appointment'] = 'Благодарим Ви , че запазихте час при нас. Можете да намерите подробна информация за часът си по-долу. Можете да направите промени като използвате линкът на часът.';
$lang['appointment_details_title'] = 'Данни за часът ';
$lang['customer_details_title'] = 'Клиентски данни';
$lang['service'] = 'Услуга';
$lang['provider'] = 'Изпълнител';
$lang['customer'] = 'Клиент';
$lang['start'] = 'Начало';
$lang['end'] = 'Край';
$lang['name'] = 'Име';
$lang['appointment_link_title'] = 'Линк на часа';
$lang['success'] = 'Успех.';
$lang['appointment_added_to_google_calendar'] = 'Вашият час бе успешно добавен във Вашият Google Calendar профил.';
$lang['view_appointment_in_google_calendar'] = 'Натиснете тук за да прегледате часът си във Вашият Google Calendar профил.';
$lang['appointment_added_to_your_plan'] = 'Нов час бе добавен към Вашият график.';
$lang['appointment_link_description'] = 'Можете да нанесете промени на часа като използвате линкът по-долу.';
$lang['appointment_locked'] = 'Modification impossible.';
$lang['appointment_locked_message'] = 'The appointment cannot be changed less than {$limit} hours in advance.';
$lang['appointment_not_found'] = 'Часът не е намерен.';
$lang['appointment_does_not_exist_in_db'] = 'Часът, заявен от Вас вече не съществува в базата данни на системата.';
$lang['display_calendar'] = 'Показ на календар';
$lang['calendar'] = 'Календар';
$lang['users'] = 'Потребители';
$lang['settings'] = 'Настройки';
$lang['log_out'] = 'Изход';
$lang['synchronize'] = 'синхронизиране';
$lang['enable_sync'] = 'Активиране на синхронизиране';
$lang['disable_sync'] = 'Изключване на синхронизиране';
$lang['disable_sync_prompt'] = 'Are you sure that you want to disable the calendar synchronization?';
$lang['reload'] = 'Презареждане';
$lang['appointment'] = 'Час';
$lang['unavailability'] = 'не е на лице';
$lang['week'] = 'Седмица';
$lang['month'] = 'Месец';
$lang['today'] = 'Днес';
$lang['not_working'] = 'Не работен';
$lang['break'] = 'Почивка';
$lang['add'] = 'Добавяне';
$lang['edit'] = 'редактиране';
$lang['hello'] = 'Здравейте';
$lang['all_day'] = 'Цял ден';
$lang['manage_appointment_record_hint'] = 'Управление на всички записи за часове на достъпните изпълнители и услуги.';
$lang['select_filter_item_hint'] = 'Избор на изпълнител или услуга и преглед на часовете в календара.';
$lang['enable_appointment_sync_hint'] = 'Включване на синхронизиране на часове с Google Calendar профила на изпълнителя.';
$lang['manage_customers_hint'] = 'Управление на регистрирани клиенти и преглед на исторически данни за часовете им.';
$lang['manage_services_hint'] = 'Управление на наличните услуги и категории на системата.';
$lang['manage_users_hint'] = 'Управление на административните потребители (администратори, изпълнители и секретари).';
$lang['settings_hint'] = 'Задаване на системни и потребителски настройки.';
$lang['log_out_hint'] = 'Изход от системата.';
$lang['unavailability_periods_hint'] = 'По време на периоди, в които изпълнителя не е на разположение, същият няма да приема нови часове.';
$lang['new_appointment_hint'] = 'Създаване на нов час и запазването му в базата данни.';
$lang['reload_appointments_hint'] = 'Презареждане на календарни часове.';
$lang['trigger_google_sync_hint'] = 'Изпълнение на процес по синхронизация с Google Calendar.';
$lang['appointment_updated'] = 'Часът е актуализиран успешно.';
$lang['undo'] = 'Отмяна';
$lang['appointment_details_changed'] = 'Информацията относно часът е променена.';
$lang['appointment_changes_saved'] = 'Промените на часът са успешно запазени.';
$lang['save'] = 'Запис';
$lang['new'] = 'Нов';
$lang['select'] = 'Избор';
$lang['hide'] = 'Скриване';
$lang['type_to_filter_customers'] = 'Текст за филтриране на клиентите.';
$lang['clear_fields_add_existing_customer_hint'] = 'Изчистване на полетата и въвеждане на нов клиент.';
$lang['pick_existing_customer_hint'] = 'Избор на съществуващ клиент. ';
$lang['new_appointment_title'] = 'Нов час.';
$lang['edit_appointment_title'] = 'Промяна на час.';
$lang['delete_appointment_title'] = 'Отказ на час.';
$lang['write_appointment_removal_reason'] = 'Моля отделете минута за да споделите причината за отказ на часа:';
$lang['appointment_saved'] = 'Часът запазен успешно.';
$lang['new_unavailability_title'] = 'Нов неработен период';
$lang['edit_unavailability_title'] = 'Промяна на неработен период';
$lang['unavailability_saved'] = 'Неработен период запазен успешно.';
$lang['start_date_before_end_error'] = 'Стартовият период е по-дълъг от крайната дата.';
$lang['invalid_duration'] = 'Invalid duration.';
$lang['invalid_email'] = 'Невалиден адрес на електронна поща.';
$lang['customers'] = 'Клиенти';
$lang['details'] = 'Детайли';
$lang['no_records_found'] = 'Не са намерени записи…';
$lang['services'] = 'Услуги';
$lang['duration_minutes'] = 'Продължителност (минути)';
$lang['currency'] = 'Валута';
$lang['category'] = 'Категория';
$lang['no_category'] = 'Без категория';
$lang['description'] = 'Описание';
$lang['categories'] = 'Категории';
$lang['admins'] = 'Администратори';
$lang['providers'] = 'Изпълнители';
$lang['secretaries'] = 'Секретари';
$lang['mobile_number'] = 'Мобилен телефонен номер';
$lang['mobile'] = 'Mobile';
$lang['state'] = 'Държава';
$lang['username'] = 'Потребителско име';
$lang['password'] = 'Парола';
$lang['retype_password'] = 'Повторете паролата';
$lang['receive_notifications'] = 'Получаване на уведомления';
$lang['passwords_mismatch'] = 'Паролите не съвпадат.';
$lang['admin_saved'] = 'Администратор записан успешно.';
$lang['provider_saved'] = 'Изпълнител записан успешно.';
$lang['secretary_saved'] = 'Секретар записан успешно.';
$lang['admin_deleted'] = 'Администратор заличен успешно.';
$lang['provider_deleted'] = 'Изпълнител заличен успешно.';
$lang['secretary_deleted'] = 'Секретар заличен успешно.';
$lang['service_saved'] = 'Услуга записана успешно.';
$lang['service_category_saved'] = 'Категория на услуги записана успешно.';
$lang['service_deleted'] = 'Услугата заличена успешно.';
$lang['service_category_deleted'] = 'Категория на услуги заличена успешно.';
$lang['customer_saved'] = 'Клиент записан успешно.';
$lang['customer_deleted'] = 'Клиент заличен успешно.';
$lang['current_view'] = 'Текущ изглед';
$lang['working_plan'] = 'Работен график';
$lang['reset_plan'] = 'Нулиране на график';
$lang['monday'] = 'Понеделник';
$lang['tuesday'] = 'Вторник';
$lang['wednesday'] = 'Сряда';
$lang['thursday'] = 'Четвъртък';
$lang['friday'] = 'Петък';
$lang['saturday'] = 'Събота';
$lang['sunday'] = 'Неделя';
$lang['breaks'] = 'Почивки';
$lang['add_breaks_during_each_day'] = 'Нанесете почивките за всеки ден. По време на почивките изпълнителя няма да приема часове.';
$lang['day'] = 'Ден';
$lang['days'] = 'Дни';
$lang['actions'] = 'Действия';
$lang['reset_working_plan_hint'] = 'Връщане на работния график към стойности по подразбиране.';
$lang['company_name'] = 'Име на Организацията';
$lang['company_name_hint'] = 'Името на организацията ще бъде показвано навсякъде в системата (задължително).';
$lang['company_email'] = 'Електронна поща на организацията';
$lang['company_email_hint'] = 'Това ще е електронната поща на организацията. Ще бъде използван като изпращач и получател за системните електронни писма (задължително).';
$lang['company_link'] = 'Препратка на организацията';
$lang['company_link_hint'] = 'Препратката на организацията би трябвало да сочи към официалната страница на същата (задължително).';
$lang['go_to_booking_page'] = 'Към страница за запазване.';
$lang['settings_saved'] = 'Настройките записани успешно.';
$lang['general'] = 'Общи';
$lang['booking'] = 'Booking';
$lang['visible'] = 'видим';
$lang['hidden'] = 'Скрит';
$lang['business_logic'] = 'Бизнес логика';
$lang['current_user'] = 'Текущ потребител';
$lang['about_app'] = 'Относно';
$lang['edit_working_plan_hint'] = 'Моля задайте дните и часовете през, които вашата организация ще приема часове по-долу. Ще ви бъде възможно да редактирате часове в неработни периоди , но клиентите няма да могат да запазват часове в неработни периоди. Този работен график ще бъде избран по подразбиране за всеки нов изпълнител , но Вие можете да променяте графика на всеки изпълнител отделно. След това можете да нанесете почивките.';
$lang['edit_breaks_hint'] = 'Нанасяне на работни почивки за всеки ден. Същите ще се прилагат за всички нови изпълнители.';
$lang['book_advance_timeout'] = 'Запазване на предварителна пауза';
$lang['book_advance_timeout_hint'] = 'Дефиниране на пауза (в минути) преди клиентите да могат да запазват или разместват часовете си с организацията.';
$lang['timeout_minutes'] = 'Пауза (в минути)';
$lang['about_app_info'] = 'Това е интернет система с висока гъвкавост позволяваща на клиентите Ви да запазват часовете си чрез интернет пространството. Като добавка , позволява синхронизация с Google Calendar за да може да използвате и други услуги.';
$lang['current_version'] = 'Текуща версия';
$lang['support'] = 'Поддръжка.';
$lang['about_app_support'] = 'Ако срещнете затруднения с Easy!Appointments, можете да претърсите официалната гугъл група за отговори и потенциални решения. Възможно е да се наложи да създадете нов запис за проблем в страницата за кодът, за да подпомогнете разработчиците.';
$lang['official_website'] = 'Официална интернет страница.';
$lang['google_plus_community'] = 'Google+ Community';
$lang['support_group'] = 'Support Group';
$lang['project_issues'] = 'Проектни проблеми';
$lang['license'] = 'Лиценз ';
$lang['about_app_license'] = 'тази система е лицензирана спрямо GPLv3 лиценз. Чрез използването на системата по какъвто и да е начин, Вие се съгласявате и приемате условията за изложение на следния интернет адрес: ';
$lang['logout_success'] = 'Излязохте успешно! Използвайте следните бутони за да навигирате към различна страница.';
$lang['book_appointment_title'] = 'Запазване на час';
$lang['backend_section'] = 'Административна секция';
$lang['you_need_to_login'] = 'Здравейте! Нужно е да влезете в потребителския си профил за да достъпите административната секция.';
$lang['enter_username_here'] = 'Въведете потребителското си име тук…';
$lang['enter_password_here'] = 'Въведете паролата си тук…';
$lang['login'] = 'Вход';
$lang['forgot_your_password'] = 'Забравена парола ?';
$lang['login_failed'] = 'Вход неуспешен, моля въведете правилните данни и опитайте отново. ';
$lang['type_username_and_email_for_new_password'] = 'Въведете потребителското си име и адрес на електронна поща за да получите новата си парола.';
$lang['enter_email_here'] = 'Въведете адресът на електронната Ви поща тук…';
$lang['regenerate_password'] = 'Генериране на парола';
$lang['go_to_login'] = 'Назад към страница за вход.';
$lang['new_password_sent_with_email'] = 'Вашата нова парола Ви бе изпратена чрез електронна поща.';
$lang['new_account_password'] = 'Нова парола на потребителски профил';
$lang['new_password_is'] = 'Новата парола за потребителския профил е……… Моля запазете това електронно писмо за да може да намерите паролата си при нужда. Можете да промените паролата си в секцията за настройки на Вашия профил.';
$lang['delete_record_prompt'] = 'Сигурни ли Сте, че искате да заличите този запис? Това действие е необратимо';
$lang['delete_admin'] = 'Заличаване на администратор';
$lang['delete_customer'] = 'Заличаване на клиент';
$lang['delete_service'] = 'Заличаване на услуга';
$lang['delete_service_category'] = 'Заличаване на категория на услуги';
$lang['delete_provider'] = 'Заличаване на изпълнител';
$lang['delete_secretary'] = 'Заличаване на секретар';
$lang['delete_appointment'] = 'Заличаване на час';
$lang['delete_unavailability'] = 'Заличаване на неработен период';
$lang['delete'] = 'Заличаване';
$lang['unexpected_issues'] = 'Неочаквани проблеми';
$lang['unexpected_issues_message'] = 'Действието не можа да бъде изпълнено поради неочаквани проблеми.';
$lang['close'] = 'Край';
$lang['page_not_found'] = 'Страницата не е намерена.';
$lang['page_not_found_message'] = 'За съжаление търсената от Вас страница не съществува. Моля проверете интернет адреса или посетете друг сегмент като използвате бутоните по-долу.';
$lang['error'] = 'Грешка';
$lang['no_privileges'] = 'Без привилегии';
$lang['no_privileges_message'] = 'Не притежавате нужните привилегии за да достъпите тази страница. Моля посетете друг сегмент.';
$lang['backend_calendar'] = 'Административен календар';
$lang['start_date_time'] = 'Начало Дата / Час';
$lang['end_date_time'] = 'Край Дата / Час';
$lang['licensed_under'] = 'Лиценз';
$lang['unexpected_issues_occurred'] = 'Възникнаха неочаквани проблеми.';
$lang['service_communication_error'] = 'Възникна грешка със сървърната комуникация, моля опитайте отново. ';
$lang['no_privileges_edit_appointments'] = 'Вие не притежавате нужните привилегии за да редактирате часове.';
$lang['unavailability_updated'] = 'Неработен период обновен успешно.';
$lang['appointments'] = 'Часове';
$lang['unexpected_warnings'] = 'Непредвидени предупреждения';
$lang['unexpected_warnings_message'] = 'Действието бе изпълнено, но са налични известни предупреждения.';
$lang['filter'] = 'Филтър';
$lang['clear'] = 'Изчистване';
$lang['uncategorized'] = 'Некатегоризирани';
$lang['username_already_exists'] = 'Потребителското име вече е заето.';
$lang['password_length_notice'] = 'Паролата трябва да бъде с минимална дължина от $number символа.';
$lang['general_settings'] = 'Общи настройки';
$lang['personal_information'] = 'Лична информация';
$lang['system_login'] = 'Вход в системата';
$lang['user_settings_are_invalid'] = 'Потребителските настройки са невалидни! Моля прегледайте настройките си и опитайте отново.';
$lang['add_break'] = 'Добавяне на почивка';
$lang['january'] = 'Януари';
$lang['february'] = 'Февруари';
$lang['march'] = 'Март';
$lang['april'] = 'Април';
$lang['may'] = 'Май';
$lang['june'] = 'Юни';
$lang['july'] = 'Чли';
$lang['august'] = 'Август';
$lang['september'] = 'Септември';
$lang['october'] = 'Октомври';
$lang['november'] = 'Ноември';
$lang['december'] = 'Декември';
$lang['previous'] = 'Предишен';
$lang['next'] = 'Следващ';
$lang['now'] = 'Сега';
$lang['select_time'] = 'Избор на време';
$lang['time'] = 'Време';
$lang['hour'] = 'Час';
$lang['minute'] = 'Минута';
$lang['google_sync_completed'] = 'Google синхронизацията приключи успешно.';
$lang['google_sync_failed'] = 'Google синхронизацията неуспешна: не бе възможно да се осъществи връзка.';
$lang['select_google_calendar'] = 'Избор на Google Calendar';
$lang['select_google_calendar_prompt'] = 'Изберете календарът, който искате да синхронизирате за часовете си. Ако не желаете да изберете специфичен календар, календар по подразбиране ще бъде използван.';
$lang['google_calendar_selected'] = 'Google Calendar бе успешно избран.';
$lang['oops_something_went_wrong'] = 'Опааа! Нещо се обърка!Опааа! Нещо се обърка.';
$lang['could_not_add_to_google_calendar'] = 'Вашият час не бе добавен във Вашият Google Calendar.';
$lang['ea_update_success'] = 'Системата Обновена успешно';
$lang['require_captcha'] = 'Изискване на CAPTCHA';
$lang['require_captcha_hint'] = 'Когато е активно, потребителя , ще трябва да въведе произволно генерирани символи за да запише или промени час.';
$lang['captcha_is_wrong'] = 'CAPTCHA verification failed, please try again.';
$lang['any_provider'] = 'Произволен Изпълнител';
$lang['requested_hour_is_unavailable'] = 'Заявеният от Вас час не е наличен. Моля изберете друг час.';
$lang['customer_notifications'] = 'Клиентски Известия';
$lang['customer_notifications_hint'] = 'Дефинира дали клиентът ще получава известия посредством електронна поща, когато има промяна в графика, съдържащ негов запазен час.';
$lang['date_format'] = 'Формат на Дата';
$lang['date_format_hint'] = 'Промяна на дормат за показ на дата (D - дата, M - месец, Y - година).';
$lang['time_format'] = 'Time Format';
$lang['time_format_hint'] = 'Change the time display format (H - Hours, M - Minutes).';
$lang['first_weekday'] = 'First day of week';
$lang['first_weekday_hint'] = 'Set the first day of the calendar week.';
$lang['google_analytics_code_hint'] = 'Добавете Google Analytics ID за да бъде включена статистика в страницата за запазване на час.';
$lang['availabilities_type'] = 'Типове на работен период.';
$lang['flexible'] = 'Гъвкав';
$lang['fixed'] = 'Фиксиран';
$lang['attendants_number'] = 'Брой Посетители';
$lang['reset_working_plan'] = 'Reset the working plan back to the default values.';
$lang['legal_contents'] = 'Legal Contents';
$lang['cookie_notice'] = 'Cookie Notice';
$lang['display_cookie_notice'] = 'Display Cookie Notice';
$lang['cookie_notice_content'] = 'Cookie Notice Content';
$lang['terms_and_conditions'] = 'Terms & Conditions';
$lang['display_terms_and_conditions'] = 'Display Terms & Conditions';
$lang['terms_and_conditions_content'] = 'Terms & Conditions Content';
$lang['privacy_policy'] = 'Privacy Policy';
$lang['display_privacy_policy'] = 'Display Privacy Policy';
$lang['privacy_policy_content'] = 'Privacy Policy Content';
$lang['website_using_cookies_to_ensure_best_experience'] = 'This website uses cookies to ensure you get the best experience on our website.';
$lang['read_and_agree_to_terms_and_conditions'] = 'I have read and agree to the {$link}Terms & Conditions{/$link}.';
$lang['read_and_agree_to_privacy_policy'] = 'I have read and agree to the {$link}Privacy Policy{/$link}.';
$lang['delete_personal_information_hint'] = 'Delete all personal information from the system.';
$lang['delete_personal_information'] = 'Delete Personal Information';
$lang['delete_personal_information_prompt'] = 'Are you sure that you want to delete your personal information? This action cannot be undone.';
$lang['location'] = 'Location';
$lang['working_plan_exception'] = 'Working Plan Exception';
$lang['working_plan_exceptions'] = 'Working Plan Exceptions';
$lang['working_plan_exceptions_hint'] = 'Add a working plan exception day, outside the working plan.';
$lang['new_working_plan_exception_title'] = 'New Working Plan Exception';
$lang['working_plan_exception_saved'] = 'Working plan exception saved successfully.';
$lang['working_plan_exception_deleted'] = 'Working plan exception deleted successfully.';
$lang['add_working_plan_exceptions_during_each_day'] = 'Add working plan exceptions, outside the working plan.';
$lang['add_working_plan_exception'] = 'Add Working Plan Exception';
$lang['require_phone_number'] = 'Require phone number';
$lang['require_phone_number_hint'] = 'When enabled, customers and users will need to enter the customer\'s phone number when booking an appointment';
$lang['check_spam_folder'] = 'Please check your spam folder if the email does not arrive within a few minutes.';
$lang['api_token_hint'] = 'Set a secret token in order to enable the token based authentication of the Easy!Appointments API.';
$lang['timezone'] = 'Timezone';
$lang['overwrite_existing_working_plans'] = 'This will overwrite the existing provider working plans, are you sure that you want to continue?';
$lang['working_plans_got_updated'] = 'All the working plans got updated.';
$lang['apply_to_all_providers'] = 'Apply To All Providers';
$lang['display_any_provider'] = 'Display Any Provider Option';
$lang['display_any_provider_hint'] = 'The booking page will get an additional option that allows customers to book without specifying a provider.';
$lang['load_more'] = 'Load More';
$lang['list'] = 'List';
$lang['default'] = 'Default';
$lang['table'] = 'Table';
$lang['date'] = 'Date';
$lang['about'] = 'About';
$lang['booking_settings'] = 'Booking Settings';
$lang['display'] = 'Display';
$lang['require'] = 'Require';
$lang['color'] = 'Color';
$lang['matomo_analytics_url_hint'] = 'Add the URL to your own Matomo installation to enable Matomo tracking on the booking pages.';
$lang['invalid_phone'] = 'Invalid phone number.';
$lang['legal'] = 'Legal';
$lang['business'] = 'Business';
$lang['account'] = 'Account';
$lang['disable_booking'] = 'Disable Booking';
$lang['disable_booking_hint'] = 'The booking page will be disabled for as long as this setting is active and customers will not be able to register new appointments.';
$lang['display_message'] = 'Display Message';
$lang['booking_is_disabled'] = 'Booking Is Disabled!';
$lang['appearance'] = 'Appearance';
$lang['company_logo'] = 'Company Logo';
$lang['company_logo_hint'] = 'The company logo will be displayed in many places of the app, including the booking page and the notification emails (image file, max 2MB).';
$lang['company_color'] = 'Company Color';
$lang['company_color_hint'] = 'The company color will be applied across the app so that it the app uses your branding.';
$lang['localization'] = 'Localization';
$lang['integrations'] = 'Integrations';
$lang['company'] = 'Company';
$lang['remove'] = 'Remove';
$lang['login_button'] = 'Login Button';
$lang['display_login_button_hint'] = 'Defines whether the login button is being displayed in the booking page.';
$lang['private'] = 'Private';
$lang['private_hint'] = 'Private records will not be displayed or processed in public pages such as the booking page.';
$lang['reset'] = 'Reset';
$lang['all'] = 'All';
$lang['booking_link'] = 'Booking Link';
$lang['add_new_event'] = 'Add New Event';
$lang['what_kind_of_event'] = 'What kind of event would you like to add?';
$lang['theme'] = 'Theme';
$lang['limit_customer_access'] = 'Limit Customer Access';
$lang['limit_customer_access_hint'] = 'If enabled, providers and secretaries will only be able to access customers they have an appointment with.';
$lang['url'] = 'URL';
$lang['secret_token'] = 'Secret Token';
$lang['verify_ssl'] = 'Verify SSL';
$lang['appointment_save'] = 'Appointment Save';
$lang['appointment_delete'] = 'Appointment Delete';
$lang['unavailability_save'] = 'Unavailability Save';
$lang['unavailability_delete'] = 'Unavailability Delete';
$lang['customer_save'] = 'Customer Save';
$lang['customer_delete'] = 'Customer Delete';
$lang['service_save'] = 'Service Save';
$lang['service_delete'] = 'Service Delete';
$lang['service_category_save'] = 'Category Save';
$lang['service_category_delete'] = 'Category Delete';
$lang['provider_save'] = 'Provider Save';
$lang['provider_delete'] = 'Provider Delete';
$lang['secretary_save'] = 'Secretary Save';
$lang['secretary_delete'] = 'Secretary Delete';
$lang['admin_save'] = 'Admin Save';
$lang['admin_delete'] = 'Admin Delete';
$lang['options'] = 'Options';
$lang['webhooks'] = 'Webhooks';
$lang['webhooks_info'] = 'Webhooks enable you to send HTTP notifications to external web applications in response to various application events, such as the creation of an appointment or the removal of a customer.';
$lang['integrations_info'] = 'Integrations enable you to make third-party connections with external applications and APIs.';
$lang['configure'] = 'Configure';
$lang['google_analytics'] = 'Google Analytics';
$lang['google_analytics_info'] = 'Google Analytics enable you to automatically add the tracking code and HTML markup to the public page and track all the public booking sessions.';
$lang['matomo_analytics'] = 'Matomo Analytics';
$lang['matomo_analytics_info'] = 'Matomo Analytics enable you to automatically add the tracking code and HTML markup to the public page and track all the public booking sessions.';
$lang['api'] = 'API';
$lang['api_info'] = 'API enable you to interact with all the Easy!Appointments data via the HTTP protocol and the available API endpoints and create your own integrations.';
$lang['google_analytics_code'] = 'Google Analytics Code';
$lang['matomo_analytics_url'] = 'Matomo Analytics URL';
$lang['future_booking_limit'] = 'Future Booking Limit';
$lang['limit_days'] = 'Limit (Days)';
$lang['future_booking_limit_hint'] = 'Set the future limit in days customers can make appointments via the public booking page.';
$lang['api_token'] = 'API Token';
$lang['allow_rescheduling_cancellation_before'] = 'Allow Rescheduling/Cancellation Before';
$lang['at_least_one_field'] = 'At least one field must be displayed in the booking page.';
$lang['status'] = 'Status';
$lang['appointment_status_options'] = 'Appointment Status Options';
$lang['appointment_status_options_info'] = 'Define a list of available appointment status options that can be used in the the calendar page (the first one will automatically become the default value).';
$lang['sunday_short'] = 'Sun';
$lang['monday_short'] = 'Mon';
$lang['tuesday_short'] = 'Tue';
$lang['wednesday_short'] = 'Wed';
$lang['thursday_short'] = 'Thu';
$lang['friday_short'] = 'Fri';
$lang['saturday_short'] = 'Sat';
$lang['january_short'] = 'Jan';
$lang['february_short'] = 'Feb';
$lang['march_short'] = 'Mar';
$lang['april_short'] = 'Apr';
$lang['may_short'] = 'May';
$lang['june_short'] = 'Jun';
$lang['july_short'] = 'Jul';
$lang['august_short'] = 'Aug';
$lang['september_short'] = 'Sep';
$lang['october_short'] = 'Oct';
$lang['november_short'] = 'Nov';
$lang['december_short'] = 'Dec';
$lang['am'] = 'am';
$lang['pm'] = 'pm';
$lang['to'] = 'to';
$lang['click_to_toggle'] = 'Click To Toggle';
$lang['week_short'] = 'Wk';
$lang['scroll_to_increment'] = 'Scroll To Increment';
$lang['year'] = 'Year';
$lang['make_non_working_day'] = 'This provider will not be available for work on the selected day.';
$lang['no_breaks'] = 'No Breaks';
$lang['service_categories'] = 'Service Categories';
$lang['service_category'] = 'Service Category';
$lang['blocked_period_saved'] = 'Blocked period saved successfully.';
$lang['blocked_period_deleted'] = 'Blocked period deleted successfully.';
$lang['delete_blocked_period'] = 'Delete Blocked Period';
$lang['blocked_period'] = 'Blocked Period';
$lang['blocked_periods'] = 'Blocked Periods';
$lang['blocked_period_save'] = 'Blocked Period Save';
$lang['blocked_period_delete'] = 'Blocked Period Delete';
$lang['blocked_periods_hint'] = 'Define periods of time where public bookings will be disabled for all providers (e.g. closed dates, holidays etc.).';
$lang['custom_field'] = 'Custom Field';
$lang['custom_fields'] = 'Custom Fields';
$lang['label'] = 'Label';
// End

View file

@ -1,58 +0,0 @@
<?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

@ -1,55 +0,0 @@
<?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

@ -1,84 +0,0 @@
<?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'] = 'Dg';
$lang['cal_mo'] = 'Dl';
$lang['cal_tu'] = 'Dm';
$lang['cal_we'] = 'Dc';
$lang['cal_th'] = 'Dj';
$lang['cal_fr'] = 'Dv';
$lang['cal_sa'] = 'Ds';
$lang['cal_sun'] = 'Dg.';
$lang['cal_mon'] = 'Dl.';
$lang['cal_tue'] = 'Dm.';
$lang['cal_wed'] = 'Dc.';
$lang['cal_thu'] = 'Dj.';
$lang['cal_fri'] = 'Dv.';
$lang['cal_sat'] = 'Ds.';
$lang['cal_sunday'] = 'Diumenge';
$lang['cal_monday'] = 'Dilluns';
$lang['cal_tuesday'] = 'Dimarts';
$lang['cal_wednesday'] = 'Dimecres';
$lang['cal_thursday'] = 'Dijous';
$lang['cal_friday'] = 'Divendres';
$lang['cal_saturday'] = 'Dissabte';
$lang['cal_jan'] = 'Gen';
$lang['cal_feb'] = 'Feb';
$lang['cal_mar'] = 'Mar';
$lang['cal_apr'] = 'Abr';
$lang['cal_may'] = 'Mai';
$lang['cal_jun'] = 'Jun';
$lang['cal_jul'] = 'Jul';
$lang['cal_aug'] = 'Ago';
$lang['cal_sep'] = 'Set';
$lang['cal_oct'] = 'Oct';
$lang['cal_nov'] = 'Nov';
$lang['cal_dec'] = 'Des';
$lang['cal_january'] = 'Gener';
$lang['cal_february'] = 'Febrer';
$lang['cal_march'] = 'Març';
$lang['cal_april'] = 'Abril';
$lang['cal_mayl'] = 'Maig';
$lang['cal_june'] = 'Juny';
$lang['cal_july'] = 'Juliol';
$lang['cal_august'] = 'Agost';
$lang['cal_september'] = 'Setembre';
$lang['cal_october'] = 'Octubre';
$lang['cal_november'] = 'Novembre';
$lang['cal_december'] = 'Desembre';

View file

@ -1,94 +0,0 @@
<?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'] = 'Any';
$lang['date_years'] = 'Anys';
$lang['date_month'] = 'Mes';
$lang['date_months'] = 'Mesos';
$lang['date_week'] = 'Setmana';
$lang['date_weeks'] = 'Setmanes';
$lang['date_day'] = 'Dia';
$lang['date_days'] = 'Dies';
$lang['date_hour'] = 'Hora';
$lang['date_hours'] = 'Hores';
$lang['date_minute'] = 'Minut';
$lang['date_minutes'] = 'Minuts';
$lang['date_second'] = 'Segon';
$lang['date_seconds'] = 'Segons';
$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

@ -1,63 +0,0 @@
<?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

@ -1,58 +0,0 @@
<?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

@ -1,69 +0,0 @@
<?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

@ -1,51 +0,0 @@
<?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

@ -1,57 +0,0 @@
<?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

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

View file

@ -1,20 +0,0 @@
<?php
/**
* System messages translation for CodeIgniter(tm)
*
* @author CodeIgniter community
* @author
* @copyright Copyright (c) 2014-2018, British Columbia Institute of Technology (http://bcit.ca/)
* @license http://opensource.org/licenses/MIT MIT License
* @link https://codeigniter.com
*/
defined('BASEPATH') or exit('No direct script access allowed');
$lang['migration_none_found'] = 'No s\'ha trobat cap migració.';
$lang['migration_not_found'] = 'No s\'ha trobat cap migració amb el númeo de versió: %s.';
$lang['migration_sequence_gap'] = 'Hi ha un buit a la migració, prop del número de versió: %s.';
$lang['migration_multiple_version'] = 'Hi ha múltiples migracions amb el mateix número de versió: %s.';
$lang['migration_class_doesnt_exist'] = 'La classe de migració "%s" no s\'ha trobat.';
$lang['migration_missing_up_method'] = 'A la classe de migració "%s", li falta el mètode "up".';
$lang['migration_missing_down_method'] = 'A la classe de migració "%s" li falta el mètode "down".';
$lang['migration_invalid_filename'] = 'La migració "%s" té un nom de fitxer no vàlid.';

View file

@ -1,44 +0,0 @@
<?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

@ -1,43 +0,0 @@
<?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

@ -1,60 +0,0 @@
<?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

@ -1,452 +0,0 @@
<?php defined('BASEPATH') or exit('No direct script access allowed');
// Catalan
$lang['page_title'] = 'Reserva una cita amb';
$lang['service_and_provider'] = 'Selecció del servei i el proveïdor';
$lang['select_service'] = 'Seleccioneu el servei';
$lang['select_provider'] = 'Seleccioneu el proveïdor';
$lang['duration'] = 'Durada';
$lang['minutes'] = 'minuts';
$lang['price'] = 'Preu';
$lang['back'] = 'Enrere';
$lang['appointment_date_and_time'] = 'Selecció de la data i l\'hora de la cita';
$lang['no_available_hours'] = 'No hi ha hores disponibles per a la data seleccionada. Seleccioneu una altra data.';
$lang['appointment_hour_missing'] = 'Seleccioneu-ne una altra abans de continuar.';
$lang['customer_information'] = 'Introducció de dades personals';
$lang['first_name'] = 'Nom';
$lang['last_name'] = 'Cognoms';
$lang['email'] = 'Correu electrònic';
$lang['phone_number'] = 'Número de telèfon';
$lang['phone'] = 'Telèfon';
$lang['address'] = 'Adreça';
$lang['city'] = 'Ciutat';
$lang['zip_code'] = 'Codi postal';
$lang['notes'] = 'Notes';
$lang['language'] = 'Idioma';
$lang['no_language'] = 'Sense idioma';
$lang['fields_are_required'] = 'Els camps amb un * són obligatoris.';
$lang['appointment_confirmation'] = 'Confirmació de la cita';
$lang['confirm'] = 'Confirma';
$lang['update'] = 'Actualitza';
$lang['cancel_appointment_hint'] = 'Premeu el botó "Cancel·la" per eliminar la cita del calendari de l\'organització.';
$lang['cancel'] = 'Cancel·la';
$lang['appointment_registered'] = 'La vostra cita s\'ha desat correctament!.';
$lang['cancel_appointment_title'] = 'Cancel·lació de la cita';
$lang['appointment_cancelled'] = 'La vostra cita s\'ha cancel·lat correctament.';
$lang['appointment_cancelled_title'] = 'Cita cancel·lada';
$lang['reason'] = 'Motiu';
$lang['appointment_removed_from_schedule'] = 'La cita següent ha estat eliminada de la planificació de l\'organització.';
$lang['appointment_details_was_sent_to_you'] = 'Se us ha enviat un correu electrònic amb els detalls de la cita on també podreu modificar-la o anul·lar-la.';
$lang['add_to_google_calendar'] = 'Afegeix al Google Calendar';
$lang['appointment_booked'] = 'La vostra cita s\'ha reservat correctament.';
$lang['thank_you_for_appointment'] = 'Gràcies per reservar una cita amb nosaltres. A sota, podeu veure els detalls de la cita. Podeu fer canvis clicant a l\'enllaç de la cita.';
$lang['appointment_details_title'] = 'Detalls de la cita';
$lang['customer_details_title'] = 'Detalls del client';
$lang['service'] = 'Servei';
$lang['provider'] = 'Proveïdor';
$lang['customer'] = 'Client';
$lang['start'] = 'Inici';
$lang['end'] = 'Fi';
$lang['name'] = 'Nom';
$lang['appointment_link_title'] = 'Enllaç a la cita';
$lang['success'] = 'Correcte.';
$lang['appointment_added_to_google_calendar'] = 'La vostra cita s\'ha afegit al vostre compte de Google Calendar.';
$lang['view_appointment_in_google_calendar'] = 'Cliqueu aquí per veure la vostra cita al Google Calendar.';
$lang['appointment_added_to_your_plan'] = 'S\'ha afegit una nova cita a la vostra planificació.';
$lang['appointment_link_description'] = 'Podeu fer canvis clicant a l\'enllaç de la cita de sota.';
$lang['appointment_locked'] = 'La modificació no és possible.';
$lang['appointment_locked_message'] = 'La cita no es pot es pot canviar quan falten menys de {$limit} hores.';
$lang['appointment_not_found'] = 'No s\'ha trobat la cita.';
$lang['appointment_does_not_exist_in_db'] = 'La cita que heu demanat ja no existeix a la base de dades del sistema.';
$lang['display_calendar'] = 'Mostra el calendari';
$lang['calendar'] = 'Calendari';
$lang['users'] = 'Usuaris';
$lang['settings'] = 'Configuracions';
$lang['log_out'] = 'Sortida';
$lang['synchronize'] = 'Sincronitza';
$lang['enable_sync'] = 'Permet Sync';
$lang['disable_sync'] = 'No permetis Sync';
$lang['disable_sync_prompt'] = 'Esteu segur que voleu desactivar la sincronització del calendari?';
$lang['reload'] = 'Recarrega';
$lang['appointment'] = 'Cita';
$lang['unavailability'] = 'No disponible';
$lang['week'] = 'Setmana';
$lang['month'] = 'Mes';
$lang['today'] = 'Avui';
$lang['not_working'] = 'No laborable';
$lang['break'] = 'Descans';
$lang['add'] = 'Afegeix';
$lang['edit'] = 'Edita';
$lang['hello'] = 'Hola';
$lang['all_day'] = 'Tot el dia';
$lang['manage_appointment_record_hint'] = 'Gestiona totes les cites enregistrades de proveïdors i serveis disponibles.';
$lang['select_filter_item_hint'] = 'Selecciona un proveïdor o un servei i visualitza les cites al calendari.';
$lang['enable_appointment_sync_hint'] = 'Permet la sincronització de cites amb el compte de Google Calendar del proveïdor.';
$lang['manage_customers_hint'] = 'Gestiona els clients registrats i mostra el seu historial de reserves.';
$lang['manage_services_hint'] = 'Gestiona els serveis disponibles i les categories del sistema.';
$lang['manage_users_hint'] = 'Gestiona els usuaris gestors (administradors, proveïdors, secretaris).';
$lang['settings_hint'] = 'Configura les opcions del sistema i dels usuaris.';
$lang['log_out_hint'] = 'Surt del sistema.';
$lang['unavailability_periods_hint'] = 'Durant els períodes de no disponibilitat el proveïdor no acceptarà noves cites.';
$lang['new_appointment_hint'] = 'Crea una nova cita i emmagatzema-la a la base de dades.';
$lang['reload_appointments_hint'] = 'Recarrega el calendari de cites.';
$lang['trigger_google_sync_hint'] = 'Dispara el procés de sincronització amb el Google Calendar.';
$lang['appointment_updated'] = 'La cita s\'ha actualitzat correctament.';
$lang['undo'] = 'Desfés';
$lang['appointment_details_changed'] = 'Els detalls de la cita han canviat.';
$lang['appointment_changes_saved'] = 'Els canvis de la cita s\'han desat correctament.';
$lang['save'] = 'Desa';
$lang['new'] = 'Nou';
$lang['select'] = 'Selecciona';
$lang['hide'] = 'Amaga';
$lang['type_to_filter_customers'] = 'Tecleja per filtrar els clients.';
$lang['clear_fields_add_existing_customer_hint'] = 'Buida els camps i entra un nou client.';
$lang['pick_existing_customer_hint'] = 'Escull un client existent.';
$lang['new_appointment_title'] = 'Nova cita';
$lang['edit_appointment_title'] = 'Edita la cita';
$lang['delete_appointment_title'] = 'Elimina la cita';
$lang['write_appointment_removal_reason'] = 'Escriviu el motiu pel qual elimineu la cita:';
$lang['appointment_saved'] = 'La cita s\'ha desat correctament.';
$lang['new_unavailability_title'] = 'Nou període de no disponibilitat';
$lang['edit_unavailability_title'] = 'Edita el període de no disponibilitat';
$lang['unavailability_saved'] = 'El període de no disponibilitat s\'ha desat correctament.';
$lang['start_date_before_end_error'] = 'La data d\'inici és posterior de la de fi.';
$lang['invalid_duration'] = 'Durada no vàlida.';
$lang['invalid_email'] = 'L\'adreça de correu electrònic no és vàlida.';
$lang['customers'] = 'Clients';
$lang['details'] = 'Detalls';
$lang['no_records_found'] = 'No s\'han trobat registres...';
$lang['services'] = 'Serveis';
$lang['duration_minutes'] = 'Durada (minuts)';
$lang['currency'] = 'Moneda';
$lang['category'] = 'Categoria';
$lang['no_category'] = 'Sense categoria';
$lang['description'] = 'Descripció';
$lang['categories'] = 'Categories';
$lang['admins'] = 'Admins';
$lang['providers'] = 'Proveïdors';
$lang['secretaries'] = 'Secretaris';
$lang['mobile_number'] = 'Número de telefon mòbil';
$lang['mobile'] = 'Mòbil';
$lang['state'] = 'Província';
$lang['username'] = 'Usuari';
$lang['password'] = 'Contrasenya';
$lang['retype_password'] = 'Torna a introduir la contrasenya';
$lang['receive_notifications'] = 'Rep les notificacions';
$lang['passwords_mismatch'] = 'Les contrasenyes no coincideixen.';
$lang['admin_saved'] = 'Admin desat correctament.';
$lang['provider_saved'] = 'Proveïdor desat correctament.';
$lang['secretary_saved'] = 'Secretari desat correctament.';
$lang['admin_deleted'] = 'Admin eliminat correctament.';
$lang['provider_deleted'] = 'Proveïdor eliminat correctament.';
$lang['secretary_deleted'] = 'Secretari eliminat correctament.';
$lang['service_saved'] = 'Servei desat correctament.';
$lang['service_category_saved'] = 'Categoria de servei desada correctament.';
$lang['service_deleted'] = 'Servei eliminat correctament.';
$lang['service_category_deleted'] = 'Categoria de servei eliminada correctament.';
$lang['customer_saved'] = 'Client desat correctament.';
$lang['customer_deleted'] = 'Client eliminat correctament.';
$lang['current_view'] = 'Vista actual';
$lang['working_plan'] = 'Planificació de treball';
$lang['reset_plan'] = 'Reinicia la planificació';
$lang['monday'] = 'Dilluns';
$lang['tuesday'] = 'Dimarts';
$lang['wednesday'] = 'Dimecres';
$lang['thursday'] = 'Dijous';
$lang['friday'] = 'Divendres';
$lang['saturday'] = 'Dissabte';
$lang['sunday'] = 'Diumenge';
$lang['breaks'] = 'Descansos';
$lang['add_breaks_during_each_day'] = 'Afegeix pauses. Durant les pauses, el proveïdor no acceptarà cites.';
$lang['day'] = 'Dia';
$lang['days'] = 'Dies';
$lang['actions'] = 'Accions';
$lang['reset_working_plan_hint'] = 'Reinicia la planificació de treball als valors per defecte.';
$lang['company_name'] = 'Nom de l\'organització';
$lang['company_name_hint'] = 'El nom de l\'organització es mostrarà arreu del sistema (necessari).';
$lang['company_email'] = 'Correu de l\'organització';
$lang['company_email_hint'] = 'Aquest serà l\'adreça de correu electrònic de l\'organització. S\'utilitzarà com a remitent i adreça de resposta dels correus del sistema (necessari).';
$lang['company_link'] = 'Enllaç a l\'organització';
$lang['company_link_hint'] = 'L\'enllaç a l\'organització hauria d\'enllaçar el seu lloc web oficial (necessari).';
$lang['go_to_booking_page'] = 'Ves a la pàgina de reserves';
$lang['settings_saved'] = 'Les configuracions s\'han desat correctament.';
$lang['general'] = 'General';
$lang['booking'] = 'Reserves';
$lang['visible'] = 'Visible';
$lang['hidden'] = 'Amagat';
$lang['business_logic'] = 'Lògica de negoci';
$lang['current_user'] = 'Usuari actual';
$lang['about_app'] = 'Quant a Easy!Appointments';
$lang['edit_working_plan_hint'] = 'Marqueu a sota els dies i les hores que la vostra organització acceptarà cites. Podreu ajustar les cites a les hores no laborables, però els clients no podran reservar cites en aquest períodes. Aquesta planificació de treball serà utilitzada per defecte per cada nou proveïdor, però podreu canviar cadascuna de les planificacions dels proveïdors de forma separada. Finalment, podeu afegir els períodes de pausa.';
$lang['edit_breaks_hint'] = 'Afegiu pauses per a cadascun dels dies. Aquestes pauses s\'aplicaran a tots els nous proveïdors.';
$lang['book_advance_timeout'] = 'Temps límit de modificació/cancel·lació';
$lang['book_advance_timeout_hint'] = 'Defineix el temps límit (en minuts) a partir del qual els clients no poden reservar una hora o modificar una cita.';
$lang['timeout_minutes'] = 'Temps límit de reserva (minuts)';
$lang['about_app_info'] = 'Easy!Appointments és una aplicació web molt ajustable que permet als vostres clients reservar cites amb vosaltres a través del web. A més, us permet sincronitzar amb Google Calendar de manera que ho podeu usar amb altres serveis.';
$lang['current_version'] = 'Versió actual';
$lang['support'] = 'Suport';
$lang['about_app_support'] = 'Si trobeu qualsevol problema fent servir Easy!Appointments, podeu consultar el Google Group per a trobar respostes. També podeu crear noves incidències a la pàgina de Google Code per ajudar al desenvolupament.';
$lang['official_website'] = 'Lloc web oficial';
$lang['google_plus_community'] = 'Comunitat Google+';
$lang['support_group'] = 'Grup de suport';
$lang['project_issues'] = 'Incidències del projecte';
$lang['license'] = 'Llicència';
$lang['about_app_license'] = 'Easy!Appointments es distribueix amb una llicència GPLv3. Usant el codi d\'Easy!Appointments de qualsevol manera, esteu consentint els termes descrits en la següent URL:';
$lang['logout_success'] = 'Heu sortit correctament! Cliqueu en un dels següents botons per navegar a una altra pàgina.';
$lang['book_appointment_title'] = 'Reserva una cita';
$lang['backend_section'] = 'Administració';
$lang['you_need_to_login'] = 'Heu d\'iniciar la sessió per veure les pàgines d\'administració.';
$lang['enter_username_here'] = 'Introduïu el vostre nom d\'usuari...';
$lang['enter_password_here'] = 'Introduïu la vostra contrasenya...';
$lang['login'] = 'Entra';
$lang['forgot_your_password'] = 'Heu oblidat la contrasenya?';
$lang['login_failed'] = 'Entrada fallida, introduïu les credencials correctes i proveu-ho un altre cop.';
$lang['type_username_and_email_for_new_password'] = 'Teclegeu el vostre nom d\'usuari i la vostra adreça de correu per obtenir una nova contrasenya.';
$lang['enter_email_here'] = 'Introdueix el teu correu aquí...';
$lang['regenerate_password'] = 'Regenera la contrasenya';
$lang['go_to_login'] = 'Torna a la pàgina d\'entrada';
$lang['new_password_sent_with_email'] = 'La vostra nova contrasenya se us ha enviat per correu electrònic.';
$lang['new_account_password'] = 'Nova contrasenya';
$lang['new_password_is'] = 'La vostra nova contrasenya és $password. Deseu aquest correu per tal de poder recuperar la contrasenya si és necessari. Podeu canviar aquesta contrasenya a la pàgina de configuracions.';
$lang['delete_record_prompt'] = 'Esteu segurs que voleu eliminar aquest registre? Aquesta acció no es pot desfer.';
$lang['delete_admin'] = 'Elimina un administrador';
$lang['delete_customer'] = 'Elimina un client';
$lang['delete_service'] = 'Elimina un servei';
$lang['delete_service_category'] = 'Elimina una categoria de servei';
$lang['delete_provider'] = 'Elimina un proveïdor';
$lang['delete_secretary'] = 'Elimina un secretari';
$lang['delete_appointment'] = 'Elimina una cita';
$lang['delete_unavailability'] = 'Elimina un període de no disponibilitat';
$lang['delete'] = 'Elimina';
$lang['unexpected_issues'] = 'Problemes inesperats';
$lang['unexpected_issues_message'] = 'L\'operació no s\'ha pogut completar degut a problemes inesperats.';
$lang['close'] = 'Tanca';
$lang['page_not_found'] = 'No s\'ha trobat la pàgina';
$lang['page_not_found_message'] = 'La pàgina que heu demanat no existeix. Comproveu la URL del vostre navegador o dirigiu-vos a un altre lloc clicant els botons de sota.';
$lang['error'] = 'Error';
$lang['no_privileges'] = 'Permisos insuficients';
$lang['no_privileges_message'] = 'No teniu el permisos requerits per veure aquesta pàgina. Navegueu a una altra secció.';
$lang['backend_calendar'] = 'Calendari de gestió';
$lang['start_date_time'] = 'Data/Hora d\'inici';
$lang['end_date_time'] = 'Data/Hora de fi';
$lang['licensed_under'] = 'Amb llicència';
$lang['unexpected_issues_occurred'] = 'Hi han hagut alguns problemes.';
$lang['service_communication_error'] = 'Hi hagut un problema de comunicació amb el servidor, intenteu-ho una altra vegada.';
$lang['no_privileges_edit_appointments'] = 'No teniu els permissos necessaris per editar les cites.';
$lang['unavailability_updated'] = 'El període de temps de no disponibilitat s\'ha actualitzat correctament.';
$lang['appointments'] = 'Cites';
$lang['unexpected_warnings'] = 'Errors inesperats';
$lang['unexpected_warnings_message'] = 'L\'operació s\'ha completat, però hi ha diversos avisos.';
$lang['filter'] = 'Filtra';
$lang['clear'] = 'Neteja';
$lang['uncategorized'] = 'Sense categoritzar';
$lang['username_already_exists'] = 'El nom d\'usuari ja existeix.';
$lang['password_length_notice'] = 'La contrasenya ha de tenir almenys $number caràcters de longitud.';
$lang['general_settings'] = 'Configuracions generals';
$lang['personal_information'] = 'Informació personal';
$lang['system_login'] = 'Entrada al sistema';
$lang['user_settings_are_invalid'] = 'Les configuració d\'usuari no User settings are invalid! Please review your settings and try again.';
$lang['add_break'] = 'Afegeix una pausa';
$lang['january'] = 'Gener';
$lang['february'] = 'Febrer';
$lang['march'] = 'Març';
$lang['april'] = 'Abril';
$lang['may'] = 'Maig';
$lang['june'] = 'Juny';
$lang['july'] = 'Juliol';
$lang['august'] = 'Agost';
$lang['september'] = 'Setembre';
$lang['october'] = 'Octubre';
$lang['november'] = 'Novembre';
$lang['december'] = 'Desembre';
$lang['previous'] = 'Anterior';
$lang['next'] = 'Següent';
$lang['now'] = 'Ara';
$lang['select_time'] = 'Selecciona l\'hora';
$lang['time'] = 'Hora';
$lang['hour'] = 'Hora';
$lang['minute'] = 'Minut';
$lang['google_sync_completed'] = 'La sincronització amb Google s\'ha completat correctament.';
$lang['google_sync_failed'] = 'La sincronització amb Google ha fallat: no s\'ha pogut establir la connexió amb el servidor.';
$lang['select_google_calendar'] = 'Selecciona un Google Calendar';
$lang['select_google_calendar_prompt'] = 'Seleccioneu el calendari que voleu sincronitzar amb les vostres cites. Si no seleccioneu un calendari específic, s\'usarà el calendari per defecte.';
$lang['google_calendar_selected'] = 'El Google calendar s\'ha seleccionat correctament.';
$lang['oops_something_went_wrong'] = 'Ups! Alguna cosa no ha funcionat bé.';
$lang['could_not_add_to_google_calendar'] = 'La vostra cita no s\'ha pogut afegir al vostre compte de Google Calendar.';
$lang['ea_update_success'] = 'Easy!Appointments s\'ha actualitzat correctament.';
$lang['require_captcha'] = 'Requereix un CAPTCHA';
$lang['require_captcha_hint'] = 'Quan s\'habilita, els clients hauran de teclejar una cadena CAPTCHA generada aleatòriament abans de reservar o actualitzar una cita.';
$lang['captcha_is_wrong'] = 'La verificació del CAPTCHA ha fallat, torneu-ho a intentar.';
$lang['any_provider'] = 'Qualsevol proveïdor';
$lang['requested_hour_is_unavailability'] = 'La cita que demaneu no està disponible. Seleccioneu una hora diferent per a la vostra cita.';
$lang['customer_notifications'] = 'Notificacions als clients';
$lang['customer_notifications_hint'] = 'Defineix si el client rebrà notificacions per correu electrònic quan hi hagi un canvi en la planificació de les seves cites.';
$lang['date_format'] = 'Format de data';
$lang['date_format_hint'] = 'Canvia el format de visualització de la data (D - Dia, M - Mes, Y - Any).';
$lang['time_format'] = 'Format d\'hora';
$lang['time_format_hint'] = 'Canvia el format de visualització de l\'hora (H - Hores, M - Minuts).';
$lang['first_weekday'] = 'Primer dia de la setmana';
$lang['first_weekday_hint'] = 'Estableix el primer dia de la setmana als calendaris.';
$lang['google_analytics_code_hint'] = 'Afegiu el vostre ID de Google Analytics per afegir-lo a la pàgina de reserves.';
$lang['availabilities_type'] = 'Tipus de disponibilitat';
$lang['flexible'] = 'Flexible';
$lang['fixed'] = 'Fixat';
$lang['attendants_number'] = 'Nombre d\'assistents';
$lang['reset_working_plan'] = 'Reinicieu la planificació de treball als valors per defecte.';
$lang['legal_contents'] = 'Continguts legals';
$lang['cookie_notice'] = 'Avís de cookies';
$lang['display_cookie_notice'] = 'Mostra l\'avís de cookies';
$lang['cookie_notice_content'] = 'Contingut de l\'avís de cookies';
$lang['terms_and_conditions'] = 'Termes i condicions';
$lang['display_terms_and_conditions'] = 'Mostra els termes i condicions';
$lang['terms_and_conditions_content'] = 'Contingut dels termes i condicions';
$lang['privacy_policy'] = 'Política de privacitat';
$lang['display_privacy_policy'] = 'Mostra la política de privacitat';
$lang['privacy_policy_content'] = 'Contingut de la política de privacitat';
$lang['website_using_cookies_to_ensure_best_experience'] = 'Aquest lloc web usa cookies per assegurar-se que obteniu la millor experiència navegant pel nostre web.';
$lang['read_and_agree_to_terms_and_conditions'] = 'He llegit i estic d\'acord amb els {$link}Termes i condicions{/$link}.';
$lang['read_and_agree_to_privacy_policy'] = 'He llegit i estic d\'acord amb la {$link}Política de privacitat{/$link}.';
$lang['delete_personal_information_hint'] = 'Elimineu les vostres dades del sistema (i les cites associades).';
$lang['delete_personal_information'] = 'Eliminació de dades personals';
$lang['delete_personal_information_prompt'] = 'Esteu segur que voleu eliminar la vostra informació personal? Aquesta acció no es pot desfer.';
$lang['location'] = 'Ubicació';
$lang['working_plan_exception'] = 'Excepció del pla de treball';
$lang['working_plan_exceptions'] = 'Excepcions del pla de treball';
$lang['working_plan_exceptions_hint'] = 'Afegeix un dia d\'excepció del pla de treball, fora del pla de treball.';
$lang['new_working_plan_exception_title'] = 'Nova excepció al pla de treball';
$lang['working_plan_exception_saved'] = 'L\'excepció del pla de treball s\'ha desat correctament.';
$lang['working_plan_exception_deleted'] = 'L\'excepció del pla de treball s\'ha suprimit correctament.';
$lang['add_working_plan_exceptions_during_each_day'] = 'Afegeix excepcions al pla de treball, fora del pla de treball.';
$lang['add_working_plan_exception'] = 'Afegeix una excepció al pla de treball';
$lang['require_phone_number'] = 'Requereix el número de telèfon';
$lang['require_phone_number_hint'] = 'Quan està activat, els clients i els usuaris hauran d\'introduir el número de telèfon al reservar una cita';
$lang['check_spam_folder'] = 'Comproveu la vostra carpeta de correu brossa si el correu no arriba en uns minuts.';
$lang['api_token_hint'] = 'Establiu un token secret per permetre l\'autenticació basada en tokens de l\'API d\'Easy!Appointments.';
$lang['timezone'] = 'Zona horària';
$lang['overwrite_existing_working_plans'] = 'Això sobreescriurà els plans de treball existents del proveïdor, esteu segur que voleu continuar?';
$lang['working_plans_got_updated'] = 'S\'han actualitzat tots els plans de treball.';
$lang['apply_to_all_providers'] = 'Aplica-ho a tots els proveïdors';
$lang['display_any_provider'] = 'Mostra l\'opció de Qualsevol proveïdor';
$lang['display_any_provider_hint'] = 'La pàgina de reserva mostrarà una opció addicional que permet als clients reservar sense especificar un proveïdor.';
$lang['load_more'] = 'Carrega\'n més';
$lang['list'] = 'Llista';
$lang['default'] = 'Per defecte';
$lang['table'] = 'Taula';
$lang['date'] = 'Data';
$lang['about'] = 'Quant a';
$lang['booking_settings'] = 'Paràmetres de reserva';
$lang['display'] = 'Mostra';
$lang['require'] = 'Fes obligatori';
$lang['color'] = 'Color';
$lang['matomo_analytics_url_hint'] = 'Afegiu la URL de la vostra instal·lació de Matomo per permetre el seguiment de Matomo de les pàgines de reserves.';
$lang['invalid_phone'] = 'Número de telèfon no vàlid.';
$lang['legal'] = 'Legal';
$lang['business'] = 'Negoci';
$lang['account'] = 'Compte';
$lang['disable_booking'] = 'Desactiva les cites';
$lang['disable_booking_hint'] = 'La pàgina de reserva de cites es desactivarà mentre aquest paràmetre estigui actiu i els clients no podran realitzar noves cites.';
$lang['display_message'] = 'Mostra el missatge';
$lang['booking_is_disabled'] = 'La reserva està deshabilitada!';
$lang['appearance'] = 'Aparença';
$lang['company_logo'] = 'Logotip de l\'empresa';
$lang['company_logo_hint'] = 'El logotip de la companyia es mostrarà en molts llocs de l\'aplicació, incloent les pàgines de reserva i als correus de notificació (mida màxima del fitxer 2 MB).';
$lang['company_color'] = 'Color d\'empresa';
$lang['company_color_hint'] = 'El color d\'empresa es farà servir arreu del sistema per poder-lo adaptar a la vostra imatge d\'empresa.';
$lang['localization'] = 'Localització';
$lang['integrations'] = 'Integracions';
$lang['company'] = 'Empresa';
$lang['remove'] = 'Elimina';
$lang['login_button'] = 'Botó d\'entrada';
$lang['display_login_button_hint'] = 'Defineix si el botó d\'entrada es mostra a la pàgina de reserves.';
$lang['private'] = 'Privat';
$lang['private_hint'] = 'Els registres privats no es mostraran i no es processaran en pàgines públiques com la pàgina de reserves.';
$lang['reset'] = 'Reinicia';
$lang['all'] = 'Tot';
$lang['booking_link'] = 'Enllaç de reserva';
$lang['add_new_event'] = 'Afegeix un nou esdeveniment';
$lang['what_kind_of_event'] = 'Quin tipus d\'esdeveniment voleu afegir?';
$lang['theme'] = 'Tema';
$lang['limit_customer_access'] = 'Limita l\'accés als clients';
$lang['limit_customer_access_hint'] = 'Si s\'activa, els proveïdors i els secretaris només tindran accés als clients amb els que tenen cites.';
$lang['url'] = 'URL';
$lang['secret_token'] = 'Token secret';
$lang['verify_ssl'] = 'Verifica l\'SSL';
$lang['appointment_save'] = 'Desa la cita';
$lang['appointment_delete'] = 'Elimina la cita';
$lang['unavailability_save'] = 'Desa la no disponibilitat';
$lang['unavailability_delete'] = 'Elimina la no disponibilitat';
$lang['customer_save'] = 'Desa el client';
$lang['customer_delete'] = 'Elimina el client';
$lang['service_save'] = 'Desa el servei';
$lang['service_delete'] = 'Elimina el servei';
$lang['service_category_save'] = 'Desa la categoria';
$lang['service_category_delete'] = 'Elimina la categoria';
$lang['provider_save'] = 'Desa el proveïdor';
$lang['provider_delete'] = 'Elimina el proveïdor';
$lang['secretary_save'] = 'Desa el secretari';
$lang['secretary_delete'] = 'Elimina el secretari';
$lang['admin_save'] = 'Desa l\'administrador';
$lang['admin_delete'] = 'Elimina l\'administrador';
$lang['options'] = 'Opcions';
$lang['webhooks'] = 'Webhooks';
$lang['webhooks_info'] = 'Els Webhooks us permeten enviar notificacions HTTP a aplicacions web externes com a resposta a diversos esdeveniments com la creació d\'una cita o l\'eliminació d\'un client.';
$lang['integrations_info'] = 'Les Integrations us permeten connexions amb tercers com aplicacions externes i APIs.';
$lang['configure'] = 'Configura';
$lang['google_analytics'] = 'Google Analytics';
$lang['google_analytics_info'] = 'Google Analytics us permet afegir automàticament el codi de seguiment i el codi HTML a la pàgina de reserves i fer el seguiment de totes les reserves.';
$lang['matomo_analytics'] = 'Matomo Analytics';
$lang['matomo_analytics_info'] = 'Matomo Analytics us permet afegir automàticament el codi de seguiment i el codi HTML a la pàgina de reserves i fer el seguiment de totes les reserves.';
$lang['api'] = 'API';
$lang['api_info'] = 'API us permet interaccionar amb totes les dades Easy!Appointments via el protocol HTTP i els API endpoint disponibles i crear les vostres pròpies integracions.';
$lang['google_analytics_code'] = 'Codi de Google Analytics';
$lang['matomo_analytics_url'] = 'URL de Matomo Analytics';
$lang['future_booking_limit'] = 'Límit de reserves futures';
$lang['limit_days'] = 'Límit (dies)';
$lang['future_booking_limit_hint'] = 'Estableix el límit en dies per avançat en el que es permet als clients demanar cites..';
$lang['api_token'] = 'API Token';
$lang['allow_rescheduling_cancellation_before'] = 'Permet la reprogramació/cancel·lació abans';
$lang['at_least_one_field'] = 'Com a mínim un camp s\'ha de mostrar a la pàgina de reserves.';
$lang['status'] = 'Status';
$lang['appointment_status_options'] = 'Opcions de l\'estat de la cita';
$lang['appointment_status_options_info'] = 'Defineix una llista d\'estats disponibles per a una cita que es poden usar a la pàgina del calendari (el primer estat serà el que s\'usi per defecte).';
$lang['sunday_short'] = 'Dg.';
$lang['monday_short'] = 'Dl.';
$lang['tuesday_short'] = 'Dm.';
$lang['wednesday_short'] = 'Dc.';
$lang['thursday_short'] = 'Dj.';
$lang['friday_short'] = 'Dv.';
$lang['saturday_short'] = 'Ds.';
$lang['january_short'] = 'Gen';
$lang['february_short'] = 'Feb';
$lang['march_short'] = 'Mar';
$lang['april_short'] = 'Abr';
$lang['may_short'] = 'Mai';
$lang['june_short'] = 'Jun';
$lang['july_short'] = 'Jul';
$lang['august_short'] = 'Ago';
$lang['september_short'] = 'Set';
$lang['october_short'] = 'Oct';
$lang['november_short'] = 'Nov';
$lang['december_short'] = 'Des';
$lang['am'] = 'am';
$lang['pm'] = 'pm';
$lang['to'] = 'to';
$lang['click_to_toggle'] = 'Clica per commutar';
$lang['week_short'] = 'Set.';
$lang['scroll_to_increment'] = 'Desplaça per incrementar';
$lang['year'] = 'Any';
$lang['make_non_working_day'] = 'This provider will not be available for work on the selected day.';
$lang['no_breaks'] = 'No Breaks';
$lang['service_categories'] = 'Service Categories';
$lang['service_category'] = 'Service Category';
$lang['blocked_period_saved'] = 'Blocked period saved successfully.';
$lang['blocked_period_deleted'] = 'Blocked period deleted successfully.';
$lang['delete_blocked_period'] = 'Delete Blocked Period';
$lang['blocked_period'] = 'Blocked Period';
$lang['blocked_periods'] = 'Blocked Periods';
$lang['blocked_period_save'] = 'Blocked Period Save';
$lang['blocked_period_delete'] = 'Blocked Period Delete';
$lang['blocked_periods_hint'] = 'Define periods of time where public bookings will be disabled for all providers (e.g. closed dates, holidays etc.).';
$lang['custom_field'] = 'Custom Field';
$lang['custom_fields'] = 'Custom Fields';
$lang['label'] = 'Label';
// End

View file

@ -1,58 +0,0 @@
<?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

@ -1,55 +0,0 @@
<?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

@ -1,84 +0,0 @@
<?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

@ -1,94 +0,0 @@
<?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

@ -1,35 +0,0 @@
<?php
/**
* System messages translation for CodeIgniter(tm)
*
* @author CodeIgniter community
* @copyright Copyright (c) 2014-2018, British Columbia Institute of Technology (http://bcit.ca/)
* @license http://opensource.org/licenses/MIT MIT License
* @link https://codeigniter.com
*/
defined('BASEPATH') or exit('No direct script access allowed');
$lang['db_invalid_connection_str'] = '无法根据提交的连接字符串确定数据库设置。 ';
$lang['db_unable_to_connect'] = '无法使用提供的设置连接到数据库服务器。';
$lang['db_unable_to_select'] = '无法选择指定的数据库: %s';
$lang['db_unable_to_create'] = '无法创建指定的数据库:%s';
$lang['db_invalid_query'] = '提交的查询无效。';
$lang['db_must_set_table'] = '查询中必须设置要查询的表名。';
$lang['db_must_use_set'] = '更新数据请使用 Set 方法。';
$lang['db_must_use_index'] = '必须指定索引以匹配批量更新。';
$lang['db_batch_missing_index'] = '批量更新操作中一个或多个行缺少指定的索引。';
$lang['db_must_use_where'] = '更新操作必须包含 Where 条件。';
$lang['db_del_must_use_where'] = '删除操作必须包含 Where 或 Like 条件。';
$lang['db_field_param_missing'] = '获取字段需要指定表名。';
$lang['db_unsupported_function'] = '功能不被您当前使用的数据库支持。';
$lang['db_transaction_failure'] = '事务失败:执行回滚。';
$lang['db_unable_to_drop'] = '无法删除指定的数据库。';
$lang['db_unsupported_feature'] = '特性不被您当前使用的数据库支持。 ';
$lang['db_unsupported_compression'] = '您选择的文件压缩格式不被服务器支持。 ';
$lang['db_filepath_error'] = '提交的文件路径无法写入。 ';
$lang['db_invalid_cache_path'] = '提交的缓存路径无效或无法写入。';
$lang['db_table_name_required'] = '操作需要指定表名。 ';
$lang['db_column_name_required'] = '操作需要指定列名。 ';
$lang['db_column_definition_required'] = '操作需要指定列定义。';
$lang['db_unable_to_set_charset'] = '无法设置字符集: %s';
$lang['db_error_heading'] = '数据库发生错误。';

View file

@ -1,30 +0,0 @@
<?php
/**
* System messages translation for CodeIgniter(tm)
*
* @author CodeIgniter community
* @copyright Copyright (c) 2014-2018, British Columbia Institute of Technology (http://bcit.ca/)
* @license http://opensource.org/licenses/MIT MIT License
* @link https://codeigniter.com
*/
defined('BASEPATH') or exit('No direct script access allowed');
$lang['email_must_be_array'] = 'E-mail 效验方法必须传入一个 Array';
$lang['email_invalid_address'] = '无效的 E-mail 地址: %s';
$lang['email_attachment_missing'] = '无法找到以下的 E-mail 附件: %s';
$lang['email_attachment_unreadable'] = '无法读取以下的 E-mail 附件: %s';
$lang['email_no_from'] = '无法发送没有 "From" 头的 E-mail';
$lang['email_no_recipients'] = 'E-mail 必须包含收件人To, Cc, or Bcc';
$lang['email_send_failure_phpmail'] = '无法使用 PHP 的 mail() 函数。 您的服务器设置禁止使用此函数发送 E-mail。';
$lang['email_send_failure_sendmail'] = '无法使用 PHP sendmail。您的服务器设置禁止使用此方法发送 E-mail。';
$lang['email_send_failure_smtp'] = '无法使用 PHP SMTP。您的服务器设置禁止使用此方法发送 E-mail。';
$lang['email_sent'] = 'E-mail 成功发送: %s';
$lang['email_no_socket'] = '无法打开 Socket 发送 E-mail检查设置。';
$lang['email_no_hostname'] = '没有指定 SMTP 服务器的主机名';
$lang['email_smtp_error'] = '发生错误SMTP 错误信息为: %s';
$lang['email_no_smtp_unpw'] = '错误:必须指定 SMTP 的用户名及密码。';
$lang['email_failed_smtp_login'] = '发送时 AUTH 命令失败,错误:%s';
$lang['email_smtp_auth_un'] = '用户名认证失败,错误:%s';
$lang['email_smtp_auth_pw'] = '密码认证失败,错误:%s';
$lang['email_smtp_data_failure'] = '无法发送数据:%s';
$lang['email_exit_status'] = '退出状态码:%s';

View file

@ -1,69 +0,0 @@
<?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

@ -1,51 +0,0 @@
<?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

@ -1,57 +0,0 @@
<?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

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

View file

@ -1,19 +0,0 @@
<?php
/**
* System messages translation for CodeIgniter(tm)
*
* @author CodeIgniter community
* @copyright Copyright (c) 2014-2018, British Columbia Institute of Technology (http://bcit.ca/)
* @license http://opensource.org/licenses/MIT MIT License
* @link https://codeigniter.com
*/
defined('BASEPATH') or exit('No direct script access allowed');
$lang['migration_none_found'] = '不需迁移。 ';
$lang['migration_not_found'] = '无法根据版本号找到迁移方法: %s。';
$lang['migration_sequence_gap'] = '版本迁移存在鸿沟:%s。';
$lang['migration_multiple_version'] = '多个迁移对应同一版本号:%s。';
$lang['migration_class_doesnt_exist'] = '无法找到迁移类 "%s"。';
$lang['migration_missing_up_method'] = '无法找到迁移类 "%s" 中的 "up" 方法。';
$lang['migration_missing_down_method'] = '无法找到迁移类 "%s" 中的 " 方法。';
$lang['migration_invalid_filename'] = '无效的迁移文件名:"%s"。';

View file

@ -1,44 +0,0 @@
<?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

@ -1,43 +0,0 @@
<?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

@ -1,60 +0,0 @@
<?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

@ -1,452 +0,0 @@
<?php defined('BASEPATH') or exit('No direct script access allowed');
// Chinese
$lang['page_title'] = '准备预约';
$lang['service_and_provider'] = '选择服务人员以及服务项目';
$lang['select_service'] = '选择您需要的服务项目';
$lang['select_provider'] = '选择服务人员';
$lang['duration'] = '时长';
$lang['minutes'] = '分钟';
$lang['price'] = '价格';
$lang['back'] = '返回';
$lang['appointment_date_and_time'] = '选择预约的日期和时间';
$lang['no_available_hours'] = '您所选择的日期和时间没有空位。请选择其他日期.';
$lang['appointment_hour_missing'] = '继续之前请选择您的预约时间.';
$lang['customer_information'] = '填写您的信息';
$lang['first_name'] = '名字';
$lang['last_name'] = '姓氏';
$lang['email'] = '电子邮箱';
$lang['phone_number'] = '电话号码';
$lang['phone'] = 'Phone';
$lang['address'] = '地址';
$lang['city'] = '城市';
$lang['zip_code'] = '邮编';
$lang['notes'] = '注释';
$lang['language'] = 'Language';
$lang['no_language'] = 'No language';
$lang['fields_are_required'] = '标记*的位置必须填写.';
$lang['appointment_confirmation'] = '确认预约';
$lang['confirm'] = '确认';
$lang['update'] = '更新';
$lang['cancel_appointment_hint'] = '点击取消可从公司时间表移除预约.';
$lang['cancel'] = '取消';
$lang['appointment_registered'] = '您的预约已经成功预定了.';
$lang['cancel_appointment_title'] = '取消预约';
$lang['appointment_cancelled'] = '您的预约已经成功取消了.';
$lang['appointment_cancelled_title'] = '完成预约取消';
$lang['reason'] = '理由';
$lang['appointment_removed_from_schedule'] = '以下的预约将从公司时间表上移除';
$lang['appointment_details_was_sent_to_you'] = '预约详细信息的邮件已经寄到您的电子信箱.';
$lang['add_to_google_calendar'] = '添加到您的谷歌日历';
$lang['appointment_booked'] = '您已经成功完成预约了.';
$lang['thank_you_for_appointment'] = '谢谢您与我们预约.下方,您将看到预约的详细信息.如需修改,请点击预约链接.';
$lang['appointment_details_title'] = '预约详细信息';
$lang['customer_details_title'] = '客户资料';
$lang['service'] = '服务项目';
$lang['provider'] = '服务人员';
$lang['customer'] = '客户';
$lang['start'] = '开始';
$lang['end'] = '结束';
$lang['name'] = '名字';
$lang['appointment_link_title'] = '预约连接';
$lang['success'] = '成功.';
$lang['appointment_added_to_google_calendar'] = '您的预约已经添加到您的谷歌日历.';
$lang['view_appointment_in_google_calendar'] = '点击查看在谷歌日历上的预约信息.';
$lang['appointment_added_to_your_plan'] = '新的预约添加到了您的计划。.';
$lang['appointment_link_description'] = '你可以点击下方预约链接做修改.';
$lang['appointment_locked'] = 'Modification impossible.';
$lang['appointment_locked_message'] = 'The appointment cannot be changed less than {$limit} hours in advance.';
$lang['appointment_not_found'] = '没有找到您的预约.';
$lang['appointment_does_not_exist_in_db'] = '系统中未发现您的预约.';
$lang['display_calendar'] = '显示 日历';
$lang['calendar'] = '日历';
$lang['users'] = '用户';
$lang['settings'] = '设置';
$lang['log_out'] = '注销';
$lang['synchronize'] = '同步';
$lang['enable_sync'] = '开启同步';
$lang['disable_sync'] = '关闭同步';
$lang['disable_sync_prompt'] = 'Are you sure that you want to disable the calendar synchronization?';
$lang['reload'] = '刷新';
$lang['appointment'] = '预约';
$lang['unavailability'] = '不可用';
$lang['week'] = '周';
$lang['month'] = '月';
$lang['today'] = '今天';
$lang['not_working'] = '不工作';
$lang['break'] = '休息';
$lang['add'] = '添加';
$lang['edit'] = '编辑';
$lang['hello'] = '您好';
$lang['all_day'] = '全天';
$lang['manage_appointment_record_hint'] = '管理所有可用服务人员和服务项目的预约记录.';
$lang['select_filter_item_hint'] = '选择服务以及提供服务人员并且在日历上查看预约.';
$lang['enable_appointment_sync_hint'] = '开启提供商的谷歌日立帐户预约同步.';
$lang['manage_customers_hint'] = '管理注册客户并且查看预约记录.';
$lang['manage_services_hint'] = '管理系统可用服务项目和类别.';
$lang['manage_users_hint'] = '管理后台用户 (管理员, 服务人员, 秘书).';
$lang['settings_hint'] = '配置系统和用户.';
$lang['log_out_hint'] = '注销.';
$lang['unavailability_periods_hint'] = '不可预约时间短内,服务人员将不能接受预约.';
$lang['new_appointment_hint'] = '在数据库中建立新的预约.';
$lang['reload_appointments_hint'] = '刷新日历.';
$lang['trigger_google_sync_hint'] = '激活谷歌日历同步进程.';
$lang['appointment_updated'] = '预约成功更新.';
$lang['undo'] = '撤销';
$lang['appointment_details_changed'] = '预约信息已经修改.';
$lang['appointment_changes_saved'] = '预约已成功修改并保存.';
$lang['save'] = '保存';
$lang['new'] = '新建';
$lang['select'] = '选择';
$lang['hide'] = '隐藏';
$lang['type_to_filter_customers'] = '输入关键字过滤客户.';
$lang['clear_fields_add_existing_customer_hint'] = '清除并输入新的客户.';
$lang['pick_existing_customer_hint'] = '选择已存在的客户.';
$lang['new_appointment_title'] = '新的预约';
$lang['edit_appointment_title'] = '编辑预约';
$lang['delete_appointment_title'] = '删除预约';
$lang['write_appointment_removal_reason'] = '请花一分钟告诉我们删除预约的原因:';
$lang['appointment_saved'] = '预约成功保存.';
$lang['new_unavailability_title'] = '新的不可预约时间段';
$lang['edit_unavailability_title'] = '编辑不可预定时间段';
$lang['unavailability_saved'] = '不可预定时间段保存成功.';
$lang['start_date_before_end_error'] = '开始日期数值晚于结束日期.';
$lang['invalid_duration'] = 'Invalid duration.';
$lang['invalid_email'] = '无效电子邮箱地址.';
$lang['customers'] = '客户';
$lang['details'] = '详细资料';
$lang['no_records_found'] = '没有找到记录...';
$lang['services'] = '服务项目';
$lang['duration_minutes'] = '时长 (Minutes)';
$lang['currency'] = '币种';
$lang['category'] = '类别';
$lang['no_category'] = '无类别';
$lang['description'] = '描述';
$lang['categories'] = '类别';
$lang['admins'] = '管理员';
$lang['providers'] = '服务人员';
$lang['secretaries'] = '秘书';
$lang['mobile_number'] = '手机号码';
$lang['mobile'] = 'Mobile';
$lang['state'] = '省/州';
$lang['username'] = '用户名';
$lang['password'] = '密码';
$lang['retype_password'] = '重新输入密码';
$lang['receive_notifications'] = '接收提醒';
$lang['passwords_mismatch'] = '密码不符合.';
$lang['admin_saved'] = '管理员Admin成功保存.';
$lang['provider_saved'] = '服务人员成功保存.';
$lang['secretary_saved'] = '秘书成功保存.';
$lang['admin_deleted'] = '管理员Admin成功删除';
$lang['provider_deleted'] = '服务人员成功删除.';
$lang['secretary_deleted'] = '秘书成功删除.';
$lang['service_saved'] = '服务项目成功保存.';
$lang['service_category_saved'] = '服务类别成功保存.';
$lang['service_deleted'] = '服务项目成功删除.';
$lang['service_category_deleted'] = '服务类别成功删除.';
$lang['customer_saved'] = '客户成功保存.';
$lang['customer_deleted'] = '客户成功删除.';
$lang['current_view'] = '现在的视图';
$lang['working_plan'] = '工作计划';
$lang['reset_plan'] = '重置计划';
$lang['monday'] = '星期一';
$lang['tuesday'] = '星期二';
$lang['wednesday'] = '星期三';
$lang['thursday'] = '星期四';
$lang['friday'] = '星期五';
$lang['saturday'] = '星期六';
$lang['sunday'] = '星期日';
$lang['breaks'] = '休息';
$lang['add_breaks_during_each_day'] = '在每天中加入休息时间,在此时间服务人员不能接受任何预约.';
$lang['day'] = '日';
$lang['days'] = 'Days';
$lang['actions'] = '动作';
$lang['reset_working_plan_hint'] = '重置工作计划到初始数值.';
$lang['company_name'] = '公司名称';
$lang['company_name_hint'] = '公司名称将会在任何页面中显示出来 (必须).';
$lang['company_email'] = '公司电子邮箱';
$lang['company_email_hint'] = '公司电子邮箱地址,用来与客户发送和接收信件 (必须).';
$lang['company_link'] = '公司网址';
$lang['company_link_hint'] = '公司的网址应当指向公司的官方网页 (必须).';
$lang['go_to_booking_page'] = '进入预约页面';
$lang['settings_saved'] = '设置成功保存.';
$lang['general'] = '一般设置';
$lang['booking'] = 'Booking';
$lang['visible'] = '可见的';
$lang['hidden'] = '隐';
$lang['business_logic'] = '工作时间';
$lang['current_user'] = '目前登录用户';
$lang['about_app'] = '关于网上预约系统';
$lang['edit_working_plan_hint'] = '标示下列贵公司的工作日以及工作时间。您可以修改预约到非工作时间,但是客户不可以从网上预定非工作时间的预约。这个工作时间计划将会成为每一位服务人员的默认时间,但是您可以通过修改服务人员的记录去更正每位服务人员的计划安排。.';
$lang['edit_breaks_hint'] = '在工作日内添加休息时间段,这些休息时间段将会对所有新的服务人员生效.';
$lang['book_advance_timeout'] = '预定高级超时设置';
$lang['book_advance_timeout_hint'] = '定义超时 (in minutes) 在其他客户预定预约之前.';
$lang['timeout_minutes'] = '超时 (Minutes)';
$lang['about_app_info'] = '网上预约系统,可以通过网页形式高度定制满足您的需求.同样可以连接您的谷歌账户,同步日历功能.';
$lang['current_version'] = '版本号';
$lang['support'] = '技术支持';
$lang['about_app_support'] = '如果您与盗任何问题,请联系我们.';
$lang['official_website'] = '官方网站';
$lang['google_plus_community'] = '谷歌社区';
$lang['support_group'] = '技术支持团队';
$lang['project_issues'] = '项目问题';
$lang['license'] = '许可';
$lang['about_app_license'] = '需要了解更多关于使用许可。请点击查看以下连接:';
$lang['logout_success'] = '您已经成功注销!点击后面的按钮去向其他页面.';
$lang['book_appointment_title'] = '预定预约';
$lang['backend_section'] = '后台界面';
$lang['you_need_to_login'] = '欢迎!请输入正确的帐户信息登录后台管理页面.';
$lang['enter_username_here'] = '这里输入您的用户名 ...';
$lang['enter_password_here'] = '这里输入您的密码 ...';
$lang['login'] = '登陆';
$lang['forgot_your_password'] = '忘记密码?';
$lang['login_failed'] = '登录失败,请输入正确的登录信息重新尝试.';
$lang['type_username_and_email_for_new_password'] = '输入您的用户名和电子邮箱地址获取密码.';
$lang['enter_email_here'] = '输入您的电子邮箱地址 ...';
$lang['regenerate_password'] = '重新生成密码';
$lang['go_to_login'] = '返回登录页面';
$lang['new_password_sent_with_email'] = '新的密码已经发送到您的电子邮箱中.';
$lang['new_account_password'] = '新的账户密码';
$lang['new_password_is'] = '您的信账户密码是 $password. 如果需要请保存这封邮件,你可以在设置页面更改密码.';
$lang['delete_record_prompt'] = '您确定删除这个记录吗?删除后无法恢复。.';
$lang['delete_admin'] = '删除管理员Admin';
$lang['delete_customer'] = '删除客户';
$lang['delete_service'] = '删除服务项目';
$lang['delete_service_category'] = '删除服务类别';
$lang['delete_provider'] = '删除服务人员';
$lang['delete_secretary'] = '删除秘书';
$lang['delete_appointment'] = '删除预约';
$lang['delete_unavailability'] = '删除不可用时间段';
$lang['delete'] = '删除';
$lang['unexpected_issues'] = '意外错误';
$lang['unexpected_issues_message'] = '操作因意外错误无法完成.';
$lang['close'] = '关闭';
$lang['page_not_found'] = '页面没有找到';
$lang['page_not_found_message'] = '您所请求的页面不存在,请检查您的浏览器地址或返回.';
$lang['error'] = '错误';
$lang['no_privileges'] = '没有权限';
$lang['no_privileges_message'] = '您没有所需的权限去查看这个页面,请尝试其他页面.';
$lang['backend_calendar'] = '后台日历';
$lang['start_date_time'] = '开始日期/时间';
$lang['end_date_time'] = '结束日期/时间';
$lang['licensed_under'] = '许可';
$lang['unexpected_issues_occurred'] = '出现异常出错.';
$lang['service_communication_error'] = '服务器发生通讯错误,请重新再试.';
$lang['no_privileges_edit_appointments'] = '您没有权限去更改预约.';
$lang['unavailability_updated'] = '不可用的时间段更新完毕.';
$lang['appointments'] = '预约';
$lang['unexpected_warnings'] = '异常的警告';
$lang['unexpected_warnings_message'] = '操作完成,但是有警告提示.';
$lang['filter'] = '过滤';
$lang['clear'] = '清除';
$lang['uncategorized'] = '无分类';
$lang['username_already_exists'] = '用户名已经存在.';
$lang['password_length_notice'] = '密码长度必须$number 位数.';
$lang['general_settings'] = '一般设置';
$lang['personal_information'] = '个人信息';
$lang['system_login'] = '登录系统';
$lang['user_settings_are_invalid'] = '无效的用户设置!请检查设置再继续';
$lang['add_break'] = '加入休息时间';
$lang['january'] = '一月';
$lang['february'] = '二月';
$lang['march'] = '三月';
$lang['april'] = '四月';
$lang['may'] = '五月';
$lang['june'] = '六月';
$lang['july'] = '七月';
$lang['august'] = '八月';
$lang['september'] = '九月';
$lang['october'] = '十月';
$lang['november'] = '十一月';
$lang['december'] = '十二月';
$lang['previous'] = '前一页';
$lang['next'] = '下一个';
$lang['now'] = '现在';
$lang['select_time'] = '选择时间';
$lang['time'] = '时间';
$lang['hour'] = '小时';
$lang['minute'] = '分钟';
$lang['google_sync_completed'] = '谷歌同步成功.';
$lang['google_sync_failed'] = '谷歌同步失败:不能建立与服务器的连接。.';
$lang['select_google_calendar'] = '选择谷歌日历';
$lang['select_google_calendar_prompt'] = '选择您想要同步的日历。如果您不希望选择特定的日历,那么将使用默认的日历。';
$lang['google_calendar_selected'] = '谷歌日历被选定.';
$lang['oops_something_went_wrong'] = '不好!出了一些问题.';
$lang['could_not_add_to_google_calendar'] = '您的预约不能添加到谷歌日历.';
$lang['ea_update_success'] = '预约系统已经成功更新.';
$lang['require_captcha'] = 'Require CAPTCHA';
$lang['require_captcha_hint'] = 'When enabled, the customers will have to type a random generated CAPTCHA string before booking/updating an appointment.';
$lang['captcha_is_wrong'] = 'CAPTCHA verification failed, please try again.';
$lang['any_provider'] = 'Any Provider';
$lang['requested_hour_is_unavailable'] = 'The requested appointment is unfortunately not available. Please select a different hour for your appointment.';
$lang['customer_notifications'] = 'Customer Notifications';
$lang['customer_notifications_hint'] = 'Defines whether the customer will receive email notifications whenever there is a schedule change on one of his appointments.';
$lang['date_format'] = 'Date Format';
$lang['date_format_hint'] = 'Change the date display format (D - Date, M - Month, Y - Year).';
$lang['time_format'] = 'Time Format';
$lang['time_format_hint'] = 'Change the time display format (H - Hours, M - Minutes).';
$lang['first_weekday'] = 'First day of week';
$lang['first_weekday_hint'] = 'Set the first day of the calendar week.';
$lang['google_analytics_code_hint'] = 'Add your Google Analytics ID to be included in the booking page.';
$lang['availabilities_type'] = 'Availabilities Type';
$lang['flexible'] = 'Flexible';
$lang['fixed'] = 'Fixed';
$lang['attendants_number'] = 'Attendants Number';
$lang['reset_working_plan'] = 'Reset the working plan back to the default values.';
$lang['legal_contents'] = 'Legal Contents';
$lang['cookie_notice'] = 'Cookie Notice';
$lang['display_cookie_notice'] = 'Display Cookie Notice';
$lang['cookie_notice_content'] = 'Cookie Notice Content';
$lang['terms_and_conditions'] = 'Terms & Conditions';
$lang['display_terms_and_conditions'] = 'Display Terms & Conditions';
$lang['terms_and_conditions_content'] = 'Terms & Conditions Content';
$lang['privacy_policy'] = 'Privacy Policy';
$lang['display_privacy_policy'] = 'Display Privacy Policy';
$lang['privacy_policy_content'] = 'Privacy Policy Content';
$lang['website_using_cookies_to_ensure_best_experience'] = 'This website uses cookies to ensure you get the best experience on our website.';
$lang['read_and_agree_to_terms_and_conditions'] = 'I have read and agree to the {$link}Terms & Conditions{/$link}.';
$lang['read_and_agree_to_privacy_policy'] = 'I have read and agree to the {$link}Privacy Policy{/$link}.';
$lang['delete_personal_information_hint'] = 'Delete all personal information from the system.';
$lang['delete_personal_information'] = 'Delete Personal Information';
$lang['delete_personal_information_prompt'] = 'Are you sure that you want to delete your personal information? This action cannot be undone.';
$lang['location'] = 'Location';
$lang['working_plan_exception'] = 'Working Plan Exception';
$lang['working_plan_exceptions'] = 'Working Plan Exceptions';
$lang['working_plan_exceptions_hint'] = 'Add a working plan exception day, outside the working plan.';
$lang['new_working_plan_exception_title'] = 'New Working Plan Exception';
$lang['working_plan_exception_saved'] = 'Working plan exception saved successfully.';
$lang['working_plan_exception_deleted'] = 'Working plan exception deleted successfully.';
$lang['add_working_plan_exceptions_during_each_day'] = 'Add working plan exceptions, outside the working plan.';
$lang['add_working_plan_exception'] = 'Add Working Plan Exception';
$lang['require_phone_number'] = 'Require phone number';
$lang['require_phone_number_hint'] = 'When enabled, customers and users will need to enter the customer\'s phone number when booking an appointment';
$lang['check_spam_folder'] = 'Please check your spam folder if the email does not arrive within a few minutes.';
$lang['api_token_hint'] = 'Set a secret token in order to enable the token based authentication of the Easy!Appointments API.';
$lang['timezone'] = 'Timezone';
$lang['overwrite_existing_working_plans'] = 'This will overwrite the existing provider working plans, are you sure that you want to continue?';
$lang['working_plans_got_updated'] = 'All the working plans got updated.';
$lang['apply_to_all_providers'] = 'Apply To All Providers';
$lang['display_any_provider'] = 'Display Any Provider Option';
$lang['display_any_provider_hint'] = 'The booking page will get an additional option that allows customers to book without specifying a provider.';
$lang['load_more'] = 'Load More';
$lang['list'] = 'List';
$lang['default'] = 'Default';
$lang['table'] = 'Table';
$lang['date'] = 'Date';
$lang['about'] = 'About';
$lang['booking_settings'] = 'Booking Settings';
$lang['display'] = 'Display';
$lang['require'] = 'Require';
$lang['color'] = 'Color';
$lang['matomo_analytics_url_hint'] = 'Add the URL to your own Matomo installation to enable Matomo tracking on the booking pages.';
$lang['invalid_phone'] = 'Invalid phone number.';
$lang['legal'] = 'Legal';
$lang['business'] = 'Business';
$lang['account'] = 'Account';
$lang['disable_booking'] = 'Disable Booking';
$lang['disable_booking_hint'] = 'The booking page will be disabled for as long as this setting is active and customers will not be able to register new appointments.';
$lang['display_message'] = 'Display Message';
$lang['booking_is_disabled'] = 'Booking Is Disabled!';
$lang['appearance'] = 'Appearance';
$lang['company_logo'] = 'Company Logo';
$lang['company_logo_hint'] = 'The company logo will be displayed in many places of the app, including the booking page and the notification emails (image file, max 2MB).';
$lang['company_color'] = 'Company Color';
$lang['company_color_hint'] = 'The company color will be applied across the app so that it the app uses your branding.';
$lang['localization'] = 'Localization';
$lang['integrations'] = 'Integrations';
$lang['company'] = 'Company';
$lang['remove'] = 'Remove';
$lang['login_button'] = 'Login Button';
$lang['display_login_button_hint'] = 'Defines whether the login button is being displayed in the booking page.';
$lang['private'] = 'Private';
$lang['private_hint'] = 'Private records will not be displayed or processed in public pages such as the booking page.';
$lang['reset'] = 'Reset';
$lang['all'] = 'All';
$lang['booking_link'] = 'Booking Link';
$lang['add_new_event'] = 'Add New Event';
$lang['what_kind_of_event'] = 'What kind of event would you like to add?';
$lang['theme'] = 'Theme';
$lang['limit_customer_access'] = 'Limit Customer Access';
$lang['limit_customer_access_hint'] = 'If enabled, providers and secretaries will only be able to access customers they have an appointment with.';
$lang['url'] = 'URL';
$lang['secret_token'] = 'Secret Token';
$lang['verify_ssl'] = 'Verify SSL';
$lang['appointment_save'] = 'Appointment Save';
$lang['appointment_delete'] = 'Appointment Delete';
$lang['unavailability_save'] = 'Unavailability Save';
$lang['unavailability_delete'] = 'Unavailability Delete';
$lang['customer_save'] = 'Customer Save';
$lang['customer_delete'] = 'Customer Delete';
$lang['service_save'] = 'Service Save';
$lang['service_delete'] = 'Service Delete';
$lang['service_category_save'] = 'Category Save';
$lang['service_category_delete'] = 'Category Delete';
$lang['provider_save'] = 'Provider Save';
$lang['provider_delete'] = 'Provider Delete';
$lang['secretary_save'] = 'Secretary Save';
$lang['secretary_delete'] = 'Secretary Delete';
$lang['admin_save'] = 'Admin Save';
$lang['admin_delete'] = 'Admin Delete';
$lang['options'] = 'Options';
$lang['webhooks'] = 'Webhooks';
$lang['webhooks_info'] = 'Webhooks enable you to send HTTP notifications to external web applications in response to various application events, such as the creation of an appointment or the removal of a customer.';
$lang['integrations_info'] = 'Integrations enable you to make third-party connections with external applications and APIs.';
$lang['configure'] = 'Configure';
$lang['google_analytics'] = 'Google Analytics';
$lang['google_analytics_info'] = 'Google Analytics enable you to automatically add the tracking code and HTML markup to the public page and track all the public booking sessions.';
$lang['matomo_analytics'] = 'Matomo Analytics';
$lang['matomo_analytics_info'] = 'Matomo Analytics enable you to automatically add the tracking code and HTML markup to the public page and track all the public booking sessions.';
$lang['api'] = 'API';
$lang['api_info'] = 'API enable you to interact with all the Easy!Appointments data via the HTTP protocol and the available API endpoints and create your own integrations.';
$lang['google_analytics_code'] = 'Google Analytics Code';
$lang['matomo_analytics_url'] = 'Matomo Analytics URL';
$lang['future_booking_limit'] = 'Future Booking Limit';
$lang['limit_days'] = 'Limit (Days)';
$lang['future_booking_limit_hint'] = 'Set the future limit in days customers can make appointments via the public booking page.';
$lang['api_token'] = 'API Token';
$lang['allow_rescheduling_cancellation_before'] = 'Allow Rescheduling/Cancellation Before';
$lang['at_least_one_field'] = 'At least one field must be displayed in the booking page.';
$lang['status'] = 'Status';
$lang['appointment_status_options'] = 'Appointment Status Options';
$lang['appointment_status_options_info'] = 'Define a list of available appointment status options that can be used in the the calendar page (the first one will automatically become the default value).';
$lang['sunday_short'] = 'Sun';
$lang['monday_short'] = 'Mon';
$lang['tuesday_short'] = 'Tue';
$lang['wednesday_short'] = 'Wed';
$lang['thursday_short'] = 'Thu';
$lang['friday_short'] = 'Fri';
$lang['saturday_short'] = 'Sat';
$lang['january_short'] = 'Jan';
$lang['february_short'] = 'Feb';
$lang['march_short'] = 'Mar';
$lang['april_short'] = 'Apr';
$lang['may_short'] = 'May';
$lang['june_short'] = 'Jun';
$lang['july_short'] = 'Jul';
$lang['august_short'] = 'Aug';
$lang['september_short'] = 'Sep';
$lang['october_short'] = 'Oct';
$lang['november_short'] = 'Nov';
$lang['december_short'] = 'Dec';
$lang['am'] = 'am';
$lang['pm'] = 'pm';
$lang['to'] = 'to';
$lang['click_to_toggle'] = 'Click To Toggle';
$lang['week_short'] = 'Wk';
$lang['scroll_to_increment'] = 'Scroll To Increment';
$lang['year'] = 'Year';
$lang['make_non_working_day'] = 'This provider will not be available for work on the selected day.';
$lang['no_breaks'] = 'No Breaks';
$lang['service_categories'] = 'Service Categories';
$lang['service_category'] = 'Service Category';
$lang['blocked_period_saved'] = 'Blocked period saved successfully.';
$lang['blocked_period_deleted'] = 'Blocked period deleted successfully.';
$lang['delete_blocked_period'] = 'Delete Blocked Period';
$lang['blocked_period'] = 'Blocked Period';
$lang['blocked_periods'] = 'Blocked Periods';
$lang['blocked_period_save'] = 'Blocked Period Save';
$lang['blocked_period_delete'] = 'Blocked Period Delete';
$lang['blocked_periods_hint'] = 'Define periods of time where public bookings will be disabled for all providers (e.g. closed dates, holidays etc.).';
$lang['custom_field'] = 'Custom Field';
$lang['custom_fields'] = 'Custom Fields';
$lang['label'] = 'Label';
// End

View file

@ -1,58 +0,0 @@
<?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

@ -1,55 +0,0 @@
<?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

@ -1,84 +0,0 @@
<?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'] = 'Ne';
$lang['cal_mo'] = 'Po';
$lang['cal_tu'] = 'Ut';
$lang['cal_we'] = 'Sr';
$lang['cal_th'] = 'Če';
$lang['cal_fr'] = 'Pe';
$lang['cal_sa'] = 'Su';
$lang['cal_sun'] = 'Ned';
$lang['cal_mon'] = 'Pon';
$lang['cal_tue'] = 'Uto';
$lang['cal_wed'] = 'Sri';
$lang['cal_thu'] = 'Čet';
$lang['cal_fri'] = 'Pet';
$lang['cal_sat'] = 'Sub';
$lang['cal_sunday'] = 'Nedjelja';
$lang['cal_monday'] = 'Ponedjeljak';
$lang['cal_tuesday'] = 'Utorak';
$lang['cal_wednesday'] = 'Srijeda';
$lang['cal_thursday'] = 'Četvrtak';
$lang['cal_friday'] = 'Petak';
$lang['cal_saturday'] = 'Subota';
$lang['cal_jan'] = 'Sij';
$lang['cal_feb'] = 'Vel';
$lang['cal_mar'] = 'Ožu';
$lang['cal_apr'] = 'Tra';
$lang['cal_may'] = 'Svi';
$lang['cal_jun'] = 'Lip';
$lang['cal_jul'] = 'Srp';
$lang['cal_aug'] = 'Kol';
$lang['cal_sep'] = 'Ruj';
$lang['cal_oct'] = 'Lis';
$lang['cal_nov'] = 'Stu';
$lang['cal_dec'] = 'Pro';
$lang['cal_january'] = 'Siječanj';
$lang['cal_february'] = 'Veljača';
$lang['cal_march'] = 'Ožujak';
$lang['cal_april'] = 'Travanj';
$lang['cal_mayl'] = 'Svibanj';
$lang['cal_june'] = 'Lipanj';
$lang['cal_july'] = 'Srpanj';
$lang['cal_august'] = 'Kolovoz';
$lang['cal_september'] = 'Rujan';
$lang['cal_october'] = 'Listopad';
$lang['cal_november'] = 'Studeni';
$lang['cal_december'] = 'Prosinac';

View file

@ -1,94 +0,0 @@
<?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'] = 'Godina';
$lang['date_years'] = 'Godine';
$lang['date_month'] = 'Mjesec';
$lang['date_months'] = 'Mjeseci';
$lang['date_week'] = 'Tjedan';
$lang['date_weeks'] = 'Tjedni';
$lang['date_day'] = 'Dan';
$lang['date_days'] = 'Dani';
$lang['date_hour'] = 'Sat';
$lang['date_hours'] = 'Sati';
$lang['date_minute'] = 'Minuta';
$lang['date_minutes'] = 'Minute';
$lang['date_second'] = 'Sekunda';
$lang['date_seconds'] = 'Sekunde';
$lang['UM12'] = '(UTC -12:00) Baker/Howland otok';
$lang['UM11'] = '(UTC -11:00) Niue';
$lang['UM10'] = '(UTC -10:00) Havajsko-aleućansko standardno vrijeme, Cookovi otoci, Tahiti';
$lang['UM95'] = '(UTC -9:30) Marquesas otoci';
$lang['UM9'] = '(UTC -9:00) Aljaško standardno vrijeme, Gambier otoci';
$lang['UM8'] = '(UTC -8:00) Pacifičko standardno vrijeme, Clipperton otok';
$lang['UM7'] = '(UTC -7:00) Planinsko standardno vrijeme';
$lang['UM6'] = '(UTC -6:00) Središnje standardno vrijeme';
$lang['UM5'] = '(UTC -5:00) Istočno standardno vrijeme, Zapadno-karipsko standardno vrijeme';
$lang['UM45'] = '(UTC -4:30) Venezuelansko standardno vrijeme';
$lang['UM4'] = '(UTC -4:00) Atlantsko standardno vrijeme, Istočno-karipsko standardno vrijeme';
$lang['UM35'] = '(UTC -3:30) Newfoundlandsko standardno vrijeme';
$lang['UM3'] = '(UTC -3:00) Argentina, Brazil, Francuska Gvajana, Urugvaj';
$lang['UM2'] = '(UTC -2:00) Južna Gruzija/Južni Sandwich otoci';
$lang['UM1'] = '(UTC -1:00) Azori, Zelenortski otoci';
$lang['UTC'] = '(UTC) Greenwichko srednje vrijeme, Zapadnoeuropsko vrijeme';
$lang['UP1'] = '(UTC +1:00) Srednjoeuropsko vrijeme, Zapadnoafričko vrijeme';
$lang['UP2'] = '(UTC +2:00) Srednjoafričko vrijeme, Istočnoeuropsko vrijeme, Kalinjingradsko vrijeme';
$lang['UP3'] = '(UTC +3:00) Moskovsko vrijeme, Istočnoafričko vrijeme, Arabsko standardno vrijeme';
$lang['UP35'] = '(UTC +3:30) Iransko standardno vrijeme';
$lang['UP4'] = '(UTC +4:00) Azerbajdžansko standardno vrijeme, Samarsko vrijeme';
$lang['UP45'] = '(UTC +4:30) Afganistan';
$lang['UP5'] = '(UTC +5:00) Pakistansko standardno vrijeme, Jekaterinburško vrijeme';
$lang['UP55'] = '(UTC +5:30) Indijsko standardno vrijeme, Šrilankansko vrijeme';
$lang['UP575'] = '(UTC +5:45) Vrijeme u Nepalu';
$lang['UP6'] = '(UTC +6:00) Bangladeško standardno vrijeme, Butansko vrijeme, Omsko vrijeme';
$lang['UP65'] = '(UTC +6:30) Kokosovi otoci, Mijanmar';
$lang['UP7'] = '(UTC +7:00) Krasnojarsko vrijeme, Kambodža, Laos, Tajland, Vijetnam';
$lang['UP8'] = '(UTC +8:00) Australijsko zapadno standardno vrijeme, Pekinško vrijeme, Irkutsko vrijeme';
$lang['UP875'] = '(UTC +8:45) Australijsko središnje zapadno standardno vrijeme';
$lang['UP9'] = '(UTC +9:00) Japansko standardno vrijeme, Korejsko standardno vrijeme, Jakutsko vrijeme';
$lang['UP95'] = '(UTC +9:30) Australijsko središnje standardno vrijeme';
$lang['UP10'] = '(UTC +10:00) Australijsko istočno standardno vrijeme, Vladivostočko vrijeme';
$lang['UP105'] = '(UTC +10:30) Otok Lord Howe';
$lang['UP11'] = '(UTC +11:00) Srednekolymsko vrijeme, Salomonovi otoci, Vanuatu';
$lang['UP115'] = '(UTC +11:30) Otok Norfolk';
$lang['UP12'] = '(UTC +12:00) Fidži, Gilbertovi otoci, Kamčatsko vrijeme, Novozelandsko standardno vrijeme';
$lang['UP1275'] = '(UTC +12:45) Standardno vrijeme na Chathamskim otocima';
$lang['UP13'] = '(UTC +13:00) Vremenska zona Samoe, Phoenix otoci, Tonga';
$lang['UP14'] = '(UTC +14:00) Line otoci';

View file

@ -1,63 +0,0 @@
<?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'] = 'Nije moguće odrediti postavke baze podataka na temelju dostavljenog niza za povezivanje.';
$lang['db_unable_to_connect'] = 'Nije moguće povezati se s poslužiteljem baze podataka pomoću navedenih postavki.';
$lang['db_unable_to_select'] = 'Nije moguće odabrati navedenu bazu podataka: %s';
$lang['db_unable_to_create'] = 'Nije moguće stvoriti navedenu bazu podataka: %s';
$lang['db_invalid_query'] = 'Upit koji ste poslali nije važeći.';
$lang['db_must_set_table'] = 'Morate postaviti tablicu baze podataka koja će se koristiti s vašim upitom.';
$lang['db_must_use_set'] = 'Morate koristiti metodu "set" za ažuriranje unosa.';
$lang['db_must_use_index'] = 'Morate navesti indeks za usklađivanje za serije ažuriranja.';
$lang['db_batch_missing_index'] = 'Jedan ili više redaka poslanih za serije ažuriranja nedostaje navedeni indeks.';
$lang['db_must_use_where'] = 'Ažuriranja nisu dopuštena osim ako sadrže klauzulu "where".';
$lang['db_del_must_use_where'] = 'Brisanja nisu dopuštena osim ako sadrže klauzulu "where" ili "like".';
$lang['db_field_param_missing'] = 'Za dohvaćanje polja potrebno je ime tablice kao parametar.';
$lang['db_unsupported_function'] = 'Ova značajka nije dostupna za bazu podataka koju koristite.';
$lang['db_transaction_failure'] = 'Pogreška u transakciji: Izvršeno vraćanje.';
$lang['db_unable_to_drop'] = 'Nije moguće odbaciti navedenu bazu podataka.';
$lang['db_unsupported_feature'] = 'Nepodržana značajka platforme baze podataka koju koristite.';
$lang['db_unsupported_compression'] = 'Format kompresije datoteka koji ste odabrali nije podržan na vašem poslužitelju.';
$lang['db_filepath_error'] = 'Nije moguće pisati podatke na putanju datoteke koju ste poslali.';
$lang['db_invalid_cache_path'] = 'Putanja predmemorije koju ste poslali nije važeća ili se ne može pisati na nju.';
$lang['db_table_name_required'] = 'Za tu operaciju potrebno je ime tablice.';
$lang['db_column_name_required'] = 'Za tu operaciju potrebno je ime stupca.';
$lang['db_column_definition_required'] = 'Za tu operaciju potrebna je definicija stupca.';
$lang['db_unable_to_set_charset'] = 'Nije moguće postaviti skup znakova za klijentsku vezu: %s';
$lang['db_error_heading'] = 'Došlo je do pogreške u bazi podataka';

View file

@ -1,58 +0,0 @@
<?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'] = 'Metoda za provjeru e-pošte mora primiti polje.';
$lang['email_invalid_address'] = 'Neispravna adresa e-pošte: %s';
$lang['email_attachment_missing'] = 'Nije moguće pronaći sljedeći privitak e-pošte: %s';
$lang['email_attachment_unreadable'] = 'Nije moguće otvoriti ovaj privitak: %s';
$lang['email_no_from'] = 'Nije moguće poslati poštu bez "From" zaglavlja.';
$lang['email_no_recipients'] = 'Morate uključiti primatelje: Za, Cc ili Bcc';
$lang['email_send_failure_phpmail'] = 'Nije moguće poslati e-poštu koristeći PHP mail(). Vaš poslužitelj možda nije konfiguriran za slanje pošte ovom metodom.';
$lang['email_send_failure_sendmail'] = 'Nije moguće poslati e-poštu koristeći PHP Sendmail. Vaš poslužitelj možda nije konfiguriran za slanje pošte ovom metodom.';
$lang['email_send_failure_smtp'] = 'Nije moguće poslati e-poštu koristeći PHP SMTP. Vaš poslužitelj možda nije konfiguriran za slanje pošte ovom metodom.';
$lang['email_sent'] = 'Vaša poruka je uspješno poslana koristeći sljedeći protokol: %s';
$lang['email_no_socket'] = 'Nije moguće otvoriti socket za Sendmail. Molimo provjerite postavke.';
$lang['email_no_hostname'] = 'Niste naveli SMTP naziv poslužitelja.';
$lang['email_smtp_error'] = 'Pojavila se sljedeća SMTP pogreška: %s';
$lang['email_no_smtp_unpw'] = 'Pogreška: Morate dodijeliti SMTP korisničko ime i lozinku.';
$lang['email_failed_smtp_login'] = 'Slanje AUTH LOGIN naredbe nije uspjelo. Pogreška: %s';
$lang['email_smtp_auth_un'] = 'Neuspjela autentifikacija korisničkog imena. Pogreška: %s';
$lang['email_smtp_auth_pw'] = 'Neuspjela autentifikacija lozinke. Pogreška: %s';
$lang['email_smtp_data_failure'] = 'Nije moguće poslati podatke: %s';
$lang['email_exit_status'] = 'Izlazni statusni kod: %s';

View file

@ -1,69 +0,0 @@
<?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'] = 'Polje {field} je obavezno.';
$lang['form_validation_isset'] = 'Polje {field} mora imati vrijednost.';
$lang['form_validation_valid_email'] = 'Polje {field} mora sadržavati ispravnu adresu e-pošte.';
$lang['form_validation_valid_emails'] = 'Polje {field} mora sadržavati sve ispravne adrese e-pošte.';
$lang['form_validation_valid_url'] = 'Polje {field} mora sadržavati ispravan URL.';
$lang['form_validation_valid_ip'] = 'Polje {field} mora sadržavati ispravnu IP adresu.';
$lang['form_validation_valid_base64'] = 'Polje {field} mora sadržavati ispravan Base64 niz.';
$lang['form_validation_min_length'] = 'Polje {field} mora imati najmanje {param} znakova.';
$lang['form_validation_max_length'] = 'Polje {field} ne smije premašiti {param} znakova.';
$lang['form_validation_exact_length'] = 'Polje {field} mora imati točno {param} znakova.';
$lang['form_validation_alpha'] = 'Polje {field} može sadržavati samo slova abecede.';
$lang['form_validation_alpha_numeric'] = 'Polje {field} može sadržavati samo alfanumeričke znakove.';
$lang['form_validation_alpha_numeric_spaces'] = 'Polje {field} može sadržavati samo alfanumeričke znakove i razmake.';
$lang['form_validation_alpha_dash'] = 'Polje {field} može sadržavati samo alfanumeričke znakove, podvlake i crtice.';
$lang['form_validation_numeric'] = 'Polje {field} mora sadržavati samo brojeve.';
$lang['form_validation_is_numeric'] = 'Polje {field} mora sadržavati samo numeričke znakove.';
$lang['form_validation_integer'] = 'Polje {field} mora sadržavati cijeli broj.';
$lang['form_validation_regex_match'] = 'Polje {field} nije u ispravnom formatu.';
$lang['form_validation_matches'] = 'Polje {field} se ne podudara s poljem {param}.';
$lang['form_validation_differs'] = 'Polje {field} mora se razlikovati od polja {param}.';
$lang['form_validation_is_unique'] = 'Polje {field} mora sadržavati jedinstvenu vrijednost.';
$lang['form_validation_is_natural'] = 'Polje {field} mora sadržavati samo znamenke.';
$lang['form_validation_is_natural_no_zero'] = 'Polje {field} mora sadržavati samo znamenke i biti veće od nule.';
$lang['form_validation_decimal'] = 'Polje {field} mora sadržavati decimalni broj.';
$lang['form_validation_less_than'] = 'Polje {field} mora sadržavati broj manji od {param}.';
$lang['form_validation_less_than_equal_to'] = 'Polje {field} mora sadržavati broj manji ili jednak {param}.';
$lang['form_validation_greater_than'] = 'Polje {field} mora sadržavati broj veći od {param}.';
$lang['form_validation_greater_than_equal_to'] = 'Polje {field} mora sadržavati broj veći ili jednak {param}.';
$lang['form_validation_error_message_not_set'] = 'Nije moguće pristupiti poruci o pogrešci koja odgovara imenu vašeg polja {field}.';
$lang['form_validation_in_list'] = 'Polje {field} mora biti jedno od: {param}.';

View file

@ -1,51 +0,0 @@
<?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'] = 'Nije moguće pronaći važeći ID veze. Provjerite jeste li povezani prije izvođenja bilo kakvih operacija s datotekama.';
$lang['ftp_unable_to_connect'] = 'Nije moguće povezati se s vašim FTP poslužiteljem koristeći navedeni naziv poslužitelja.';
$lang['ftp_unable_to_login'] = 'Nije moguće prijaviti se na vaš FTP poslužitelj. Provjerite svoje korisničko ime i lozinku.';
$lang['ftp_unable_to_mkdir'] = 'Nije moguće stvoriti direktorij koji ste naveli.';
$lang['ftp_unable_to_changedir'] = 'Nije moguće promijeniti direktorije.';
$lang['ftp_unable_to_chmod'] = 'Nije moguće postaviti dozvole za datoteku. Provjerite svoj put.';
$lang['ftp_unable_to_upload'] = 'Nije moguće učitati navedenu datoteku. Provjerite svoj put.';
$lang['ftp_unable_to_download'] = 'Nije moguće preuzeti navedenu datoteku. Provjerite svoj put.';
$lang['ftp_no_source_file'] = 'Nije moguće pronaći izvornu datoteku. Provjerite svoj put.';
$lang['ftp_unable_to_rename'] = 'Nije moguće preimenovati datoteku.';
$lang['ftp_unable_to_delete'] = 'Nije moguće izbrisati datoteku.';
$lang['ftp_unable_to_move'] = 'Nije moguće premjestiti datoteku. Provjerite postoji li odredišni direktorij.';

View file

@ -1,57 +0,0 @@
<?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'] = 'Morate odrediti izvornu sliku u svojim postavkama.';
$lang['imglib_gd_required'] = 'Za ovu značajku potrebna je GD slikovna biblioteka.';
$lang['imglib_gd_required_for_props'] = 'Vaš poslužitelj mora podržavati GD slikovnu biblioteku kako bi se odredila svojstva slike.';
$lang['imglib_unsupported_imagecreate'] = 'Vaš poslužitelj ne podržava GD funkciju potrebnu za obradu ove vrste slike.';
$lang['imglib_gif_not_supported'] = 'GIF slike često nisu podržane zbog ograničenja licenciranja. Možda ćete morati koristiti JPG ili PNG slike umjesto toga.';
$lang['imglib_jpg_not_supported'] = 'JPG slike nisu podržane.';
$lang['imglib_png_not_supported'] = 'PNG slike nisu podržane.';
$lang['imglib_jpg_or_png_required'] = 'Protokol za promjenu veličine slike naveden u vašim postavkama radi samo s JPEG ili PNG vrstama slika.';
$lang['imglib_copy_error'] = 'Došlo je do pogreške prilikom pokušaja zamjene datoteke. Provjerite je li vaš direktorij za datoteke dostupan za pisanje.';
$lang['imglib_rotate_unsupported'] = 'Rotacija slike izgleda da nije podržana na vašem poslužitelju.';
$lang['imglib_libpath_invalid'] = 'Putanja do vaše slikovne biblioteke nije ispravna. Postavite ispravnu putanju u svojim postavkama za slike.';
$lang['imglib_image_process_failed'] = 'Obrada slike nije uspjela. Provjerite podržava li vaš poslužitelj odabrani protokol i je li putanja do vaše slikovne biblioteke ispravna.';
$lang['imglib_rotation_angle_required'] = 'Potreban je kut rotacije za rotiranje slike.';
$lang['imglib_invalid_path'] = 'Putanja do slike nije ispravna.';
$lang['imglib_invalid_image'] = 'Navedena slika nije važeća.';
$lang['imglib_copy_failed'] = 'Rutina kopiranja slike nije uspjela.';
$lang['imglib_missing_font'] = 'Nije moguće pronaći font za korištenje.';
$lang['imglib_save_failed'] = 'Nije moguće spremiti sliku. Provjerite mogu li slika i direktorij za datoteke biti zapisani.';

View file

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

View file

@ -1,47 +0,0 @@
<?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 3.0.0
* @filesource
*/
defined('BASEPATH') or exit('No direct script access allowed');
$lang['migration_none_found'] = 'No migrations were found.';
$lang['migration_not_found'] = 'No migration could be found with the version number: %s.';
$lang['migration_sequence_gap'] = 'There is a gap in the migration sequence near version number: %s.';
$lang['migration_multiple_version'] = 'There are multiple migrations with the same version number: %s.';
$lang['migration_class_doesnt_exist'] = 'The migration class "%s" could not be found.';
$lang['migration_missing_up_method'] = 'The migration class "%s" is missing an "up" method.';
$lang['migration_missing_down_method'] = 'The migration class "%s" is missing a "down" method.';
$lang['migration_invalid_filename'] = 'Migration "%s" has an invalid filename.';

View file

@ -1,44 +0,0 @@
<?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'] = 'Bajtovi';

View file

@ -1,43 +0,0 @@
<?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; Prvi';
$lang['pagination_next_link'] = '&gt;';
$lang['pagination_prev_link'] = '&lt;';
$lang['pagination_last_link'] = 'Zadnji &rsaquo;';

View file

@ -1,60 +0,0 @@
<?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'] = 'Baza podataka';
$lang['profiler_controller_info'] = 'KLASA/METODA';
$lang['profiler_benchmarks'] = 'Mjerenja';
$lang['profiler_queries'] = 'Upiti';
$lang['profiler_get_data'] = 'GET podaci';
$lang['profiler_post_data'] = 'POST podaci';
$lang['profiler_uri_string'] = 'URI niz';
$lang['profiler_memory_usage'] = 'Iskoristivost memorije';
$lang['profiler_config'] = 'CONFIG varijable';
$lang['profiler_session_data'] = 'Podaci sesije';
$lang['profiler_headers'] = 'HTTP zaglavlja';
$lang['profiler_no_db'] = 'Upravljač baze podataka trenutno nije učitan';
$lang['profiler_no_queries'] = 'Nisu izvršeni upiti';
$lang['profiler_no_post'] = 'Ne postoje POST podaci';
$lang['profiler_no_get'] = 'Ne postoje GET podaci';
$lang['profiler_no_uri'] = 'Ne postoje URI podaci';
$lang['profiler_no_memory'] = 'Iskoristivost memorije nije dostupna';
$lang['profiler_no_profiles'] = 'Nema podataka profila - sve sekcije profila su onemogućene.';
$lang['profiler_section_hide'] = 'Sakrij';
$lang['profiler_section_show'] = 'Prikaži';
$lang['profiler_seconds'] = 'sekunde';

View file

@ -1,452 +0,0 @@
<?php defined('BASEPATH') or exit('No direct script access allowed');
// Croatian
$lang['page_title'] = 'Zakažite sastanak s';
$lang['service_and_provider'] = 'Usluga & Pružatelj';
$lang['select_service'] = 'Odaberite uslugu';
$lang['select_provider'] = 'Odaberite pružatelja';
$lang['duration'] = 'Trajanje';
$lang['minutes'] = 'Minute';
$lang['price'] = 'Cijena';
$lang['back'] = 'Natrag';
$lang['appointment_date_and_time'] = 'Datum i vrijeme sastanka';
$lang['no_available_hours'] = 'Nema dostupnih termina za odabrani datum. Molimo odaberite drugi datum.';
$lang['appointment_hour_missing'] = 'Molimo odaberite vrijeme sastanka prije nastavka.';
$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 s * su obavezna.';
$lang['appointment_confirmation'] = 'Potvrda sastanka';
$lang['confirm'] = 'Potvrdi';
$lang['update'] = 'Ažuriraj';
$lang['cancel_appointment_hint'] = 'Pritisnite gumb "Otkaži" da biste uklonili sastanak iz rasporeda tvrtke.';
$lang['cancel'] = 'Otkaži';
$lang['appointment_registered'] = 'Vaš sastanak je uspješno registriran.';
$lang['cancel_appointment_title'] = 'Otkaži sastanak';
$lang['appointment_cancelled'] = 'Vaš sastanak je uspješno otkazan.';
$lang['appointment_cancelled_title'] = 'Sastanak otkazan';
$lang['reason'] = 'Razlog';
$lang['appointment_removed_from_schedule'] = 'Sljedeći sastanak uklonjen je iz rasporeda tvrtke.';
$lang['appointment_details_was_sent_to_you'] = 'E-pošta s detaljima sastanka poslana vam je.';
$lang['add_to_google_calendar'] = 'Dodaj u Google kalendar';
$lang['appointment_booked'] = 'Vaš sastanak je uspješno rezerviran.';
$lang['thank_you_for_appointment'] = 'Hvala vam što ste dogovorili sastanak s nama. Ispod možete vidjeti detalje sastanka. Promjene napravite klikom na poveznicu sastanka.';
$lang['appointment_details_title'] = 'Detalji sastanka';
$lang['customer_details_title'] = 'Detalji o klijentu';
$lang['service'] = 'Usluga';
$lang['provider'] = 'Pružatelj';
$lang['customer'] = 'Klijent';
$lang['start'] = 'Početak';
$lang['end'] = 'Kraj';
$lang['name'] = 'Ime';
$lang['appointment_link_title'] = 'Poveznica sastanka';
$lang['success'] = 'Uspješno.';
$lang['appointment_added_to_google_calendar'] = 'Vaš sastanak dodan je u vaš Google kalendar.';
$lang['view_appointment_in_google_calendar'] = 'Kliknite ovdje da biste vidjeli svoj sastanak u Google kalendaru.';
$lang['appointment_added_to_your_plan'] = 'Novi sastanak dodan je u vaš plan.';
$lang['appointment_link_description'] = 'Promjene možete napraviti klikom na poveznicu sastanka ispod.';
$lang['appointment_locked'] = 'Izmjena nemoguća.';
$lang['appointment_locked_message'] = 'Sastanak se ne može mijenjati manje od {$limit} sati unaprijed.';
$lang['appointment_not_found'] = 'Sastanak nije pronađen.';
$lang['appointment_does_not_exist_in_db'] = 'Sastanak koji ste zatražili više ne postoji u sustavnoj bazi podataka.';
$lang['display_calendar'] = 'Prikaži kalendar';
$lang['calendar'] = 'Kalendar';
$lang['users'] = 'Korisnici';
$lang['settings'] = 'Postavke';
$lang['log_out'] = 'Odjava';
$lang['synchronize'] = 'Sinkroniziraj';
$lang['enable_sync'] = 'Omogući sinkronizaciju';
$lang['disable_sync'] = 'Onemogući sinkronizaciju';
$lang['disable_sync_prompt'] = 'Jeste li sigurni da želite onemogućiti sinkronizaciju kalendara?';
$lang['reload'] = 'Ponovno učitaj';
$lang['appointment'] = 'Sastanak';
$lang['unavailable'] = 'Nedostupno';
$lang['week'] = 'Tjedan';
$lang['month'] = 'Mjesec';
$lang['today'] = 'Danas';
$lang['not_working'] = 'Ne radi';
$lang['break'] = 'Pauza';
$lang['add'] = 'Dodaj';
$lang['edit'] = 'Uredi';
$lang['hello'] = 'Pozdrav';
$lang['all_day'] = 'Cijeli dan';
$lang['manage_appointment_record_hint'] = 'Upravljajte svim zapisima sastanaka dostupnih pružatelja i usluga.';
$lang['select_filter_item_hint'] = 'Odaberite pružatelja ili uslugu i pregledajte sastanke u kalendaru.';
$lang['enable_appointment_sync_hint'] = 'Omogućite sinkronizaciju sastanaka s Google kalendarom pružatelja.';
$lang['manage_customers_hint'] = 'Upravljajte registriranim klijentima i pregledajte njihovu povijest rezervacija.';
$lang['manage_services_hint'] = 'Upravljajte dostupnim uslugama i kategorijama sustava.';
$lang['manage_users_hint'] = 'Upravljajte korisnicima backenda (administratori, pružatelji, tajnici).';
$lang['settings_hint'] = 'Postavite postavke sustava i korisnika.';
$lang['log_out_hint'] = 'Odjavite se iz sustava.';
$lang['unavailable_periods_hint'] = 'Tijekom razdoblja kada je pružatelj nedostupan, neće prihvaćati nove sastanke.';
$lang['new_appointment_hint'] = 'Stvorite novi sastanak i pohranite ga u bazu podataka.';
$lang['reload_appointments_hint'] = 'Ponovno učitajte sastanke u kalendaru.';
$lang['trigger_google_sync_hint'] = 'Pokrenite postupak sinkronizacije Google kalendara.';
$lang['appointment_updated'] = 'Sastanak uspješno ažuriran.';
$lang['undo'] = 'Poništi';
$lang['appointment_details_changed'] = 'Detalji sastanka su promijenjeni.';
$lang['appointment_changes_saved'] = 'Promjene sastanka uspješno su spremljene.';
$lang['save'] = 'Spremi';
$lang['new'] = 'Novo';
$lang['select'] = 'Odaberi';
$lang['hide'] = 'Sakrij';
$lang['type_to_filter_customers'] = 'Upišite za filtriranje klijenata.';
$lang['clear_fields_add_existing_customer_hint'] = 'Očistite polja i unesite novog klijenta.';
$lang['pick_existing_customer_hint'] = 'Odaberite postojećeg klijenta.';
$lang['new_appointment_title'] = 'Novi sastanak';
$lang['edit_appointment_title'] = 'Uredi sastanak';
$lang['delete_appointment_title'] = 'Izbriši sastanak';
$lang['write_appointment_removal_reason'] = 'Molimo vas da odvojite minutu da napišete razlog brisanja sastanka:';
$lang['appointment_saved'] = 'Sastanak uspješno spremljen.';
$lang['new_unavailable_title'] = 'Novo nedostupno razdoblje';
$lang['edit_unavailable_title'] = 'Uredi nedostupno razdoblje';
$lang['unavailable_saved'] = 'Nedostupno razdoblje uspješno spremljeno.';
$lang['start_date_before_end_error'] = 'Datum početka je kasniji od datuma završetka.';
$lang['invalid_duration'] = 'Neispravno trajanje.';
$lang['invalid_email'] = 'Neispravna e-mail adresa.';
$lang['customers'] = 'Klijenti';
$lang['details'] = 'Detalji';
$lang['no_records_found'] = 'Nema pronađenih zapisa...';
$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'] = 'Administratori';
$lang['providers'] = 'Pružatelji';
$lang['secretaries'] = 'Tajnici';
$lang['mobile_number'] = 'Broj mobitela';
$lang['mobile'] = 'Mobilni';
$lang['state'] = 'Država';
$lang['username'] = 'Korisničko ime';
$lang['password'] = 'Lozinka';
$lang['retype_password'] = 'Ponovno unesite lozinku';
$lang['receive_notifications'] = 'Primaj obavijesti';
$lang['passwords_mismatch'] = 'Lozinke se ne podudaraju.';
$lang['admin_saved'] = 'Administrator uspješno spremljen.';
$lang['provider_saved'] = 'Pružatelj uspješno spremljen.';
$lang['secretary_saved'] = 'Tajnik uspješno spremljen.';
$lang['admin_deleted'] = 'Administrator uspješno izbrisan.';
$lang['provider_deleted'] = 'Pružatelj uspješno izbrisan.';
$lang['secretary_deleted'] = 'Tajnik uspješno izbrisan.';
$lang['service_saved'] = 'Usluga uspješno spremljena.';
$lang['service_category_saved'] = 'Kategorija usluge uspješno spremljena.';
$lang['service_deleted'] = 'Usluga uspješno izbrisana.';
$lang['service_category_deleted'] = 'Kategorija usluge uspješno izbrisana.';
$lang['customer_saved'] = 'Klijent uspješno spremljen.';
$lang['customer_deleted'] = 'Klijent uspješno izbrisan.';
$lang['current_view'] = 'Trenutačni prikaz';
$lang['working_plan'] = 'Radni plan';
$lang['reset_plan'] = 'Resetiraj plan';
$lang['monday'] = 'Ponedjeljak';
$lang['tuesday'] = 'Utorak';
$lang['wednesday'] = 'Srijeda';
$lang['thursday'] = 'Četvrtak';
$lang['friday'] = 'Petak';
$lang['saturday'] = 'Subota';
$lang['sunday'] = 'Nedjelja';
$lang['breaks'] = 'Pauze';
$lang['add_breaks_during_each_day'] = 'Dodajte radne pauze tijekom svakog dana. Tijekom pauza pružatelj neće prihvaćati sastanke.';
$lang['day'] = 'Dan';
$lang['days'] = 'Dani';
$lang['actions'] = 'Akcije';
$lang['reset_working_plan_hint'] = 'Resetirajte radni plan na zadane vrijednosti.';
$lang['company_name'] = 'Naziv tvrtke';
$lang['company_name_hint'] = 'Naziv tvrtke bit će prikazan posvuda u sustavu (obavezno).';
$lang['company_email'] = 'E-mail tvrtke';
$lang['company_email_hint'] = 'Ovo će biti e-mail adresa tvrtke. Koristit će se kao adresa pošiljatelja i odgovora na e-mailove sustava (obavezno).';
$lang['company_link'] = 'Poveznica tvrtke';
$lang['company_link_hint'] = 'Poveznica tvrtke trebala bi upućivati na službenu web stranicu tvrtke (obavezno).';
$lang['go_to_booking_page'] = 'Idi na stranicu za rezervaciju';
$lang['settings_saved'] = 'Postavke uspješno spremljene.';
$lang['general'] = 'Općenito';
$lang['booking'] = 'Unos';
$lang['visible'] = 'Vidljivo';
$lang['hidden'] = 'Skriveno';
$lang['business_logic'] = 'Poslovna logika';
$lang['current_user'] = 'Trenutni korisnik';
$lang['about_app'] = 'O Easy!Appointments';
$lang['edit_working_plan_hint'] = 'Označite dane i sate ispod kada će vaša tvrtka prihvaćati sastanke. Moći ćete prilagoditi sastanke u neradnim satima, ali klijenti neće moći sami rezervirati sastanke u neradnim razdobljima. Ovaj radni plan bit će zadani za svaki novi zapis pružatelja usluga, ali ćete moći promijeniti plan svakog pružatelja zasebno uređivanjem njegovog zapisa. Nakon toga možete dodati razdoblja pauze.';
$lang['edit_breaks_hint'] = 'Dodajte radne pauze tijekom svakog dana. Ove će se pauze primjenjivati za sve nove pružatelje usluga.';
$lang['book_advance_timeout'] = 'Vremenski limit za unaprijed rezerviranje';
$lang['book_advance_timeout_hint'] = 'Definirajte vremenski limit (u minutama) prije nego što klijenti mogu rezervirati ili preuređivati sastanke s tvrtkom.';
$lang['timeout_minutes'] = 'Vremenski limit (Minute)';
$lang['about_app_info'] = 'Easy!Appointments je visoko prilagodljiva web aplikacija koja omogućuje vašim klijentima da rezerviraju sastanke s vama putem weba. Osim toga, omogućuje sinkronizaciju vaših podataka s Google kalendarom, tako da ih možete koristiti s drugim uslugama.';
$lang['current_version'] = 'Trenutačna verzija';
$lang['support'] = 'Podrška';
$lang['about_app_support'] = 'Ako naiđete na probleme prilikom korištenja Easy!Appointments, možete pretraživati službenu Google grupu za odgovore. Možda ćete također trebati stvoriti novi problem na stranici Google Code kako biste pomogli napretku razvoja.';
$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!Appointments je licenciran pod GPLv3 licencom. Korištenjem koda Easy!Appointments na bilo koji način pristajete na uvjete opisane na sljedećem URL-u:';
$lang['logout_success'] = 'Uspješno ste se odjavili! Kliknite na jedan od sljedećih gumba da biste otišli na drugu stranicu.';
$lang['book_appointment_title'] = 'Rezerviraj sastanak';
$lang['backend_section'] = 'Backend odjeljak';
$lang['you_need_to_login'] = 'Dobrodošli! Morate se prijaviti da biste vidjeli backend stranice.';
$lang['enter_username_here'] = 'Unesite svoje korisničko ime ovdje ...';
$lang['enter_password_here'] = 'Unesite svoju lozinku ovdje ...';
$lang['login'] = 'Prijava';
$lang['forgot_your_password'] = 'Zaboravili ste lozinku?';
$lang['login_failed'] = 'Prijava nije uspjela, molimo unesite ispravne vjerodajnice i pokušajte ponovno.';
$lang['type_username_and_email_for_new_password'] = 'Unesite svoje korisničko ime i e-mail adresu da biste dobili novu lozinku.';
$lang['enter_email_here'] = 'Unesite svoj e-mail ovdje ...';
$lang['regenerate_password'] = 'Regeneriraj lozinku';
$lang['go_to_login'] = 'Vratite se na stranicu za prijavu';
$lang['new_password_sent_with_email'] = 'Vaša nova lozinka poslana vam je e-mailom.';
$lang['new_account_password'] = 'Nova lozinka računa';
$lang['new_password_is'] = 'Vaša nova lozinka računa je $password. Molimo sačuvajte ovaj e-mail kako biste mogli preuzeti svoju lozinku ako je potrebno. Također možete promijeniti ovu lozinku na stranici postavki.';
$lang['delete_record_prompt'] = 'Jeste li sigurni da želite izbrisati ovaj zapis? Ova se radnja ne može poništiti.';
$lang['delete_admin'] = 'Izbriši administratora';
$lang['delete_customer'] = 'Izbriši klijenta';
$lang['delete_service'] = 'Izbriši uslugu';
$lang['delete_service_category'] = 'Izbriši kategoriju usluge';
$lang['delete_provider'] = 'Izbriši pružatelja';
$lang['delete_secretary'] = 'Izbriši tajnika';
$lang['delete_appointment'] = 'Izbriši sastanak';
$lang['delete_unavailable'] = 'Izbriši nedostupno razdoblje';
$lang['delete'] = 'Izbriši';
$lang['unexpected_issues'] = 'Neočekivani problemi';
$lang['unexpected_issues_message'] = 'Operacija se nije mogla dovršiti 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 zatražili ne postoji. Molimo provjerite URL preglednika ili idite na drugu lokaciju pomoću gumba ispod.';
$lang['error'] = 'Pogreška';
$lang['no_privileges'] = 'Nema privilegija';
$lang['no_privileges_message'] = 'Nemate potrebne privilegije za pregled ove stranice. Molimo navigirajte na drugi odjeljak.';
$lang['backend_calendar'] = 'Backend kalendar';
$lang['start_date_time'] = 'Početni datum / vrijeme';
$lang['end_date_time'] = 'Završni datum / vrijeme';
$lang['licensed_under'] = 'Licencirano pod';
$lang['unexpected_issues_occurred'] = 'Pojavili su se neočekivani problemi.';
$lang['service_communication_error'] = 'Došlo je do pogreške u komunikaciji s poslužiteljem, molimo pokušajte ponovno.';
$lang['no_privileges_edit_appointments'] = 'Nemate potrebne privilegije za uređivanje sastanaka.';
$lang['unavailable_updated'] = 'Nedostupno razdoblje uspješno ažurirano.';
$lang['appointments'] = 'Sastanci';
$lang['unexpected_warnings'] = 'Neočekivana upozorenja';
$lang['unexpected_warnings_message'] = 'Operacija je završena, ali pojavila su se neka upozorenja.';
$lang['filter'] = 'Filtriraj';
$lang['clear'] = 'Očisti';
$lang['uncategorized'] = 'Nekategorizirano';
$lang['username_already_exists'] = 'Korisničko ime već postoji.';
$lang['password_length_notice'] = 'Lozinka mora biti dugačka najmanje $number znakova.';
$lang['general_settings'] = 'Opće postavke';
$lang['personal_information'] = 'Osobne informacije';
$lang['system_login'] = 'Prijava u sustav';
$lang['user_settings_are_invalid'] = 'Postavke korisnika su nevažeće! Molimo pregledajte svoje postavke i pokušajte ponovno.';
$lang['add_break'] = 'Dodaj pauzu';
$lang['january'] = 'Siječanj';
$lang['february'] = 'Veljača';
$lang['march'] = 'Ožujak';
$lang['april'] = 'Travanj';
$lang['may'] = 'Svibanj';
$lang['june'] = 'Lipanj';
$lang['july'] = 'Srpanj';
$lang['august'] = 'Kolovoz';
$lang['september'] = 'Rujan';
$lang['october'] = 'Listopad';
$lang['november'] = 'Studeni';
$lang['december'] = 'Prosinac';
$lang['previous'] = 'Prethodno';
$lang['next'] = 'Sljedeće';
$lang['now'] = 'Sada';
$lang['select_time'] = 'Odaberi Vrijeme';
$lang['time'] = 'Vrijeme';
$lang['hour'] = 'Sat';
$lang['minute'] = 'Minuta';
$lang['google_sync_completed'] = 'Google sinkronizacija uspješno završena.';
$lang['google_sync_failed'] = 'Google sinkronizacija nije uspjela: Nije moguće uspostaviti vezu s poslužiteljem.';
$lang['select_google_calendar'] = 'Odaberi Google Kalendar';
$lang['select_google_calendar_prompt'] = 'Odaberite kalendar koji želite sinkronizirati s vašim terminima. Ako ne želite odabrati određeni kalendar, koristit će se zadani.';
$lang['google_calendar_selected'] = 'Google kalendar je uspješno odabran.';
$lang['oops_something_went_wrong'] = 'Ups! Nešto je pošlo po zlu.';
$lang['could_not_add_to_google_calendar'] = 'Vaš termin nije mogao biti dodan u vaš Google Kalendar račun.';
$lang['ea_update_success'] = 'Easy!Appointments je uspješno ažuriran.';
$lang['require_captcha'] = 'Zahtijevaj CAPTCHA';
$lang['require_captcha_hint'] = 'Kada je omogućeno, klijenti će morati unijeti nasumično generirani CAPTCHA niz prije rezervacije/ažuriranja termina.';
$lang['captcha_is_wrong'] = 'CAPTCHA verifikacija nije uspjela, molimo pokušajte ponovno.';
$lang['any_provider'] = 'Bilo koji pružatelj';
$lang['requested_hour_is_unavailable'] = 'Zahtjevani termin nažalost nije dostupan. Molimo odaberite drugo vrijeme za vaš termin.';
$lang['customer_notifications'] = 'Obavijesti za klijente';
$lang['customer_notifications_hint'] = 'Definira hoće li klijent primati e-mail obavijesti kad god dođe do promjene rasporeda u jednom od njegovih termina.';
$lang['date_format'] = 'Format datuma';
$lang['date_format_hint'] = 'Promijenite format prikaza datuma (D - Dan, 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 tjednu';
$lang['first_weekday_hint'] = 'Postavite prvi dan kalendarskog tjedna.';
$lang['google_analytics_code_hint'] = 'Dodajte svoj Google Analytics ID koji će biti uključen na stranici za rezervaciju. Možete koristiti tracking id ili measurement id.';
$lang['availabilities_type'] = 'Vrsta Dostupnosti';
$lang['flexible'] = 'Fleksibilno';
$lang['fixed'] = 'Fiksno';
$lang['attendants_number'] = 'Broj Prisutnih';
$lang['reset_working_plan'] = 'Vratite radni plan na zadane vrijednosti.';
$lang['legal_contents'] = 'Pravni Sadržaji';
$lang['cookie_notice'] = 'Obavijest o Kolačićima';
$lang['display_cookie_notice'] = 'Prikaži Obavijest o Kolačićima';
$lang['cookie_notice_content'] = 'Sadržaj Obavijesti o Kolačićima';
$lang['terms_and_conditions'] = 'Uvjeti i Odredbe';
$lang['display_terms_and_conditions'] = 'Prikaži Uvjete i Odredbe';
$lang['terms_and_conditions_content'] = 'Sadržaj Uvjeta i Odredbi';
$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 biste imali najbolje iskustvo na našoj web stranici.';
$lang['read_and_agree_to_terms_and_conditions'] = 'Pročitao sam i slažem se s {$link}Uvjetima i Odredbama{/$link}.';
$lang['read_and_agree_to_privacy_policy'] = 'Pročitao sam i slažem se s {$link}Politikom Privatnosti{/$link}.';
$lang['delete_personal_information_hint'] = 'Uklonite sve svoje termine i osobne informacije iz sustava.';
$lang['delete_personal_information'] = 'Izbriši Osobne Informacije';
$lang['delete_personal_information_prompt'] = 'Jeste li sigurni da želite izbrisati svoje osobne informacije? Ova akcija ne može biti poništena.';
$lang['location'] = 'Lokacija';
$lang['working_plan_exception'] = 'Izuzetak u Radnom Planu';
$lang['working_plan_exceptions'] = 'Izuzeci u Radnom Planu';
$lang['working_plan_exceptions_hint'] = 'Dodajte izuzetak u radnom planu izvan radnog vremena.';
$lang['new_working_plan_exception_title'] = 'Novi Izuzetak u Radnom Planu';
$lang['working_plan_exception_saved'] = 'Izuzetak u radnom planu uspješno spremljen.';
$lang['working_plan_exception_deleted'] = 'Izuzetak u radnom planu uspješno izbrisan.';
$lang['add_working_plan_exceptions_during_each_day'] = 'Dodajte izuzetke u radnom planu, izvan radnog vremena.';
$lang['add_working_plan_exception'] = 'Dodaj Izuzetak u Radnom Planu';
$lang['require_phone_number'] = 'Zahtijevaj broj telefona';
$lang['require_phone_number_hint'] = 'Kada je omogućeno, klijenti i korisnici će morati unijeti telefonski broj klijenta prilikom rezervacije termina.';
$lang['check_spam_folder'] = 'Provjerite svoju spam mapu ako e-mail ne stigne unutar nekoliko minuta.';
$lang['api_token_hint'] = 'Postavite tajni token kako biste omogućili autentifikaciju temeljenu na tokenima za Easy!Appointments API.';
$lang['timezone'] = 'Vremenska Zona';
$lang['overwrite_existing_working_plans'] = 'Ovo će prebrisati postojeće radne planove pružatelja, jeste li sigurni da želite nastaviti?';
$lang['working_plans_got_updated'] = 'Svi radni planovi su ažurirani.';
$lang['apply_to_all_providers'] = 'Primijeni na sve pružatelje';
$lang['display_any_provider'] = 'Prikaži opciju Bilo koji pružatelj';
$lang['display_any_provider_hint'] = 'Stranica za rezervaciju dobit će dodatnu opciju koja omogućuje klijentima da rezerviraju bez određivanja pružatelja usluge.';
$lang['load_more'] = 'Učitaj Više';
$lang['list'] = 'Popis';
$lang['default'] = 'Zadano';
$lang['table'] = 'Tablica';
$lang['date'] = 'Datum';
$lang['about'] = 'O';
$lang['booking_settings'] = 'Postavke rezervacije';
$lang['display'] = 'Prikaz';
$lang['require'] = 'Obavezno';
$lang['color'] = 'Boja';
$lang['matomo_analytics_url_hint'] = 'Dodajte URL svojoj vlastitoj Matomo instalaciji kako biste omogućili Matomo praćenje na stranicama za rezervacije.';
$lang['invalid_phone'] = 'Nevažeći telefonski broj.';
$lang['legal'] = 'Pravno';
$lang['business'] = 'Poslovno';
$lang['account'] = 'Račun';
$lang['disable_booking'] = 'Onemogući rezervaciju';
$lang['disable_booking_hint'] = 'Stranica za rezervacije bit će onemogućena sve dok je ova postavka aktivna i korisnici neće moći registrirati nove termine.';
$lang['display_message'] = 'Prikaži poruku';
$lang['booking_is_disabled'] = 'Rezervacija je onemogućena!';
$lang['appearance'] = 'Izgled';
$lang['company_logo'] = 'Logo firme';
$lang['company_logo_hint'] = 'Logo tvrtke bit će prikazan na mnogim mjestima u aplikaciji, uključujući stranicu za rezervacije i Email s obavijestima (slikovna datoteka, max 2MB).';
$lang['company_color'] = 'Boja firme';
$lang['company_color_hint'] = 'Boja tvrtke primijenit će se na cijelu aplikaciju tako da aplikacija koristi vašu robnu marku.';
$lang['localization'] = 'Lokalizacija';
$lang['integrations'] = 'Integracija';
$lang['company'] = 'Firma';
$lang['remove'] = 'Obriši';
$lang['login_button'] = 'Gumb za prijavu';
$lang['display_login_button_hint'] = 'Definira hoće li se gumb za prijavu prikazati na stranici za rezervacije.';
$lang['private'] = 'Privatno';
$lang['private_hint'] = 'Privatni zapisi neće se prikazivati niti obrađivati na javnim stranicama kao što je stranica za rezervacije.';
$lang['reset'] = 'Resetiranje';
$lang['all'] = 'Sve';
$lang['booking_link'] = 'Link za rezervaciju';
$lang['add_new_event'] = 'Dodaj novi događaj';
$lang['what_kind_of_event'] = 'Koju vrstu događaja želite dodati?';
$lang['theme'] = 'Tema';
$lang['limit_customer_access'] = 'Ograničite pristup korisnika';
$lang['limit_customer_access_hint'] = 'Ako je opcija uključena, davatelji usluga i tajnici moći će pristupiti samo korisnicima s kojima imaju dogovoren sastanak.';
$lang['url'] = 'URL';
$lang['secret_token'] = 'Tajni token';
$lang['verify_ssl'] = 'Potvrdite SSL';
$lang['appointment_save'] = 'Sastanak spremi';
$lang['appointment_delete'] = 'Sastanak briši';
$lang['unavailability_save'] = 'Nedostupnost spremi';
$lang['unavailability_delete'] = 'Nedostupnost briši';
$lang['customer_save'] = 'Korisnik spremi';
$lang['customer_delete'] = 'Korisnik briši';
$lang['service_save'] = 'Usluga spremi';
$lang['service_delete'] = 'Usluga briši';
$lang['service_category_save'] = 'Kategorija spremi';
$lang['service_category_delete'] = 'kategorija briši';
$lang['provider_save'] = 'Davatelj usluga spremi';
$lang['provider_delete'] = 'Davatelj usluga briši';
$lang['secretary_save'] = 'Tajnik spremi';
$lang['secretary_delete'] = 'Tajnik briši';
$lang['admin_save'] = 'Administrator spremi';
$lang['admin_delete'] = 'Administrator briši';
$lang['options'] = 'Opcije';
$lang['webhooks'] = 'Web-dojavice';
$lang['webhooks_info'] = 'Web-dojavice vam omogućuju slanje HTTP obavijesti vanjskim web aplikacijama kao odgovor na različite događaje aplikacije, kao što je stvaranje sastanka ili uklanjanje korisnika.';
$lang['integrations_info'] = 'Integracije vam omogućuju uspostavljanje veza trećih strana s vanjskim aplikacijama i API-jima.';
$lang['configure'] = 'Konfigurirati';
$lang['google_analytics'] = 'Google Analytics';
$lang['google_analytics_info'] = 'Google Analytics omogućuje vam da automatski dodate kod za praćenje i HTML oznake na javnu stranicu i pratite sve javne sesije rezervacije.';
$lang['matomo_analytics'] = 'Matomo Analytics';
$lang['matomo_analytics_info'] = 'Matomo Analytics vam omogućuje 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ćuje interakciju sa svim podacima Easy!Appointments putem HTTP protokola i dostupnih krajnjih točaka API-ja te stvaranje vlastitih integracija.';
$lang['google_analytics_code'] = 'Google Analytics Code';
$lang['matomo_analytics_url'] = 'Matomo Analytics URL';
$lang['future_booking_limit'] = 'Ograničenje budućih rezervacija';
$lang['limit_days'] = 'Ograničenje (Dani)';
$lang['future_booking_limit_hint'] = 'Postavite buduće ograničenje u danima koji korisnici mogu zakazati putem javne stranice za rezervacije.';
$lang['api_token'] = 'API Token';
$lang['allow_rescheduling_cancellation_before'] = 'Dopusti pomicanje/otkazivanje prije';
$lang['at_least_one_field'] = 'Najmanje jedno polje mora biti prikazano na stranici za rezervacije.';
$lang['status'] = 'Status';
$lang['appointment_status_options'] = 'Opcije statusa sastanka';
$lang['appointment_status_options_info'] = 'Definirajte popis dostupnih opcija statusa sastanka koje se mogu koristiti na stranici kalendara (prva će automatski postati podrazumijevana vrijednost).';
$lang['sunday_short'] = 'Ned';
$lang['monday_short'] = 'Pon';
$lang['tuesday_short'] = 'Uto';
$lang['wednesday_short'] = 'Sri';
$lang['thursday_short'] = 'Čet';
$lang['friday_short'] = 'Pet';
$lang['saturday_short'] = 'Sub';
$lang['january_short'] = 'Sij';
$lang['february_short'] = 'Velj';
$lang['march_short'] = 'Ožu';
$lang['april_short'] = 'Tra';
$lang['may_short'] = 'Svi';
$lang['june_short'] = 'Lip';
$lang['july_short'] = 'Srp';
$lang['august_short'] = 'Kol';
$lang['september_short'] = 'Ruj';
$lang['october_short'] = 'Lis';
$lang['november_short'] = 'Stu';
$lang['december_short'] = 'Pro';
$lang['am'] = 'prije podne';
$lang['pm'] = 'poslije podne';
$lang['to'] = 'do';
$lang['click_to_toggle'] = 'Kliknite za prebacivanje';
$lang['week_short'] = 'Tjed';
$lang['scroll_to_increment'] = 'Skrolajte za inkrementaciju';
$lang['year'] = 'Godina';
$lang['make_non_working_day'] = 'This provider will not be available for work on the selected day.';
$lang['no_breaks'] = 'No Breaks';
$lang['service_categories'] = 'Service Categories';
$lang['service_category'] = 'Service Category';
$lang['blocked_period_saved'] = 'Blocked period saved successfully.';
$lang['blocked_period_deleted'] = 'Blocked period deleted successfully.';
$lang['delete_blocked_period'] = 'Delete Blocked Period';
$lang['blocked_period'] = 'Blocked Period';
$lang['blocked_periods'] = 'Blocked Periods';
$lang['blocked_period_save'] = 'Blocked Period Save';
$lang['blocked_period_delete'] = 'Blocked Period Delete';
$lang['blocked_periods_hint'] = 'Define periods of time where public bookings will be disabled for all providers (e.g. closed dates, holidays etc.).';
$lang['custom_field'] = 'Custom Field';
$lang['custom_fields'] = 'Custom Fields';
$lang['label'] = 'Label';
// End

View file

@ -1,58 +0,0 @@
<?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'] = 'Naziv Testa';
$lang['ut_test_datatype'] = 'Tip Podataka Testa';
$lang['ut_res_datatype'] = 'Očekivani Tip Podataka';
$lang['ut_result'] = 'Rezultat';
$lang['ut_undefined'] = 'Nedefinirani Naziv Testa';
$lang['ut_file'] = 'Naziv Datoteke';
$lang['ut_line'] = 'Broj Linije';
$lang['ut_passed'] = 'Prošao';
$lang['ut_failed'] = 'Nije Prošao';
$lang['ut_boolean'] = 'Booleova Vrijednost';
$lang['ut_integer'] = 'Cijeli Broj';
$lang['ut_float'] = 'Decimalni Broj';
$lang['ut_double'] = 'Decimalni Broj'; // can be the same as float
$lang['ut_string'] = 'Niz Znakova';
$lang['ut_array'] = 'Polje';
$lang['ut_object'] = 'Objekt';
$lang['ut_resource'] = 'Resurs';
$lang['ut_null'] = 'Nula';
$lang['ut_notes'] = 'Bilješke';

View file

@ -1,55 +0,0 @@
<?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'] = 'Nije moguće pronaći post varijablu pod nazivom userfile.';
$lang['upload_file_exceeds_limit'] = 'Poslana datoteka premašuje maksimalnu dozvoljenu veličinu u vašoj PHP konfiguracijskoj datoteci.';
$lang['upload_file_exceeds_form_limit'] = 'Poslana datoteka premašuje maksimalnu dozvoljenu veličinu postavljenu u obrascu za slanje.';
$lang['upload_file_partial'] = 'Datoteka je samo djelomično poslana.';
$lang['upload_no_temp_directory'] = 'Nedostaje privremena mapa.';
$lang['upload_unable_to_write_file'] = 'Datoteka se ne može zapisati na disk.';
$lang['upload_stopped_by_extension'] = 'Slanje datoteke zaustavljeno je zbog ekstenzije.';
$lang['upload_no_file_selected'] = 'Niste odabrali datoteku za slanje.';
$lang['upload_invalid_filetype'] = 'Tip datoteke koji pokušavate poslati nije dozvoljen.';
$lang['upload_invalid_filesize'] = 'Datoteka koju pokušavate poslati veća je od dozvoljene veličine.';
$lang['upload_invalid_dimensions'] = 'Slika koju pokušavate poslati ne odgovara dozvoljenim dimenzijama.';
$lang['upload_destination_error'] = 'Došlo je do problema prilikom pokušaja premještanja poslane datoteke na konačnu destinaciju.';
$lang['upload_no_filepath'] = 'Putanja za slanje izgleda da nije valjana.';
$lang['upload_no_file_types'] = 'Niste odredili nijedan dozvoljeni tip datoteke.';
$lang['upload_bad_filename'] = 'Naziv datoteke koji ste unijeli već postoji na poslužitelju.';
$lang['upload_not_writable'] = 'Mapa odredišta za slanje izgleda da nije otvorena za pisanje.';

View file

@ -1,84 +0,0 @@
<?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

@ -1,94 +0,0 @@
<?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

@ -1,63 +0,0 @@
<?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'] = 'Z řetězce spojení které jste zadali nelze určit nastavení databáze.';
$lang['db_unable_to_connect'] = 'Se zadanými nastaveními se není možné připojit k databázovému serveru.';
$lang['db_unable_to_select'] = 'Není možné zvolit zadanou databázi: %s';
$lang['db_unable_to_create'] = 'Není možné vytvřit zadanou databázi: %s';
$lang['db_invalid_query'] = 'Dotaz který jste zadali není platný.';
$lang['db_must_set_table'] = 'Musíte zadat databázovou tabulku na kterou bude dotaz aplikován.';
$lang['db_must_use_set'] = 'Pro aktualizaci záznamu musíte použít metodu "set".';
$lang['db_must_use_index'] = 'Pro dávkovou aktualizaci musíte zadat index, u kterého budou změny aplikovány.';
$lang['db_batch_missing_index'] = 'Jeden nebo více záznamů zadaných pro dávkovou aktualizaci postrádá zadaný index.';
$lang['db_must_use_where'] = 'Aktualizace nejsou povoleny pokud neobsahují "where" klauzuli.';
$lang['db_del_must_use_where'] = 'Odstranění nejsou povolena pokud neobsahují "where" nebo "like" klauzuli.';
$lang['db_field_param_missing'] = 'Pro získání polí je vyžadováno zadání názvu tabulky jako parametru.';
$lang['db_unsupported_function'] = 'Tato funkce není v databázi kterou používáte dostupná.';
$lang['db_transaction_failure'] = 'Selhání transakce: proveden rollback.';
$lang['db_unable_to_drop'] = 'Není možné odstranit zadanou databázi.';
$lang['db_unsupported_feature'] = 'Funkce není na databázové platformě kterou používáte podporována.';
$lang['db_unsupported_compression'] = 'Formát komprese souborů který jste zvolili není vaším serverem podporován.';
$lang['db_filepath_error'] = 'Do umístění které jste zadali není možné data zapsat.';
$lang['db_invalid_cache_path'] = 'Umístění mezipaměti které jste zadali není platné nebo zapisovatelné.';
$lang['db_table_name_required'] = 'Pro tuto operaci je vyžadován název tabulky.';
$lang['db_column_name_required'] = 'Pro tuto operaci je vyžadován název sloupce.';
$lang['db_column_definition_required'] = 'Pro tuto operaci je vyžadována definice sloupce.';
$lang['db_unable_to_set_charset'] = 'Není možné nastavit znakovou sadu spojení klienta: %s';
$lang['db_error_heading'] = 'Vyskytla se chyba databáze';

View file

@ -1,58 +0,0 @@
<?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'] = 'Metoda validace emailu musí být předána jako pole.';
$lang['email_invalid_address'] = 'Neplatná emailová adresa: %s';
$lang['email_attachment_missing'] = 'Není možné nalézt následující přílohu emailu: %s';
$lang['email_attachment_unreadable'] = 'Není možné otevřít tuto přílohu: %s';
$lang['email_no_from'] = 'Nelze odeslat email bez hodnoty pole "Od".';
$lang['email_no_recipients'] = 'Musíte zadat příjemce: Komu, Kopie nebo Skrytá kopie';
$lang['email_send_failure_phpmail'] = 'Není možné odeslat email pomocí PHP mail(). Váš server možná není konfigurován, aby odesílal emaily protřednictvím této metody.';
$lang['email_send_failure_sendmail'] = 'Není možné odeslat email pomocí PHP Sendmail. Váš server možná není konfigurován, aby odesílal emaily prostřednictvím této metody.';
$lang['email_send_failure_smtp'] = 'Není možné odeslat email pomocí PHP SMTP. Váš server možná není konfigurován, aby odesílal emaily prostřednictvím této metody.';
$lang['email_sent'] = 'Vaše zpráva byla úspěšně odeslána prostřednictvím následujícího protokolu: %s';
$lang['email_no_socket'] = 'Není možné otevřít socket pro Sendmail. Zkontrolujte prosím nastavení.';
$lang['email_no_hostname'] = 'Nezadali jste název hosta SMTP.';
$lang['email_smtp_error'] = 'Vyskytla se následující SMTP chyba: %s';
$lang['email_no_smtp_unpw'] = 'Chyba: Musíte přidělit uživatelské jméno a heslo SMTP.';
$lang['email_failed_smtp_login'] = 'Odeslání příkazu AUTH LOGIN selhalo. Chyba: %s';
$lang['email_smtp_auth_un'] = 'Autentizace uživatelského jména selhala. Chyba: %s';
$lang['email_smtp_auth_pw'] = 'Autentizace hesla selhala. Chyba: %s';
$lang['email_smtp_data_failure'] = 'Není možné odeslat data: %s';
$lang['email_exit_status'] = 'Výstupní kód ukončení programu: %s';

View file

@ -1,69 +0,0 @@
<?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

@ -1,51 +0,0 @@
<?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

@ -1,57 +0,0 @@
<?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

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

View file

@ -1,19 +0,0 @@
<?php
/**
* System messages translation for CodeIgniter(tm)
*
* @author CodeIgniter community
* @copyright Copyright (c) 2014-2018, British Columbia Institute of Technology (http://bcit.ca/)
* @license http://opensource.org/licenses/MIT MIT License
* @link https://codeigniter.com
*/
defined('BASEPATH') or exit('No direct script access allowed');
$lang['migration_none_found'] = 'Nebyla nalezena žádná migrace.';
$lang['migration_not_found'] = 'Migrace s číslem verze %s nebyla nalezena.';
$lang['migration_sequence_gap'] = 'V blízkosti sekvence migrace s číslem verze %s se nachází mezera.';
$lang['migration_multiple_version'] = 'Existuje více migrací se shodným číslem verze: %s.';
$lang['migration_class_doesnt_exist'] = 'Třída migrace "%s" nebyla nalezena.';
$lang['migration_missing_up_method'] = 'Třída migrace "%s" postrádá metodu "up".';
$lang['migration_missing_down_method'] = 'Třída migrace "%s" postrádá metodu "down".';
$lang['migration_invalid_filename'] = 'Migrace "%s" má neplatný název souboru.';

View file

@ -1,44 +0,0 @@
<?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

@ -1,43 +0,0 @@
<?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

@ -1,60 +0,0 @@
<?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

@ -1,452 +0,0 @@
<?php defined('BASEPATH') or exit('No direct script access allowed');
// Czech
$lang['page_title'] = 'Rezervace schůzky s';
$lang['service_and_provider'] = 'Výběr služby a poskytovatele';
$lang['select_service'] = 'Vyberte službu';
$lang['select_provider'] = 'Vyberte poskytovatele';
$lang['duration'] = 'Trvání';
$lang['minutes'] = 'Minut';
$lang['price'] = 'Cena';
$lang['back'] = 'Zpět';
$lang['appointment_date_and_time'] = 'Výběr data a času schůzky';
$lang['no_available_hours'] = 'V rámci zvoleného data nejsou k dispozici žádné termíny pro rezervaci schůzky. Zvolte prosím jiné datum.';
$lang['appointment_hour_missing'] = 'Než budete pokračovat, zvolte prosím termín schůzky.';
$lang['customer_information'] = 'Zadání vašich údajů';
$lang['first_name'] = 'Jméno';
$lang['last_name'] = 'Příjmení';
$lang['email'] = 'Email';
$lang['phone_number'] = 'Telefonní číslo';
$lang['phone'] = 'Telefon';
$lang['address'] = 'Adresa';
$lang['city'] = 'Obec';
$lang['zip_code'] = 'PSČ';
$lang['notes'] = 'Poznámky';
$lang['language'] = 'Jazyk';
$lang['no_language'] = 'Žádný jazyk';
$lang['fields_are_required'] = 'Pole označená * jsou povinná.';
$lang['appointment_confirmation'] = 'Rezervace schůzky';
$lang['confirm'] = 'Potvrdit';
$lang['update'] = 'Změnit';
$lang['cancel_appointment_hint'] = 'Pro odebrání schůzky z kalendáře společnosti klikněte na tlačítko "Zrušit".';
$lang['cancel'] = 'Zrušit';
$lang['appointment_registered'] = 'Vaše schůzka byla úspěšně registrována.';
$lang['cancel_appointment_title'] = 'Zrušit schůzku';
$lang['appointment_cancelled'] = 'Vaše schůzka byla úspěšně zrušena.';
$lang['appointment_cancelled_title'] = 'Schůzka zrušena';
$lang['reason'] = 'Důvod';
$lang['appointment_removed_from_schedule'] = 'Následující schůzka byla odstraněna z kalendáře společnosti.';
$lang['appointment_details_was_sent_to_you'] = 'Byl vám odeslán email s informacemi o schůzce.';
$lang['add_to_google_calendar'] = 'Přidat do Kalendáře Google';
$lang['appointment_booked'] = 'Vaše schůzka byla úspěšně rezervována.';
$lang['thank_you_for_appointment'] = 'Děkujeme za vaši rezervaci schůzky u nás. Níže jsou zobrazeny informace o schůzce. Změny můžete provést kliknutím na odkaz na schůzku.';
$lang['appointment_details_title'] = 'Informace o schůzce';
$lang['customer_details_title'] = 'Informace o zákazníkovi';
$lang['service'] = 'Služba';
$lang['provider'] = 'Poskytovatel';
$lang['customer'] = 'Zákazník';
$lang['start'] = 'Začátek';
$lang['end'] = 'Konec';
$lang['name'] = 'Název';
$lang['appointment_link_title'] = 'Odkaz na schůzku';
$lang['success'] = 'Úspěch.';
$lang['appointment_added_to_google_calendar'] = 'Vaše schůzka byla přidána do vašeho účtu v Kalendáři Google.';
$lang['view_appointment_in_google_calendar'] = 'Pro zobrazení vaší schůzky v Kalendáři Google klikněte sem.';
$lang['appointment_added_to_your_plan'] = 'Do vašeho rozvrhu byla přidána nová schůzka.';
$lang['appointment_link_description'] = 'Editaci můžete provést kliknutím na níže uvedený odkaz na schůzku.';
$lang['appointment_locked'] = 'Nelze upravit.';
$lang['appointment_locked_message'] = 'Schůzka nemůže být upravena dříve než {$limit} hodin předem.';
$lang['appointment_not_found'] = 'Schůzka nenalezena.';
$lang['appointment_does_not_exist_in_db'] = 'Požadovaná schůzka již v databázi systému neexistuje.';
$lang['display_calendar'] = 'Zobrazit kalendář';
$lang['calendar'] = 'Kalendář';
$lang['users'] = 'Uživatelé';
$lang['settings'] = 'Nastavení';
$lang['log_out'] = 'Odhlášení';
$lang['synchronize'] = 'Synchronizace';
$lang['enable_sync'] = 'Povolit synchronizaci';
$lang['disable_sync'] = 'Zakázat synchronizaci';
$lang['disable_sync_prompt'] = 'Opravdu chcete vypnout synchronizaci s kalendářem?';
$lang['reload'] = 'Obnovit';
$lang['appointment'] = 'Schůzka';
$lang['unavailability'] = 'Nedostupnost';
$lang['week'] = 'Týden';
$lang['month'] = 'Měsíc';
$lang['today'] = 'Dnes';
$lang['not_working'] = 'Zavřeno';
$lang['break'] = 'Přestávka';
$lang['add'] = 'Přidat';
$lang['edit'] = 'Změnit';
$lang['hello'] = 'Dobrý den';
$lang['all_day'] = 'Celodenní';
$lang['manage_appointment_record_hint'] = 'Správa záznamů všech schůzek dostupných poskytovatelů a služeb.';
$lang['select_filter_item_hint'] = 'Výběr poskytovatele nebo služby a zobrazení schůzek v kalendáři.';
$lang['enable_appointment_sync_hint'] = 'Povolit synchronizaci schůzek s účtem Kalendáře Google poskytovatele.';
$lang['manage_customers_hint'] = 'Správa registrovaných zákazníků a zobrazení historie jejich rezervací.';
$lang['manage_services_hint'] = 'Správa dostupných služeb a kategorií.';
$lang['manage_users_hint'] = 'Správa interních uživatelů (administrátoři, poskytovatelé, sekretářky).';
$lang['settings_hint'] = 'Systémová a uživatelská nastavení.';
$lang['log_out_hint'] = 'Odhlášení ze systému.';
$lang['unavailability_periods_hint'] = 'V době, kdy není poskytovatel dostupný, nelze rezervovat nové schůzky.';
$lang['new_appointment_hint'] = 'Vytvoření nové schůzky a uložení do databáze.';
$lang['reload_appointments_hint'] = 'Obnovit zobrazení schůzek v kalendáři.';
$lang['trigger_google_sync_hint'] = 'Zahájit proces synchronizace s Kalendářem Google.';
$lang['appointment_updated'] = 'Provedené změny schůzky byly úspěšně uloženy.';
$lang['undo'] = 'Zpět';
$lang['appointment_details_changed'] = 'Informace o schůzce byly změněny.';
$lang['appointment_changes_saved'] = 'Provedené změny schůzky byly úspěšně uloženy.';
$lang['save'] = 'Uložit';
$lang['new'] = 'Nový';
$lang['select'] = 'Vybrat';
$lang['hide'] = 'Skrýt';
$lang['type_to_filter_customers'] = 'Zadejte řetězec pro filtrování zákazníků.';
$lang['clear_fields_add_existing_customer_hint'] = 'Vymazat údaje a zadat nového zákazníka.';
$lang['pick_existing_customer_hint'] = 'Vybrat existujícího zákazníka.';
$lang['new_appointment_title'] = 'Nová schůzka';
$lang['edit_appointment_title'] = 'Editace schůzky';
$lang['delete_appointment_title'] = 'Odstranit schůzku';
$lang['write_appointment_removal_reason'] = 'Věnujte nám prosím chvilku a sdělte nám důvod, proč jste schůzku zrušili:';
$lang['appointment_saved'] = 'Schůzka úspěšně uložena.';
$lang['new_unavailability_title'] = 'Nové období nedostupnosti';
$lang['edit_unavailability_title'] = 'Editovat období nedostupnosti';
$lang['unavailability_saved'] = 'Období nedostupnosti úspěšně uloženo.';
$lang['start_date_before_end_error'] = 'Datum zahájení je pozdější než datum ukončení.';
$lang['invalid_email'] = 'Neplatná emailová adresa.';
$lang['invalid_duration'] = 'Neplatné trvání.';
$lang['customers'] = 'Zákazníci';
$lang['details'] = 'Základní údaje';
$lang['no_records_found'] = 'Nebyly nalezeny žádné záznamy...';
$lang['services'] = 'Služby';
$lang['duration_minutes'] = 'Doba trvání (minuty)';
$lang['currency'] = 'Měna';
$lang['category'] = 'Kategorie';
$lang['no_category'] = 'Žádná kategorie';
$lang['description'] = 'Popis';
$lang['categories'] = 'Kategorie';
$lang['admins'] = 'Administrátoři';
$lang['providers'] = 'Poskytovatelé';
$lang['secretaries'] = 'Sekretářky';
$lang['mobile_number'] = 'Mobilní telefon';
$lang['mobile'] = 'Mobil';
$lang['state'] = 'Stát';
$lang['username'] = 'Uživatelské jméno';
$lang['password'] = 'Heslo';
$lang['retype_password'] = 'Potvrzení hesla';
$lang['receive_notifications'] = 'Odesílat notifikace';
$lang['passwords_mismatch'] = 'Hesla se neshodují.';
$lang['admin_saved'] = 'Administrátor úspěšně uložen.';
$lang['provider_saved'] = 'Poskytovatel úspěšně uložen.';
$lang['secretary_saved'] = 'Sekretářka úspěšně uložena.';
$lang['admin_deleted'] = 'Administrátor úspěšně odstraněn.';
$lang['provider_deleted'] = 'Poskytovatel úspěšně odstraněn.';
$lang['secretary_deleted'] = 'Sekretářka úspěšně odstraněna.';
$lang['service_saved'] = 'Služba úspěšně uložena.';
$lang['service_category_saved'] = 'Kategorie služeb úspěšně uložena.';
$lang['service_deleted'] = 'Služba úspěšně odstraněna.';
$lang['service_category_deleted'] = 'Kategorie služeb úspěšně odstraněna.';
$lang['customer_saved'] = 'Zákazník úspěšně uložen.';
$lang['customer_deleted'] = 'Zákazník úspěšně odstraněn.';
$lang['current_view'] = 'Aktuální zobrazení';
$lang['working_plan'] = 'Pracovní doba';
$lang['reset_plan'] = 'Resetovat pracovní dobu';
$lang['monday'] = 'Pondělí';
$lang['tuesday'] = 'Úterý';
$lang['wednesday'] = 'Středa';
$lang['thursday'] = 'Čtvrtek';
$lang['friday'] = 'Pátek';
$lang['saturday'] = 'Sobota';
$lang['sunday'] = 'Neděle';
$lang['breaks'] = 'Přestávky';
$lang['add_breaks_during_each_day'] = 'Definice pracovních přestávek během každého dne. V průběhu přestávek nebude poskytovatel přijímat žádné schůzky.';
$lang['day'] = 'Den';
$lang['days'] = 'Dny';
$lang['actions'] = 'Akce';
$lang['reset_working_plan_hint'] = 'Resetovat pracovní plán zpět na výchozí hodnoty.';
$lang['company_name'] = 'Název společnosti';
$lang['company_name_hint'] = 'Název společnosti, který bude zobrazen všude v systému (povinné).';
$lang['company_email'] = 'Email společnosti';
$lang['company_email_hint'] = 'Toto bude emailová adresa společnosti. Bude používána jako email odesílatele a pro příjem odpovědí na systémové emaily (povinné).';
$lang['company_link'] = 'Odkaz na web splečnosti';
$lang['company_link_hint'] = 'Odkaz na web společnosti by měl vést na oficální webové stránky společnosti (povinné).';
$lang['go_to_booking_page'] = 'Přejít na stránku rezervací';
$lang['settings_saved'] = 'Nastavení úspěšně uložena.';
$lang['general'] = 'Obecné';
$lang['booking'] = 'Booking';
$lang['visible'] = 'Viditelný';
$lang['hidden'] = 'Skrytý';
$lang['business_logic'] = 'Business logika';
$lang['current_user'] = 'Přihlášený uživatel';
$lang['about_app'] = 'O aplikaci Easy!Appointments';
$lang['edit_working_plan_hint'] = 'Zde označte dny a hodiny, kdy bude vaše společnost přijímat rezervace schůzek. Budete mít možnost přizpůsobit schůzky mimo pracovní dobu, zákazníci se ale mimo pracovní dobu objednat nemohou. Tato pracovní doba bude výchozí pro každého nově založeného poskytovatele, přičemž ji bude možné změnit u každého jednotlivého poskytovatele v rámci editace. Poté můžete přidat období přestávek.';
$lang['edit_breaks_hint'] = 'Zadejte přestávky v rámci každého dne. Definované přestávky budou použity pro všechny nově založené poskytovatele.';
$lang['book_advance_timeout'] = 'Časový limit rezervace';
$lang['book_advance_timeout_hint'] = 'Definujte časový limit (v minutách), před jehož uplynutím budou moci zákazníci zadat nebo změnit rezervaci schůzky se společností.';
$lang['timeout_minutes'] = 'Časový limit (minuty)';
$lang['about_app_info'] = 'Easy!Appointments je vysoce přizpůsobitelná webová aplikace, která vašim zákazníkům umožňuje rezervovat si s vámi schůzky prostřednictvím webu. Navíc poskytuje možnost synchronizovat vaše data s Kalendářem Google, takže je můžete využívat v rámci dalších služeb.';
$lang['current_version'] = 'Aktuální verze';
$lang['support'] = 'Podpora';
$lang['about_app_support'] = 'Pokud při používání Easy!Appointments narazíte na jakékoli problémy, můžete odpovědi hledat v oficiální skupině Google. Také můžete založit nový incident na stránce Google Code za účelem podpory dalšího vývoje.';
$lang['official_website'] = 'Oficiální stránky';
$lang['google_plus_community'] = 'Komunita Google+';
$lang['support_group'] = 'Skupina podpory';
$lang['project_issues'] = 'Incidenty projektu';
$lang['license'] = 'Licence';
$lang['about_app_license'] = 'Easy!Appointments je licencováno pod licencí GPLv3. Používáním kódu Easy!Appointments v jakékoli formě souhlasíte s podmínkami popsanými v dokumentu na následující adrese:';
$lang['logout_success'] = 'Byli jste úspěšně odhlášeni! Pro přesměrování na jinou stránku klikněte na některé z následujících tlačítek.';
$lang['book_appointment_title'] = 'Rezervace schůzky';
$lang['backend_section'] = 'Administrace';
$lang['you_need_to_login'] = 'Vítejte! Pro zobrazení sekce administrace se musíte přihlásit.';
$lang['enter_username_here'] = 'Zadejte vaše uživatelské jméno ...';
$lang['enter_password_here'] = 'Zadejte vaše heslo ...';
$lang['login'] = 'Přihlásit';
$lang['forgot_your_password'] = 'Zapomenuté heslo?';
$lang['login_failed'] = 'Přihlášení selhalo, prosím zadejte správné přihlašovací údaje a zkuste se znovu přihlásit.';
$lang['type_username_and_email_for_new_password'] = 'Pro získání nového hesla zadejte vaše uživatelské jméno a vaši emailovou adresu.';
$lang['enter_email_here'] = 'Zadejte vaši emailovou adresu ...';
$lang['regenerate_password'] = 'Znovu vygenerovat heslo';
$lang['go_to_login'] = 'Zpět na přihlášení';
$lang['new_password_sent_with_email'] = 'Vaše nové heslo vám bylo zasláno prostřednictvím emailu.';
$lang['new_account_password'] = 'Nové heslo';
$lang['new_password_is'] = 'Vaše nové heslo je $password. Uschovejte prosím tento email pro případ, že byste potřebovali znovu zjistit vaše heslo. Heslo si také můžete změnit v rámci nastavení.';
$lang['delete_record_prompt'] = 'Opravdu si přejete odstranit tento záznam? Tuto akci nelze vrátit zpět.';
$lang['delete_admin'] = 'Odstranit administrátora';
$lang['delete_customer'] = 'Odstranit zákazníka';
$lang['delete_service'] = 'Odstranit službu';
$lang['delete_service_category'] = 'Odstranit kategorii služeb';
$lang['delete_provider'] = 'Odstranit poskytovatele';
$lang['delete_secretary'] = 'Odstranit sekretářku';
$lang['delete_appointment'] = 'Odstranit schůzku';
$lang['delete_unavailability'] = 'Odstranit období nedostupnosti';
$lang['delete'] = 'Odstranit';
$lang['unexpected_issues'] = 'Neočekávaná chyba';
$lang['unexpected_issues_message'] = 'Operaci nebylo možné dokončit z důvodu neočekávané chyby.';
$lang['close'] = 'Zavřít';
$lang['page_not_found'] = 'Stránka nenalezena';
$lang['page_not_found_message'] = 'Bohužel, požadovaná stránka neexistuje. Zkontrolujte prosím adresu URL v prohlížeči nebo přejděte do jiného umístění pomocí některého z níže uvedeních tlačítek.';
$lang['error'] = 'Chyba';
$lang['no_privileges'] = 'Žádná oprávnění';
$lang['no_privileges_message'] = 'Pro zobrazení této stránky nemáte požadovaná oprávnění. Přejděte prosím do jiné sekce.';
$lang['backend_calendar'] = 'Kalendář administrace';
$lang['start_date_time'] = 'Datum / čas zahájení';
$lang['end_date_time'] = 'Datum / čas ukončení';
$lang['licensed_under'] = 'Licencováno pod';
$lang['unexpected_issues_occurred'] = 'Vyskytla se neočekávaná chyba.';
$lang['service_communication_error'] = 'Vyskytla se chyba při komunikaci se serverem, prosím opakujte akci.';
$lang['no_privileges_edit_appointments'] = 'Pro editaci schůzek nemáte požadovaná oprávnění.';
$lang['unavailability_updated'] = 'Období nedostupnosti úspěšně změněno.';
$lang['appointments'] = 'Schůzky';
$lang['unexpected_warnings'] = 'Neočekávaná varování';
$lang['unexpected_warnings_message'] = 'Operace byla provedena, ale vyskytla se nějaká varování.';
$lang['filter'] = 'Filtrovat';
$lang['clear'] = 'Zrušit filtr';
$lang['uncategorized'] = 'Nekategorizováno';
$lang['username_already_exists'] = 'Uživatelské jméno již existuje.';
$lang['password_length_notice'] = 'Heslo musí být minimálně $number znaků dlouhé.';
$lang['general_settings'] = 'Obecná nastavení';
$lang['personal_information'] = 'Osobní údaje';
$lang['system_login'] = 'Přihlášení do systému';
$lang['user_settings_are_invalid'] = 'Uživatelská nastavení nejsou platná! Zkontrolujte prosím vaše nastavení a poté akci opakujte.';
$lang['add_break'] = 'Přidat přestávku';
$lang['january'] = 'Leden';
$lang['february'] = 'Únor';
$lang['march'] = 'Březen';
$lang['april'] = 'Duben';
$lang['may'] = 'Květen';
$lang['june'] = 'Červen';
$lang['july'] = 'Červenec';
$lang['august'] = 'Srpen';
$lang['september'] = 'Září';
$lang['october'] = 'Říjen';
$lang['november'] = 'Listopad';
$lang['december'] = 'Prosinec';
$lang['previous'] = 'Předchozí';
$lang['next'] = 'Vpřed';
$lang['now'] = 'Nyní';
$lang['select_time'] = 'Vyberte čas';
$lang['time'] = 'Čas';
$lang['hour'] = 'Hodina';
$lang['minute'] = 'Minuta';
$lang['google_sync_completed'] = 'Synchronizace s Google byla úspěšně dokončena.';
$lang['google_sync_failed'] = 'Synchronizace s Google selhala: nepodařilo se navázat spojení se serverem.';
$lang['select_google_calendar'] = 'Vyberte Kalendář Google';
$lang['select_google_calendar_prompt'] = 'Výberte kalendář, do kterého chcete synchronizovat vaše schůzky. Jestliže nechcete vybrat konkrétní kalendář, bude použit výchozí.';
$lang['google_calendar_selected'] = 'Kalendář Google byl úspěšně vybrán.';
$lang['oops_something_went_wrong'] = 'Oops! Něco se pokazilo.';
$lang['could_not_add_to_google_calendar'] = 'Vaše schůzka nemohla být přidána do vašeho Kalendáře Google.';
$lang['ea_update_success'] = 'Aplikace Easy!Appointments byla úspěšně aktualizována.';
$lang['require_captcha'] = 'Vyžadovat CAPTCHA';
$lang['require_captcha_hint'] = 'Pokud bude povolena, zákazníci budou muset před vytvořením/editací schůzky zadat náhodně vygenerovaný řetězec CAPTCHA.';
$lang['captcha_is_wrong'] = 'Ověření CAPTCHA selhalo, prosím opakujte akci.';
$lang['any_provider'] = 'Jakýkoli poskytovatel';
$lang['requested_hour_is_unavailable'] = 'Požadovaná schůzka bohužel aktuálně není dostupná. Vyberte prosím pro vaši schůzku jiný čas.';
$lang['customer_notifications'] = 'Notifikace zákazníků';
$lang['customer_notifications_hint'] = 'Definuje, zda bude zákazníkům v případě změny rozvrhu týkající se schůzky zákazníka odesílána notifikace emailem.';
$lang['date_format'] = 'Formát datumu';
$lang['date_format_hint'] = 'Změnit zobrazovaný formát datumu (D - datum, M - měsíc, Y - rok).';
$lang['time_format'] = 'Formát času';
$lang['time_format_hint'] = 'Změnit zobrazovaný formát času (H - hodiny, M - minuty).';
$lang['first_weekday'] = 'První den v týdnu';
$lang['first_weekday_hint'] = 'Nastavte první den v kalendářním týdnu.';
$lang['google_analytics_code_hint'] = 'Přidat do stránky rezervací vaše Google Analytics ID.';
$lang['availabilities_type'] = 'Typy dostupnosti';
$lang['flexible'] = 'Flexibilní';
$lang['fixed'] = 'Fixní';
$lang['attendants_number'] = 'Počet účastníků';
$lang['reset_working_plan'] = 'Resetovat pracovní dobu na výchozí hodnoty.';
$lang['legal_contents'] = 'Právní obsah';
$lang['cookie_notice'] = 'Cookie upozornění';
$lang['display_cookie_notice'] = 'Zobrazit Cookie upozornění';
$lang['cookie_notice_content'] = 'Obsah cookie upozornění';
$lang['terms_and_conditions'] = 'Obchodní podmínky';
$lang['display_terms_and_conditions'] = 'Zobrazit obchodní podmínky';
$lang['terms_and_conditions_content'] = 'Obsah obchodních podmínek';
$lang['privacy_policy'] = 'Zásady ochrany osobních údajů';
$lang['display_privacy_policy'] = 'Zobrazit zásady ochrany osobních údajů';
$lang['privacy_policy_content'] = 'Obsah zásad ochrany osobních údajů';
$lang['website_using_cookies_to_ensure_best_experience'] = 'Tyto webové stránky používají cookies pro zajištění co nejlepšího prožitku na našich webových stránkách.';
$lang['read_and_agree_to_terms_and_conditions'] = 'Přečetl jsem a souhlasím s {$link}Obchodními podmínkami{/$link}.';
$lang['read_and_agree_to_privacy_policy'] = 'Přečetl jsem a souhlasím se {$link}Zásadami ochrany osobních údajů{/$link}.';
$lang['delete_personal_information_hint'] = 'Odstranit ze systému všechny osobní údaje.';
$lang['delete_personal_information'] = 'Odstranit osobní údaje';
$lang['delete_personal_information_prompt'] = 'Jste si jisti, že chcete odstranit vaše osobní údaje? Tuto akci nelze vzít zpět.';
$lang['location'] = 'Místo';
$lang['working_plan_exception'] = 'Výjimka z pracovní doby';
$lang['working_plan_exceptions'] = 'Výjimky z pracovní doby';
$lang['working_plan_exceptions_hint'] = 'Přidat výjimku z pracovní doby mimo pracovní plán.';
$lang['new_working_plan_exception_title'] = 'Nová výjimka z pracovního plánu';
$lang['working_plan_exception_saved'] = 'Výjimka z pracovního plánu úspěšně uložena.';
$lang['working_plan_exception_deleted'] = 'Výjimka z pracovního plánu úspěšně smazána.';
$lang['add_working_plan_exceptions_during_each_day'] = 'Přidat výjimku z pracovního plánu v průběhu dne.';
$lang['add_working_plan_exception'] = 'Přidat výjimku z pracovního plánu';
$lang['require_phone_number'] = 'Vyžadovat telefonní číslo';
$lang['require_phone_number_hint'] = 'Pokud je zapnuto, uživatelé a zákazníci musí vyplnit své telefonní číslo při sjednávání schůzky.';
$lang['check_spam_folder'] = 'Zkontrolujte prosím svou SPAM schránku, pokud email v několika minutách nedorazí.';
$lang['api_token_hint'] = 'Nastavte bezpečnostní token, abyste povolili autentizaci tokenem v API Easy!Appointments.';
$lang['timezone'] = 'Časová zóna';
$lang['overwrite_existing_working_plans'] = 'Tímto nahradíte současné pracovní plány. Opravdu jste si jisti, že chcete pokračovat?';
$lang['working_plans_got_updated'] = 'Všechny pracovní plány byly aktualizovány.';
$lang['apply_to_all_providers'] = 'Použít pro všechny poskytovatele';
$lang['display_any_provider'] = 'Zobrazit možnost "Jakýkoli poskytovatel"';
$lang['display_any_provider_hint'] = 'Rezervační stránka bude obsahovat dodatečnou informaci, že zákazníci nemusejí vybírat poskytovatele.';
$lang['load_more'] = 'Více';
$lang['list'] = 'Seznam';
$lang['default'] = 'Výchozí';
$lang['table'] = 'Tabulka';
$lang['date'] = 'Datum';
$lang['about'] = 'About';
$lang['booking_settings'] = 'Booking Settings';
$lang['display'] = 'Display';
$lang['require'] = 'Require';
$lang['color'] = 'Color';
$lang['matomo_analytics_url_hint'] = 'Add the URL to your own Matomo installation to enable Matomo tracking on the booking pages.';
$lang['invalid_phone'] = 'Invalid phone number.';
$lang['legal'] = 'Legal';
$lang['business'] = 'Business';
$lang['account'] = 'Account';
$lang['disable_booking'] = 'Disable Booking';
$lang['disable_booking_hint'] = 'The booking page will be disabled for as long as this setting is active and customers will not be able to register new appointments.';
$lang['display_message'] = 'Display Message';
$lang['booking_is_disabled'] = 'Booking Is Disabled!';
$lang['appearance'] = 'Appearance';
$lang['company_logo'] = 'Company Logo';
$lang['company_logo_hint'] = 'The company logo will be displayed in many places of the app, including the booking page and the notification emails (image file, max 2MB).';
$lang['company_color'] = 'Company Color';
$lang['company_color_hint'] = 'The company color will be applied across the app so that it the app uses your branding.';
$lang['localization'] = 'Localization';
$lang['integrations'] = 'Integrations';
$lang['company'] = 'Company';
$lang['remove'] = 'Remove';
$lang['login_button'] = 'Login Button';
$lang['display_login_button_hint'] = 'Defines whether the login button is being displayed in the booking page.';
$lang['private'] = 'Private';
$lang['private_hint'] = 'Private records will not be displayed or processed in public pages such as the booking page.';
$lang['reset'] = 'Reset';
$lang['all'] = 'All';
$lang['booking_link'] = 'Booking Link';
$lang['add_new_event'] = 'Add New Event';
$lang['what_kind_of_event'] = 'What kind of event would you like to add?';
$lang['theme'] = 'Theme';
$lang['limit_customer_access'] = 'Limit Customer Access';
$lang['limit_customer_access_hint'] = 'If enabled, providers and secretaries will only be able to access customers they have an appointment with.';
$lang['url'] = 'URL';
$lang['secret_token'] = 'Secret Token';
$lang['verify_ssl'] = 'Verify SSL';
$lang['appointment_save'] = 'Appointment Save';
$lang['appointment_delete'] = 'Appointment Delete';
$lang['unavailability_save'] = 'Unavailability Save';
$lang['unavailability_delete'] = 'Unavailability Delete';
$lang['customer_save'] = 'Customer Save';
$lang['customer_delete'] = 'Customer Delete';
$lang['service_save'] = 'Service Save';
$lang['service_delete'] = 'Service Delete';
$lang['service_category_save'] = 'Category Save';
$lang['service_category_delete'] = 'Category Delete';
$lang['provider_save'] = 'Provider Save';
$lang['provider_delete'] = 'Provider Delete';
$lang['secretary_save'] = 'Secretary Save';
$lang['secretary_delete'] = 'Secretary Delete';
$lang['admin_save'] = 'Admin Save';
$lang['admin_delete'] = 'Admin Delete';
$lang['options'] = 'Options';
$lang['webhooks'] = 'Webhooks';
$lang['webhooks_info'] = 'Webhooks enable you to send HTTP notifications to external web applications in response to various application events, such as the creation of an appointment or the removal of a customer.';
$lang['integrations_info'] = 'Integrations enable you to make third-party connections with external applications and APIs.';
$lang['configure'] = 'Configure';
$lang['google_analytics'] = 'Google Analytics';
$lang['google_analytics_info'] = 'Google Analytics enable you to automatically add the tracking code and HTML markup to the public page and track all the public booking sessions.';
$lang['matomo_analytics'] = 'Matomo Analytics';
$lang['matomo_analytics_info'] = 'Matomo Analytics enable you to automatically add the tracking code and HTML markup to the public page and track all the public booking sessions.';
$lang['api'] = 'API';
$lang['api_info'] = 'API enable you to interact with all the Easy!Appointments data via the HTTP protocol and the available API endpoints and create your own integrations.';
$lang['google_analytics_code'] = 'Google Analytics Code';
$lang['matomo_analytics_url'] = 'Matomo Analytics URL';
$lang['future_booking_limit'] = 'Future Booking Limit';
$lang['limit_days'] = 'Limit (Days)';
$lang['future_booking_limit_hint'] = 'Set the future limit in days customers can make appointments via the public booking page.';
$lang['api_token'] = 'API Token';
$lang['allow_rescheduling_cancellation_before'] = 'Allow Rescheduling/Cancellation Before';
$lang['at_least_one_field'] = 'At least one field must be displayed in the booking page.';
$lang['status'] = 'Status';
$lang['appointment_status_options'] = 'Appointment Status Options';
$lang['appointment_status_options_info'] = 'Define a list of available appointment status options that can be used in the the calendar page (the first one will automatically become the default value).';
$lang['sunday_short'] = 'Sun';
$lang['monday_short'] = 'Mon';
$lang['tuesday_short'] = 'Tue';
$lang['wednesday_short'] = 'Wed';
$lang['thursday_short'] = 'Thu';
$lang['friday_short'] = 'Fri';
$lang['saturday_short'] = 'Sat';
$lang['january_short'] = 'Jan';
$lang['february_short'] = 'Feb';
$lang['march_short'] = 'Mar';
$lang['april_short'] = 'Apr';
$lang['may_short'] = 'May';
$lang['june_short'] = 'Jun';
$lang['july_short'] = 'Jul';
$lang['august_short'] = 'Aug';
$lang['september_short'] = 'Sep';
$lang['october_short'] = 'Oct';
$lang['november_short'] = 'Nov';
$lang['december_short'] = 'Dec';
$lang['am'] = 'am';
$lang['pm'] = 'pm';
$lang['to'] = 'to';
$lang['click_to_toggle'] = 'Click To Toggle';
$lang['week_short'] = 'Wk';
$lang['scroll_to_increment'] = 'Scroll To Increment';
$lang['year'] = 'Year';
$lang['make_non_working_day'] = 'This provider will not be available for work on the selected day.';
$lang['no_breaks'] = 'No Breaks';
$lang['service_categories'] = 'Service Categories';
$lang['service_category'] = 'Service Category';
$lang['blocked_period_saved'] = 'Blocked period saved successfully.';
$lang['blocked_period_deleted'] = 'Blocked period deleted successfully.';
$lang['delete_blocked_period'] = 'Delete Blocked Period';
$lang['blocked_period'] = 'Blocked Period';
$lang['blocked_periods'] = 'Blocked Periods';
$lang['blocked_period_save'] = 'Blocked Period Save';
$lang['blocked_period_delete'] = 'Blocked Period Delete';
$lang['blocked_periods_hint'] = 'Define periods of time where public bookings will be disabled for all providers (e.g. closed dates, holidays etc.).';
$lang['custom_field'] = 'Custom Field';
$lang['custom_fields'] = 'Custom Fields';
$lang['label'] = 'Label';
// End

View file

@ -1,58 +0,0 @@
<?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

@ -1,55 +0,0 @@
<?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

@ -1,84 +0,0 @@
<?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'] = 'Tirs';
$lang['cal_wed'] = 'Ons';
$lang['cal_thu'] = 'Tors';
$lang['cal_fri'] = 'Fre';
$lang['cal_sat'] = 'Lør';
$lang['cal_sunday'] = 'Søndag';
$lang['cal_monday'] = 'Mandaag';
$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'] = 'Maj';
$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'] = 'Dec';
$lang['cal_january'] = 'Januar';
$lang['cal_february'] = 'Februar';
$lang['cal_march'] = 'Marts';
$lang['cal_april'] = 'April';
$lang['cal_mayl'] = 'Maj';
$lang['cal_june'] = 'June';
$lang['cal_july'] = 'Juli';
$lang['cal_august'] = 'August';
$lang['cal_september'] = 'September';
$lang['cal_october'] = 'Oktober';
$lang['cal_november'] = 'November';
$lang['cal_december'] = 'December';

View file

@ -1,94 +0,0 @@
<?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'] = 'Uge';
$lang['date_weeks'] = 'Uger';
$lang['date_day'] = 'Dag';
$lang['date_days'] = 'Dage';
$lang['date_hour'] = 'Time';
$lang['date_hours'] = 'Tiner';
$lang['date_minute'] = 'Minut';
$lang['date_minutes'] = 'Minutrs';
$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

@ -1,35 +0,0 @@
<?php
/**
* System messages translation for CodeIgniter(tm)
*
* @author CodeIgniter community
* @copyright Copyright (c) 2014-2018, British Columbia Institute of Technology (http://bcit.ca/)
* @license http://opensource.org/licenses/MIT MIT License
* @link https://codeigniter.com
*/
defined('BASEPATH') or exit('No direct script access allowed');
$lang['db_invalid_connection_str'] = 'Kan ikke fastsætte database indstillingerne baseret på forbindelsen strengen du angav.';
$lang['db_unable_to_connect'] = 'Kan ikke forbinde til din database server udfra de angivne indstillinger.';
$lang['db_unable_to_select'] = 'Kan ikke vælge den angivne database: %s';
$lang['db_unable_to_create'] = 'Kunne ikke oprette den angivne database: %s';
$lang['db_invalid_query'] = 'Forespørgslen du sendte er ikke gyldig.';
$lang['db_must_set_table'] = 'Du skal angive databasetabellen, der skal bruges i din forespørgsel.';
$lang['db_must_use_set'] = 'Du skal anvende "set" metoden for at opdatere en post.';
$lang['db_must_use_index'] = 'Du skal angive et indeks til at matche på for batch opdateringer.';
$lang['db_batch_missing_index'] = 'En eller flere rækker indsendt til batch opdatering mangler det angivne indeks.';
$lang['db_must_use_where'] = 'Opdateringer er ikke tilladt, medmindre de indeholder en "where" klausul.';
$lang['db_del_must_use_where'] = 'Sletning er ikke tilladt, medmindre de indeholder en "where" eller "like" klausul.';
$lang['db_field_param_missing'] = 'For at hente felter kræves navnet på tabellen som en parameter.';
$lang['db_unsupported_function'] = 'Denne funktion er ikke tilgængelig for den database du anvender.';
$lang['db_transaction_failure'] = 'Transaktion fejl: Tilbagerulning udføres';
$lang['db_unable_to_drop'] = 'Kan ikke slette den angivne database.';
$lang['db_unsupported_feature'] = 'Ikke-understøttet funktion på databaseplatformen du anvender.';
$lang['db_unsupported_compression'] = 'Filkompression formattet du har valgt er ikke understøttet af din server.';
$lang['db_filepath_error'] = 'Kan ikke skrive data til filen stien du har angivet.';
$lang['db_invalid_cache_path'] = 'Cache stien du angivet er ikke gyldig eller skrivbar.';
$lang['db_table_name_required'] = 'Et tabelnavn er nødvendig for denne operation.';
$lang['db_column_name_required'] = 'Et kolonnenavn er nødvendig for denne operation.';
$lang['db_column_definition_required'] = 'Der kræves en kolonnedefinition for denne operation.';
$lang['db_unable_to_set_charset'] = 'Kan ikke sætte klientforbindelsens tegnsæt: %s';
$lang['db_error_heading'] = 'Der opstod en Databasefejl';

View file

@ -1,30 +0,0 @@
<?php
/**
* System messages translation for CodeIgniter(tm)
*
* @author CodeIgniter community
* @copyright Copyright (c) 2014-2018, British Columbia Institute of Technology (http://bcit.ca/)
* @license http://opensource.org/licenses/MIT MIT License
* @link https://codeigniter.com
*/
defined('BASEPATH') or exit('No direct script access allowed');
$lang['email_must_be_array'] = 'Email valideringsmetoden kræver at modtage et array.';
$lang['email_invalid_address'] = 'Ugyldig email adresse: %s';
$lang['email_attachment_missing'] = 'Fandt ikke følgende email vedhæftning: %s';
$lang['email_attachment_unreadable'] = 'Kan ikke åbne denne vedhæftning: %s';
$lang['email_no_from'] = 'Kan ikke sende mail uden "From"-header.';
$lang['email_no_recipients'] = 'Du skal angive for modtager: To, Cc, or Bcc';
$lang['email_send_failure_phpmail'] = 'Kan ikke sende email med PHP mail(). Din server er måske ikke konfigureret til at sende mail med denne metode.';
$lang['email_send_failure_sendmail'] = 'Kan ikke sende email med PHP Sendmail. Din server er måske ikke konfigureret til at sende mail med denne metode.';
$lang['email_send_failure_smtp'] = 'Kan ikke sende email med PHP SMTP. Din server er måske ikke konfigureret til at sende mail med denne metode.';
$lang['email_sent'] = 'Din meddelelse blev sendt med denne protokol: %s';
$lang['email_no_socket'] = 'Kan ikke åbne kontakt til Sendmail. Prøv at checke dine indstillinger.';
$lang['email_no_hostname'] = 'Du mangler at angive et SMTP værtsnavn.';
$lang['email_smtp_error'] = 'Følgende SMTP-fejl opstod: %s';
$lang['email_no_smtp_unpw'] = 'Fejl: Du skal angive et SMTP brugernavn og password.';
$lang['email_failed_smtp_login'] = 'Fejl ved afsendelse af AUTH LOGIN kommando. Fejl: %s';
$lang['email_smtp_auth_un'] = 'Fejl ved autentificering af brugernavn. Fejl: %s';
$lang['email_smtp_auth_pw'] = 'Fejl ved autentificering af password. Fejl: %s';
$lang['email_smtp_data_failure'] = 'Kunne ikke sende dataene: %s';
$lang['email_exit_status'] = 'Afslutende statuskode: %s';

View file

@ -1,69 +0,0 @@
<?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}.';

Some files were not shown because too many files have changed in this diff Show more