diff --git a/application/config/config.php b/application/config/config.php index 6bc96557..689728e4 100644 --- a/application/config/config.php +++ b/application/config/config.php @@ -94,6 +94,7 @@ $config['language'] = isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) ? 'fr' => 'french', 'de' => 'german', 'el' => 'greek', + 'he' => 'hebrew', 'hi' => 'hindi', 'hu' => 'hungarian', 'it' => 'italian', @@ -132,6 +133,7 @@ $config['available_languages'] = [ 'french', 'german', 'greek', + 'hebrew', 'hindi', 'hungarian', 'italian', diff --git a/application/language/hebrew/db_lang.php b/application/language/hebrew/db_lang.php new file mode 100644 index 00000000..45be434d --- /dev/null +++ b/application/language/hebrew/db_lang.php @@ -0,0 +1,63 @@ + + + 403 Forbidden + + + +

Directory access is forbidden.

+ + + diff --git a/application/language/hebrew/migration_lang.php b/application/language/hebrew/migration_lang.php new file mode 100644 index 00000000..932e15e3 --- /dev/null +++ b/application/language/hebrew/migration_lang.php @@ -0,0 +1,20 @@ + new DateTime($date . ' ' . $working_hours['start']), - 'end' => new DateTime($date . ' ' . $working_hours['end']) + 'start' => new DateTime($date . ' ' . $date_working_plan['start']), + 'end' => new DateTime($date . ' ' . $date_working_plan['end']) ] ]; - $periods = $this->remove_breaks($date, $periods, $working_hours['breaks']); + $periods = $this->remove_breaks($date, $periods, $date_working_plan['breaks']); $periods = $this->remove_unavailability_events($periods, $unavailability_events); $hours = [];