Skip to content

Commit

Permalink
Fix Swedish rules
Browse files Browse the repository at this point in the history
Fixes #107
  • Loading branch information
Florian Eckerstorfer committed Apr 8, 2016
1 parent c2e35d3 commit 60ce21b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Resources/rules/swedish.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{
"Ä": "A",
"Å": "a",
"Ö": "O",
"ä": "a",
"ö": "ö"
"å": "a",
"ö": "o"
}
4 changes: 3 additions & 1 deletion src/RuleProvider/DefaultRuleProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -754,9 +754,11 @@ class DefaultRuleProvider implements RuleProviderInterface
'swedish' =>
array (
'Ä' => 'A',
'Å' => 'a',
'Ö' => 'O',
'ä' => 'a',
'ö' => 'ö',
'å' => 'a',
'ö' => 'o',
),
'turkish' =>
array (
Expand Down

0 comments on commit 60ce21b

Please sign in to comment.