From 3ca2c68afab3d82071152f471f8c6bb237481d61 Mon Sep 17 00:00:00 2001 From: Marc Jauvin Date: Tue, 3 Sep 2024 10:38:50 -0400 Subject: [PATCH] fix typo --- src/Translation/Translator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Translation/Translator.php b/src/Translation/Translator.php index 3045d320..a9609f35 100644 --- a/src/Translation/Translator.php +++ b/src/Translation/Translator.php @@ -130,7 +130,7 @@ protected function getValidationSpecific($key, $replace, $locale) */ protected function localeForChoice($key, $locale) { - $locale = parent::localeForChoice($key, locale); + $locale = parent::localeForChoice($key, $locale); if (str_contains($locale, '-')) { $localeParts = explode('-', $locale, 2);