Skip to content

Commit

Permalink
Merge pull request #73 from akost/patch-1
Browse files Browse the repository at this point in the history
Fix Russion transliterations
  • Loading branch information
Florian Eckerstorfer committed Aug 21, 2015
2 parents c3e4715 + dcc4c52 commit 89ea2d5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Slugify.php
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,9 @@ class Slugify implements SlugifyInterface
'Г' => 'G',
'Х' => 'H',
'И' => 'I',
'Й' => 'J',
'Я' => 'Ja',
'Ю' => 'Ju',
'Й' => 'Y',
'Я' => 'Ya',
'Ю' => 'Yu',
'К' => 'K',
'Л' => 'L',
'М' => 'M',
Expand Down Expand Up @@ -255,9 +255,9 @@ class Slugify implements SlugifyInterface
'г' => 'g',
'х' => 'h',
'и' => 'i',
'й' => 'j',
'я' => 'ja',
'ю' => 'ju',
'й' => 'y',
'я' => 'ya',
'ю' => 'yu',
'к' => 'k',
'л' => 'l',
'м' => 'm',
Expand Down

0 comments on commit 89ea2d5

Please sign in to comment.