We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I18n.transliterate("ț")
"ț"
i18n.transliterate.rule
t
"?"
Example of working code with
irb(main):001:0> I18n.t("i18n.transliterate.rule.ț") => "t" irb(main):002:0> I18n.transliterate("ț") => "t" irb(main):003:0> I18n.t("i18n.transliterate.rule") => {:ș=>"s", :ț=>"t", :Ș=>"S", :Ț=>"T"}
Same example, broken behaviour, with
irb(main):001:0> I18n.t("i18n.transliterate.rule.ț") => "translation missing: en.i18n.transliterate.rule.ț" irb(main):002:0> I18n.transliterate("ț") => "?" irb(main):003:0> I18n.t("i18n.transliterate.rule") => {:"\xC8\x99"=>"s", :"\xC8\x9B"=>"t", :"\xC8\x98"=>"S", :"\xC8\x9A"=>"T"}
Note: This might be linked to #606
The text was updated successfully, but these errors were encountered:
Certainly is related! Let's keep the conversation on #606.
Sorry, something went wrong.
No branches or pull requests
What I tried to do
I18n.transliterate("ț")
where"ț"
is defined ini18n.transliterate.rule
with value oft
What I expected to happen
i18n.transliterate.rule
, for this examplet
What actually happened
"?"
Examples
Example of working code with
Same example, broken behaviour, with
Note: This might be linked to #606
The text was updated successfully, but these errors were encountered: