Skip to content

Commit 40f00a5

Browse files
authored
Merge pull request #138 from rjgpacheco/add-pt_pt
2 parents 976ad4a + a01722f commit 40f00a5

File tree

3 files changed

+282
-0
lines changed

3 files changed

+282
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ readable size or throughput. It is localized to:
1515

1616
* Brazilian Portuguese
1717
* Dutch
18+
* European Portuguese
1819
* Finnish
1920
* French
2021
* German
2.62 KB
Binary file not shown.
Lines changed: 281 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,281 @@
1+
# SOME DESCRIPTIVE TITLE.
2+
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3+
# This file is distributed under the same license as the PACKAGE package.
4+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5+
#
6+
msgid ""
7+
msgstr ""
8+
"Project-Id-Version: \n"
9+
"Report-Msgid-Bugs-To: \n"
10+
"POT-Creation-Date: 2020-06-20 23:04-0300\n"
11+
"PO-Revision-Date: 2020-07-05 18:17+0100\n"
12+
"Last-Translator: \n"
13+
"Language-Team: \n"
14+
"Language: pt_PT\n"
15+
"MIME-Version: 1.0\n"
16+
"Content-Type: text/plain; charset=UTF-8\n"
17+
"Content-Transfer-Encoding: 8bit\n"
18+
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
19+
"X-Generator: Poedit 2.3.1\n"
20+
21+
#: src/humanize/number.py:22
22+
msgctxt "0"
23+
msgid "th"
24+
msgstr "º"
25+
26+
#: src/humanize/number.py:23
27+
msgctxt "1"
28+
msgid "st"
29+
msgstr "º"
30+
31+
#: src/humanize/number.py:24
32+
msgctxt "2"
33+
msgid "nd"
34+
msgstr "º"
35+
36+
#: src/humanize/number.py:25
37+
msgctxt "3"
38+
msgid "rd"
39+
msgstr "º"
40+
41+
#: src/humanize/number.py:26
42+
msgctxt "4"
43+
msgid "th"
44+
msgstr "º"
45+
46+
#: src/humanize/number.py:27
47+
msgctxt "5"
48+
msgid "th"
49+
msgstr "º"
50+
51+
#: src/humanize/number.py:28
52+
msgctxt "6"
53+
msgid "th"
54+
msgstr "º"
55+
56+
#: src/humanize/number.py:29
57+
msgctxt "7"
58+
msgid "th"
59+
msgstr "º"
60+
61+
#: src/humanize/number.py:30
62+
msgctxt "8"
63+
msgid "th"
64+
msgstr "º"
65+
66+
#: src/humanize/number.py:31
67+
msgctxt "9"
68+
msgid "th"
69+
msgstr "º"
70+
71+
#: src/humanize/number.py:73
72+
msgid "million"
73+
msgstr "milhão"
74+
75+
#: src/humanize/number.py:74
76+
msgid "billion"
77+
msgstr "milhar de milhão"
78+
79+
#: src/humanize/number.py:75
80+
msgid "trillion"
81+
msgstr "bilião"
82+
83+
#: src/humanize/number.py:76
84+
msgid "quadrillion"
85+
msgstr "mil biliões"
86+
87+
#: src/humanize/number.py:77
88+
msgid "quintillion"
89+
msgstr "trilião"
90+
91+
#: src/humanize/number.py:78
92+
msgid "sextillion"
93+
msgstr "mil triliões"
94+
95+
#: src/humanize/number.py:79
96+
msgid "septillion"
97+
msgstr "quatrilião"
98+
99+
#: src/humanize/number.py:80
100+
msgid "octillion"
101+
msgstr "mil quatriliões"
102+
103+
#: src/humanize/number.py:81
104+
msgid "nonillion"
105+
msgstr "quintilhão"
106+
107+
#: src/humanize/number.py:82
108+
msgid "decillion"
109+
msgstr "mil quintilhões"
110+
111+
#: src/humanize/number.py:83
112+
msgid "googol"
113+
msgstr "sextilhão"
114+
115+
#: src/humanize/number.py:138
116+
msgid "zero"
117+
msgstr "zero"
118+
119+
#: src/humanize/number.py:139
120+
msgid "one"
121+
msgstr "um"
122+
123+
#: src/humanize/number.py:140
124+
msgid "two"
125+
msgstr "dois"
126+
127+
#: src/humanize/number.py:141
128+
msgid "three"
129+
msgstr "três"
130+
131+
#: src/humanize/number.py:142
132+
msgid "four"
133+
msgstr "quatro"
134+
135+
#: src/humanize/number.py:143
136+
msgid "five"
137+
msgstr "cinco"
138+
139+
#: src/humanize/number.py:144
140+
msgid "six"
141+
msgstr "seis"
142+
143+
#: src/humanize/number.py:145
144+
msgid "seven"
145+
msgstr "sete"
146+
147+
#: src/humanize/number.py:146
148+
msgid "eight"
149+
msgstr "oito"
150+
151+
#: src/humanize/number.py:147
152+
msgid "nine"
153+
msgstr "nove"
154+
155+
#: src/humanize/time.py:87
156+
#, python-format
157+
msgid "%d microsecond"
158+
msgid_plural "%d microseconds"
159+
msgstr[0] "%d microssegundo"
160+
msgstr[1] "%d microssegundos"
161+
162+
#: src/humanize/time.py:93
163+
#, python-format
164+
msgid "%d millisecond"
165+
msgid_plural "%d milliseconds"
166+
msgstr[0] "%d milissegundo"
167+
msgstr[1] "%d milissegundos"
168+
169+
#: src/humanize/time.py:96 src/humanize/time.py:170
170+
msgid "a moment"
171+
msgstr "um momento"
172+
173+
#: src/humanize/time.py:98
174+
msgid "a second"
175+
msgstr "um segundo"
176+
177+
#: src/humanize/time.py:100
178+
#, python-format
179+
msgid "%d second"
180+
msgid_plural "%d seconds"
181+
msgstr[0] "%d segundo"
182+
msgstr[1] "%d segundos"
183+
184+
#: src/humanize/time.py:102
185+
msgid "a minute"
186+
msgstr "um minuto"
187+
188+
#: src/humanize/time.py:105
189+
#, python-format
190+
msgid "%d minute"
191+
msgid_plural "%d minutes"
192+
msgstr[0] "%d minuto"
193+
msgstr[1] "%d minutos"
194+
195+
#: src/humanize/time.py:107
196+
msgid "an hour"
197+
msgstr "uma hora"
198+
199+
#: src/humanize/time.py:110
200+
#, python-format
201+
msgid "%d hour"
202+
msgid_plural "%d hours"
203+
msgstr[0] "%d hora"
204+
msgstr[1] "%d horas"
205+
206+
#: src/humanize/time.py:113
207+
msgid "a day"
208+
msgstr "um dia"
209+
210+
#: src/humanize/time.py:115 src/humanize/time.py:118
211+
#, python-format
212+
msgid "%d day"
213+
msgid_plural "%d days"
214+
msgstr[0] "%d dia"
215+
msgstr[1] "%d dias"
216+
217+
#: src/humanize/time.py:120
218+
msgid "a month"
219+
msgstr "um mês"
220+
221+
#: src/humanize/time.py:122
222+
#, python-format
223+
msgid "%d month"
224+
msgid_plural "%d months"
225+
msgstr[0] "%d mês"
226+
msgstr[1] "%d meses"
227+
228+
#: src/humanize/time.py:125
229+
msgid "a year"
230+
msgstr "um ano"
231+
232+
#: src/humanize/time.py:127 src/humanize/time.py:136
233+
#, python-format
234+
msgid "1 year, %d day"
235+
msgid_plural "1 year, %d days"
236+
msgstr[0] "1 ano e %d dia"
237+
msgstr[1] "1 ano e %d dias"
238+
239+
#: src/humanize/time.py:130
240+
msgid "1 year, 1 month"
241+
msgstr "1 ano e 1 mês"
242+
243+
#: src/humanize/time.py:133
244+
#, python-format
245+
msgid "1 year, %d month"
246+
msgid_plural "1 year, %d months"
247+
msgstr[0] "1 ano e %d mês"
248+
msgstr[1] "1 ano e %d meses"
249+
250+
#: src/humanize/time.py:138
251+
#, python-format
252+
msgid "%d year"
253+
msgid_plural "%d years"
254+
msgstr[0] "%d ano"
255+
msgstr[1] "%d anos"
256+
257+
#: src/humanize/time.py:167
258+
#, python-format
259+
msgid "%s from now"
260+
msgstr "daqui a %s"
261+
262+
#: src/humanize/time.py:167
263+
#, python-format
264+
msgid "%s ago"
265+
msgstr "há %s"
266+
267+
#: src/humanize/time.py:171
268+
msgid "now"
269+
msgstr "agora"
270+
271+
#: src/humanize/time.py:190
272+
msgid "today"
273+
msgstr "hoje"
274+
275+
#: src/humanize/time.py:192
276+
msgid "tomorrow"
277+
msgstr "amanhã"
278+
279+
#: src/humanize/time.py:194
280+
msgid "yesterday"
281+
msgstr "ontem"

0 commit comments

Comments
 (0)