Fix pt and pt-br locales

This commit is contained in:
Alessandro Pellizzari 2018-12-09 09:14:17 +00:00
parent 699368265f
commit 90d0599c3d
3 changed files with 63 additions and 63 deletions

View file

@ -1,31 +1,31 @@
{ {
"short_months": [ "short_months": [
"Jan", "jan",
"Fev", "fev",
"Mar", "mar",
"Abr", "abr",
"Mai", "mai",
"Jun", "jun",
"Jul", "jul",
"Ago", "ago",
"Set", "set",
"Out", "out",
"Nov", "nov",
"Dez" "dez"
], ],
"long_months": [ "long_months": [
"Janeiro", "janeiro",
"Fevereiro", "fevereiro",
"Março", "março",
"Abril", "abril",
"Maio", "maio",
"Junho", "junho",
"Julho", "julho",
"Agosto", "agosto",
"Setembro", "setembro",
"Outubro", "outubro",
"Novembro", "novembro",
"Dezembro" "dezembro"
], ],
"short_weekdays": [ "short_weekdays": [
"seg", "seg",
@ -37,12 +37,12 @@
"dom" "dom"
], ],
"long_weekdays": [ "long_weekdays": [
"Segunda-feira", "segunda-feira",
"Terça-feira", "terça-feira",
"Quarta-feira", "quarta-feira",
"Quinta-feira", "quinta-feira",
"Sexta-feira", "sexta-feira",
"Sábado", "sábado",
"Domingo" "domingo"
] ]
} }

View file

@ -1,31 +1,31 @@
{ {
"short_months": [ "short_months": [
"jan", "Jan",
"fev", "Fev",
"mar", "Mar",
"abr", "Abr",
"mai", "Mai",
"jun", "Jun",
"jul", "Jul",
"ago", "Ago",
"set", "Set",
"out", "Out",
"nov", "Nov",
"dez" "Dez"
], ],
"long_months": [ "long_months": [
"janeiro", "Janeiro",
"fevereiro", "Fevereiro",
"março", "Março",
"abril", "Abril",
"maio", "Maio",
"junho", "Junho",
"julho", "Julho",
"agosto", "Agosto",
"setembro", "Setembro",
"outubro", "Outubro",
"novembro", "Novembro",
"dezembro" "Dezembro"
], ],
"short_weekdays": [ "short_weekdays": [
"seg", "seg",
@ -37,12 +37,12 @@
"dom" "dom"
], ],
"long_weekdays": [ "long_weekdays": [
"segunda-feira", "Segunda-feira",
"terça-feira", "Terça-feira",
"quarta-feira", "Quarta-feira",
"quinta-feira", "Quinta-feira",
"sexta-feira", "Sexta-feira",
"sábado", "Sábado",
"domingo" "Domingo"
] ]
} }

View file

@ -297,7 +297,7 @@ fn find_key(key: usize, data: &'static HashMap<String, Vec<&'static str>>, local
data.get(locale) data.get(locale)
.and_then(|res| res.get(key)) .and_then(|res| res.get(key))
.or_else(|| { .or_else(|| {
if locale.contains("-") { if locale.contains('-') {
locale locale
.split('-') .split('-')
.collect::<Vec<&str>>() .collect::<Vec<&str>>()