Skip to content

Commit

Permalink
Fix: Fix ß rule for Austrian
Browse files Browse the repository at this point in the history
  • Loading branch information
florianeckerstorfer committed Jan 11, 2022
1 parent e90d154 commit 5d7e59f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Resources/rules/austrian.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"Ä": "AE",
"Ö": "OE",
"Ü": "UE",
"ß": "ss",
"ß": "sz",
"ä": "ae",
"ö": "oe",
"ü": "ue"
Expand Down
2 changes: 1 addition & 1 deletion src/RuleProvider/DefaultRuleProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ class DefaultRuleProvider implements RuleProviderInterface
'Ä' => 'AE',
'Ö' => 'OE',
'Ü' => 'UE',
'ß' => 'ss',
'ß' => 'sz',
'ä' => 'ae',
'ö' => 'oe',
'ü' => 'ue',
Expand Down

0 comments on commit 5d7e59f

Please sign in to comment.