diff --git a/application/controllers/Account.php b/application/controllers/Account.php index 806e3d69d6..21204a823b 100644 --- a/application/controllers/Account.php +++ b/application/controllers/Account.php @@ -101,7 +101,7 @@ public function save(): void { try { if (cannot('edit', PRIV_USER_SETTINGS)) { - throw new RuntimeException('You do not have the required permissions for this task.'); + throw new RuntimeException(lang('no_permissions')); } $account = request('account'); diff --git a/application/controllers/Api_settings.php b/application/controllers/Api_settings.php index d46d917749..73e3e17aa1 100644 --- a/application/controllers/Api_settings.php +++ b/application/controllers/Api_settings.php @@ -75,7 +75,7 @@ public function save(): void { try { if (cannot('edit', PRIV_SYSTEM_SETTINGS)) { - throw new RuntimeException('You do not have the required permissions for this task.'); + throw new RuntimeException(lang('no_permissions')); } $settings = request('api_settings', []); diff --git a/application/controllers/Booking_settings.php b/application/controllers/Booking_settings.php index df5df30e50..09f41c4733 100644 --- a/application/controllers/Booking_settings.php +++ b/application/controllers/Booking_settings.php @@ -86,7 +86,7 @@ public function save(): void { try { if (cannot('edit', PRIV_SYSTEM_SETTINGS)) { - throw new RuntimeException('You do not have the required permissions for this task.'); + throw new RuntimeException(lang('no_permissions')); } $settings = request('booking_settings', []); diff --git a/application/controllers/Business_settings.php b/application/controllers/Business_settings.php index cef2806b78..caf3691f23 100644 --- a/application/controllers/Business_settings.php +++ b/application/controllers/Business_settings.php @@ -86,7 +86,7 @@ public function save(): void { try { if (cannot('edit', PRIV_SYSTEM_SETTINGS)) { - throw new RuntimeException('You do not have the required permissions for this task.'); + throw new RuntimeException(lang('no_permissions')); } $settings = request('business_settings', []); @@ -120,7 +120,7 @@ public function apply_global_working_plan() { try { if (cannot('edit', PRIV_SYSTEM_SETTINGS)) { - throw new RuntimeException('You do not have the required permissions for this task.'); + throw new RuntimeException(lang('no_permissions')); } $working_plan = request('working_plan'); diff --git a/application/controllers/Caldav.php b/application/controllers/Caldav.php index a0b21db2e6..7e6849f1bf 100644 --- a/application/controllers/Caldav.php +++ b/application/controllers/Caldav.php @@ -47,7 +47,7 @@ public function connect_to_server(): void $user_id = session('user_id'); if (cannot('edit', PRIV_USERS) && (int) $user_id !== (int) $provider_id) { - throw new RuntimeException('You do not have the required permissions for this task.'); + throw new RuntimeException(lang('no_permissions')); } $caldav_url = request('caldav_url'); @@ -292,7 +292,7 @@ public function get_caldav_calendars(): void $user_id = session('user_id'); if (cannot('edit', PRIV_USERS) && (int) $user_id !== (int) $provider_id) { - throw new RuntimeException('You do not have the required permissions for this task.'); + throw new RuntimeException(lang('no_permissions')); } $calendars = $this->caldav_sync->get_caldav_calendars($provider_id); @@ -318,7 +318,7 @@ public function select_caldav_calendar(): void $user_id = session('user_id'); if (cannot('edit', PRIV_USERS) && (int) $user_id !== (int) $provider_id) { - throw new RuntimeException('You do not have the required permissions for this task.'); + throw new RuntimeException(lang('no_permissions')); } $calendar_id = request('calendar_id'); @@ -352,7 +352,7 @@ public function disable_provider_sync(): void $user_id = session('user_id'); if (cannot('edit', PRIV_USERS) && (int) $user_id !== (int) $provider_id) { - throw new RuntimeException('You do not have the required permissions for this task.'); + throw new RuntimeException(lang('no_permissions')); } $provider = $this->providers_model->find($provider_id); diff --git a/application/controllers/Calendar.php b/application/controllers/Calendar.php index 246be6cecc..5750b5a2c5 100644 --- a/application/controllers/Calendar.php +++ b/application/controllers/Calendar.php @@ -230,7 +230,7 @@ public function save_appointment(): void : can('edit', PRIV_CUSTOMERS); if (!$required_permissions) { - throw new RuntimeException('You do not have the required permissions for this task.'); + throw new RuntimeException(lang('no_permissions')); } $this->customers_model->only($customer, $this->allowed_customer_fields); @@ -249,7 +249,7 @@ public function save_appointment(): void : can('edit', PRIV_APPOINTMENTS); if (!$required_permissions) { - throw new RuntimeException('You do not have the required permissions for this task.'); + throw new RuntimeException(lang('no_permissions')); } // If the appointment does not contain the customer record id, then it means that is going to be inserted. @@ -268,7 +268,7 @@ public function save_appointment(): void } if (empty($appointment['id'])) { - throw new RuntimeException('The appointment ID is not available.'); + throw new RuntimeException(lang('id_not_available')); } $appointment = $this->appointments_model->find($appointment['id']); @@ -333,7 +333,7 @@ public function delete_appointment(): void { try { if (cannot('delete', 'appointments')) { - throw new RuntimeException('You do not have the required permissions for this task.'); + throw new RuntimeException(lang('no_permissions')); } $appointment_id = request('appointment_id'); @@ -398,7 +398,7 @@ public function save_unavailability(): void : can('edit', PRIV_APPOINTMENTS); if (!$required_permissions) { - throw new RuntimeException('You do not have the required permissions for this task.'); + throw new RuntimeException(lang('no_permissions')); } $provider_id = (int) $unavailability['id_users_provider']; @@ -431,7 +431,7 @@ public function delete_unavailability(): void { try { if (cannot('delete', PRIV_APPOINTMENTS)) { - throw new RuntimeException('You do not have the required permissions for this task.'); + throw new RuntimeException(lang('no_permissions')); } $unavailability_id = request('unavailability_id'); @@ -463,7 +463,7 @@ public function save_working_plan_exception(): void { try { if (cannot('edit', PRIV_USERS)) { - throw new RuntimeException('You do not have the required permissions for this task.'); + throw new RuntimeException(lang('no_permissions')); } $date = request('date'); @@ -495,7 +495,7 @@ public function delete_working_plan_exception(): void $required_permissions = can('edit', PRIV_CUSTOMERS); if (!$required_permissions) { - throw new RuntimeException('You do not have the required permissions for this task.'); + throw new RuntimeException(lang('no_permissions')); } $date = request('date'); @@ -523,7 +523,7 @@ public function get_calendar_appointments_for_table_view(): void $required_permissions = can('view', PRIV_APPOINTMENTS); if (!$required_permissions) { - throw new RuntimeException('You do not have the required permissions for this task.'); + throw new RuntimeException(lang('no_permissions')); } $start_date = request('start_date') . ' 00:00:00'; @@ -620,7 +620,7 @@ public function get_calendar_appointments(): void { try { if (cannot('view', PRIV_APPOINTMENTS)) { - throw new RuntimeException('You do not have the required permissions for this task.'); + throw new RuntimeException(lang('no_permissions')); } $record_id = request('record_id'); diff --git a/application/controllers/General_settings.php b/application/controllers/General_settings.php index 08c1f43648..0eb80356e3 100644 --- a/application/controllers/General_settings.php +++ b/application/controllers/General_settings.php @@ -85,7 +85,7 @@ public function save(): void { try { if (cannot('edit', PRIV_SYSTEM_SETTINGS)) { - throw new RuntimeException('You do not have the required permissions for this task.'); + throw new RuntimeException(lang('no_permissions')); } $settings = request('general_settings', []); diff --git a/application/controllers/Google.php b/application/controllers/Google.php index 32f609af34..08e4c58582 100644 --- a/application/controllers/Google.php +++ b/application/controllers/Google.php @@ -383,7 +383,7 @@ public function select_google_calendar(): void $user_id = session('user_id'); if (cannot('edit', PRIV_USERS) && (int) $user_id !== (int) $provider_id) { - throw new RuntimeException('You do not have the required permissions for this task.'); + throw new RuntimeException(lang('no_permissions')); } $calendar_id = request('calendar_id'); @@ -417,7 +417,7 @@ public function disable_provider_sync(): void $user_id = session('user_id'); if (cannot('edit', PRIV_USERS) && (int) $user_id !== (int) $provider_id) { - throw new RuntimeException('You do not have the required permissions for this task.'); + throw new RuntimeException(lang('no_permissions')); } $this->providers_model->set_setting($provider_id, 'google_sync', false); diff --git a/application/controllers/Google_analytics_settings.php b/application/controllers/Google_analytics_settings.php index ec48ce7215..1ffeec0ca9 100644 --- a/application/controllers/Google_analytics_settings.php +++ b/application/controllers/Google_analytics_settings.php @@ -75,7 +75,7 @@ public function save(): void { try { if (cannot('edit', PRIV_SYSTEM_SETTINGS)) { - throw new RuntimeException('You do not have the required permissions for this task.'); + throw new RuntimeException(lang('no_permissions')); } $settings = request('google_analytics_settings', []); diff --git a/application/controllers/Ldap_settings.php b/application/controllers/Ldap_settings.php index 7598dcfcbb..8cde3d63a2 100644 --- a/application/controllers/Ldap_settings.php +++ b/application/controllers/Ldap_settings.php @@ -79,7 +79,7 @@ public function save(): void { try { if (cannot('edit', PRIV_SYSTEM_SETTINGS)) { - throw new RuntimeException('You do not have the required permissions for this task.'); + throw new RuntimeException(lang('no_permissions')); } $settings = request('ldap_settings', []); @@ -113,11 +113,11 @@ public function search(): void { try { if (cannot('edit', PRIV_SYSTEM_SETTINGS)) { - throw new RuntimeException('You do not have the required permissions for this task.'); + throw new RuntimeException(lang('no_permissions')); } if (!extension_loaded('ldap')) { - throw new RuntimeException('The LDAP extension is not loaded.'); + throw new RuntimeException(lang('ldap_not_loaded.')); } $keyword = request('keyword'); diff --git a/application/controllers/Legal_settings.php b/application/controllers/Legal_settings.php index aa16cda02f..5ff8e2c1de 100644 --- a/application/controllers/Legal_settings.php +++ b/application/controllers/Legal_settings.php @@ -75,7 +75,7 @@ public function save(): void { try { if (cannot('edit', PRIV_SYSTEM_SETTINGS)) { - throw new RuntimeException('You do not have the required permissions for this task.'); + throw new RuntimeException(lang('no_permissions')); } $settings = request('legal_settings', []); diff --git a/application/controllers/Login.php b/application/controllers/Login.php index 5151d3df4f..fd617c8231 100644 --- a/application/controllers/Login.php +++ b/application/controllers/Login.php @@ -81,7 +81,7 @@ public function validate(): void } if (empty($user_data)) { - throw new InvalidArgumentException('Invalid credentials provided, please try again.'); + throw new InvalidArgumentException(lang('invalid_credentials_provided'); } $this->session->sess_regenerate(); diff --git a/application/controllers/Matomo_analytics_settings.php b/application/controllers/Matomo_analytics_settings.php index b643db6098..381467a283 100644 --- a/application/controllers/Matomo_analytics_settings.php +++ b/application/controllers/Matomo_analytics_settings.php @@ -75,7 +75,7 @@ public function save(): void { try { if (cannot('edit', PRIV_SYSTEM_SETTINGS)) { - throw new RuntimeException('You do not have the required permissions for this task.'); + throw new RuntimeException(lang('no_permissions')); } $settings = request('matomo_analytics_settings', []); diff --git a/application/core/EA_Input.php b/application/core/EA_Input.php index da7a52d7d5..6288049ac2 100644 --- a/application/core/EA_Input.php +++ b/application/core/EA_Input.php @@ -63,7 +63,7 @@ public function json(string $index = null, bool $xss_clean = false) $input_stream = $CI->input->raw_input_stream; if (empty($input_stream)) { - throw new RuntimeException('Cannot get JSON attribute from an empty input stream.'); + throw new RuntimeException(lang('no_json_from_empty_stream')); } $payload = json_decode($input_stream, true); diff --git a/application/core/EA_Model.php b/application/core/EA_Model.php index 52be38f290..d3bff6c046 100644 --- a/application/core/EA_Model.php +++ b/application/core/EA_Model.php @@ -72,7 +72,7 @@ public function get_value(string $field, int $record_id): string return $this->value($field, $record_id); } - throw new RuntimeException('The "get_value" is not defined in model: ', __CLASS__); + throw new RuntimeException(lang('get_value_not_defined'), __CLASS__); } /** @@ -92,7 +92,7 @@ public function get_row(int $record_id): array return $this->find($record_id); } - throw new RuntimeException('The "get_row" is not defined in model: ', __CLASS__); + throw new RuntimeException(lang('get_row_not_defined'), __CLASS__); } /** @@ -157,7 +157,7 @@ public function cast(array &$record) break; default: - throw new RuntimeException('Unsupported cast type provided: ' . $cast); + throw new RuntimeException(lang('unsupported_cast_type') . $cast); } } } diff --git a/application/helpers/date_helper.php b/application/helpers/date_helper.php index bef0edea54..ac471dd804 100644 --- a/application/helpers/date_helper.php +++ b/application/helpers/date_helper.php @@ -25,7 +25,7 @@ function get_date_format(): string 'DMY' => 'd/m/Y', 'MDY' => 'm/d/Y', 'YMD' => 'Y/m/d', - default => throw new RuntimeException('Invalid date format value: ' . $date_format), + default => throw new RuntimeException(lang('invalid_date_format') . $date_format), }; } } @@ -43,7 +43,7 @@ function get_time_format(): string return match ($time_format) { 'military' => 'H:i', 'regular' => 'g:i a', - default => throw new RuntimeException('Invalid time format value: ' . $time_format), + default => throw new RuntimeException(lang('invalid_time_format') . $time_format), }; } } diff --git a/application/language/arabic/translations_lang.php b/application/language/arabic/translations_lang.php index 2de84a0bc0..de97018d12 100755 --- a/application/language/arabic/translations_lang.php +++ b/application/language/arabic/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/bulgarian/translations_lang.php b/application/language/bulgarian/translations_lang.php index 44c483e89a..d419749dcd 100755 --- a/application/language/bulgarian/translations_lang.php +++ b/application/language/bulgarian/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/catalan/translations_lang.php b/application/language/catalan/translations_lang.php index 3a64e7cf76..70fd80a5f7 100644 --- a/application/language/catalan/translations_lang.php +++ b/application/language/catalan/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/chinese/translations_lang.php b/application/language/chinese/translations_lang.php index d5df678b90..2ed9349a1e 100755 --- a/application/language/chinese/translations_lang.php +++ b/application/language/chinese/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/croatian/translations_lang.php b/application/language/croatian/translations_lang.php index be09bb56e3..3060ea2d8f 100644 --- a/application/language/croatian/translations_lang.php +++ b/application/language/croatian/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/czech/translations_lang.php b/application/language/czech/translations_lang.php index 324f7fa86d..96038bbb91 100644 --- a/application/language/czech/translations_lang.php +++ b/application/language/czech/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/danish/translations_lang.php b/application/language/danish/translations_lang.php index 1b6587f664..190b5044fc 100755 --- a/application/language/danish/translations_lang.php +++ b/application/language/danish/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/dutch/translations_lang.php b/application/language/dutch/translations_lang.php index d935c65dd9..0045dcd8fa 100755 --- a/application/language/dutch/translations_lang.php +++ b/application/language/dutch/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/english/translations_lang.php b/application/language/english/translations_lang.php index c352fd61d7..9581ae63b4 100755 --- a/application/language/english/translations_lang.php +++ b/application/language/english/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/estonian/translations_lang.php b/application/language/estonian/translations_lang.php index 4d6f049db4..f2415b1390 100644 --- a/application/language/estonian/translations_lang.php +++ b/application/language/estonian/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/finnish/translations_lang.php b/application/language/finnish/translations_lang.php index 19cc84b7e4..8d93237e33 100755 --- a/application/language/finnish/translations_lang.php +++ b/application/language/finnish/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/french/translations_lang.php b/application/language/french/translations_lang.php index 842406799f..e0fe69ce93 100755 --- a/application/language/french/translations_lang.php +++ b/application/language/french/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/german/translations_lang.php b/application/language/german/translations_lang.php index 6d03f3529f..f97d122975 100755 --- a/application/language/german/translations_lang.php +++ b/application/language/german/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Rolle'; $lang['at_least_one_field_required'] = 'Mindestens ein Feld muss auf der Buchungsseite als erforderlich gekennzeichnet sein.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/greek/translations_lang.php b/application/language/greek/translations_lang.php index b7bc9499b9..cd0fc6192b 100755 --- a/application/language/greek/translations_lang.php +++ b/application/language/greek/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Ρόλος'; $lang['at_least_one_field_required'] = 'Τουλάχιστον ένα πεδίο πρέπει να έχει οριστεί ως υποχρεωτικό στη σελίδα κράτησης.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/hebrew/translations_lang.php b/application/language/hebrew/translations_lang.php index ebe4e26c94..9294c81f42 100644 --- a/application/language/hebrew/translations_lang.php +++ b/application/language/hebrew/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/hindi/translations_lang.php b/application/language/hindi/translations_lang.php index dbde921625..ae268eaefe 100755 --- a/application/language/hindi/translations_lang.php +++ b/application/language/hindi/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/hungarian/translations_lang.php b/application/language/hungarian/translations_lang.php index 4908365328..4615fb867d 100755 --- a/application/language/hungarian/translations_lang.php +++ b/application/language/hungarian/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/italian/translations_lang.php b/application/language/italian/translations_lang.php index 32fe423d04..b780d7feb7 100755 --- a/application/language/italian/translations_lang.php +++ b/application/language/italian/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/japanese/translations_lang.php b/application/language/japanese/translations_lang.php index dc334dfab6..28d2ef184d 100755 --- a/application/language/japanese/translations_lang.php +++ b/application/language/japanese/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/luxembourgish/translations_lang.php b/application/language/luxembourgish/translations_lang.php index e7753ef477..ebbfc4d06e 100755 --- a/application/language/luxembourgish/translations_lang.php +++ b/application/language/luxembourgish/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/marathi/translations_lang.php b/application/language/marathi/translations_lang.php index dccef02b91..2e747dec64 100644 --- a/application/language/marathi/translations_lang.php +++ b/application/language/marathi/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/persian/translations_lang.php b/application/language/persian/translations_lang.php index 1479b765bf..19afdf3da8 100644 --- a/application/language/persian/translations_lang.php +++ b/application/language/persian/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/polish/translations_lang.php b/application/language/polish/translations_lang.php index bee4d84389..2110ed88db 100755 --- a/application/language/polish/translations_lang.php +++ b/application/language/polish/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/portuguese-br/translations_lang.php b/application/language/portuguese-br/translations_lang.php index 0ba262b6d5..7acfaa187b 100755 --- a/application/language/portuguese-br/translations_lang.php +++ b/application/language/portuguese-br/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/portuguese/translations_lang.php b/application/language/portuguese/translations_lang.php index 6479e3dd51..cf7ab6755b 100755 --- a/application/language/portuguese/translations_lang.php +++ b/application/language/portuguese/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/romanian/translations_lang.php b/application/language/romanian/translations_lang.php index 01c085221e..c50d3059c0 100755 --- a/application/language/romanian/translations_lang.php +++ b/application/language/romanian/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/russian/translations_lang.php b/application/language/russian/translations_lang.php index dc40c9bd2b..1f80c9dd8d 100644 --- a/application/language/russian/translations_lang.php +++ b/application/language/russian/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/serbian/translations_lang.php b/application/language/serbian/translations_lang.php index 9464daa18e..698b46b399 100644 --- a/application/language/serbian/translations_lang.php +++ b/application/language/serbian/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/slovak/translations_lang.php b/application/language/slovak/translations_lang.php index c6feb1ca5b..67f5910943 100755 --- a/application/language/slovak/translations_lang.php +++ b/application/language/slovak/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/spanish/translations_lang.php b/application/language/spanish/translations_lang.php index 4543615853..9517254084 100755 --- a/application/language/spanish/translations_lang.php +++ b/application/language/spanish/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/swedish/translations_lang.php b/application/language/swedish/translations_lang.php index cc9fffd910..0934c1fe11 100644 --- a/application/language/swedish/translations_lang.php +++ b/application/language/swedish/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/thai/translations_lang.php b/application/language/thai/translations_lang.php index 53740ecd13..7bb34911f4 100644 --- a/application/language/thai/translations_lang.php +++ b/application/language/thai/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/language/turkish/translations_lang.php b/application/language/turkish/translations_lang.php index fe19cb5e72..a977626e47 100755 --- a/application/language/turkish/translations_lang.php +++ b/application/language/turkish/translations_lang.php @@ -479,4 +479,69 @@ $lang['role'] = 'Role'; $lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.'; $lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.'; +$lang['fields'] = 'Fields'; +$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.'; +$lang['no_permissions'] = 'You do not have the required permissions for this task.'; +$lang['id_not_available'] = 'The appointment ID is not available.'; +$lang['ldap_not_loaded'] = 'The LDAP extension is not loaded.'; +$lang['no_google_token_for_provider'] = 'No google token available for the provider: '; +$lang['no_json_from_empty_stream'] = 'Cannot get JSON attribute from an empty input stream.'; +$lang['get_value_not_defined'] = 'The "get_value" is not defined in model: '; +$lang['get_row_not_defined'] = 'The "get_row" is not defined in model: '; +$lang['unsupported_cast_type'] = 'Unsupported cast type provided: '; +$lang['invalid_date_format'] = 'Invalid date format value: '; +$lang['invalid_time_format'] = 'Invalid time format value: '; +$lang['username_not_in_db'] = 'The username was not found in the database: '; +$lang['provider_has_not_enabled_caldav_sync'] = 'The selected provider does not have the CalDAV sync enabled: '; +$lang['email_not_sent'] = 'Email was not sent: '; +$lang['backup_path_not_writable'] = 'The backup path is not writable: '; +$lang['unsupported_pw_hash_format'] = 'Unsupported password hash format'; +$lang['admin_role_not_in_db'] = 'The admin role was not found in the database.'; +$lang['admin_not_inserted'] = 'Could not insert admin.'; +$lang['admin_setting_not_set'] = 'Could not set the new admin setting value: '; +$lang['admin_setting_record_not_found'] = 'No settings record found for admin with ID: '; +$lang['admin_not_updated'] = 'Could not update admin.'; +$lang['admin_record_not_deleted'] = 'Record could not be deleted as the app requires at least one admin user.'; +$lang['appointment_not_inserted'] = 'Could not insert appointment.'; +$lang['appointment_record_not_updated'] = 'Could not update appointment record.'; +$lang['blocked_period_not_inserted'] = 'Could not insert blocked-period.'; +$lang['blocked_periods_not_updated'] = 'Could not insert blocked-periods.'; +$lang['consent_not_inserted'] = 'Could not insert consent.'; +$lang['consent_not_updated'] = 'Could not update consent.'; +$lang['customer_role_not_in_db'] = 'The customer role was not found in the database.'; +$lang['customer_not_inserted'] = 'Could not insert customer.'; +$lang['customer_not_updated'] = 'Could not update customer.'; +$lang['provider_role_not_in_db'] = 'The provider role was not found in the database.'; +$lang['provider_not_inserted'] = 'Could not insert provider.'; +$lang['provider_setting_not_set'] = 'Could not set the new provider setting value: '; +$lang['provider_setting_record_not_found'] = 'No settings record found for provider with ID: '; +$lang['provider_not_updated'] = 'Could not update provider.'; +$lang['role_not_inserted'] = 'Could not insert role.'; +$lang['role_not_updated'] = 'Could not update role.'; +$lang['secretary_role_not_in_db'] = 'The secretary role was not found in the database.'; +$lang['secretary_not_inserted'] = 'Could not insert secretary.'; +$lang['secretary_setting_not_set'] = 'Could not set the new secretary setting value: '; +$lang['secretary_setting_record_not_found'] = 'No settings record found for secretary with ID: '; +$lang['secretary_not_updated'] = 'Could not update secretary.'; +$lang['category_not_inserted'] = 'Could not insert service-category.'; +$lang['categories_not_updated'] = 'Could not update service categories.'; +$lang['service_not_inserted'] = 'Could not insert service.'; +$lang['service_not_updated'] = 'Could not update service.'; +$lang['setting_not_inserted'] = 'Could not insert setting.'; +$lang['setting_not_updated'] = 'Could not update setting.'; +$lang['unavailability_not_inserted'] = 'Could not insert unavailability.'; +$lang['unavailability_record_not_updated'] = 'Could not update unavailability record.'; +$lang['user_not_inserted'] = 'Could not insert user.'; +$lang['user_setting_not_set'] = 'Could not set the new user setting value: '; +$lang['user_setting_record_not_found'] = 'No settings record found for user with ID: '; +$lang['user_not_updated'] = 'Could not update user.'; +$lang['webhook_not_inserted'] = 'Could not insert webhook.'; +$lang['webhook_not_updated'] = 'Could not update webhook.'; +$lang['model_name_is_being_used'] = 'The model name you are loading is the name of a resource that is already being used: '; +$lang['unable_to_locate_model'] = 'Unable to locate the model you have specified: '; +$lang['class'] = 'Class '; +$lang['does_not_extent_ci_model'] = ' doesn\'t extend CI_Model.'; +$lang['unable_to_connect_db'] = 'Unable to connect to the database.'; +$lang['set_rules_called_with_empty_parameter'] = 'Form_validation: set_rules() called with an empty $rules parameter'; +$lang['setting_value_not_found'] = 'The requested setting value was not found: '; // End diff --git a/application/libraries/Accounts.php b/application/libraries/Accounts.php index acd8c157aa..35b191350b 100644 --- a/application/libraries/Accounts.php +++ b/application/libraries/Accounts.php @@ -129,7 +129,7 @@ public function regenerate_password(string $username, string $email): string ->get(); if (!$query->num_rows()) { - throw new RuntimeException('The username was not found in the database: ' . $username); + throw new RuntimeException(lang('username_not_in_db') . $username); } $user = $query->row_array(); diff --git a/application/libraries/Caldav_sync.php b/application/libraries/Caldav_sync.php index fb87566cab..87672d80ed 100644 --- a/application/libraries/Caldav_sync.php +++ b/application/libraries/Caldav_sync.php @@ -402,7 +402,7 @@ private function get_http_client_by_provider_id(int $provider_id): Client $provider = $this->CI->providers_model->find($provider_id); if (!$provider['settings']['caldav_sync']) { - throw new RuntimeException('The selected provider does not have the CalDAV sync enabled: ' . $provider_id); + throw new RuntimeException(lang('provider_has_not_enabled_caldav_sync') . $provider_id); } $caldav_url = $provider['settings']['caldav_url']; diff --git a/application/libraries/Email_messages.php b/application/libraries/Email_messages.php index 6a005ee156..710d82be16 100644 --- a/application/libraries/Email_messages.php +++ b/application/libraries/Email_messages.php @@ -125,7 +125,7 @@ public function send_appointment_saved( $this->CI->email->attach($ics_stream, 'attachment', 'invitation.ics', 'text/vcalendar'); if (!$this->CI->email->send(false)) { - throw new RuntimeException('Email was not sent: ' . $this->CI->email->print_debugger()); + throw new RuntimeException(lang('email_not_sent') . $this->CI->email->print_debugger()); } } @@ -200,7 +200,7 @@ public function send_appointment_deleted( $this->CI->email->message($html); if (!$this->CI->email->send(false)) { - throw new RuntimeException('Email was not sent: ' . $this->CI->email->print_debugger()); + throw new RuntimeException(lang('email_not_sent') . $this->CI->email->print_debugger()); } } @@ -240,7 +240,7 @@ public function send_password(string $password, string $recipient_email, array $ $this->CI->email->message($html); if (!$this->CI->email->send(false)) { - throw new RuntimeException('Email was not sent: ' . $this->CI->email->print_debugger()); + throw new RuntimeException(lang('email_not_sent') . $this->CI->email->print_debugger()); } } } diff --git a/application/libraries/Instance.php b/application/libraries/Instance.php index 937939b3dc..d7566b6026 100644 --- a/application/libraries/Instance.php +++ b/application/libraries/Instance.php @@ -171,7 +171,7 @@ public function backup(string $path = null): void } if (!is_writable($path)) { - throw new RuntimeException('The backup path is not writable: ' . $path); + throw new RuntimeException(lang('backup_path_not_writable') . $path); } $contents = $this->CI->dbutil->backup(); diff --git a/application/libraries/Ldap_client.php b/application/libraries/Ldap_client.php index 56684509e4..4fe8fb9b92 100644 --- a/application/libraries/Ldap_client.php +++ b/application/libraries/Ldap_client.php @@ -60,7 +60,7 @@ public function validate_password(string $password, string $hashed_password): bo $salt = substr(base64_decode(substr($hashed_password, 6)), 20); $encrypted_password = '{SSHA}' . base64_encode(sha1($password . $salt, true) . $salt); } else { - throw new RuntimeException('Unsupported password hash format'); + throw new RuntimeException(lang('unsupported_pw_hash_format')); } return $hashed_password === $encrypted_password; @@ -242,7 +242,7 @@ public function search(string $keyword): array private function check_environment(): void { if (!extension_loaded('ldap')) { - throw new RuntimeException('The LDAP extension is not loaded.'); + throw new RuntimeException(lang('ldap_not_loaded.')) } } } diff --git a/application/libraries/Synchronization.php b/application/libraries/Synchronization.php index aed977c57c..969f519abf 100644 --- a/application/libraries/Synchronization.php +++ b/application/libraries/Synchronization.php @@ -60,7 +60,7 @@ public function sync_appointment_saved( if ($provider['settings']['google_sync']) { if (empty($provider['settings']['google_token'])) { - throw new RuntimeException('No google token available for the provider: ' . $provider['id']); + throw new RuntimeException(lang('no_google_token_for_provider') . $provider['id']); } $google_token = json_decode($provider['settings']['google_token'], true); @@ -122,7 +122,7 @@ public function sync_appointment_deleted(array $appointment, array $provider): v if ($provider['settings']['google_sync'] && !empty($appointment['id_google_calendar'])) { if (empty($provider['settings']['google_token'])) { - throw new RuntimeException('No google token available for the provider: ' . $provider['id']); + throw new RuntimeException(lang('no_google_token_for_provider') . $provider['id']); } $google_token = json_decode($provider['settings']['google_token'], true); @@ -162,7 +162,7 @@ public function sync_unavailability_saved(array $unavailability, array $provider if ($provider['settings']['google_sync']) { if (empty($provider['settings']['google_token'])) { - throw new RuntimeException('No google token available for the provider: ' . $provider['id']); + throw new RuntimeException(lang('no_google_token_for_provider') . $provider['id']); } $google_token = json_decode($provider['settings']['google_token'], true); @@ -215,7 +215,7 @@ public function sync_unavailability_deleted(array $unavailability, array $provid if ($provider['settings']['google_sync'] && !empty($unavailability['id_google_calendar'])) { if (empty($provider['settings']['google_token'])) { - throw new RuntimeException('No google token available for the provider: ' . $provider['id']); + throw new RuntimeException(lang('no_google_token_for_provider') . $provider['id']); } $google_token = json_decode($provider['settings']['google_token'], true); diff --git a/application/models/Admins_model.php b/application/models/Admins_model.php index 17fe2ba2af..5ef05c0d02 100644 --- a/application/models/Admins_model.php +++ b/application/models/Admins_model.php @@ -228,7 +228,7 @@ public function get_admin_role_id(): int $role = $this->db->get_where('roles', ['slug' => DB_SLUG_ADMIN])->row_array(); if (empty($role)) { - throw new RuntimeException('The admin role was not found in the database.'); + throw new RuntimeException(lang('admin_role_not_in_db')); } return $role['id']; @@ -255,7 +255,7 @@ protected function insert(array $admin): int $admin['update_datetime'] = date('Y-m-d H:i:s'); if (!$this->db->insert('users', $admin)) { - throw new RuntimeException('Could not insert admin.'); + throw new RuntimeException(lang('admin_not_inserted')); } $admin['id'] = $this->db->insert_id(); @@ -319,7 +319,7 @@ public function get_settings(int $admin_id): array public function set_setting(int $admin_id, string $name, mixed $value = null): void { if (!$this->db->update('user_settings', [$name => $value], ['id_users' => $admin_id])) { - throw new RuntimeException('Could not set the new admin setting value: ' . $name); + throw new RuntimeException(lang('admin_setting_not_set') . $name); } } @@ -345,7 +345,7 @@ protected function update(array $admin): int $existing_settings = $this->db->get_where('user_settings', ['id_users' => $admin['id']])->row_array(); if (empty($existing_settings)) { - throw new RuntimeException('No settings record found for admin with ID: ' . $admin['id']); + throw new RuntimeException(lang('admin_setting_record_not_found') . $admin['id']); } if (empty($existing_settings['salt'])) { @@ -358,7 +358,7 @@ protected function update(array $admin): int $admin['update_datetime'] = date('Y-m-d H:i:s'); if (!$this->db->update('users', $admin, ['id' => $admin['id']])) { - throw new RuntimeException('Could not update admin.'); + throw new RuntimeException(lang('admin_not_updated')); } $this->set_settings($admin['id'], $settings); @@ -380,7 +380,7 @@ public function delete(int $admin_id): void $count = $this->db->get_where('users', ['id_roles' => $role_id])->num_rows(); if ($count <= 1) { - throw new RuntimeException('Record could not be deleted as the app requires at least one admin user.'); + throw new RuntimeException(lang('admin_record_not_deleted')); } $this->db->delete('users', ['id' => $admin_id]); @@ -461,7 +461,7 @@ public function get_setting(int $admin_id, string $name): string $settings = $this->db->get_where('user_settings', ['id_users' => $admin_id])->row_array(); if (!array_key_exists($name, $settings)) { - throw new RuntimeException('The requested setting value was not found: ' . $admin_id); + throw new RuntimeException(lang('admin_setting_value_not_found') . $admin_id); } return $settings[$name]; diff --git a/application/models/Appointments_model.php b/application/models/Appointments_model.php index 6c4644c14e..933d463340 100644 --- a/application/models/Appointments_model.php +++ b/application/models/Appointments_model.php @@ -216,7 +216,7 @@ protected function insert(array $appointment): int $appointment['hash'] = random_string('alnum', 12); if (!$this->db->insert('appointments', $appointment)) { - throw new RuntimeException('Could not insert appointment.'); + throw new RuntimeException(lang('appointment_not_inserted')); } return $this->db->insert_id(); @@ -236,7 +236,7 @@ protected function update(array $appointment): int $appointment['update_datetime'] = date('Y-m-d H:i:s'); if (!$this->db->update('appointments', $appointment, ['id' => $appointment['id']])) { - throw new RuntimeException('Could not update appointment record.'); + throw new RuntimeException(lang('appointment_record_not_updated')); } return $appointment['id']; diff --git a/application/models/Blocked_periods_model.php b/application/models/Blocked_periods_model.php index 444a35a919..148626cd43 100644 --- a/application/models/Blocked_periods_model.php +++ b/application/models/Blocked_periods_model.php @@ -115,7 +115,7 @@ protected function insert(array $blocked_period): int $blocked_period['update_datetime'] = date('Y-m-d H:i:s'); if (!$this->db->insert('blocked_periods', $blocked_period)) { - throw new RuntimeException('Could not insert blocked-period.'); + throw new RuntimeException(lang('blocked_period_not_inserted')); } return $this->db->insert_id(); @@ -135,7 +135,7 @@ protected function update(array $blocked_period): int $blocked_period['update_datetime'] = date('Y-m-d H:i:s'); if (!$this->db->update('blocked_periods', $blocked_period, ['id' => $blocked_period['id']])) { - throw new RuntimeException('Could not update blocked periods.'); + throw new RuntimeException(lang('blocked_periods_not_updated')); } return $blocked_period['id']; diff --git a/application/models/Consents_model.php b/application/models/Consents_model.php index c7b8fc91c2..7f8c88ff19 100644 --- a/application/models/Consents_model.php +++ b/application/models/Consents_model.php @@ -76,7 +76,7 @@ protected function insert(array $consent): int $consent['update_datetime'] = date('Y-m-d H:i:s'); if (!$this->db->insert('consents', $consent)) { - throw new RuntimeException('Could not insert consent.'); + throw new RuntimeException(lang('consent_not_inserted')); } return $this->db->insert_id(); @@ -96,7 +96,7 @@ protected function update(array $consent): int $consent['update_datetime'] = date('Y-m-d H:i:s'); if (!$this->db->update('consents', $consent, ['id' => $consent['id']])) { - throw new RuntimeException('Could not update consent.'); + throw new RuntimeException(lang('consent_not_updated')); } return $consent['id']; diff --git a/application/models/Customers_model.php b/application/models/Customers_model.php index d4d241ba2d..5386ac899a 100644 --- a/application/models/Customers_model.php +++ b/application/models/Customers_model.php @@ -189,7 +189,7 @@ public function get_customer_role_id(): int $role = $this->db->get_where('roles', ['slug' => DB_SLUG_CUSTOMER])->row_array(); if (empty($role)) { - throw new RuntimeException('The customer role was not found in the database.'); + throw new RuntimeException(lang('customer_role_not_in_db')); } return $role['id']; @@ -269,7 +269,7 @@ protected function insert(array $customer): int $customer['id_roles'] = $this->get_customer_role_id(); if (!$this->db->insert('users', $customer)) { - throw new RuntimeException('Could not insert customer.'); + throw new RuntimeException(lang('customer_not_inserted')); } return $this->db->insert_id(); @@ -289,7 +289,7 @@ protected function update(array $customer): int $customer['update_datetime'] = date('Y-m-d H:i:s'); if (!$this->db->update('users', $customer, ['id' => $customer['id']])) { - throw new RuntimeException('Could not update customer.'); + throw new RuntimeException(lang('customer_not_updated')); } return $customer['id']; diff --git a/application/models/Providers_model.php b/application/models/Providers_model.php index 4a9eb1b147..b471625037 100755 --- a/application/models/Providers_model.php +++ b/application/models/Providers_model.php @@ -243,7 +243,7 @@ public function get_provider_role_id(): int $role = $this->db->get_where('roles', ['slug' => DB_SLUG_PROVIDER])->row_array(); if (empty($role)) { - throw new RuntimeException('The provider role was not found in the database.'); + throw new RuntimeException(lang('provider_role_not_in_db')); } return $role['id']; @@ -271,7 +271,7 @@ protected function insert(array $provider): int unset($provider['services'], $provider['settings']); if (!$this->db->insert('users', $provider)) { - throw new RuntimeException('Could not insert provider.'); + throw new RuntimeException(lang('provider_not_inserted')); } $provider['id'] = $this->db->insert_id(); @@ -349,7 +349,7 @@ public function get_settings(int $provider_id): array public function set_setting(int $provider_id, string $name, mixed $value = null): void { if (!$this->db->update('user_settings', [$name => $value], ['id_users' => $provider_id])) { - throw new RuntimeException('Could not set the new provider setting value: ' . $name); + throw new RuntimeException(lang('provider_setting_not_set') . $name); } } @@ -376,7 +376,7 @@ protected function update(array $provider): int $existing_settings = $this->db->get_where('user_settings', ['id_users' => $provider['id']])->row_array(); if (empty($existing_settings)) { - throw new RuntimeException('No settings record found for provider with ID: ' . $provider['id']); + throw new RuntimeException(lang('provider_setting_record_not_found') . $provider['id']); } if (empty($existing_settings['salt'])) { @@ -387,7 +387,7 @@ protected function update(array $provider): int } if (!$this->db->update('users', $provider, ['id' => $provider['id']])) { - throw new RuntimeException('Could not update provider.'); + throw new RuntimeException(lang('provider_not_updated')); } $this->set_settings($provider['id'], $settings); @@ -503,7 +503,7 @@ public function get_setting(int $provider_id, string $name): string $settings = $this->db->get_where('user_settings', ['id_users' => $provider_id])->row_array(); if (!array_key_exists($name, $settings)) { - throw new RuntimeException('The requested setting value was not found: ' . $provider_id); + throw new RuntimeException(lang('provider_setting_value_not_found') . $provider_id); } return $settings[$name]; diff --git a/application/models/Roles_model.php b/application/models/Roles_model.php index 7f7fefd8c6..e1075c1912 100644 --- a/application/models/Roles_model.php +++ b/application/models/Roles_model.php @@ -95,7 +95,7 @@ protected function insert(array $role): int $role['update_datetime'] = date('Y-m-d H:i:s'); if (!$this->db->insert('roles', $role)) { - throw new RuntimeException('Could not insert role.'); + throw new RuntimeException(lang('role_not_inserted')); } return $this->db->insert_id(); @@ -115,7 +115,7 @@ protected function update(array $role): int $role['update_datetime'] = date('Y-m-d H:i:s'); if (!$this->db->update('roles', $role, ['id' => $role['id']])) { - throw new RuntimeException('Could not update role.'); + throw new RuntimeException(lang('role_not_updated')); } return $role['id']; diff --git a/application/models/Secretaries_model.php b/application/models/Secretaries_model.php index 349099ebea..f9e85f0179 100644 --- a/application/models/Secretaries_model.php +++ b/application/models/Secretaries_model.php @@ -241,7 +241,7 @@ public function get_secretary_role_id(): int $role = $this->db->get_where('roles', ['slug' => DB_SLUG_SECRETARY])->row_array(); if (empty($role)) { - throw new RuntimeException('The secretary role was not found in the database.'); + throw new RuntimeException(lang('secretary_role_not_in_db')); } return $role['id']; @@ -270,7 +270,7 @@ protected function insert(array $secretary): int unset($secretary['providers'], $secretary['settings']); if (!$this->db->insert('users', $secretary)) { - throw new RuntimeException('Could not insert secretary.'); + throw new RuntimeException(lang('secretary_not_inserted')); } $secretary['id'] = $this->db->insert_id(); @@ -335,7 +335,7 @@ public function get_settings(int $secretary_id): array public function set_setting(int $secretary_id, string $name, mixed $value = null): void { if (!$this->db->update('user_settings', [$name => $value], ['id_users' => $secretary_id])) { - throw new RuntimeException('Could not set the new secretary setting value: ' . $name); + throw new RuntimeException(lang('secretary_setting_not_set') . $name); } } @@ -362,7 +362,7 @@ protected function update(array $secretary): int $existing_settings = $this->db->get_where('user_settings', ['id_users' => $secretary['id']])->row_array(); if (empty($existing_settings)) { - throw new RuntimeException('No settings record found for secretary with ID: ' . $secretary['id']); + throw new RuntimeException(lang('secretary_setting_record_not_found') . $secretary['id']); } if (empty($existing_settings['salt'])) { @@ -373,7 +373,7 @@ protected function update(array $secretary): int } if (!$this->db->update('users', $secretary, ['id' => $secretary['id']])) { - throw new RuntimeException('Could not update secretary.'); + throw new RuntimeException(lang('secretary_not_updated')); } $this->set_settings($secretary['id'], $settings); @@ -487,7 +487,7 @@ public function get_setting(int $secretary_id, string $name): string $settings = $this->db->get_where('user_settings', ['id_users' => $secretary_id])->row_array(); if (!array_key_exists($name, $settings)) { - throw new RuntimeException('The requested setting value was not found: ' . $secretary_id); + throw new RuntimeException(lang('secretary_setting_value_not_found') . $secretary_id); } return $settings[$name]; diff --git a/application/models/Service_categories_model.php b/application/models/Service_categories_model.php index c0dda2e47a..94f2af2307 100644 --- a/application/models/Service_categories_model.php +++ b/application/models/Service_categories_model.php @@ -99,7 +99,7 @@ protected function insert(array $service_category): int $service_category['update_datetime'] = date('Y-m-d H:i:s'); if (!$this->db->insert('service_categories', $service_category)) { - throw new RuntimeException('Could not insert service-category.'); + throw new RuntimeException(lang('category_not_inserted')); } return $this->db->insert_id(); @@ -119,7 +119,7 @@ protected function update(array $service_category): int $service_category['update_datetime'] = date('Y-m-d H:i:s'); if (!$this->db->update('service_categories', $service_category, ['id' => $service_category['id']])) { - throw new RuntimeException('Could not update service categories.'); + throw new RuntimeException(lang('categories_not_updated')); } return $service_category['id']; diff --git a/application/models/Services_model.php b/application/models/Services_model.php index e8191cf136..6d5a202570 100644 --- a/application/models/Services_model.php +++ b/application/models/Services_model.php @@ -166,7 +166,7 @@ protected function insert(array $service): int $service['update_datetime'] = date('Y-m-d H:i:s'); if (!$this->db->insert('services', $service)) { - throw new RuntimeException('Could not insert service.'); + throw new RuntimeException(lang('service_not_inserted')); } return $this->db->insert_id(); @@ -186,7 +186,7 @@ protected function update(array $service): int $service['update_datetime'] = date('Y-m-d H:i:s'); if (!$this->db->update('services', $service, ['id' => $service['id']])) { - throw new RuntimeException('Could not update service.'); + throw new RuntimeException(lang('service_not_updated')); } return $service['id']; diff --git a/application/models/Settings_model.php b/application/models/Settings_model.php index 93dc8030ab..b937d6c46c 100644 --- a/application/models/Settings_model.php +++ b/application/models/Settings_model.php @@ -96,7 +96,7 @@ protected function insert(array $setting): int $setting['update_datetime'] = date('Y-m-d H:i:s'); if (!$this->db->insert('settings', $setting)) { - throw new RuntimeException('Could not insert setting.'); + throw new RuntimeException(lang('setting_not_inserted')); } return $this->db->insert_id(); @@ -116,7 +116,7 @@ protected function update(array $setting): int $setting['update_datetime'] = date('Y-m-d H:i:s'); if (!$this->db->update('settings', $setting, ['id' => $setting['id']])) { - throw new RuntimeException('Could not update setting.'); + throw new RuntimeException(lang('setting_not_updated')); } return $setting['id']; diff --git a/application/models/Unavailabilities_model.php b/application/models/Unavailabilities_model.php index 86ad425320..9dec1509e8 100644 --- a/application/models/Unavailabilities_model.php +++ b/application/models/Unavailabilities_model.php @@ -185,7 +185,7 @@ protected function insert(array $unavailability): int $unavailability['is_unavailability'] = true; if (!$this->db->insert('appointments', $unavailability)) { - throw new RuntimeException('Could not insert unavailability.'); + throw new RuntimeException(lang('unavailability_not_inserted')); } return $this->db->insert_id(); @@ -205,7 +205,7 @@ protected function update(array $unavailability): int $unavailability['update_datetime'] = date('Y-m-d H:i:s'); if (!$this->db->update('appointments', $unavailability, ['id' => $unavailability['id']])) { - throw new RuntimeException('Could not update unavailability record.'); + throw new RuntimeException(lang('unavailability_record_not_updated')); } return $unavailability['id']; diff --git a/application/models/Users_model.php b/application/models/Users_model.php index 3606b66294..8758146571 100644 --- a/application/models/Users_model.php +++ b/application/models/Users_model.php @@ -119,7 +119,7 @@ protected function insert(array $user): int unset($user['settings']); if (!$this->db->insert('users', $user)) { - throw new RuntimeException('Could not insert user.'); + throw new RuntimeException(lang('user_not_inserted')); } $user['id'] = $this->db->insert_id(); @@ -183,7 +183,7 @@ public function get_settings(int $user_id): array public function set_setting(int $user_id, string $name, string $value): void { if (!$this->db->update('user_settings', [$name => $value], ['id_users' => $user_id])) { - throw new RuntimeException('Could not set the new user setting value: ' . $name); + throw new RuntimeException(lang('user_setting_not_set') . $name); } } @@ -207,14 +207,14 @@ protected function update(array $user): int $existing_settings = $this->db->get_where('user_settings', ['id_users' => $user['id']])->row_array(); if (empty($existing_settings)) { - throw new RuntimeException('No settings record found for user with ID: ' . $user['id']); + throw new RuntimeException(lang('user_setting_record_not_found') . $user['id']); } $settings['password'] = hash_password($existing_settings['salt'], $settings['password']); } if (!$this->db->update('users', $user, ['id' => $user['id']])) { - throw new RuntimeException('Could not update user.'); + throw new RuntimeException(lang('user_not_updated')); } $this->set_settings($user['id'], $settings); @@ -310,7 +310,7 @@ public function get_setting(int $user_id, string $name): string $settings = $this->db->get_where('user_settings', ['id_users' => $user_id])->row_array(); if (empty($settings[$name])) { - throw new RuntimeException('The requested setting value was not found: ' . $user_id); + throw new RuntimeException(lang('setting_value_not_found') . $user_id); } return $settings[$name]; diff --git a/application/models/Webhooks_model.php b/application/models/Webhooks_model.php index fbd0bd643e..437fd27b76 100644 --- a/application/models/Webhooks_model.php +++ b/application/models/Webhooks_model.php @@ -92,7 +92,7 @@ protected function insert(array $webhook): int $webhook['update_datetime'] = date('Y-m-d H:i:s'); if (!$this->db->insert('webhooks', $webhook)) { - throw new RuntimeException('Could not insert webhook.'); + throw new RuntimeException(lang('webhook_not_inserted')); } return $this->db->insert_id(); @@ -112,7 +112,7 @@ protected function update(array $webhook): int $webhook['update_datetime'] = date('Y-m-d H:i:s'); if (!$this->db->update('webhooks', $webhook, ['id' => $webhook['id']])) { - throw new RuntimeException('Could not update webhook.'); + throw new RuntimeException(lang('webhook_not_updated')); } return $webhook['id'];