summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstreetturtle <streetturtle@users.noreply.github.com>2022-07-16 20:47:28 -0400
committerGitHub <noreply@github.com>2022-07-16 20:47:28 -0400
commit1a2a4385da7bf5dfcf0d43e604c5d8e549dac3ae (patch)
tree5cf0d2427711cffa3c181761faa48edbf5095e0a
parent860c31c9e695bcb663f30896f22c0edb269b3dc5 (diff)
parenta345fa59759c6ef7c1b39498ed0863733fa24d61 (diff)
Merge pull request #359 from WiltonLoch/master
Adding a Portuguese language file to the weather widget locale
-rw-r--r--weather-widget/locale/pt.lua14
1 files changed, 14 insertions, 0 deletions
diff --git a/weather-widget/locale/pt.lua b/weather-widget/locale/pt.lua
new file mode 100644
index 0000000..e7f4012
--- /dev/null
+++ b/weather-widget/locale/pt.lua
@@ -0,0 +1,14 @@
+local pt = {
+ warning_title = "Widget do tempo",
+ parameter_warning = "Parâmetros necessários não definidos: ",
+ directions = {
+ "N", "NNE", "NE", "ENE", "L", "ESE", "SE", "SSE", "S", "SSO", "SO",
+ "OSO", "O", "ONO", "NO", "NNO", "N"
+ },
+ feels_like = "Sensação de ",
+ wind = "Vento: ",
+ humidity = "Umidade: ",
+ uv = "UV: "
+}
+
+return pt