Pattern: Mismatched Phrase bundle and translation keys
Issue: -
Prefer matching Phrase Bundle and translation call keys.
# bad
def phrases
{
"shortened_key" => t(
"my_real_translation_key",
default: 'Does not matter',
),
}
end
# good
def phrases
{
"my_real_translation_key" => t(
"my_real_translation_key",
default: 'Does not matter',
),
}
end