From 28c08efdf55720a885a9b856c186c7c5a1073be9 Mon Sep 17 00:00:00 2001 From: Shaun van Tonder Date: Thu, 4 Jul 2024 23:05:47 +0200 Subject: [PATCH] remove lang-detector config there was an issue somewhere here, trying to find it in our history --- config/lang-detector.php | 46 ---------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 config/lang-detector.php diff --git a/config/lang-detector.php b/config/lang-detector.php deleted file mode 100644 index 62557764f..000000000 --- a/config/lang-detector.php +++ /dev/null @@ -1,46 +0,0 @@ - env('LANG_DETECTOR_AUTODETECT', false), - - /* - * Default driver to use to detect the request language. - * - * Available: browser, subdomain, uri. - */ - 'driver' => env('LANG_DETECTOR_DRIVER', 'browser'), - - /* - * Used on subdomain and uri drivers. That indicates which segment should be used - * to verify the language. - */ - 'segment' => env('LANG_DETECTOR_SEGMENT', 0), - - /* - * Languages available on the application. - * - * You could use parse_langs_to_array to use the string syntax - * or just use the array of languages with its aliases. - */ - 'languages' => parse_langs_to_array( - env('LANG_DETECTOR_LANGUAGES', ['en', 'fr']) - ), - - /* - * Indicates if should store detected locale on cookies - */ - 'cookie' => (bool) env('LANG_DETECTOR_COOKIE', true), - - /* - * Indicates if should encrypt cookie - */ - 'cookie_encrypt' => (bool) env('LANG_DETECTOR_COOKIE_ENCRYPT', false), - - /* - * Cookie name - */ - 'cookie_name' => env('LANG_DETECTOR_COOKIE', 'locale'), -];