From 90d0599c3db798f738a2e3dc470f4091dafd8566 Mon Sep 17 00:00:00 2001 From: Alessandro Pellizzari Date: Sun, 9 Dec 2018 09:14:17 +0000 Subject: [PATCH] Fix pt and pt-br locales --- locales/pt-br.json | 62 +++++++++++++++++++++++----------------------- locales/pt.json | 62 +++++++++++++++++++++++----------------------- src/lib.rs | 2 +- 3 files changed, 63 insertions(+), 63 deletions(-) diff --git a/locales/pt-br.json b/locales/pt-br.json index ebfb84e..f654ae6 100644 --- a/locales/pt-br.json +++ b/locales/pt-br.json @@ -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" ] } diff --git a/locales/pt.json b/locales/pt.json index f654ae6..ebfb84e 100644 --- a/locales/pt.json +++ b/locales/pt.json @@ -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" ] } diff --git a/src/lib.rs b/src/lib.rs index 2fdff63..ec4f7a2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -297,7 +297,7 @@ fn find_key(key: usize, data: &'static HashMap>, local data.get(locale) .and_then(|res| res.get(key)) .or_else(|| { - if locale.contains("-") { + if locale.contains('-') { locale .split('-') .collect::>()