diff options
author | Igor Scheller <igor.scheller@igorshp.de> | 2017-09-22 14:02:02 +0200 |
---|---|---|
committer | Igor Scheller <igor.scheller@igorshp.de> | 2017-09-22 14:13:19 +0200 |
commit | d49e49c364c1b73e4e4e3b52dc10ee9d0150e447 (patch) | |
tree | fd61f2d661638d4fe973b522d0fca8d5d318f7dc /includes/helper/internationalization_helper.php | |
parent | 783c58611ada88460ba670d51ebf4013563e1197 (diff) |
Implemented service provider functionality
Diffstat (limited to 'includes/helper/internationalization_helper.php')
-rw-r--r-- | includes/helper/internationalization_helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/helper/internationalization_helper.php b/includes/helper/internationalization_helper.php index efbe5db5..7fa6518b 100644 --- a/includes/helper/internationalization_helper.php +++ b/includes/helper/internationalization_helper.php @@ -36,7 +36,7 @@ function gettext_init() } gettext_locale(); - bindtextdomain('default', realpath(__DIR__ . '/../../locale')); + bindtextdomain('default', app('path.lang')); bind_textdomain_codeset('default', 'UTF-8'); textdomain('default'); } |