-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: replace I18n with a custom transliterator
- Loading branch information
1 parent
4e3eafb
commit 2df1e72
Showing
5 changed files
with
215 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,211 @@ | ||
# frozen_string_literal: true | ||
|
||
module ItaxCode | ||
# https://github.com/ruby-i18n/i18n/blob/master/lib/i18n/backend/transliterator.rb | ||
class Transliterator | ||
DEFAULT_REPLACEMENT_CHAR = "?" | ||
|
||
def transliterate(string, replacement = nil) | ||
replacement ||= DEFAULT_REPLACEMENT_CHAR | ||
string.gsub(/[^\x00-\x7f]/u) { |char| approximations[char] || replacement } | ||
end | ||
|
||
private | ||
|
||
def approximations | ||
@approximations ||= { | ||
"À" => "A", | ||
"Á" => "A", | ||
"Â" => "A", | ||
"Ã" => "A", | ||
"Ä" => "A", | ||
"Å" => "A", | ||
"Æ" => "AE", | ||
"Ç" => "C", | ||
"È" => "E", | ||
"É" => "E", | ||
"Ê" => "E", | ||
"Ë" => "E", | ||
"Ì" => "I", | ||
"Í" => "I", | ||
"Î" => "I", | ||
"Ï" => "I", | ||
"Ð" => "D", | ||
"Ñ" => "N", | ||
"Ò" => "O", | ||
"Ó" => "O", | ||
"Ô" => "O", | ||
"Õ" => "O", | ||
"Ö" => "O", | ||
"×" => "x", | ||
"Ø" => "O", | ||
"Ù" => "U", | ||
"Ú" => "U", | ||
"Û" => "U", | ||
"Ü" => "U", | ||
"Ý" => "Y", | ||
"Þ" => "Th", | ||
"ß" => "ss", | ||
"ẞ" => "SS", | ||
"à" => "a", | ||
"á" => "a", | ||
"â" => "a", | ||
"ã" => "a", | ||
"ä" => "a", | ||
"å" => "a", | ||
"æ" => "ae", | ||
"ç" => "c", | ||
"è" => "e", | ||
"é" => "e", | ||
"ê" => "e", | ||
"ë" => "e", | ||
"ì" => "i", | ||
"í" => "i", | ||
"î" => "i", | ||
"ï" => "i", | ||
"ð" => "d", | ||
"ñ" => "n", | ||
"ò" => "o", | ||
"ó" => "o", | ||
"ô" => "o", | ||
"õ" => "o", | ||
"ö" => "o", | ||
"ø" => "o", | ||
"ù" => "u", | ||
"ú" => "u", | ||
"û" => "u", | ||
"ü" => "u", | ||
"ý" => "y", | ||
"þ" => "th", | ||
"ÿ" => "y", | ||
"Ā" => "A", | ||
"ā" => "a", | ||
"Ă" => "A", | ||
"ă" => "a", | ||
"Ą" => "A", | ||
"ą" => "a", | ||
"Ć" => "C", | ||
"ć" => "c", | ||
"Ĉ" => "C", | ||
"ĉ" => "c", | ||
"Ċ" => "C", | ||
"ċ" => "c", | ||
"Č" => "C", | ||
"č" => "c", | ||
"Ď" => "D", | ||
"ď" => "d", | ||
"Đ" => "D", | ||
"đ" => "d", | ||
"Ē" => "E", | ||
"ē" => "e", | ||
"Ĕ" => "E", | ||
"ĕ" => "e", | ||
"Ė" => "E", | ||
"ė" => "e", | ||
"Ę" => "E", | ||
"ę" => "e", | ||
"Ě" => "E", | ||
"ě" => "e", | ||
"Ĝ" => "G", | ||
"ĝ" => "g", | ||
"Ğ" => "G", | ||
"ğ" => "g", | ||
"Ġ" => "G", | ||
"ġ" => "g", | ||
"Ģ" => "G", | ||
"ģ" => "g", | ||
"Ĥ" => "H", | ||
"ĥ" => "h", | ||
"Ħ" => "H", | ||
"ħ" => "h", | ||
"Ĩ" => "I", | ||
"ĩ" => "i", | ||
"Ī" => "I", | ||
"ī" => "i", | ||
"Ĭ" => "I", | ||
"ĭ" => "i", | ||
"Į" => "I", | ||
"į" => "i", | ||
"İ" => "I", | ||
"ı" => "i", | ||
"IJ" => "IJ", | ||
"ij" => "ij", | ||
"Ĵ" => "J", | ||
"ĵ" => "j", | ||
"Ķ" => "K", | ||
"ķ" => "k", | ||
"ĸ" => "k", | ||
"Ĺ" => "L", | ||
"ĺ" => "l", | ||
"Ļ" => "L", | ||
"ļ" => "l", | ||
"Ľ" => "L", | ||
"ľ" => "l", | ||
"Ŀ" => "L", | ||
"ŀ" => "l", | ||
"Ł" => "L", | ||
"ł" => "l", | ||
"Ń" => "N", | ||
"ń" => "n", | ||
"Ņ" => "N", | ||
"ņ" => "n", | ||
"Ň" => "N", | ||
"ň" => "n", | ||
"ʼn" => "'n", | ||
"Ŋ" => "NG", | ||
"ŋ" => "ng", | ||
"Ō" => "O", | ||
"ō" => "o", | ||
"Ŏ" => "O", | ||
"ŏ" => "o", | ||
"Ő" => "O", | ||
"ő" => "o", | ||
"Œ" => "OE", | ||
"œ" => "oe", | ||
"Ŕ" => "R", | ||
"ŕ" => "r", | ||
"Ŗ" => "R", | ||
"ŗ" => "r", | ||
"Ř" => "R", | ||
"ř" => "r", | ||
"Ś" => "S", | ||
"ś" => "s", | ||
"Ŝ" => "S", | ||
"ŝ" => "s", | ||
"Ş" => "S", | ||
"ş" => "s", | ||
"Š" => "S", | ||
"š" => "s", | ||
"Ţ" => "T", | ||
"ţ" => "t", | ||
"Ť" => "T", | ||
"ť" => "t", | ||
"Ŧ" => "T", | ||
"ŧ" => "t", | ||
"Ũ" => "U", | ||
"ũ" => "u", | ||
"Ū" => "U", | ||
"ū" => "u", | ||
"Ŭ" => "U", | ||
"ŭ" => "u", | ||
"Ů" => "U", | ||
"ů" => "u", | ||
"Ű" => "U", | ||
"ű" => "u", | ||
"Ų" => "U", | ||
"ų" => "u", | ||
"Ŵ" => "W", | ||
"ŵ" => "w", | ||
"Ŷ" => "Y", | ||
"ŷ" => "y", | ||
"Ÿ" => "Y", | ||
"Ź" => "Z", | ||
"ź" => "z", | ||
"Ż" => "Z", | ||
"ż" => "z", | ||
"Ž" => "Z", | ||
"ž" => "z" | ||
} | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters