From c54711ecdc3b0be6655396c1af1d5ade03e0241c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bjarke=20R=C3=B8nnow?= Date: Tue, 12 Mar 2019 12:22:46 +0100 Subject: [PATCH] Added `da` specific transliteration --- src/Illuminate/Support/Str.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Illuminate/Support/Str.php b/src/Illuminate/Support/Str.php index 759e39dc21e7..1d070029c924 100644 --- a/src/Illuminate/Support/Str.php +++ b/src/Illuminate/Support/Str.php @@ -726,6 +726,10 @@ protected static function languageSpecificCharsArray($language) ['ä', 'ö', 'ü', 'Ä', 'Ö', 'Ü'], ['ae', 'oe', 'ue', 'AE', 'OE', 'UE'], ], + 'da' => [ + ['ø', 'å', 'Æ', 'Ø', 'Å'], + ['oe', 'aa', 'Ae', 'Oe', 'Aa'], + ], ]; }