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

View file

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

View file

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