Welcome to mirror list, hosted at ThFree Co, Russian Federation.

strings.xml « values-pt « res « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a55c7e796abb892d23a420ce302599844e1140fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
<?xml version="1.0" encoding="utf-8"?>
<!-- Android Strings File -->
<!-- Generated by Twine 1.0.3 -->
<!-- Language: pt -->
<resources>
	<!-- SECTION: Strings -->
	<!-- About button text (should be short) -->
	<string name="about">Sobre</string>
	<!-- Button text (should be short) -->
	<string name="back">Voltar</string>
	<!-- Button text (should be short) -->
	<string name="cancel">Cancelar</string>
	<!-- Button which interrupts country download -->
	<string name="cancel_download">Cancelar Descarga</string>
	<!-- Button which deletes downloaded country -->
	<string name="delete">Eliminar</string>
	<!-- Button to dismiss dialog forever -->
	<string name="do_not_ask_me_again">Não volte a perguntar-me</string>
	<!-- Button "do not interrupt download" if user touched actively downloading country -->
	<string name="do_nothing">Continuar</string>
	<string name="download_maps">Descarregar mapas</string>
	<!-- Settings/Downloader - Download confirmation button -->
	<string name="download_x_kb">Descarregar %qu kB</string>
	<!-- Settings/Downloader - Download confirmation button -->
	<string name="download_x_mb">Descarregar %qu MB</string>
	<!-- Settings/Downloader - info for country when download fails -->
	<string name="download_has_failed">A descarga falhou, toque novamente para tentar uma vez mais.</string>
	<!-- Settings/Downloader - info for downloaded country -->
	<string name="downloaded_x_y_touch_to_delete">(%1$qu %2$s) descarregados, toque para eliminar.</string>
	<!-- Settings/Downloader - country info current download progress -->
	<string name="downloading_x_touch_to_cancel">A descarregar %qu%%, toque para cancelar.</string>
	<!-- Settings/Downloader - info for country which started downloading -->
	<string name="downloading">A descarregar…</string>
	<string name="get_it_now">Instale agora</string>
	<!-- Text to show occasionaly with a proposal to Like our program on Facebook -->
	<string name="share_on_facebook_text">Obrigado por usar MAPS.ME! Gosta do aplicativo? Conte para seus amigos! Será a melhor forma de nos agradecer.</string>
	<!-- Choose measurement on first launch alert - choose metric system button -->
	<string name="kilometres">Quilómetros</string>
	<!-- Leave Review dialog - Review button -->
	<string name="leave_a_review">Deixe uma revisão</string>
	<!-- View and button titles for accessibility -->
	<string name="maps">Mapas</string>
	<!-- View and button titles for accessibility -->
	<string name="downloader_maps">Mapas:</string>
	<!-- Settings/Downloader - info for country in the download queue -->
	<string name="marked_for_downloading">Marcado para descarga, toque para cancelar</string>
	<!-- Choose measurement on first launch alert - choose imperial system button -->
	<string name="miles">Milhas</string>
	<!-- View and button titles for accessibility -->
	<string name="core_my_position">A minha posição</string>
	<!-- Settings/Downloader - No free space dialog message -->
	<string name="free_disk_space_for_country_x">Por favor liberte primeiro algum espaço no seu dispositivo para descarregar %s</string>
	<!-- Leave Review dialog - Not now button (remind me later) -->
	<string name="remind_me_later">Lembrar-me mais tarde</string>
	<!-- Update maps later/Buy pro version later button text -->
	<string name="later">Mais tarde</string>
	<!-- Don't show some dialog any more -->
	<string name="never">Nunca</string>
	<!-- Leave Review dialog - Complain button (goes to support site) -->
	<string name="report_an_issue">Relatar um problema</string>
	<!-- View and button titles for accessibility -->
	<string name="search">Procura</string>
	<!-- Search box placeholder text -->
	<string name="search_map">Procurar mapa</string>
	<!-- Settings/Downloader - info for not downloaded country -->
	<string name="touch_to_download">Toque para descarregar</string>
	<!-- Settings/Downloader - 3G download warning dialog confirm button -->
	<string name="use_cellular_data">Sim</string>
	<!-- Settings/Downloader - No internet connection dialog message -->
	<string name="use_wifi_recommendation_text">Recomendamos a utilização de WiFi para descarregar grandes mapas</string>
	<!-- Choose measurement on first launch alert - title -->
	<string name="which_measurement_system">Que sistema de medidas prefere?</string>
	<!-- Location services are disabled by user alert - message -->
	<string name="location_is_disabled_long_text">Atualmente tem todos os Serviços de Localização para este dispositivo ou aplicação desativados. Por favor ative-os nas Definições.</string>
	<!-- Location Services are not available on the device alert - message -->
	<string name="device_doesnot_support_location_services">Os Serviços de Localização não estão disponíveis em seu dispositivo</string>
	<!-- View and button titles for accessibility -->
	<string name="zoom_to_country">Mostrar no mapa</string>
	<!-- Message to display at the center of the screen when the country is added to the downloading queue -->
	<string name="country_status_added_to_queue">^\né adicionado à fila de descargas</string>
	<!-- Message to display at the center of the screen when the country is downloading -->
	<string name="country_status_downloading">A descarregar\n^\n^</string>
	<!-- Button text for the button at the center of the screen when the country is not downloaded -->
	<string name="country_status_download">Descarregar Mapa\n(^ ^)</string>
	<!-- Button text for the button at the center of the screen when the country is not downloaded and the size should not be shown -->
	<string name="country_status_download_without_size">Descarregar Mapa</string>
	<!-- Button text for the button at the center of the screen when the country is not downloaded -->
	<string name="country_status_download_without_routing">Baixar mapa\nsem roteamento (^ ^)</string>
	<!-- Message to display at the center of the screen when the country download has failed -->
	<string name="country_status_download_failed">A descarga falhou</string>
	<!-- Button text for the button under the country_status_download_failed message -->
	<string name="try_again">Tente de novo</string>
	<string name="about_menu_title">Sobre o MAPS.ME</string>
	<string name="downloading_touch_to_cancel">A descarregar %d%%, toque para cancelar</string>
	<string name="downloaded_touch_to_delete">(%s) descarregados, toque para eliminar</string>
	<string name="connection_settings">Definições de Ligação</string>
	<string name="download_mb_or_kb">Descarga %s</string>
	<string name="close">Fechar</string>
	<string name="unsupported_phone">É necessário OpenGL acelerado por hardware. Infelizmente o seu dispositivo não é compatível.</string>
	<string name="download">Descarga</string>
	<string name="external_storage_is_not_available">Não está disponível um cartão SD/armazenamento USB com os mapas descarregados</string>
	<string name="disconnect_usb_cable">Por favor desligue o cabo USB ou introduza um cartão de memória para utilizar MAPS.ME</string>
	<string name="not_enough_free_space_on_sdcard">Por favor liberte primeiro algum espaço no cartão SD/armazenamento USB para utilizar a app</string>
	<string name="not_enough_memory">Não há memória suficiente para executar a app</string>
	<string name="free_space_for_country">Por favor liberte primeiro %1$s no seu dispositivo para descarregar %2$s</string>
	<string name="download_resources">Antes de começar, permita-nos que descarreguemos um mapa mundial geral para o seu dispositivo.\nÉ necessário %s de dados.</string>
	<string name="getting_position">A obter a posição atual</string>
	<string name="download_resources_continue">Ir para o mapa</string>
	<string name="downloading_country_can_proceed">A descarregar %s. Pode agora\ncontinuar para o mapa.</string>
	<string name="download_country_ask">Descarregar %s?</string>
	<string name="update_country_ask">Atualizar %s?</string>
	<!-- REMOVE THIS STRING AFTER REFACTORING -->
	<string name="download_location_map_proposal">Pode descarregar o mapa\nda sua posição atual.</string>
	<!-- REMOVE THIS_STRING AFTER REFACTORING -->
	<string name="download_location_update_map_proposal">Pode atualizar o mapa\nda sua posição atual.</string>
	<!-- REMOVE THIS STRING AFTER REFACTORING -->
	<string name="download_location_map_up_to_date">O mapa da sua localização\natual (%s) está atualizado</string>
	<!-- REMOVE THIS STRING AFTER REFACTORING -->
	<string name="pause">Pausa</string>
	<!-- REMOVE THIS STRING AFTER REFACTORING -->
	<string name="continue_download">Continuar</string>
	<string name="downloaded_touch_to_update">(%s) descarregados, toque para atualizar ou eliminar</string>
	<string name="update_mb_or_kb">Atualizar %s</string>
	<!-- Show popup notification when we have downloaded countries without search (from Lite version) -->
	<string name="search_update_maps">Precisa de mapas atualizados para a função de procura:</string>
	<!-- Show popup notification on app start when we have out-of-date maps -->
	<string name="advise_update_maps">Atualização disponível para estes mapas:</string>
	<!-- Show popup notification in Pro version that Lite can be deleted -->
	<string name="suggest_uninstall_lite">Não precisa mais do MAPS.ME Lite, podendo portanto desinstalá-la.</string>
	<!-- Show popup notification on top of the map when country was downloaded. -->
	<string name="download_country_success">%s descarregados com sucesso</string>
	<!-- Show popup notification on top of the map when country download has failed. -->
	<string name="download_country_failed">%s descarga falhou</string>
	<!-- Add New Bookmark Set dialog title -->
	<string name="add_new_set">Adicionar novo conjunto</string>
	<!-- Place Page - Add To Bookmarks button -->
	<string name="add_to_bookmarks">Adicionar aos Favoritos</string>
	<!-- Bookmark Color dialog title -->
	<string name="bookmark_color">Cor de favoritos</string>
	<!-- Add Bookmark Set dialog - hint when set name is empty -->
	<string name="bookmark_set_name">Nome do conjunto dos favoritos</string>
	<!-- Bookmark Sets dialog title -->
	<string name="bookmark_sets">Conjuntos de favoritos</string>
	<!-- Bookmarks - dialog title -->
	<string name="bookmarks">Favoritos</string>
	<!-- Add bookmark dialog - bookmark color -->
	<string name="color">Cor</string>
	<!-- Default bookmarks set name -->
	<string name="core_my_places">Os meus locais</string>
	<!-- Add bookmark dialog - bookmark name -->
	<string name="name">Nome</string>
	<!-- Editor title above street and house number -->
	<string name="address">Endereço</string>
	<!-- Place Page - Remove Pin button -->
	<string name="remove_pin">Retirar o marcador</string>
	<!-- Add bookmark dialog - bookmark set, Bookmarks dialog - Bookmark set cell -->
	<string name="set">Conjunto</string>
	<!-- Text hint in Bookmarks dialog when no any bookmarks are added -->
	<string name="bookmarks_usage_hint">Ainda não tem marcadores.\nToque em qualquer lugar no mapa para adicionar um marcador.\nOs marcadores de outras fontes também podem ser importados e exibidos na aplicação MAPS.ME. Abrir ficheiro KML/KMZ com pinos guardados a partir do mail, Dropbox ou ligação web.</string>
	<!-- Text hint in Bookmarks dialog when at least one bookmark is added -->
	<string name="bookmarks_usage_hint_import_only">Os marcadores de outras fontes podem ser importados e exibidos na aplicação MAPS.ME. Abrir ficheiro KML/KMZ com pinos guardados a partir do mail, Dropbox ou ligação web.</string>
	<!-- Settings button in system menu -->
	<string name="settings">Configurações</string>
	<!-- Header of settings activity where user defines storage path -->
	<string name="maps_storage">Guardar mapas para</string>
	<!-- Detailed description of Maps Storage settings button -->
	<string name="maps_storage_summary">Selecione o local para onde os mapas devem ser descarregados</string>
	<!-- Question dialog for transferring maps from one storage to another -->
	<string name="move_maps">Mover mapas?</string>
	<!-- Ask to wait user several minutes (some long process in modal dialog). -->
	<string name="wait_several_minutes">Isto pode demorar alguns minutos.\nPor favor aguarde…</string>
	<!-- Show bookmarks from this category on a map or not -->
	<string name="visible">Visível</string>
	<!-- Toast which is displayed when GPS has been deactivated -->
	<string name="gps_is_disabled_long_text">O GPS está desativado. Por favor ative-o nas Definições.</string>
	<!-- Measurement units title in settings activity -->
	<string name="measurement_units">Unidades de medida</string>
	<!-- Detailed description of Measurement Units settings button -->
	<string name="measurement_units_summary">Escolha entre milhas e quilómetros</string>
	<!-- Do search in all sources -->
	<string name="search_mode_all">Em toda a parte</string>
	<!-- Do search near my position only -->
	<string name="search_mode_nearme">Perto de mim</string>
	<!-- Do search in current viewport only -->
	<string name="search_mode_viewport">No ecrã</string>
	<!-- Search category for cafes, bars, restaurants -->
	<string name="eat">Onde lanchar</string>
	<!-- Search category for grocery stores -->
	<string name="food">Alimentos</string>
	<!-- Search category -->
	<string name="transport">Transporte</string>
	<!-- Search category -->
	<string name="fuel">Combustível</string>
	<!-- Search category -->
	<string name="parking">Estacionamento</string>
	<!-- Search category for clothes/shoes/gifts/jewellery/sport shops -->
	<string name="shopping">Compras</string>
	<!-- Search category -->
	<string name="hotel">Hotel</string>
	<!-- Search category -->
	<string name="tourism">Vistas</string>
	<!-- Search category -->
	<string name="entertainment">Entretenimento</string>
	<!-- Search category -->
	<string name="atm">Multibanco</string>
	<!-- Search category for nightclubs/bars -->
	<string name="nightlife">Convívio à noite</string>
	<!-- Search category for water park/disneyland/playground/toys store -->
	<string name="children">Descanso com crianças</string>
	<!-- Search category -->
	<string name="bank">Banco</string>
	<!-- Search category -->
	<string name="pharmacy">Farmácia</string>
	<!-- Search category -->
	<string name="hospital">Hospital</string>
	<!-- Search category -->
	<string name="toilet">WC</string>
	<!-- Search category -->
	<string name="post">Correios</string>
	<!-- Search category -->
	<string name="police">Polícia</string>
	<!-- String in search result list, when nothing found -->
	<string name="no_search_results_found">Não foram encontrados resultados</string>
	<!-- Notes field in Bookmarks view -->
	<string name="description">Notas</string>
	<!-- Button text -->
	<string name="share_by_email">Partilhar por email</string>
	<!-- Email Subject when sharing bookmarks category -->
	<string name="share_bookmarks_email_subject">Os favoritos do MAPS.ME foram partilhados consigo</string>
	<!-- message title of loading file -->
	<string name="load_kmz_title">A carregar favoritos</string>
	<!-- Kmz file successful loading -->
	<string name="load_kmz_successful">Favoritos carregados com sucesso! Pode encontrá-los no mapa ou no ecrã de gestão dos favoritos.</string>
	<!-- Kml file loading failed -->
	<string name="load_kmz_failed">Falha no envio dos favoritos. O ficheiro pode estar corrompido ou com defeito.</string>
	<!-- resource for context menu -->
	<string name="edit">Editar</string>
	<!-- Warning message when doing search around current position -->
	<string name="unknown_current_position">A sua localização ainda não foi determinada</string>
	<!-- Warning message when location country isn't downloaded during search (see also download_location_map_proposal). -->
	<string name="download_location_country">Descarregue o país da sua localização atual (%s)</string>
	<!-- Warning message when viewport country isn't downloaded during search -->
	<string name="download_viewport_country_to_search">Descarregue o país em que está a fazer a procura (%s)</string>
	<!-- Alert message that we can't run Map Storage settings due to some reasons. -->
	<string name="cant_change_this_setting">Lamentamos, as definições do Map Storage estão atualmente desativadas.</string>
	<!-- Alert message that downloading is in progress. -->
	<string name="downloading_is_active">A descarga do país está atualmente em progresso.</string>
	<!-- Message that will be shown in alert view, when we ask user to leave review on App Store -->
	<string name="appStore_message">Esperamos que esteja a disfrutar da utilização do MAPS.ME! Se assim for, por favor classifique ou dê a sua opinião sobre a app na App Store. Vai demorar menos de um minuto mas pode mesmo ajudar-nos. Obrigado pelo seu apoio!</string>
	<!-- No, thanks -->
	<string name="no_thanks">Não, obrigado</string>
	<!-- Share one specific bookmark using SMS, %1$@ contains ge0:// and %2$@ http://ge0.me link. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 -->
	<string name="bookmark_share_sms">Veja o meu marcador no mapa do MAPS.ME. Abra a hiperligação: %1$s ou %2$s</string>
	<!-- Share my position using SMS, %1$@ contains ge0:// and %2$@ http://ge0.me link WITHOUT NAME. @NOTE non-ascii symbols in the link will make 70 bytes sms instead of 140 -->
	<string name="my_position_share_sms">Veja onde estou agora. Abra a hiperligação: %1$s ou %2$s</string>
	<!-- Subject for emailed bookmark -->
	<string name="bookmark_share_email_subject">Veja o meu marcador no mapa do MAPS.ME.</string>
	<!-- Share one specific bookmark using EMail, %1$@ is bookmark's name, %2$@ is ge0:// link and %3$@ http://ge0.me -->
	<string name="bookmark_share_email">Olá,\n\nFixei:%1$s na MAPS.ME, mapas offline mundiais. Clique nesta ligação %2$s ou nesta %3$s para ver o local no mapa.\n\nObrigado.</string>
	<!-- Subject for emailed position -->
	<string name="my_position_share_email_subject">Veja a minha localização atual no mapa MAPS.ME!</string>
	<!-- Share my position using EMail, %1$@ is ge0:// and %2$@ is http://ge0.me link WITHOUT NAME -->
	<string name="my_position_share_email">Olá,\n\nEstou aqui agora: %1$s. Clique nesta ligação %2$s ou nesta %3$s para ver o local no mapa.\n\nObrigado.</string>
	<!-- Android share by Message/SMS button text (including SMS) -->
	<string name="share_by_message">Partilhar por mensagem</string>
	<!-- Share button text which opens menu with more buttons, like Message, EMail, Facebook etc. -->
	<string name="share">Partilhar</string>
	<!-- iOS share by Message button text (including SMS) -->
	<string name="message">Mensagem</string>
	<!-- Share by email button text, also used in editor. -->
	<string name="email">Email</string>
	<!-- Copy Link -->
	<string name="copy_link">Copiar hiperligação</string>
	<!-- Text for the button that returns to caller application -->
	<string name="more_info">Mostrar informação adicional</string>
	<!-- Text for message when used successfully copied something -->
	<string name="copied_to_clipboard">Copiado para a Área de Transferência: %1$s</string>
	<!-- Setting label for statistics turn on/off -->
	<string name="allow_statistics">Enviar Estatísticas</string>
	<!-- place preview title -->
	<string name="info">Info</string>
	<!-- Used for bookmark editing -->
	<string name="done">Feito</string>
	<!-- Summary for preferences in MWM -->
	<string name="yopme_pref_summary">Escolha as definições de Ecrã Posterior</string>
	<!-- Title for yopme preferences in MWM -->
	<string name="yopme_pref_title">Configurações do Ecrã Posterior</string>
	<!-- Hint for upper-right icon p2b -->
	<string name="show_on_backscreen">Mostrar no Ecrã Posterior</string>
	<!-- Prints version number in About dialog -->
	<string name="version">Versão: %s</string>
	<!-- Confirmation in downloading countries dialog -->
	<string name="are_you_sure">Tem a certeza de que pretende continuar?</string>
	<!-- Title for tracks category in bookmarks manager -->
	<string name="tracks_title">Percursos</string>
	<!-- Length of track in cell that describes route -->
	<string name="length">Comprimento</string>
	<string name="share_my_location">Partilhar a minha localização</string>
	<string name="menu_search">Pesquisar</string>
	<!-- Settings screen: "Map" category title -->
	<string name="prefs_group_map">Mapa</string>
	<!-- Settings screen: "Miscellaneous" category title -->
	<string name="prefs_group_misc">Diversos</string>
	<string name="prefs_group_route">Navegação</string>
	<string name="pref_zoom_title">Botões de zoom</string>
	<string name="pref_zoom_summary">Mostrar no ecrã</string>
	<!-- Settings «Map» category: «Night style» title -->
	<string name="pref_map_style_title">Modo Noturno</string>
	<!-- «Map style» entry value -->
	<string name="pref_map_style_default">Desligado</string>
	<!-- «Map style» entry value -->
	<string name="pref_map_style_night">Ligado</string>
	<!-- «Map style» entry value -->
	<string name="pref_map_style_auto">Automático</string>
	<!-- Settings «Map» category: «Perspective view» title -->
	<string name="pref_map_3d_title">Visão em Perspectiva</string>
	<!-- Settings «Map» category: «3D buildings» title -->
	<string name="pref_map_3d_buildings_title">Prédios em 3D</string>
	<!-- Settings «Map» category: «3D buildings» summary -->
	<string name="pref_map_3d_buildings_subtitle">Afeta a vida da bateria</string>
	<!-- Settings «Route» category: «Tts enabled» title -->
	<string name="pref_tts_enable_title">Instruções de voz</string>
	<!-- Settings «Route» category: «Tts language» title -->
	<string name="pref_tts_language_title">Idioma da voz</string>
	<!-- Settings «Route» category: «Tts unavailable» subtitle -->
	<string name="pref_tts_unavailable">Não disponível</string>
	<!-- Title for "Other" section in TTS settings. -->
	<string name="pref_tts_other_section_title">Outro</string>
	<string name="pref_tts_how_to_set_up_voice">Como configurar a voz</string>
	<!-- Settings «Map» category: «Record track» title -->
	<string name="pref_track_record_title">Trajeto recente</string>
	<string name="pref_map_auto_zoom">Zoom automático</string>
	<string name="duration_disabled">Desligado</string>
	<string name="duration_1_hour">1 hora</string>
	<string name="duration_2_hours">2 horas</string>
	<string name="duration_6_hours">6 horas</string>
	<string name="duration_12_hours">12 horas</string>
	<string name="duration_1_day">1 dia</string>
	<string name="recent_track_help_text">Permite-lhe gravar um caminho percorrido durante um determinado período e vê-lo no papa. Nota: esta funcionalidade provoca uma maior utilização da bateria. A rota será automaticamente removida do mapa após o intervalo de tempo expirar.</string>
	<string name="pref_track_ios_caption">O trajeto recente mostra o seu caminho percorrido.</string>
	<string name="pref_track_ios_subcaption">Por favor, selecione o intervalo de tempo para gravação do percurso.</string>
	<string name="placepage_distance">Distância</string>
	<string name="placepage_coordinates">Coordenadas</string>
	<string name="placepage_unsorted">Não classificado</string>
	<string name="search_show_on_map">Ver no mapa</string>
	<!-- Used to warn user when fixing KitKat issue -->
	<string name="kitkat_migrate_ok">O armazenamento de dados do mapa foi otimizado. Por favor, reinicie a app.\n\nA pasta MapsWithMe na raiz do cartão SD já não é necessária, pode excluí-la.</string>
	<!-- Used to warn user when fixing KitKat issue -->
	<string name="kitkat_migrate_failed">Devido às alterações no Android 4.4, é necessário otimizar o armazenamento de dados do mapa, mas não há espaço suficiente para copiar os dados do mapa.\n\nPor favor, liberte a memória, caso contrário, os mapas estarão disponíveis somente no modo de leitura.</string>
	<!-- Used to warn user when fixing KitKat issue -->
	<string name="bookmark_move_fail">É necessário mover os seus marcadores para a memória interna, mas não há espaço disponível para eles. Por favor, liberte a memória, caso contrário, os marcadores não estarão disponíveis.</string>
	<!-- Used to warn user when fixing KitKat issue -->
	<string name="kitkat_optimization_in_progress">O seu armazenamento de seus mapas está agora a ser otimizado. Por favor, aguarde. Este processo pode demorar alguns minutos.</string>
	<!-- Used in More Apps menu -->
	<string name="free">Grátis</string>
	<!-- Used in More Apps menu -->
	<string name="buy">Comprar</string>
	<!-- 1st search button-like result -->
	<string name="search_on_map">Pesquisar no mapa</string>
	<!-- toast with an error -->
	<string name="no_route_found">Não foi encontrado nenhum trajecto</string>
	<!-- route title -->
	<string name="route">Trajeto</string>
	<!-- category title -->
	<string name="routes">Trajetos</string>
	<!-- text of notification -->
	<string name="download_map_notification">Descarregue o mapa do local onde estiver</string>
	<!-- text of notification -->
	<string name="pro_version_is_free_today">A versão completa do MAPS.ME é hoje grátis! Descarregue e conte aos seus amigos.</string>
	<!-- Dialog for transferring maps from lite to pro. -->
	<string name="move_lite_maps_to_pro">Estamos a transferir os seus mapas descarregados da MAPS.ME Lite para a MAPS.ME. Isto pode demorar alguns minutos.</string>
	<!-- Message to display when maps moved. -->
	<string name="move_lite_maps_to_pro_ok">Os seus mapas descarregados estão transferidos com sucesso para a MAPS.ME.</string>
	<!-- Message to display when maps move failed. -->
	<string name="move_lite_maps_to_pro_failed">Falhou a transferência dos seus mapas. Por favor, elimine a MAPS.ME Lite e descarregue os mapas novamente.</string>
	<!-- Text in menu -->
	<string name="settings_and_more">Definições e Mais</string>
	<!-- Text in menu -->
	<string name="website">Site</string>
	<!-- Text in menu -->
	<string name="maps_me_community">Comunidade MAPS.ME</string>
	<!-- Text in menu -->
	<string name="like_on_facebook">Gostar no Facebook</string>
	<!-- Text in menu -->
	<string name="follow_on_twitter">Seguir no Twitter</string>
	<!-- Text in menu -->
	<string name="contact_us">Contacte-nos</string>
	<!-- Settings: Send feedback button and dialog title -->
	<string name="feedback">Comentários</string>
	<!-- Text in menu -->
	<string name="subscribe_to_news">Subscreva as nossas notícias</string>
	<!-- Text in menu -->
	<string name="rate_the_app">Classificar o aplicativo</string>
	<!-- Text in menu -->
	<string name="help">Ajuda</string>
	<!-- Text in menu -->
	<string name="copyright">Direitos de Autor</string>
	<!-- Text in menu -->
	<string name="report_a_bug">Relatar um problema</string>
	<!-- Email subject -->
	<string name="subscribe_me_subject">Por favor inscrevam-me na newsletter da MAPS.ME</string>
	<!-- Email body -->
	<string name="subscribe_me_body">Quero ser o(a) primeiro(a) a saber sobre as últimas notícias, actualizações e promoções. Posso cancelar a minha subscrição a qualquer altura.</string>
	<!-- About text -->
	<string name="about_text">A MAPS.ME oferece os mapas offline mais rápidos de todas as cidades, de todos os países do mundo. Viaje com plena confiança: onde estiver, a MAPS.ME ajuda a localizar-se no mapa, a encontrar o restaurante, hotel, banco, posto de gasolina, etc. mais próximos. Não requer ligação à Internet.\n\nEstamos sempre a trabalhar em novas funcionalidades e gostaríamos de saber a sua opinião sobre como poderíamos melhorar a MAPS.ME. Se tiver algum problema com a app, não hesite em contactar-nos em support\@maps.me. Respondemos a cada pedido!\n\nGosta da MAPS.ME e quer apoiar-nos? Há algumas maneiras simples e absolutamente gratuitas:\n\n- publique um comentário no seu App Market\n- faça \"gosto\" na nossa página do Facebook http://www.facebook.com/mapswithme\n- ou fale da MAPS.ME à sua mãe, amigos e colegas :)\n\nObrigado por estar connosco. Agradecemos imenso o seu apoio!\n\nP. S. Tiramos os dados do OpenStreetMap, um projeto de mapeamento semelhante à Wikipedia, que permite aos utilizadores criarem e editarem mapas. Se vir que algo está em falta ou errado no mapa, pode corrigir diretamente os mapas em https://www.openstreetmap.org e as suas alterações irão aparecer na app MAPS.ME com o lançamento da próxima versão.</string>
	<!-- Alert text -->
	<string name="email_error_body">O cliente de email não está configurado. Por favor, configure-o ou utilize qualquer outro modo para nos contactar através de %s</string>
	<!-- Alert title -->
	<string name="email_error_title">Erro de envio de email</string>
	<!-- Settings item title -->
	<string name="pref_calibration_title">Calibração de bússola</string>
	<!-- Search category -->
	<string name="wifi">WiFi</string>
	<!-- Update map suggestion -->
	<string name="routing_map_outdated">Por favor, atualize o mapa para criar uma rota.</string>
	<!-- Update maps suggestion -->
	<string name="routing_update_maps">A nova versão do MAPS.ME permite criar rotas a partir da sua posição atual até um ponto de destino. Por favor, atualize o maps para utilizar esta funcionalidade.</string>
	<!-- Update all button text -->
	<string name="downloader_update_all_button">Atualizar tudo</string>
	<!-- Cancel all button text -->
	<string name="downloader_cancel_all">Cancelar Tudo</string>
	<!-- Downloaded maps category -->
	<string name="downloader_downloaded_subtitle">Descarregado</string>
	<!-- Downloaded maps category -->
	<string name="downloader_available_maps">Disponível</string>
	<!-- Country queued for download -->
	<string name="downloader_queued">Na fila</string>
	<string name="downloader_near_me_subtitle">Perto de mim</string>
	<string name="downloader_status_maps">Mapas</string>
	<string name="downloader_download_all_button">Descarregar tudo</string>
	<string name="downloader_downloading">Descarregando:</string>
	<string name="downloader_search_results">Encontrado</string>
	<!-- Disclaimer message -->
	<string name="routing_disclaimer">Ao criar rotas no app MAPS.ME, por favor, lembre-se do seguinte:\n\n  - As rotas sugeridas podem apenas ser consideradas como recomendações.\n - As condições da estrada, regras de trânsito e sinais têm maior prioridade do que os conselhos de navegação.\n - O mapa poderá estar errado, ou desatualizado, e as rotas poderão não ser criadas da melhor forma possível.\n\n  Circule em segurança nas estradas e cuide do seu bem estar!</string>
	<!-- Outdated maps category -->
	<string name="downloader_outdated_maps">Desatualizado</string>
	<!-- Up to date maps category -->
	<string name="downloader_uptodate_maps">Atualizado</string>
	<!-- Status of outdated country in the list -->
	<string name="downloader_status_outdated">Atualizar</string>
	<!-- Status of failed country in the list -->
	<string name="downloader_status_failed">Falhou</string>
	<!-- Displayed in a dialog that appears when a user tries to delete a map while the app is in the follow route mode -->
	<string name="downloader_delete_map_while_routing_dialog">Favor parar a navegação para apagar o mapa.</string>
	<!-- Show when user try build route, but we don't know where he -->
	<string name="routing_failed_unknown_my_position">A localização atual não foi definida. Por favor especifique a localização para criar o trajeto.</string>
	<!-- Show if use has not routing file, or InconsistentMWMandRoute -->
	<string name="routing_failed_has_no_routing_file">São necessários dados adicionais para criar uma rota. Descarregar os dados agora?</string>
	<!-- StartPointNotFound -->
	<string name="routing_failed_start_point_not_found">Impossível calcular o trajeto. Não há estradas próximas ao seu ponto de partida.</string>
	<!-- EndPointNotFound -->
	<string name="routing_failed_dst_point_not_found">Impossível calcular o trajeto. Não há estradas próximas ao seu destino.</string>
	<!-- PointsInDifferentMWM -->
	<string name="routing_failed_cross_mwm_building">Só podem ser criados trajetos que estejam completamente contidos num único mapa.</string>
	<!-- RouteNotFound -->
	<string name="routing_failed_route_not_found">Não foi encontrado um trajeto entre a origem e o destino selecionados. Por favor selecione um ponto de partida ou de chegada diferente.</string>
	<!-- InternalError -->
	<string name="routing_failed_internal_error">Ocorreu um erro interno. Por favor experimente apagar o mapa e depois descarregue-o novamente. Se o problema persistir, contacte-nos através de support\@maps.me.</string>
	<!-- Context menu item for downloader. -->
	<string name="downloader_download_map_and_routing">Descarregar Mapa + Roteamento</string>
	<!-- Context menu item for downloader. -->
	<string name="downloader_download_routing">Descarregar Roteamento</string>
	<!-- Context menu item for downloader. -->
	<string name="downloader_delete_routing">Apagar Roteamento</string>
	<!-- Context menu item for downloader. -->
	<string name="downloader_download_map">Baixar o mapa</string>
	<string name="downloader_download_map_no_routing">Baixar mapa sem roteamento</string>
	<!-- Button for routing. -->
	<string name="routing_go">Avançar!</string>
	<!-- Item status in downloader. -->
	<string name="downloader_retry">Repetir</string>
	<!-- Item in context menu. -->
	<string name="downloader_map_and_routing">Mapa + Criação de Trajeto</string>
	<!-- Item in context menu. -->
	<string name="downloader_delete_map">Apagar Mapa</string>
	<!-- Item in context menu. -->
	<string name="downloader_update_map">Atualizar Mapa</string>
	<!-- Item in context menu. -->
	<string name="downloader_update_map_and_routing">Atualizar Mapa + Criação de Trajeto</string>
	<!-- Item in context menu. -->
	<string name="downloader_map_only">Apenas Mapa</string>
	<!-- Toolbar title -->
	<string name="toolbar_application_menu">Menu de Aplicação</string>
	<!-- Preference text -->
	<string name="pref_use_google_play">Use o Google Play Serviços para determinar a sua localização actual</string>
	<!-- Text for rating dialog -->
	<string name="rating_just_rated">Acabei de avaliar o seu app</string>
	<!-- Text for rating dialog -->
	<string name="rating_user_since">Sou usuário do MAPS.ME desde %s</string>
	<!-- Text for rating dialog -->
	<string name="rating_do_like_maps">Você gosta de MAPS.ME?</string>
	<!-- Text for rating dialog -->
	<string name="rating_tap_star">Toque em alguma estrela para classificar o nosso app.</string>
	<!-- Text for rating dialog -->
	<string name="rating_thanks">Obrigado!</string>
	<!-- Text for rating dialog -->
	<string name="rating_share_ideas">Compartilhe quaisquer ideias ou problemas para que possamos melhorar o app para você.</string>
	<!-- Text for rating dialog -->
	<string name="rating_send_feedback">Envie seu comentário</string>
	<!-- Text for g+ dialog -->
	<string name="rating_google_plus">Clique em g+ para contar aos seus amigos sobre o app.</string>
	<!-- Text for routing error dialog -->
	<string name="routing_download_maps_along">Descarregar todos os mapas ao longo do trajeto</string>
	<!-- Text for routing error dialog -->
	<string name="routing_download_map">Obter mapa</string>
	<!-- Text for routing error dialog -->
	<string name="routing_download_map_and_routing">Descarregue o mapa e os dados de itinerário atualizados para acessar todos os recursos do MAPS.ME.</string>
	<!-- Text for routing error dialog -->
	<string name="routing_get_routing_data">Obter dados de itinerário</string>
	<!-- Text for routing error dialog -->
	<string name="routing_get_additional_data">São necessários dados adicionais para criar rotas a partir da sua localização.</string>
	<!-- Text for routing error dialog -->
	<string name="routing_requires_all_map">É necessário baixar e atualizar todos os mapas entre sua localização e o destino para criar uma rota.</string>
	<!-- Text for routing error dialog -->
	<string name="routing_not_enough_space">Espaço insuficiente</string>
	<!-- Text for routing error dialog -->
	<string name="routing_download_more_than_avail">É necessário descarregar %1$s MB, mas há apenas %2$s MB disponíveis.</string>
	<!-- Text for routing error dialog -->
	<string name="routing_download_roaming">Você fará o download de %s MB através de Dados Móveis (em Roaming). Isto poderá resultar em cobranças adicionais, dependendo do seu plano de dados móveis.</string>
	<!-- bookmark button text -->
	<string name="bookmark">favorito</string>
	<!-- map is not downloaded -->
	<string name="not_found_map">O mapa para a sua localização não foi descarregado</string>
	<!-- location service disabled -->
	<string name="enable_location_services">Por favor active os Serviços de Localização</string>
	<!-- download map -->
	<string name="download_map">Descarregue o mapa para a sua localização</string>
	<!-- download map on iPhone -->
	<string name="download_map_iphone">Descarregue o mapa da localização atual para o seu iPhone</string>
	<!-- clear pin -->
	<string name="nearby">Próximo</string>
	<!-- clear pin -->
	<string name="clear_pin">Limpar marcação</string>
	<!-- location is undefined -->
	<string name="undefined_location">A localização actual não foi definida.</string>
	<!-- download country of your location -->
	<string name="download_country">Descarregue o país da sua localização actual</string>
	<!-- download failed -->
	<string name="download_failed">descarga falhou</string>
	<!-- get the map -->
	<string name="get_the_map">Obter mapa</string>
	<string name="save">Salvar</string>
	<string name="edit_description_hint">Suas descrições (texto ou html)</string>
	<string name="new_group">novo grupo</string>
	<string name="create">criar</string>
	<!-- red color -->
	<string name="red">Vermelho</string>
	<!-- yellow color -->
	<string name="yellow">Amarelo</string>
	<!-- blue color -->
	<string name="blue">Azul</string>
	<!-- green color -->
	<string name="green">Verde</string>
	<!-- purple color -->
	<string name="purple">Roxo</string>
	<!-- orange color -->
	<string name="orange">Laranja</string>
	<!-- brown color -->
	<string name="brown">Marrom</string>
	<!-- pink color -->
	<string name="pink">Rosa</string>
	<!-- Wi-Fi available -->
	<string name="WiFi_available">Sim</string>

	<!-- SECTION: Routing dialogs strings -->
	<string name="dialog_routing_disclaimer_title">Ao seguir a rota, lembre-se de que:</string>
	<string name="dialog_routing_disclaimer_priority">— As condições da estrada, as leis de trânsito e as sinalizações da pista sempre terão prioridade acima das sugestões de navegação;</string>
	<string name="dialog_routing_disclaimer_precision">— O mapa pode estar desatualizado, e a rota indicada pode não ser a melhor maneira de chegar-se ao destino;</string>
	<string name="dialog_routing_disclaimer_recommendations">— As rotas indicadas devem ser tratadas apenas como sugestões;</string>
	<string name="dialog_routing_disclaimer_borders">— Use de cautela em rotas de zonas fronteiriças: as rotas criadas por nosso aplicativo podem algumas vezes cruzar fronteiras nacionais em locais não autorizados;</string>
	<string name="dialog_routing_disclaimer_beware">Fique sempre alerta nas estradas!</string>
	<string name="dialog_routing_check_gps">Verifique o sinal do GPS</string>
	<string name="dialog_routing_error_location_not_found">A rota não foi traçada, pois não foi possível identificar as coordenadas do GPS.</string>
	<string name="dialog_routing_location_turn_wifi">Verifique o sinal do GPS. Ative o Wi-Fi para melhorar a precisão da localização.</string>
	<string name="dialog_routing_location_turn_on">Ative os serviços de localização</string>
	<string name="dialog_routing_location_unknown_turn_on">Não foi possível localizar as coordenadas do GPS. Ative os serviços de localização para que a rota seja traçada.</string>
	<string name="dialog_routing_location_unknown">Não foi possível obter as coordenadas GPS.</string>
	<string name="dialog_routing_download_files">Descarregar os arquivos necessários</string>
	<string name="dialog_routing_download_and_update_all">Descarregue e actualize todos os dados de mapa e roteamento ao longo do trajeto desejado para que a rota seja traçada.</string>
	<string name="dialog_routing_routes_size">Arquivos de dados de roteamento</string>
	<string name="dialog_routing_unable_locate_route">Não foi possível encontrar uma rota</string>
	<string name="dialog_routing_cant_build_route">Não foi possível traçar uma rota.</string>
	<string name="dialog_routing_change_start_or_end">Ajuste o ponto de partida ou o ponto de chegada.</string>
	<string name="dialog_routing_change_start">Ajuste o ponto de partida</string>
	<string name="dialog_routing_start_not_determined">A rota não foi traçada, pois não foi possível localizar o ponto de partida.</string>
	<string name="dialog_routing_select_closer_start">Selecione um ponto de partida mais perto de uma estrada.</string>
	<string name="dialog_routing_change_end">Ajuste o ponto de chegada</string>
	<string name="dialog_routing_end_not_determined">A rota não foi traçada, pois não foi possível localizar o ponto de chegada.</string>
	<string name="dialog_routing_select_closer_end">Selecione um ponto de chegada mais perto de uma estrada.</string>
	<string name="dialog_routing_change_intermediate">Não foi possível localizar o ponto intermédio.</string>
	<string name="dialog_routing_intermediate_not_determined">Ajuste o seu ponto intermédio.</string>
	<string name="dialog_routing_system_error">Erro de sistema</string>
	<string name="dialog_routing_application_error">Não foi possível traçar uma rota devido a um erro no aplicativo.</string>
	<string name="dialog_routing_try_again">Tente novamente</string>
	<string name="dialog_routing_send_error">Relatar o Problema</string>
	<string name="dialog_routing_if_get_cross_route">Deseja traçar uma rota mais direta, mas que se estenda por mais de um mapa?</string>
	<string name="dialog_routing_cross_route_is_optimal">Há uma rota disponível que vai além dos limites deste mapa.</string>
	<string name="not_now">Agora Não</string>
	<string name="dialog_routing_build_route">Traçar</string>
	<string name="dialog_routing_download_and_build_cross_route">Deseja descarregar o mapa e traçar uma rota melhor, mas que se estenda por mais de um mapa?</string>
	<string name="dialog_routing_download_cross_route">Descarregue o mapa para traçar uma rota melhor que vai além dos limites desse mapa.</string>
	<string name="dialog_routing_cross_route_always">Sempre cruzar esse limite</string>

	<!-- SECTION: Strings for downloading map from search -->
	<string name="search_without_internet_advertisement">Para começar a pesquisar e criar rotas, por favor, descarregue o mapa. Assim, não precisará mais de uma conexão com a internet.</string>
	<string name="search_select_map">Selecionar Mapa</string>
	<string name="search_select_other_map">Selecionar Outro Mapa</string>
	<!-- «Show» context menu -->
	<string name="show">Mostrar</string>
	<!-- «Hide» context menu -->
	<string name="hide">Ocultar</string>
	<!-- «Rename» context menu -->
	<string name="rename">Renomear</string>
	<!-- Bottom sheet: expand button (should be short) -->
	<string name="bottom_sheet_more">Mais…</string>
	<!-- Failed planning route message in navigation view -->
	<string name="routing_planning_error">Falhou o Planeamento da Rota</string>
	<!-- Arrive routing message in navigation view -->
	<string name="routing_arrive">Chegada: %s</string>
	<!-- Text for routing::RouterResultCode::FileTooOld dialog. -->
	<string name="dialog_routing_download_and_update_maps">Para criar uma rota, por favor, baixe e atualize todos os mapas ao longo do trajeto.</string>
	<string name="rate_alert_title">Gosta do aplicativo?</string>
	<string name="rate_alert_default_message">Obrigado por usar MAPS.ME. Por favor, classifique o aplicativo. Seu feedback nos ajuda a melhorar.</string>
	<string name="rate_alert_five_star_message">Viva! Também amamos você!</string>
	<string name="rate_alert_four_star_message">Obrigado, faremos o melhor possível!</string>
	<string name="rate_alert_less_than_four_star_message">Alguma ideia sobre como podemos melhorar?</string>
	<string name="categories">Categorias</string>
	<string name="history">Histórico</string>
	<string name="next_turn_then">Em seguida</string>
	<string name="closed">Fechado</string>
	<string name="back_to">Voltar para %s</string>
	<string name="search_not_found">Lamento, mas não encontrei nada.</string>
	<string name="search_not_found_query">Por favor, tente outro termo de busca.</string>
	<string name="search_not_found_map">Por favor, descarregue o mapa em que está pesquisando.</string>
	<string name="search_not_found_location">Descarregue o mapa da sua localização atual.</string>
	<string name="search_history_title">Histórico de Busca</string>
	<string name="search_history_text">Visualizar as buscas recentes.</string>
	<string name="clear_search">Limpar histórico de pesquisa</string>
	<!-- Title for settings to enable/disable showcase menu button -->
	<string name="showcase_settings_title">Mostrar ofertas</string>
	<!-- Place Page link to Wikipedia article (if map object has it). -->
	<string name="read_in_wikipedia">Wikipédia</string>
	<string name="p2p_route_planning">Planejar rota</string>
	<string name="p2p_your_location">Localização atual</string>
	<string name="p2p_from">Ponto de partida</string>
	<string name="p2p_to">Ponto de destino</string>
	<string name="p2p_start">Iniciar</string>
	<string name="p2p_planning">Planejando…</string>
	<string name="p2p_from_here">De</string>
	<string name="p2p_to_here">Itinerário para</string>
	<string name="p2p_only_from_current">Só é possível navegar a partir da sua localização actual.</string>
	<string name="p2p_reroute_from_current">Deseja planejar uma rota a partir da sua localização actual?</string>
	<string name="whats_new_next_button">Próxima</string>
	<string name="editor_time_add">Adicionar Horário</string>
	<string name="editor_time_delete">Eliminar Horário</string>
	<!-- Text for allday switch. -->
	<string name="editor_time_allday">Todo o Dia (24 horas)</string>
	<string name="editor_time_open">Aberto</string>
	<string name="editor_time_close">Fechado</string>
	<string name="editor_time_add_closed">Inserir Horas Sem Funcionamento</string>
	<string name="editor_time_title">Horário de Funcionamento</string>
	<string name="editor_time_advanced">Modo Avançado</string>
	<string name="editor_time_simple">Modo Simples</string>
	<string name="editor_hours_closed">Horas Sem Funcionamento</string>
	<string name="editor_example_values">Valores de exemplo</string>
	<string name="editor_correct_mistake">Corrigir erro</string>
	<string name="editor_correct_mistake_message">Fez um erro de edição. Corrija-o ou mude para o modo simples.</string>
	<string name="editor_add_select_location">Local</string>
	<string name="editor_done_dialog_1">Modificou o mapa-múndi. Não esconda isto! Diga aos seus amigos e editem-no juntos.</string>
	<string name="editor_done_dialog_2">Esta é a sua segunda melhoria ao mapa. Agora, está no %dº lugar na lista de editores de mapas. Fale disto aos seus amigos.</string>
	<string name="editor_done_dialog_3">Melhorou o mapa, fale disto aos seus amigos e editem o mapa juntos.</string>
	<string name="share_with_friends">Compartilhar com amigos</string>
	<string name="editor_report_problem_desription_1">Por favor, descreva o problema ao pormenor para que a comunidade OpenStreeMap possa corrigir o erro.</string>
	<string name="editor_report_problem_desription_2">Ou faça-o sozinho em https://www.openstreetmap.org/</string>
	<string name="editor_report_problem_send_button">Enviar</string>
	<string name="editor_report_problem_title">Problema</string>
	<string name="editor_report_problem_no_place_title">O lugar não existe</string>
	<string name="editor_report_problem_under_construction_title">Encerrado para manutenção</string>
	<string name="editor_report_problem_duplicate_place_title">Lugar em duplicado</string>
	<string name="first_launch_congrats_title">MAPS.ME está pronto para utilização</string>
	<string name="first_launch_congrats_text">Busque qualquer lugar do mundo e navegue offline, gratuitamente.</string>
	<string name="migrate_title">Importante!</string>
	<!-- Android uses image instead of text. -->
	<string name="download_all">Descarregar tudo</string>
	<string name="delete_all">Excluir todos</string>
	<string name="autodownload">Download automático</string>
	<string name="disable_autodownload">Desativar o download automático</string>
	<!-- Place Page opening hours text -->
	<string name="closed_now">Fechado agora</string>
	<!-- Place Page opening hours text -->
	<string name="daily">Diariamente</string>
	<string name="twentyfour_seven">Dia e noite</string>
	<string name="day_off_today">Dia de folga hoje</string>
	<string name="day_off">Dia de folga</string>
	<string name="today">Hoje</string>
	<string name="sunrise_to_sunset">Do amanhecer ao anoitecer</string>
	<string name="sunset_to_sunrise">Do pôr do sol ao amanhecer</string>
	<string name="add_opening_hours">Adicionar horário de funcionamento</string>
	<string name="edit_opening_hours">Editar horário de funcionamento</string>
	<string name="no_osm_account">Sem conta no OpenStreetMap?</string>
	<string name="register_at_openstreetmap">Cadastrar-se</string>
	<string name="password_8_chars_min">Senha (mínimo de 8 caracteres)</string>
	<string name="invalid_username_or_password">Nome de usuário ou senha inválida.</string>
	<string name="login">Acessar</string>
	<string name="password">Senha</string>
	<string name="forgot_password">Esqueceu sua senha?</string>
	<!-- Forgot Password dialog title -->
	<string name="restore_password">Recuperar senha</string>
	<string name="enter_email_address_to_reset_password">Digite o endereço de email que você usou ao cadastrar-se, e nós lhe enviaremos o link para redefinir a sua senha.</string>
	<string name="reset_password">Redefinir senha</string>
	<string name="username">Nome de usuário</string>
	<string name="osm_account">Conta OSM</string>
	<string name="logout">Encerrar sessão</string>
	<string name="login_and_edit_map_motivation_message">Acesse e edite informações dos objetos no mapa e eles serão disponibilizados para milhões de outros usuários. Vamos melhorar o mundo juntos.</string>
	<!-- Information text: "Last upload 11.01.2016" -->
	<string name="last_upload">Último upload</string>
	<!-- Motivates user to login/register, title above login buttons. -->
	<string name="you_have_edited_your_first_object">Você editou o seu primeiro objeto!</string>
	<string name="thank_you">Obrigado</string>
	<string name="login_with_google">Entrar com Google</string>
	<string name="login_with_facebook">Entrar com Facebook</string>
	<string name="login_with_openstreetmap">Entrar com www.openstreetmap.org</string>
	<string name="edit_place">Editar o local</string>
	<string name="place_name">Nome do local</string>
	<!-- title above languages list cells in the editor, below editable name text field. -->
	<string name="other_languages">Outros idiomas</string>
	<!-- small button to open list with names in different languages -->
	<string name="show_more">Mostrar mais</string>
	<!-- small button to close list with names in different languages -->
	<string name="show_less">Mostrar menos</string>
	<string name="add_language">Adicionar um idioma</string>
	<string name="street">Rua</string>
	<!-- Editable House Number text field (in address block). -->
	<string name="house_number">N.º de porta</string>
	<string name="details">Detalhes</string>
	<!-- Text field to enter non-existing street name, below list of known streets around -->
	<string name="add_street">Adicionar uma rua</string>
	<string name="choose_language">Escolher um idioma</string>
	<string name="choose_street">Escolher uma rua</string>
	<string name="postal_code">Código postal</string>
	<string name="cuisine">Culinária</string>
	<string name="select_cuisine">Selecione a Culinária</string>
	<!-- login text field -->
	<string name="email_or_username">Email ou nome de usuário</string>
	<string name="phone">Telefone</string>
	<string name="please_note">Aviso</string>
	<string name="common_no_wifi_dialog">Nenhuma ligação Wi-Fi. Deseja continuar com os dados móveis?</string>
	<string name="downloader_delete_map_dialog">Todas as alterações ao mapa serão eliminadas juntamente com o mapa.</string>
	<string name="downloader_update_maps">Atualizar mapas</string>
	<string name="downloader_mwm_migration_dialog">Para criar um itinerário é necessário actualizar todos os mapas e, em seguida, planejá-lo novamente.</string>
	<string name="downloader_search_field_hint">Encontrar o mapa</string>
	<string name="migration_update_all_button">Atualizar todos os mapas</string>
	<string name="migration_delete_all_download_current_button">Descarregue o mapa atual e elimine os antigos</string>
	<string name="migration_download_error_dialog">Erro de download</string>
	<string name="common_check_internet_connection_dialog">Por favor, verifique as suas opções e certifique-se de que o dispositivo está ligado à Internet.</string>
	<string name="downloader_no_space_title">Não há espaço suficiente</string>
	<string name="downloader_no_space_message">Por favor, remova os dados desnecessários</string>
	<string name="editor_general_auth_error_dialog">Erro genérico de início de sessão.</string>
	<string name="editor_login_error_dialog">Erro de início de sessão.</string>
	<string name="editor_login_failed_dialog">O início de sessão falhou</string>
	<string name="editor_username_error_dialog">O nome de utilizador é inválido</string>
	<string name="editor_place_edited_dialog">Editou um objeto!</string>
	<string name="editor_login_with_osm">Iniciar sessão com a OpenStreetMap</string>
	<string name="editor_profile_changes">Alterações verificadas</string>
	<string name="editor_profile_unsent_changes">Não enviado:</string>
	<string name="editor_focus_map_on_location">Mova o mapa para selecionar o lugar correto do objeto.</string>
	<string name="editor_add_select_category">Selecionar categoria</string>
	<string name="editor_add_select_category_popular_subtitle">Popular</string>
	<string name="editor_add_select_category_all_subtitle">Todas as categorias</string>
	<string name="editor_edit_place_title">Edição</string>
	<string name="editor_add_place_title">A adicionar</string>
	<string name="editor_edit_place_name_hint">Nome do lugar</string>
	<string name="editor_edit_place_category_title">Categoria</string>
	<string name="detailed_problem_description">Descrição detalhada do problema</string>
	<string name="editor_report_problem_other_title">Um problema diferente</string>
	<string name="placepage_report_problem_button">Comunicar um problema</string>
	<string name="placepage_add_business_button">Adicionar uma organização</string>
	<string name="whatsnew_smallmwm_header">Vocês têm pedido por isso e nós atendemos</string>
	<string name="whatsnew_smallmwm_message">Dividimos os mapas em partes. Agora vocês podem descarregar regiões separadas em vez do país inteiro.</string>
	<string name="whatsnew_search_header">Nova busca</string>
	<string name="whatsnew_search_message">Melhoramos consideravelmente a busca por endereço. Veja você mesmo.</string>
	<string name="whatsnew_editor_title">Editar o mapa*</string>
	<string name="whatsnew_editor_message_1">Adicione novos lugares ao mapa e edite os já existentes diretamente a partir do app.</string>
	<string name="whatsnew_editor_message_2">* A MAPS.ME utiliza dados da comunidade OpenStreetMap.</string>
	<string name="onboarding_offline_navigation_title">Nunca mais voltará a perder-se</string>
	<string name="onboarding_offline_navigation_message">Planeie itinerários ideais de automóvel e a pé, mesmo se não houver ligação à Internet!</string>
	<string name="onboarding_offline_navigation_title_2">Navegação offline</string>
	<string name="onboarding_offline_navigation_message_2">Planeie itinerários ideais de automóvel e a pé.</string>
	<string name="onboarding_offline_maps_title">MAPS.ME — acesse os mapas do mundo inteiro sem internet</string>
	<string name="onboarding_offline_maps_message">Descarregue uma vez os mapas para a área desejada e utilize as funções de navegação e de pesquisa sem uma ligação à Internet.</string>
	<string name="onboarding_notifications_message">Para receber os mapas mais recentes, receba notificações de atualizações</string>
	<string name="onboarding_notifications_title">Ativar as notificações de atualizações</string>
	<string name="onboarding_location_title">Ajude-nos a encontrá-lo</string>
	<string name="onboarding_location_message">Para utilizar a navegação e outros recursos, precisamos de aceder à sua localização geográfica.</string>
	<string name="onboarding_permissions_title">Permitir que o MAPS.ME tenha acesso ao armazenamento e localização</string>
	<string name="onboarding_permissions_message">Para que possa transferir mapas, ver locais e o trânsito perto e si e utilizar a navegação.</string>
	<string name="onboarding_welcome_title">Bem-vindo ao MAPS.ME</string>
	<string name="onboarding_welcome_first_subtitle">Mapas com navegação curva a curva grátis, rápidos, detalhados e totalmente offline.</string>
	<string name="onboarding_welcome_second_subtitle">Ao lançar a aplicação, o utilizador concorda com os &lt;a href="%1$s">Termos de Utilização&lt;/a> e a &lt;a href="%2$s">Política de Privacidade&lt;/a>.</string>
	<string name="dialog_incorrect_feature_position">Mudar local</string>
	<string name="message_invalid_feature_position">Um objeto não pode ser posicionado aqui</string>
	<string name="login_to_make_edits_visible">Inicie sessão para que outros usuários vejam as mudanças que você fez.</string>
	<string name="no_migration_during_navigation">Actualização não é permitida durante a navegação.</string>
	<!-- Error dialog no space -->
	<string name="migration_no_space_message">Para descarregar, é necessário mais espaço. Por favor, elimine os dados desnecessários.</string>
	<string name="editor_sharing_title">Melhorei os mapas do MAPS.ME</string>
	<string name="editor_comment_will_be_sent">Encaminharemos o seu comentário aos cartógrafos.</string>
	<string name="editor_unsupported_category_message">Você adicionou um local de uma categoria para a qual ainda não temos suporte. Ele aparecerá no mapa no futuro.</string>
	<!-- Downloaded 10 **of** 20 <- it is that "of" -->
	<string name="downloader_of">%1$d de %2$d</string>
	<string name="download_over_mobile_header">Descarregar usando uma conexão de rede celular?</string>
	<string name="download_over_mobile_message">Isto pode ser muito caro com alguns planos ou em roaming.</string>
	<string name="error_enter_correct_house_number">Introduzir um número de endereço correto</string>
	<string name="editor_storey_number">Número de pisos (máx. %d)</string>
	<!-- Error message in Editor when a user tries to set the number of floors for a building higher than 25 -->
	<string name="error_enter_correct_storey_number">Editar o edifício com um máximo de 25 pisos</string>
	<string name="editor_zip_code">Código Postal</string>
	<string name="error_enter_correct_zip_code">Introduza o código postal correto</string>
	<!-- Place Page title for long tap -->
	<string name="core_placepage_unknown_place">Local desconhecido</string>
	<string name="editor_other_info">Enviou uma nota ao moderador OSM</string>
	<string name="editor_detailed_description_hint">Comentário detalhado</string>
	<string name="editor_detailed_description">As suas alterações sugeridas irão ser enviadas para a comunidade OpenStreetMap. Descreva os dados que não podem ser editados no MAPS.ME</string>
	<string name="editor_more_about_osm">Mais sobre o OpenStreetMap</string>
	<string name="editor_operator">Operador</string>
	<string name="editor_tag_description">Introduza a empresa, organização ou indivíduo responsável pelas instalações.</string>
	<string name="editor_no_local_edits_title">Não tem edições locais</string>
	<string name="editor_no_local_edits_description">Isto demonstra o número das suas alterações sugeridas no mapa que atualmente só são acessíveis no seu dispositivo.</string>
	<string name="editor_send_to_osm">Enviar para OSM</string>
	<string name="editor_remove">Remover</string>
	<string name="downloader_my_maps_title">Os meus mapas</string>
	<string name="downloader_no_downloaded_maps_title">Não descarregou quaisquer mapas</string>
	<string name="downloader_no_downloaded_maps_message">Descarregar mapas para encontrar a localização e navegar offline.</string>
	<string name="downloader_find_place_hint">Pesquisar cidade ou país</string>
	<!-- Error title that appears after certain time without location. -->
	<string name="current_location_unknown_title">Continuar a detetar a sua localização atual?</string>
	<!-- Error that appears after certain time without location. -->
	<string name="current_location_unknown_message">A localização atual é desconhecida. Talvez esteja num edifício ou num túnel.</string>
	<string name="current_location_unknown_continue_button">Continuar</string>
	<string name="current_location_unknown_stop_button">Parar</string>
	<string name="current_location_unknown_error_title">A localização atual é desconhecida.</string>
	<string name="current_location_unknown_error_message">Ocorreu um erro ao pesquisar a sua localização. Verifique se o seu dispositivo está a funcionar devidamente e volte a tentar mais tarde.</string>
	<string name="whatsnew_update_editor_title">Atualizámos o editor do mapa</string>
	<string name="whatsnew_update_editor_message">Os utilizadores do MAPS.ME fizeram 200 000 alterações no mapa. Juntos, estamos a fazer os mapas mais detalhados do mundo. Junte-se a nós!</string>
	<!-- Additional text in whats new -->
	<string name="whatsnew_update_editor_message_update">Atualize todos os mapas para utilizar o Editor de Mapa.</string>
	<string name="location_services_disabled_header">Serviços de localização estão desativados</string>
	<string name="location_services_disabled_message">Permita o acesso à geolocalização nas configurações do dispositivo</string>
	<string name="location_services_disabled_1">1. Abra as configurações</string>
	<string name="location_services_disabled_2">2. Toque em \"Localização\"</string>
	<!-- iOS Dialog for the case when the location permission is not granted -->
	<string name="location_services_disabled_3">3. Selecione Durante Uso do Aplicativo</string>
	<string name="placepage_parking_surface">Superfície</string>
	<string name="placepage_parking_multistorey">Vários andares</string>
	<string name="placepage_parking_underground">Local desconhecido</string>
	<string name="placepage_parking_rooftop">Terraço</string>
	<string name="placepage_parking_sheds">Abrigos</string>
	<string name="placepage_parking_carports">Garagens</string>
	<string name="placepage_parking_boxes">Garagens</string>
	<string name="placepage_parking_pay">Pagamento</string>
	<string name="placepage_parking_free">Gratuito</string>
	<string name="placepage_parking_interval">Pagamento intervalado</string>
	<string name="placepage_entrance_number">N.º</string>
	<string name="placepage_entrance_type">Entrada</string>
	<string name="placepage_flat">apto.</string>
	<string name="placepage_open_24_7">24 / 7</string>
	<string name="place_page_booking_rating">Classificação: %s</string>
	<string name="place_page_starting_from">a partir de %s</string>
	<string name="meter">m</string>
	<string name="kilometer">Km</string>
	<string name="kilometers_per_hour">km/h</string>
	<string name="mile">M</string>
	<string name="foot">ft</string>
	<string name="miles_per_hour">mph</string>
	<string name="day">d</string>
	<string name="hour">h</string>
	<string name="minute">min</string>
	<string name="placepage_place_description">Descrição</string>
	<string name="placepage_more_button">Mais</string>
	<string name="book_button">Reservar</string>
	<string name="placepage_call_button">Chamada</string>
	<string name="placepage_edit_bookmark_button">Editar marcador</string>
	<string name="placepage_bookmark_name_hint">Nome do marcador</string>
	<string name="placepage_personal_notes_hint">Notas pessoais</string>
	<string name="placepage_delete_bookmark_button">Eliminar marcador</string>
	<string name="editor_edits_sent_message">As suas alterações sugeridas foram enviadas</string>
	<string name="editor_comment_hint">Comentário…</string>
	<string name="editor_reset_edits_message">Descartar todas as alterações locais?</string>
	<string name="editor_reset_edits_button">Descartar</string>
	<string name="editor_remove_place_message">Remover local adicionado?</string>
	<string name="editor_remove_place_button">Remover</string>
	<string name="editor_status_sending">A enviar…</string>
	<string name="editor_place_doesnt_exist">O local não existe</string>
	<string name="text_more_button">…mais</string>
	<!-- Phone number error message -->
	<string name="error_enter_correct_phone">Insira o número correto do telefone</string>
	<string name="error_enter_correct_web">Preencha com um endereço válido na internet</string>
	<string name="error_enter_correct_email">Preencha com um endereço válido de email</string>
	<string name="error_enter_correct">Preencha com um valor válido</string>
	<string name="editor_profile_changes_for_next_place">Alterações para o próximo lugar: %d</string>
	<string name="editor_profile_rating_place">Posição na classificação</string>
	<string name="booking_dialog_not_connect_header">Para reservar o hotel, ative a sua ligação à Internet</string>
	<string name="button_try">Experimente</string>
	<string name="refresh">Atualizar</string>
	<string name="last_update">Última atualização: %s</string>
	<string name="booking_checkin">check in: %s</string>
	<string name="booking_checkout">check out: %s</string>
	<string name="placepage_add_place_button">Adicionar um local ao mapa</string>
	<!-- Displayed when saving some edits to the map to warn against publishing personal data -->
	<string name="editor_share_to_all_dialog_title">Deseja enviar para todos os usuários?</string>
	<!-- iOS Dialog before publishing the modifications to the public map. -->
	<string name="editor_share_to_all_dialog_message_1">Certifique-se de não ter incluído nenhum dado pessoal.</string>
	<string name="editor_share_to_all_dialog_message_2">Verificaremos as alterações. Se tivermos perguntas, entraremos em contato com você por email.</string>
	<string name="navigation_overview_button">visão geral</string>
	<string name="navigation_stop_button">parar</string>
	<!-- Text on an empty bookmark page -->
	<string name="bookmarks_empty_title">Salvar Favoritos</string>
	<string name="bookmarks_empty_message_1">Toque em ★ para salvar locais favoritos para rápido acesso.</string>
	<string name="bookmarks_empty_message_2">Importe favoritos do Mail e da web.</string>
	<string name="bookmarks_empty_message_3">check out: %s</string>
	<!-- Name of the group for booked hotels -->
	<string name="bookmarks_group_name">Hotéis reservados</string>
	<string name="place_page_button_read_descriprion">Leia</string>
	<!-- iOS dialog for the case when recent track recording is on and the app comes back from background -->
	<string name="recent_track_background_dialog_title">Desabilitar registro de sua rota recente?</string>
	<!-- If a hotel is being shared -->
	<string name="sharing_booking">ou faça sua reserva em booking.com</string>
	<string name="off_recent_track_background_button">Desabilitar</string>
	<!-- For sharing via SMS and so on -->
	<string name="sharing_call_action_look">Procure</string>
	<string name="continue_recent_track_background_button">Continuar</string>
	<string name="recent_track_background_dialog_message">O MAPS.ME usa sua localização geográfica em segundo plano para registrar sua rota recente.</string>
	<string name="whatsnew_car_navigation_header">Navegação de veículos de fácil utilização</string>
	<string name="whatsnew_car_navigation_message">• Os elementos da navegação ocupam menos espaço.\n• Exibimos a velocidade e acrescentamos ampliação automática.</string>
	<string name="whatsnew_cycle_navigation_2_header">Navegação de bicicletas</string>
	<string name="whatsnew_cycle_navigation_2_message">• A navegação de bicicletas leva em consideração dados de terrenos.\n• Criamos rotas mais fáceis levando inclinação da estrada em consideração.</string>
	<string name="whatsnew_booking_2_header">Busca fácil de hotel</string>
	<string name="whatsnew_booking_2_message">Os resultados de busca mostram a avaliação do hotel e a categoria de preço.</string>
	<string name="whatsnew_cycle_navigation_header">Navegação para bicicleta (versão beta)</string>
	<string name="whatsnew_cycle_navigation_message">Estamos a testar a navegação para bicicleta para a nova temporada. Experimente o seu trilho preferido em bicicleta com a MAPS.ME e partilhe a sua opinião connosco.</string>
	<!-- Rate on Google Play (Android only) -->
	<string name="rate_gp">Classificar em Google Play</string>
	<!-- Share with friends: menu item title -->
	<string name="tell_friends">Indique a um amigo</string>
	<!-- Share with friends: sharing text -->
	<string name="tell_friends_text">Olá! Instale o MAPS.ME!</string>
	<!-- About short text (below logo) -->
	<string name="about_description">O MAPS.ME é uma aplicação offline essencial para viajar. O MAPS.ME baseia-se nos dados do OpenStreetMap e permite editá-los.</string>
	<!-- Text in menu -->
	<string name="blog">Blogue</string>
	<!-- Hint near allow statictics checkbox -->
	<string name="allow_statistics_hint">A recolha de estatísticas de utilização anónimas ajuda-nos a melhorar a app.</string>
	<string name="general_settings">Configurações gerais</string>
	<string name="date">Data %d</string>
	<!-- "Report a bug" -> "Generaal Feedback" -> "Something is not working" -->
	<string name="something_is_not_working">Algo não está a funcionar</string>
	<!-- For the first routing -->
	<string name="accept">Aceitar</string>
	<!-- For the first routing -->
	<string name="decline">Declinar</string>
	<string name="whats_new_route_profile_title">Circular é viver</string>
	<string name="whats_new_route_profile_message">Nas rotas para peões e ciclovias apresentamos agora o perfil de elevação.</string>
	<string name="whats_new_booking_improve_title">Poupe nas reservas de hotéis</string>
	<string name="whats_new_booking_improve_message">Agora, os resultados da pesquisa de hotéis contêm a categoria de preços.\nAdicinámos mais de 110.000 hotéis.</string>
	<!-- For place page hotel facilities block -->
	<string name="placepage_hotel_facilities">Instalações</string>
	<!-- For place page hotel nearby block -->
	<string name="placepage_hotel_nearby">Nas proximidades</string>
	<!-- For ordering a taxi (as opposed to hotels or other things) -->
	<string name="taxi_order">Chamar um táxi</string>
	<!-- How long it is until the taxi arrives -->
	<string name="taxi_wait">Esperado em %s</string>
	<!-- When there are no available taxis nearby -->
	<string name="taxi_not_found">Não consegui encontrar um táxi nas proximidades</string>
	<!-- When there are no available taxi providers nearby -->
	<string name="taxi_no_providers">O serviço de táxi não está disponível aqui</string>
	<string name="install_app">Instalar</string>
	<!-- `Filter` is a noun here -->
	<string name="booking_filters">Filtrar</string>
	<string name="booking_filters_reset">Redefinir</string>
	<!-- Beginning from a particular value and -->
	<string name="booking_filters_rating">Com classificação desde</string>
	<string name="booking_filters_rating_any">Qualquer</string>
	<string name="booking_filters_ragting_good">Bom</string>
	<string name="booking_filters_rating_very_good">Muito bom</string>
	<string name="booking_filters_rating_excellent">Excelente</string>
	<string name="booking_filters_price_category">Categoria de preços</string>
	<string name="search_no_results_title">Nenhum resultado encontrado</string>
	<string name="search_no_results_message">Tente um termo de pesquisa mais geral, diminuir o zoom ou redefinir o filtro.</string>
	<string name="search_no_results_expand_area_button">Diminuir o zoom</string>
	<string name="search_no_results_reset_button">Redefinir o filtro</string>
	<!-- noun -->
	<string name="search_in_table">Lista</string>
	<string name="booking_show_more">Mostrar mais</string>
	<string name="booking_reviews">Comentários</string>
	<string name="booking_hotel">Hotel</string>
	<!-- hotel room -->
	<string name="booking_hotel_room">Quarto</string>
	<!-- A neologism for a chat based on geographical proximity -->
	<string name="chat">Geochat</string>
	<!-- Verb. Text on a button that opens the chat. -->
	<string name="chat_open">Abrir</string>
	<string name="whatsnew_uber_header">MAPS.ME &amp; Uber</string>
	<string name="whatsnew_uber_message">Chame um táxi Uber diretamente do aplicativo!</string>
	<string name="dialog_taxi_offline">O serviço de táxi não está disponível no modo off-line.</string>
	<string name="dialog_taxi_error">O serviço de táxi está temporariamente indisponível.</string>
	<string name="mobile_data_dialog">Utilizar a internet móvel para mostrar informações detalhadas?</string>
	<string name="mobile_data_option_always">Utilizar Sempre</string>
	<string name="mobile_data_option_today">Apenas Hoje</string>
	<string name="mobile_data_option_not_today">Não Utilizar Hoje</string>
	<string name="mobile_data">Internet Móvel</string>
	<string name="mobile_data_description">Para visualizar informações detalhadas sobre os locais, tais como fotos, preços e análises, é necessário acesso à internet móvel.</string>
	<string name="mobile_data_option_never">Nunca Utilizar</string>
	<string name="mobile_data_option_ask">Perguntar Sempre</string>
	<string name="traffic_update_maps_text">Para ver os dados de tráfego, os mapas devem ser atualizados.</string>
	<string name="traffic_outdated">Os dados sobre o tráfego estão desatualizados.</string>
	<string name="big_font">Aumentar tamanho da fonte no mapa</string>
	<string name="traffic_update_app">Atualize o MAPS. ME</string>
	<!-- "traffic" as in road congestion -->
	<string name="traffic_update_app_message">Para mostrar os dados de tráfego, a aplicação deve ser atualizada.</string>
	<!-- "traffic" as in "road congestion" -->
	<string name="traffic_data_unavailable">Não existem dados de tráfego</string>
	<string name="banner_deliveryclub_title">Entrega de alimentos</string>
	<string name="banner_deliveryclub_message">Entrega rápida de 4.000 restaurantes. Encomente ao Delivery Club.</string>
	<string name="banner_lamoda_title">Loja online de vestuário e calçado</string>
	<string name="banner_lamoda_message">Mais de 1.000 marcas. Até 70% de desconto. Entrega gratuita em todo o país.</string>
	<string name="banner_tutu_title">Bilhetes de comboio online</string>
	<string name="banner_tutu_message">Bilhetes de comboio online para qualquer cidade - preços, pesquisa e reserva.</string>
	<string name="banner_geerbest_title">Loja de eletrônica online</string>
	<string name="banner_geerbest_message">Pesquisa instantânea em mais de 50.000 itens a preços baixos.</string>
	<string name="banner_rentalcars_title">Aluguer de carros online</string>
	<string name="banner_rentalcars_message">800 empresas de aluguer de automóveis em mais de 49.000 locais de aluguer de automóveis.</string>
	<!-- december -->
	<string name="whatsnew_traffic">Dados de tráfego em 36 países</string>
	<!-- december -->
	<string name="whatsnew_traffic_text">Informações sobre o trânsito actualizadas para percursos mais rápidos!</string>
	<!-- december -->
	<string name="whatsnew_traffic_roaming">Informações sobre o Tráfego em Roaming</string>
	<!-- december -->
	<string name="whatsnew_traffic_roaming_text">Requer menos de 1 MB de banda larga móvel por viagem.</string>
	<!-- december -->
	<string name="whatsnew_order_taxi">Chamar um Táxi</string>
	<!-- december -->
	<string name="whatsnew_order_taxi_text">A maioria das páginas de localização contêm agora um botão para chamar um táxi.</string>
	<!-- january -->
	<string name="whatsnew_improved_search">Pesquisa aprimorada</string>
	<!-- january -->
	<string name="whatsnew_improved_search_text">Até as pesquisas com erros ortogrtáficos obtêm resultados precisos.</string>
	<!-- january -->
	<string name="whatsnew_filters_in_search">Filtros de Pesquisa</string>
	<!-- january -->
	<string name="whatsnew_filters_in_search_text">Pesquisar Hotéis com base no preço e classificação.</string>
	<!-- january -->
	<string name="whatsnew_font_size">Tamanho da Fonte</string>
	<!-- january -->
	<string name="whatsnew_font_size_text">É possível aumentar o tamanho das letras do mapa.</string>
	<!-- Seven points and higher -->
	<string name="booking_filter_rating_num_good">7.0+</string>
	<!-- Eight points and higher -->
	<string name="booking_filter_rating_num_very_good">8.0+</string>
	<!-- Nine points and higher -->
	<string name="booking_filter_rating_num_excellent">9.0+</string>
	<!-- Simplified colour scheme for traffic information, fewer colours are used to display traffic jams on the map. The string should be kept as short as possible -->
	<string name="pref_traffic_simplified_colors_title">Cores de trânsito simplificadas</string>
	<string name="enable_logging">Ativar o histórico</string>
	<string name="whatsnew_more_info_on_hotels_title">Mais informações sobre Hotéis</string>
	<string name="whatsnew_more_info_on_hotels_message">Novo aspeto para as páginas dos hotéis: veja fotos, comentários e outras informações on-line.</string>
	<string name="whatsnew_better_routing_title">Planeamento de rotas melhorado</string>
	<string name="whatsnew_better_routing_message">• Estimativa mais precisa da hora de chegada.\n• A app leva em conta as áreas restritas e os sinais de trânsito.</string>
	<string name="whatsnew_smaller_mwm_title">Mapas Ficaram Menores</string>
	<string name="whatsnew_smaller_mwm_message">Mapas requer até 20% menos espaço de armazenamento.</string>
	<string name="whatsnew_waypoints_title">Pontos de caminho (waypoints) no Roteamento</string>
	<string name="whatsnew_waypoints_message">Toque nos locais para adicionar pontos de caminho à sua rota.</string>
	<string name="whatsnew_driving_style_title">Novo estilo de mapa para a condução</string>
	<string name="whatsnew_driving_style_message">O modo de navegação do carro ficou mais fácil de utilizar.</string>
	<string name="more_on_bookingcom">Mais em Booking.com</string>
	<string name="details_on_bookingcom">Detalhes em Booking.com</string>
	<string name="reviews_on_bookingcom">Mais opiniões em Booking.com</string>
	<string name="offline_place_page_more_information">Efetue ligação à internet para obter mais informações sobre o local.</string>
	<string name="failed_load_information">Falha ao carregar informações.</string>
	<string name="whats_new_auto_update_updating_maps">Atualização de mapas</string>
	<string name="whats_new_auto_update_title">Atualize seus mapas transferidos</string>
	<string name="whats_new_auto_update_message">Atualizar os mapas mantém atualizada a informação sobre objetos</string>
	<string name="whats_new_auto_update_button_size">Atualização (%s)</string>
	<string name="whats_new_auto_update_button_later">Atualizar manualmente mais tarde</string>
	<string name="search_hotel_filter_apartment">Apartamentos</string>
	<string name="search_hotel_filter_camp_site">Acampamento</string>
	<string name="search_hotel_filter_chalet">Chalé</string>
	<string name="search_hotel_filter_guest_house">Casa de hóspedes</string>
	<string name="search_hotel_filter_hostel">Hostel</string>
	<string name="search_hotel_filter_resort">Resort</string>
	<string name="search_hotel_filter_hotel">Hotel</string>
	<string name="search_hotel_filter_motel">Motel</string>
	<string name="create_campaign_button">Reivindicar este negócio</string>
	<string name="view_campaign_button">Negócio publicitado</string>
	<string name="search_hotel_filters_type">Tipo</string>
	<!-- Settings: "Send general feedback" button -->
	<string name="feedback_general">Opinão geral</string>
	<string name="on">Lig.</string>
	<string name="off">Deslig.</string>
	<string name="prefs_languages_information">Utilizamos o sistema TTS para instruções de voz. Muitos dispositivos Android usam o Google TTS, pode transferir ou atualizá-lo a partir do Google Play (https://play.google.com/store/apps/details?id=com.google.android.tts)</string>
	<string name="prefs_languages_information_off">Para alguns idiomas, precisará de instalar outro sintetizador de voz ou um pacote de idiomas adicional a partir da loja de aplicações (Google Play Market, Samsung Apps). Abra as Configurações do seus dispositivo → Idioma e entrada → Voz → Saída de texto para voz. Aqui pode gerir as configurações de síntese de voz (por exemplo, transferir um pacote de idioma para poder utilizá-lo sem estar ligado à Internet) ou selecionar outro motor de texto para voz.</string>
	<string name="prefs_languages_information_off_link">Para obter mais informações, consulte este guia.</string>
	<string name="whatsnew_transliteration_title">Transliteração para o latim</string>
	<string name="whatsnew_transliteration_message">Se uma rua ou um objeto não tiver nome na sua língua, será utilizado o alfabeto latino.</string>
	<string name="learn_more">Saber mais</string>
	<string name="core_exit">Sair</string>
	<string name="routing_add_start_point">Adicionar ponto de partida para planear uma rota</string>
	<string name="routing_add_finish_point">Adicionar final da viagem para planear uma rota</string>
	<string name="onboarding_welcome_message">Mapas com navegação curva a curva grátis, rápidos, detalhados e totalmente offline.</string>
	<!-- нужно как-то выделять документы, чтобы привязать позже ссылки. -->
	<string name="onboarding_welcome_agree">Ao lançar a aplicação, o utilizador concorda com os Termos de Utilização e a Política de Privacidade.</string>
	<string name="button_accept_and_continue">Aceitar e continuar</string>
	<string name="button_learn_more">Saber mais</string>
	<string name="onboarding_storage_permissions_title">Conceder acesso</string>
	<string name="onboarding_storage_permissions_message">Alterar configurações de permissões no seu dispositivo. Necessário acesso ao armazenamento para utilizar o MAPS.ME.</string>
	<string name="button_exit">Sair</string>
	<string name="onboarding_detail_permissions_title">O MAPS.ME precisa de aceder a</string>
	<!-- Default permission's name from Android settings. -->
	<string name="onboarding_detail_permissions_storage_title">Armazenamento</string>
	<string name="onboarding_detail_permissions_storage_message">Para guardar e utilizar mapas transferidos offline e guardar favoritos.</string>
	<!-- Default permission's name from Android settings. -->
	<string name="onboarding_detail_permissions_location_title">Localização</string>
	<string name="onboarding_detail_permissions_location_message">Para ver locais e o trânsito perto de si e utilizar a navegação.</string>
	<string name="onboarding_detail_permissions_storage_path_message">Também pode alterar o destino para os mapas transferidos nas configurações.</string>
	<string name="settings_device_memory">Memória do dispositivo</string>
	<string name="settings_card_memory">Memória do cartão</string>
	<string name="settings_storage_available">%s disponível</string>
	<string name="toast_location_permission_denied">Permissão de localização da aplicação não autorizada</string>
	<string name="button_use">Utilizar</string>
	<string name="planning_route_manage_route">Gerir rota</string>
	<string name="button_plan">Planear</string>
	<string name="button_add">Adicionar</string>
	<string name="placepage_remove_stop">Remover</string>
	<string name="planning_route_remove_title">Arraste aqui para remover</string>
	<string name="dialog_change_start_point_message">Substituir ponto de partida pela localização atual?</string>
	<string name="button_replace">Substituir</string>
	<string name="placepage_add_stop">Adicionar paragem</string>
	<string name="whatsnew_intermediate_point_title">Paragem de adicional</string>
	<string name="whatsnew_intermediate_point_message">Planeie uma rota com um ponto intermédio.</string>
	<string name="add_my_position">Adicionar a minha posição</string>
	<string name="choose_start_point">Escolher um ponto de partida</string>
	<string name="choose_destination">Escolher um destino</string>
	<string name="preloader_viator_button">Saiba Mais</string>
	<string name="whats_new_title_route">As ciclovias e rotas pedestres foram melhoradas</string>
	<string name="whats_new_message_route">Corrigimos erros, tornamos a construção da rota várias vezes mais rápida e adicionamos paragens intermédias</string>
	<string name="whats_new_message_title_update">Encurtamos 10 vezes o tempo de atualização dos mapas</string>
	<string name="whats_new_message_maps_update">Para atualizar um mapa, agora apenas necessita de fazer download dos dados em falta</string>
	<string name="start_from_my_position">Iniciar a partir de</string>
	<string name="rating">Classificação</string>
	<string name="placepage_no_reviews">Sem avaliações</string>
	<string name="placepage_reviewed">Já avaliou este lugar</string>
	<string name="placepage_summary_rating">Classificação média</string>
	<plurals name="placepage_summary_rating_description">
	  <item quantity="other">Baseado em %d avaliações</item>
	</plurals>
	<string name="placepage_rate_comment">Prima para classificar e avaliar este local.</string>
	<string name="placepage_rate_horrible">Horrível</string>
	<string name="placepage_rate_bad">Mau</string>
	<string name="placepage_rate_normal">Normal</string>
	<string name="placepage_rate_good">Bom</string>
	<string name="placepage_rate_excellent">Excelente</string>
	<string name="placepage_reviews_most_recent">Mais recente</string>
	<string name="placepage_reviews_most_useful">Mais útil</string>
	<string name="placepage_reviews_highest_rated">Melhor classificado</string>
	<string name="placepage_reviews_lowest_rated">Pior classificado</string>
	<string name="placepage_reviews_offline_comment">No modo offline são mostradas apenas as avaliações mais úteis</string>
	<string name="placepage_reviews_your_comment">A sua avaliação</string>
	<string name="placepage_reviews_unhelpful">Inútil</string>
	<string name="placepage_reviews_inappropriate">Desadequado</string>
	<string name="placepage_reviews_spam">Spam</string>
	<string name="placepage_reviews_hint">O que é bom ou mau aqui?</string>
	<string name="placepage_reviews_edit_your_review">Editar a sua avaliação</string>
	<string name="placepage_reviews_new_review">Nova avaliação</string>
	<string name="placepage_translate_button">Traduzir</string>
	<string name="placepage_show_original_button">Mostrar original</string>
	<string name="placepage_more_reviews_booking_button">Mais opiniões em Booking.com</string>
	<string name="profile_authorization_title">Iniciar sessao com</string>
	<string name="profile_authorization_message">Início de sessão fácil e em apenas alguns segundos, sem dados de acesso e palavra-passe</string>
	<string name="profile_authorization_error">Ups, ocorreu um erro. Tente iniciar sessão novamente.</string>
	<string name="service">Serviço</string>
	<string name="atmosphere">Atmosfera</string>
	<string name="value_for_money">Relação qualidade-preço</string>
	<string name="experience">Experiência</string>
	<string name="assortment">Variedade</string>
	<string name="expertise">Especialidade</string>
	<string name="equipment">Equipamento</string>
	<string name="quality">Qualidade</string>
	<string name="whats_new_ugc_title_updated_v840">Classificações e avaliações</string>
	<string name="whats_new_ugc_message">Agora pode efetuar classificações e avaliações mesmo estando offline! Não se esqueça de atualizar os seus mapas para que possa ver as alterações.</string>
	<string name="dialog_error_storage_title">Problema de acesso ao armazenamento</string>
	<string name="dialog_error_storage_message">Armazenamento externo não disponível. Provavelmente porque o Cartão SD foi removido, danificado ou o sistema de ficheiros é apenas para leitura. Verifique e entre em contacto conosco através do email support\@maps.me</string>
	<string name="setting_emulate_bad_storage">Emular o mau armazenamento</string>
	<string name="discovery_button_title">Descobrir nas proximidades</string>
	<string name="discovery_button_subtitle_things_to_do">Coisas a fazer</string>
	<string name="discovery_button_subtitle_attractions">Atrações</string>
	<string name="discovery_button_subtitle_eat_and_drink">Comer e beber</string>
	<string name="discovery_button_subtitle_local_guides">Guias locais</string>
	<string name="discovery_button_viator_error_title">Erro no carregamento de dados</string>
	<string name="discovery_button_other_error_message">Erro no carregamento de dados</string>
	<string name="discovery_button_other_loading_message">A carregar dados</string>
	<string name="discovery_button_404_error_title">Não encontrado</string>
	<string name="discovery_button_404_error_message">Ups, não encontrámos nada de interessante nas proximidades.</string>
	<string name="booking_filters_check_in">Fazer Check-in</string>
	<string name="booking_filters_check_out">Fazer Check-out</string>
	<string name="booking_filters_offline">Não está disponível offline.</string>
	<string name="directions_finish">Destino</string>
	<string name="directions_on_foot">Caminhar %s</string>
	<string name="core_entrance">Entrada</string>
	<string name="coffee">Café</string>
	<string name="cleanliness">Limpeza</string>
	<string name="crowdedness">Lotado</string>
	<string name="error_enter_correct_name">Introduza um nome correto</string>
	<string name="hotel_available">Disponível</string>
	<string name="whats_new_transit_title">Metropolitanos disponíveis</string>
	<string name="whats_new_transit_message">Construa as suas rotas utilizando o metropolitano. Atualize os mapas para ver as alterações.</string>
	<string name="whats_new_discovery_title">Botão descoberta</string>
	<string name="whats_new_discovery_message">Descubra coisas com apenas um clique!</string>
	<string name="price_per_hour">%s/hora</string>
	<string name="bookmarks_backup">Ativar cópia de segurança</string>
	<string name="authorization_button_sign_in">Iniciar sessão</string>
	<string name="bookmarks_message_authorized_user">Os seus favoritos são guardados automaticamente num armazenamento na nuvem seguro. Deseja ativar a cópia de segurança?</string>
	<string name="bookmarks_message_unauthorized_user">Os seus favoritos são guardados automaticamente num armazenamento na nuvem seguro. Inicie a sessão para ativar a cópia de segurança.</string>
	<string name="bookmarks_message_unbackuped_user">Os seus favoritos são guardados automaticamente num armazenamento na nuvem seguro.</string>
	<string name="bookmarks_message_backuped_user">Os seus favoritos são guardados automaticamente num armazenamento na nuvem seguro. Última cópia de segurança %s</string>
	<string name="settings_backup_bookmarks">Cópia de segurança dos favoritos</string>
	<string name="bookmarks_groups">Listas</string>
	<string name="bookmarks_groups_hide_all">Ocultar tudo</string>
	<string name="bookmarks_groups_show_all">Mostrar tudo</string>
	<plurals name="bookmarks_places">
	  <item quantity="other">%d favoritos</item>
	</plurals>
	<string name="bookmarks_create_new_group">Criar nova lista</string>
	<string name="downloader_hide_screen">Ocultar ecrã</string>
	<string name="downloader_percent">%1$s (%2$s de %3$s)</string>
	<string name="downloader_process">A transferir %s...</string>
	<string name="downloader_applying">A aplicar %s...</string>
	<string name="transit_not_found">A navegação de trânsito ainda não está disponível nesta região</string>
	<string name="whats_new_title_hotel_filter">Novos filtros de hotel disponíveis!</string>
	<string name="whats_new_message_hotel_filter">Reserve hotéis disponíveis para as suas datas! Utilize filtros de check in e de check out</string>
	<string name="whats_new_title_ugc_travel">Partilhe a sua experiência com outros viajantes!</string>
	<string name="whats_new_message_ugc_travel">Classifique e avalie locais que tenha visitado!</string>
	<string name="dialog_pedestrian_route_is_long">A rota pedestre é demasiado longa</string>
	<string name="dialog_message_transit_not_found_connection">Planeie uma rota dentro de uma rede de tráfego</string>
	<string name="bookmarks_error_message_share_general">A partilha não foi possível devido a um erro da aplicação</string>
	<string name="bookmarks_error_title_share_empty">Erro de partilha</string>
	<string name="bookmarks_error_message_share_empty">Não pode partilhar uma lista vazia</string>
	<string name="discovery_button_subtitle_book_hotels">Reservar hotéis</string>
	<string name="bookmarks_error_title_empty_list_name">O nome não podia estar vazio</string>
	<string name="bookmarks_error_message_empty_list_name">Por favor insira o nome da lista</string>
	<string name="bookmarks_new_list_hint">Nova lista</string>
	<string name="bookmarks_error_title_list_name_already_taken">Esse nome já foi levado</string>
	<string name="bookmarks_error_message_list_name_already_taken">Por favor, escolha outro nome</string>
	<string name="bookmarks_error_title_list_name_too_long">Este nome é muito longo</string>
	<string name="bookmarks_error_message_list_name_too_long">Por favor, escolha outro nome</string>
	<string name="please_wait">Por favor, espere...</string>
	<string name="phone_number">Número de telefone</string>
	<string name="notification_unsent_reviews_title">Você tem vários comentários não enviados</string>
	<string name="notification_unsent_reviews_message">Por favor, faça o login para compartilhar opiniões com outros viajantes</string>
	<string name="profile">Perfil do OpenStreetMap</string>
	<string name="place_page_search_similar_hotel">Pesquisar hotéis semelhantes</string>
	<string name="bookmarks_detect_title">Novos arquivos detectados</string>
	<plurals name="bookmarks_detect_message">
	  <item quantity="one">%d arquivo foi encontrado. Você vai ver depois da conversão.</item>
	  <item quantity="other">%d arquivos foram encontrados. Você os verá depois da conversão.</item>
	</plurals>
	<string name="button_convert">Converter</string>
	<string name="bookmarks_convert_error_title">Erro</string>
	<string name="bookmarks_convert_error_message">Alguns arquivos não foram convertidos.</string>
	<string name="converting">Convertendo...</string>
	<string name="wn_reinvented_bookmarks_title">Nós reinventamos os marcadores!</string>
	<string name="wn_reinvented_bookmarks_message">Você pode fazer backup de favoritos, criar listas... É incrível...</string>
	<string name="wn_way_of_booking_title">Nós reinventamos a maneira de reservar!</string>
	<string name="wn_way_of_booking_message">Basta encontrar um hotel no mapa e reservá-lo ou selecionar o mesmo.</string>
	<string name="bookmarks_restore">Restaurar marcadores</string>
	<string name="bookmarks_restore_process">Restaurando...</string>
	<string name="bookmarks_restore_title">Restaurar esta versão?</string>
	<string name="bookmarks_restore_message">Seus favoritos serão restaurados a partir de %1$s (%2$s)</string>
	<string name="bookmarks_restore_empty_title">Você não tem um backup</string>
	<string name="bookmarks_restore_empty_message">O servidor não encontrou backups feitos anteriormente</string>
	<string name="common_check_internet_connection_dialog_title">Sem conexão com a internet</string>
	<string name="error_server_title">Erro de servidor</string>
	<string name="error_server_message">Houve um erro no servidor, tente novamente mais tarde</string>
	<string name="error_system_message">Ocorreu um erro desconhecido</string>
	<string name="restore">Restaurar</string>
	<string name="sign_message_gdpr">Para continuar, você deve aceitar nossos Termos de Uso e Política de Privacidade. Por favor, leia-os com atenção.</string>
	<string name="sign_agree_pp_gdpr">Concordo com a &lt;a href="%s">Política de Privacidade&lt;/a></string>
	<string name="sign_agree_tof_gdpr">Eu concordo com os &lt;a href="%s">Termos de Uso&lt;/a></string>
	<string name="sign_agree_news_gdpr">Concordo em receber as últimas novidades sobre os produtos MAPS.ME</string>
	<string name="whats_new_localbiz_title">Pequenos negócios necessitam de atenção</string>
	<string name="whats_new_localbiz_message">São os café locais, hostels acolhedores e lojas que tornam nossas viagens inesquecíveis. Iremos otimizar sua página no MAPS.ME para que ela ganhe destaque.</string>
	<string name="whats_new_order_button">Deixe seu pedido</string>
	<string name="bookmarks_page_downloaded">Baixado</string>
	<string name="bookmarks_page_my">Minhas</string>
	<string name="routes_and_bookmarks">Rotas e favoritos</string>
	<string name="bookmarks_webview_success_toast">Favoritos baixados com sucesso</string>
	<string name="cached_bookmarks_placeholder_title">Baixar novos lugares</string>
	<string name="cached_bookmarks_placeholder_subtitle">Aperte o botão para baixar milhares de lugares e rotas interessantes criados pelos usuários de MAPS.ME. Você precisará de conexão com a internet.</string>
	<string name="downloader_download_routers">Baixar favoritos</string>
	<string name="bookmarks_groups_cached">Listas baixadas</string>
	<string name="author_name_by_prefix">por %s</string>
	<plurals name="bookmarks_objects">
	  <item quantity="other">%s objeto</item>
	</plurals>
	<plurals name="objects">
	  <item quantity="other">%d lugar</item>
	</plurals>
	<plurals name="places">
	  <item quantity="other">%d lugares</item>
	</plurals>
	<plurals name="tracks">
	  <item quantity="other">%d rastreamentos</item>
	</plurals>
	<string name="subtittle_opt_out">Configurações de rastreamento</string>
	<string name="opt_out_flurry">Estatísticas</string>
	<string name="opt_out_mopub">Propaganda personalizada</string>
	<string name="opt_out_fabric">Relatório de erros</string>
	<string name="opt_out_fabric_description">Podemos utilizar seus dados para melhorar a experiência no MAPS.ME. As mudanças entrarão em vigor após você reiniciar o aplicativo.</string>
	<string name="opt_out_help_ios_1">O seu dispositivo móvel pode fornecer as opções de «Limitar rastreamento de anúncios» ou «Desativar publicidade baseada em interesse».</string>
	<string name="opt_out_help_ios_2">iOS 9 ou Superior</string>
	<string name="opt_out_help_ios_3">Vá para: Configurações → Privacidade → Anúncios → Habilitar «Limitar Rastreamento de Anúncios»</string>
	<string name="opt_out_help_android">O seu dispositivo móvel pode fornecer as opções de «Limitar rastreamento de anúncios» ou «Desativar publicidade baseada em interesse».\n\nPara versões de Android e Google Play Services superiores a 4.0:\nConfigurações → Google → Anúncios → Desativar publicidade baseada em interesse\nor\n nConfigurações → Google → Anúncios → Informações pessoais &amp; privacidade → Configurações de Anúncios → Personalização de Anúncios</string>
	<string name="privacy_policy">Política de privacidade</string>
	<string name="terms_of_use">Termos de uso</string>
	<string name="backup_notification_failed">O back-up dos seus favoritos foi suspenso. É preciso logar para ligá-lo de volta.</string>
	<string name="banner_megafon_banner_message">Diga adeus ao roaming internacional!</string>
	<string name="banner_megafon_banner_button">Adeus!</string>
	<string name="button_layer_traffic">Tráfego</string>
	<string name="button_layer_subway">Metrô</string>
	<string name="layers_title">Map Layers</string>
	<string name="layers_message">Utilize o Map Layers para exibir tráfego, mapa do metrô e outras informações úteis</string>
	<string name="button_layer_got_it">Entendi</string>
	<string name="subway_data_unavailable">Mapa de metrô está indisponível</string>
	<string name="bookmarks_empty_list_title">Esta lista está vazia</string>
	<string name="bookmarks_empty_list_message">Para adicionar um favorito, toque em algum lugar do mapa e em seguida no ícone da estrela</string>
	<string name="category_desc_more">…mais</string>
	<string name="title_error_downloading_bookmarks">Ocorreu um erro</string>
	<string name="subtitle_error_downloading_bookmarks">Favoritos não foram baixados</string>
	<string name="whats_new_bookmarks_catalog_title">Agora, o MAPS.ME tem um catálogo de rotas</string>
	<string name="whats_new_bookmarks_catalog_message">Centenas de rotas detalhadas do mundo inteiro: onde ir, o que ver, onde comer.</string>
	<string name="whats_new_popularity_label_title">Lugares populares próximos</string>
	<string name="whats_new_popularity_label_message">A seção O que fazer ajudará você a encontrar os lugares mais populares da cidade.</string>
	<string name="whats_new_hot_offers_title">Boas ofertas de hotéis</string>
	<string name="whats_new_hot_offers_message">Você pode procurar por eles utilizando a categoria Hotéis na pesquisa. As ofertas estarão marcadas por um símbolo de porcentagem no mapa e nos resultados de busca.</string>
	<string name="error_already_downloaded">Esta lista já foi transferida</string>
	<string name="guides">Guias</string>
	<string name="guide_downloaded_title">O guia foi descarregado com sucesso</string>
	<string name="download_guides">Descarregue guias</string>
	<string name="cached_guides_placeholder_subtitle">Guias detalhados \'offline\' para qualquer tipo de viagem. Escolha o mais adequado para si e descarregue-o diretamente para o mapa. Irá precisar de ligação à Internet para descarregar os guias.</string>
	<string name="guides_groups_cached">Descarregar guias</string>
	<string name="subtitle_error_downloading_guide">O guia não foi descarregado</string>
	<string name="error_already_downloaded_guide">Este guia já foi descarregado</string>
	<string name="guide_downloaded_subtitle">Prima \'Ver no mapa\' para explorar o guia</string>
	<string name="bookmarks_guides">Favoritos e guias</string>
	<string name="remove_ads">Remover anúncios</string>
	<string name="remove_ads_title">Remover todos os anúncios e apoie o MAPS.ME</string>
	<string name="paybtn_title">Pague %s/ano</string>
	<string name="paybtn_subtitle">Poupe %s/ano</string>
	<string name="options_dropdown_title">Mais opções</string>
	<string name="why_support">Porquê apoiar o MAPS.ME?</string>
	<string name="options_dropdown_item1">%1$s/mês (poupa %2$s/ano)</string>
	<string name="options_dropdown_item2">%s/semana (sem poupança)</string>
	<string name="why_support_item1">Iremos remover os anúncios para si</string>
	<string name="why_support_item2">Ajude-nos a melhorar o MAPS.ME</string>
	<string name="why_support_item3">Ajude-nos a melhorar mapas livres em OpenStreeMap.org</string>
	<string name="purchase_processing">A sua compra encontra-se em processo…</string>
	<string name="tips_bookmarks_catalog_title">Guias offline para todo o tipo de viagem</string>
	<string name="tips_bookmarks_catalog_message">Descarregue e planeie rotas turísticas de locais interessante em diferentes cidades do mundo.</string>
	<string name="tips_discover_button_title">Quer encontrar lugares populares nas proximidades?</string>
	<string name="tips_discover_button_message">A seção «Descobrir nas proximidades» contém os melhores restaurantes, hotéis e vistas.</string>
	<string name="tips_book_hotel_title">Reserve os hotéis mais confortáveis para a sua jornada</string>
	<string name="tips_book_hotel_message">Utilize a pesquisa e filtros para encontrar os melhores hotéis para si. Utilize o botão «Reservar» na página de locais para reservar o hotel instantaneamente.</string>
	<string name="tips_map_layers_title">Não sabe em que estação tem de fazer uma conexão?</string>
	<string name="tips_map_layers_message">Ligue a camada de metro para exibir o mapa do metro e encontrará o seu caminho numa cidade nova.</string>
	<string name="channels_map_update">Atualizações de mapa</string>
	<string name="channels_reviews">Avaliações não visualizadas</string>
	<string name="purchase_loading">A informação de compra está a ser carregada…</string>
	<string name="purchase_error_subtitle">Ocorreu um erro enquanto processava a sua compra</string>
	<string name="awaiting_approval">A aguardar a aprovação parental</string>
	<string name="whats_new_leave_review">Deixe uma avaliação! Partilhe a sua opinião sobre os locais que visitou nas suas férias.</string>
	<string name="server_unavailable_title">O servidor está indisponível</string>
	<string name="server_unavailable_message">A compra será completada mais tarde. Se o error persistir, entre em contacto com support\@maps.me.</string>
	<string name="offline_fiters_check_in">Ligue-se à іnternet para filtrar os hotéis por datas.</string>
	<string name="restore_subscription">Restaurar a subscrição</string>
	<string name="restore_success_alert">A subscrição foi restaurada com sucesso</string>
	<string name="restore_error_alert">Ocorreu um erro ao restaurar a subscrição</string>
	<string name="restore_no_subscription_alert">Não há subscrições ativas</string>
	<string name="subscription_terms">O pagamento será cobrado na sua conta do iTunes na confirmação da compra. A subscrição será automaticamente renovada, exceto se a renovação automática for desativada, pelo menos, 24 horas antes do fim do período atual. A sua conta será cobrada de acordo com o seu plano de renovação no prazo de 24 horas antes do fim do período atual. Pode gerir ou desativar a renovação automática nas definições da sua conta de ID da Apple, a qualquer momento, após a sua compra.</string>
	<string name="subscriptions_title">Subscrições</string>
	<string name="manage_subscription">Gerir a subscrição</string>
	<string name="sharing_options">Definições de acesso</string>
	<string name="export_file">Exportar o arquivo</string>
	<string name="list_settings">Lista de configurações</string>
	<string name="delete_list">Apagar lista</string>
	<string name="hide_from_map">Remover do mapa</string>
	<string name="ugc_route_tags_screen_label">Selecione tags</string>
	<string name="ugc_route_tags_progress_msg">A carregar tags…</string>
	<string name="public_access">Acesso público</string>
	<string name="limited_access">Acesso privado</string>
	<string name="upload_and_publish_desc">Esse guia será carregado para catalogo público de MAPS.ME e estará disponível para outros usuários</string>
	<string name="upload_and_publish">Carregar e publicar</string>
	<string name="upload_and_get_direct_link">Carregar e receber o link</string>
	<string name="get_direct_link_desc">O seu guia será disponível pelo link direto</string>
	<string name="upload_and_publish_progress_text">A publicar guia…</string>
	<string name="upload_and_publish_success">Guia publicado</string>
	<string name="ugc_routes_user_agreement">&lt;b>PRESTE ATENÇÃO:&lt;/b> a continuar você aceita &lt;a href="%s">o contrato de licença&lt;/a></string>
	<string name="ugc_route_edit_list_name">Nome de guia</string>
	<string name="ugc_route_edit_description_hint">Adicionar uma descrição (texto ou html)</string>
	<string name="not_shared">Personal</string>
	<string name="direct_link_progress_text">A carregar o seu arquivo…</string>
	<string name="direct_link_success">Link criado</string>
	<string name="edit_guide_title">Edite seu guia de viagens on-line</string>
	<string name="edit_guide_subtitle">Recebe o link para editar seu guia de viagens através da uma aplicação web: adicione descrição de lugares, carregue fotografias e junte as marcas com linhas.</string>
	<string name="send_a_link_btn">Enviar link</string>
	<string name="upload_error_toast">Ocorreu um erro ao carregar o arquivo</string>
	<string name="tags_loading_error_subtitle">Ocorreu um erro ao carregar tags, por favor tente de novo</string>
	<string name="unable_upload_errorr_title">Não foi possível carregar arquivo</string>
	<string name="unable_upload_error_subtitle_edited">O arquivo foi editado através da uma aplicação web</string>
	<string name="unable_upload_error_subtitle_broken">Arquivo corrompido e não pode ser carregado. Por favor, carregue outro arquivo.</string>
	<string name="buy_btn">Comprar por %s</string>
	<string name="download_guide_progress">A carregar guia…</string>
	<string name="price_error_title">Impossível saber o custo</string>
	<string name="price_error_subtitle">Por favor, tente de novo mais tarde</string>
	<string name="edit_your_guide_email_body">Edite o seu arquivo no computador: adicione descrição de lugares, carregue fotografias e junte as marcas com linhas.</string>
	<string name="edit_on_web">Editar online</string>
	<string name="properties_loading_error_subtitle">Ocorreu um erro ao carregar opções, por favor tente de novo</string>
	<string name="custom_props_desc">Você formou esse guia como</string>
	<string name="custom_props_title">Local ou turista</string>
	<string name="custom_props_local">local</string>
	<string name="custom_props_traveler">turista</string>
	<string name="select_properties">Selecionar opções</string>
	<string name="access_rules_p_to_p">Acesso especial</string>
	<string name="access_rules_paid">Comprado</string>
	<string name="failed_purchase_support_message">Parece que tem uma compra inacabada. Por favor, entre em contato com suporte e nos vamos resolver o seu problema.</string>
	<string name="contact">Escrever</string>
	<string name="check_price_button">Saber o custo</string>
	<string name="download_button">Baixar</string>
	<string name="speedcams_alert_title">Câmeras de velocidade</string>
	<string name="speedcams_alert_subtitle">Avisar sobre limites de velocidade</string>
	<string name="speedcam_option_auto">Auto</string>
	<string name="speedcam_option_always">Sempre</string>
	<string name="speedcam_option_never">Nunca</string>
	<string name="bookmark_description_title">Descrição da marca</string>
	<string name="place_description_title">Descrição do local</string>
	<string name="ugc_routes_error_uploading_file_toast">Infelizmente, ocorreu um erro ao carregar os marcas. Por favor, tente novamente.</string>
	<string name="notification_channel_ugc">Conteúdo</string>
	<!-- this text will be shown in application notification preferences opposite checkbox which enable/disable downloader notifications. Devices on Android 8+ are affected. -->
	<string name="notification_channel_downloader">A carregar mapas</string>
	<string name="notification_leave_review_title">%s - como está aqui?</string>
	<string name="notification_leave_review_content">Deixe um comentário e ajude os viajantes!</string>
	<string name="share_bookmarks_email_body_link">Olá!\n\nSeus rótulos podem ser baixado aqui: %s. Abra a lista usando MAPS.ME e desfrute do passeio!\n\nBaixar aplicação: http://maps.me/get?kmz</string>
	<string name="warning_speedcams_title">O navegador irá notificá-lo sobre as câmeras quando o limite de velocidade for excedido em %d km/h</string>
	<string name="warning_speedcams_subtitle">Não esqueça de ler as regras da estrada no país de viagem.</string>
	<string name="speedcams_notice_message">Auto - Avisa sobre radares de velocidade se houver risco de exceder o limite de velocidade\nSempre - Sempre alerta sobre câmeras\nNunca - nunca avisar sobre câmeras</string>
	<string name="whats_new_ugc_routes_title">É fácil compartilhar as impressões</string>
	<string name="whats_new_ugc_routes_subtitle">Salve locais preferidos, crie percursos a partir de tags e compartilhe-os com todos no diretório de MAPS.ME.</string>
	<string name="whats_new_webeditor_title">Transforma os percursos em história</string>
	<string name="whats_new_ugc_routes_message2">Adicione fotos e descrições detalhadas no editor da web.</string>
	<string name="whatsnew_standard_routes_title">Percursos gerais</string>
	<string name="whatsnew_standard_routes_message">O conjunto principal de pontos, descrições são breves, mas impressões completas!</string>
	<string name="whatsnew_city_overview_title">Visão total da cidade</string>
	<string name="whatsnew_city_overview_message">Até 200 pontos no mapa da cidade: tudo o mais útil e interessante para um viajante!</string>
	<string name="whatsnew_pro_guides_title">Percursos profissionais</string>
	<string name="whatsnew_pro_guides_message">Detalhamento de alto nível, descrições completas de locais e a possibilidade de calcular a distância e o tempo do passeio</string>
	<string name="whatsnew_paid_routes_title">Mais impressões novas!</string>
	<string name="whatsnew_paid_routes_message">Adicionamos no catálogo 3 categorias das guias de viagem pagos além dos percursos gratuitos. Mais de 700 percursos novos!</string>
	<string name="whats_new_ugc_routes_title_android_only">É fácil compartilhar as impressões</string>

	<!-- SECTION: Types -->
	<string name="type.aerialway.station">Estação de teleférico</string>
	<string name="type.aeroway.aerodrome">Aeroporto</string>
	<string name="type.aeroway.aerodrome.international">Aeroporto</string>
	<string name="type.aeroway.helipad">Heliponto</string>
	<string name="type.amenity.atm">Caixa eletrônico</string>
	<string name="type.amenity.bank">Banco</string>
	<string name="type.amenity.bar">Drinqueria</string>
	<string name="type.amenity.bbq">Local de piquenique</string>
	<string name="type.amenity.bench">Assento</string>
	<string name="type.amenity.bicycle_parking">Bicicletário</string>
	<string name="type.amenity.bicycle_rental">Aluguel de bicicletas</string>
	<string name="type.amenity.brothel">Bordel</string>
	<string name="type.amenity.bureau_de_change">Casa de câmbio</string>
	<string name="type.amenity.bus_station">Rodoviária</string>
	<string name="type.amenity.cafe">Café</string>
	<string name="type.amenity.car_rental">Aluguel de automóveis</string>
	<string name="type.amenity.car_sharing">Compartilhamento de carro</string>
	<string name="type.amenity.car_wash">Lava-jato</string>
	<string name="type.amenity.casino">Cassino</string>
	<string name="type.amenity.charging_station">Eletroposto</string>
	<string name="type.amenity.childcare">Creche</string>
	<string name="type.amenity.clinic">Clínica</string>
	<string name="type.amenity.college">Escola técnica</string>
	<string name="type.amenity.community_centre">Centro comunitário</string>
	<string name="type.amenity.courthouse">Tribunal</string>
	<string name="type.amenity.dentist">Dentista</string>
	<string name="type.amenity.doctors">Consultório médico</string>
	<string name="type.amenity.drinking_water">Água potável</string>
	<string name="type.amenity.driving_school">Autoescola</string>
	<string name="type.amenity.embassy">Embaixada</string>
	<string name="type.amenity.fast_food">Lanchonete</string>
	<string name="type.amenity.ferry_terminal">Estação de barcas</string>
	<string name="type.amenity.fire_station">Posto de bombeiros</string>
	<string name="type.amenity.fountain">Fonte</string>
	<string name="type.amenity.fuel">Posto de combustível</string>
	<string name="type.amenity.grave_yard">Cemitério</string>
	<string name="type.amenity.grave_yard.christian">Cemitério</string>
	<string name="type.amenity.hunting_stand">Estande de caça</string>
	<string name="type.amenity.ice_cream">Sorveteria</string>
	<string name="type.amenity.internet_cafe">Cibercafé</string>
	<string name="type.amenity.kindergarten">Jardim de infância</string>
	<string name="type.amenity.library">Biblioteca</string>
	<string name="type.amenity.marketplace">Mercado</string>
	<string name="type.amenity.motorcycle_parking">Estacionamento de motos</string>
	<string name="type.amenity.nightclub">Boate</string>
	<string name="type.amenity.nursing_home">Casa de repouso</string>
	<string name="type.amenity.parking">Estacionamento</string>
	<string name="type.amenity.parking.fee">Estacionamento</string>
	<string name="type.amenity.parking.multi.storey">Estacionamento</string>
	<string name="type.amenity.parking.multi.storey.fee">Estacionamento</string>
	<string name="type.amenity.parking.no.access">Estacionamento</string>
	<string name="type.amenity.parking.park_and_ride">Estacionamento</string>
	<string name="type.amenity.parking.permissive">Estacionamento</string>
	<string name="type.amenity.parking.permissive.fee">Estacionamento</string>
	<string name="type.amenity.parking.private">Estacionamento</string>
	<string name="type.amenity.parking.underground">Estacionamento</string>
	<string name="type.amenity.parking.underground.fee">Estacionamento</string>
	<string name="type.amenity.payment_terminal">Terminal de pagamento</string>
	<string name="type.amenity.pharmacy">Farmácia</string>
	<string name="type.amenity.place_of_worship">Local de culto</string>
	<string name="type.amenity.place_of_worship.buddhist">Templo budista</string>
	<string name="type.amenity.place_of_worship.christian">Igreja</string>
	<string name="type.amenity.place_of_worship.hindu">Templo hindu</string>
	<string name="type.amenity.place_of_worship.jewish">Sinagoga</string>
	<string name="type.amenity.place_of_worship.muslim">Mesquita</string>
	<string name="type.amenity.place_of_worship.shinto">Templo shintoísta</string>
	<string name="type.amenity.place_of_worship.taoist">Templo taoísta</string>
	<string name="type.amenity.police">Polícia</string>
	<string name="type.amenity.post_box">Caixa de correio</string>
	<string name="type.amenity.post_office">Correios</string>
	<string name="type.amenity.public_bookcase">Biblioteca livre</string>
	<string name="type.amenity.recycling">Reciclagem</string>
	<string name="type.amenity.restaurant">Restaurante</string>
	<string name="type.amenity.school">Escola</string>
	<string name="type.amenity.shelter">Abrigo</string>
	<string name="type.amenity.shower">Chuveiro</string>
	<string name="type.amenity.taxi">Táxi</string>
	<string name="type.amenity.telephone">Telefone</string>
	<string name="type.amenity.theatre">Teatro</string>
	<string name="type.amenity.toilets">Banheiro</string>
	<string name="type.amenity.townhall">Prefeitura</string>
	<string name="type.amenity.university">Universidade</string>
	<string name="type.amenity.vending_machine.cigarettes">Máquina de venda de cigarros</string>
	<string name="type.amenity.vending_machine.drinks">Máquina de venda de bebidas</string>
	<string name="type.amenity.vending_machine.parking_tickets">Máquina venda de tíquetes de estacionamento</string>
	<string name="type.amenity.veterinary">Veterinário</string>
	<string name="type.amenity.waste_basket">Cesto de lixo</string>
	<string name="type.amenity.waste_disposal">Depósito de lixo</string>
	<string name="type.amenity.water_point">Ponto de água</string>
	<string name="type.barrier.block">Bloqueio</string>
	<string name="type.barrier.bollard">Pilar</string>
	<string name="type.barrier.border_control">Controle de fronteira</string>
	<string name="type.barrier.entrance">Entrada</string>
	<string name="type.barrier.gate">Portão</string>
	<string name="type.barrier.lift_gate">Cancela</string>
	<string name="type.barrier.stile">Travessia em cerca ou muro</string>
	<string name="type.barrier.toll_booth">Cabine de pedágio</string>
	<string name="type.boundary.national_park">Parque nacional</string>
	<string name="type.building">Edifício</string>
	<string name="type.building.address">Edifício</string>
	<string name="type.building.garage">Garagem</string>
	<string name="type.building.has_parts">Edifício</string>
	<string name="type.building.train_station">Estação de trem</string>
	<string name="type.craft.brewery">Cervejaria</string>
	<string name="type.craft.carpenter">Carpinteiro</string>
	<string name="type.craft.electrician">Eletricista</string>
	<string name="type.craft.gardener">Jardineiro</string>
	<string name="type.craft.hvac">Ar-condicionado</string>
	<string name="type.craft.metal_construction">Serralheiro</string>
	<string name="type.craft.painter">Pintor</string>
	<string name="type.craft.photographer">Fotógrafo</string>
	<string name="type.craft.plumber">Encanador</string>
	<string name="type.craft.shoemaker">Sapateiro</string>
	<string name="type.craft.tailor">Alfaiate</string>
	<string name="type.cuisine.african">Cozinha africana</string>
	<string name="type.cuisine.american">Cozinha americana</string>
	<string name="type.cuisine.arab">Cozinha árabe</string>
	<string name="type.cuisine.argentinian">Cozinha argentina</string>
	<string name="type.cuisine.asian">Cozinha asiática</string>
	<string name="type.cuisine.austrian">Cozinha austríaca</string>
	<string name="type.cuisine.bagel">Bagel</string>
	<string name="type.cuisine.balkan">Cozinha balcânica</string>
	<string name="type.cuisine.barbecue">Churrasco</string>
	<string name="type.cuisine.bavarian">Cozinha bávara</string>
	<string name="type.cuisine.beef_bowl">Tigela com carne bovina</string>
	<string name="type.cuisine.brazilian">Cozinha brasileira</string>
	<string name="type.cuisine.breakfast">Café da manhã</string>
	<string name="type.cuisine.burger">Hambúrguer</string>
	<string name="type.cuisine.buschenschank">Buschenschank</string>
	<string name="type.cuisine.cake">Bolo</string>
	<string name="type.cuisine.caribbean">Cozinha caribenha</string>
	<string name="type.cuisine.chicken">Frango</string>
	<string name="type.cuisine.chinese">Cozinha chinesa</string>
	<string name="type.cuisine.coffee_shop">Café</string>
	<string name="type.cuisine.crepe">Crepe</string>
	<string name="type.cuisine.croatian">Cozinha croata</string>
	<string name="type.cuisine.curry">Curry</string>
	<string name="type.cuisine.deli">Charcutaria</string>
	<string name="type.cuisine.diner">Lanchonete</string>
	<string name="type.cuisine.donut">Rosquinha</string>
	<string name="type.cuisine.ethiopian">Cozinha etíope</string>
	<string name="type.cuisine.filipino">Cozinha filipina</string>
	<string name="type.cuisine.fine_dining">Alta gastronomia</string>
	<string name="type.cuisine.fish">Peixe</string>
	<string name="type.cuisine.fish_and_chips">Peixe e batatas fritas</string>
	<string name="type.cuisine.french">Cozinha francesa</string>
	<string name="type.cuisine.friture">Fritura</string>
	<string name="type.cuisine.georgian">Cozinha georgiana</string>
	<string name="type.cuisine.german">Cozinha alemã</string>
	<string name="type.cuisine.greek">Cozinha grega</string>
	<string name="type.cuisine.grill">Grelhada</string>
	<string name="type.cuisine.heuriger">Heuriger</string>
	<string name="type.cuisine.hotdog">Cachorro-quente</string>
	<string name="type.cuisine.hungarian">Cozinha húngara</string>
	<string name="type.cuisine.ice_cream">Sorvete</string>
	<string name="type.cuisine.indian">Cozinha indiana</string>
	<string name="type.cuisine.indonesian">Cozinha indonésia</string>
	<string name="type.cuisine.international">Cozinha internacional</string>
	<string name="type.cuisine.irish">Cozinha irlandesa</string>
	<string name="type.cuisine.italian">Cozinha italiana</string>
	<string name="type.cuisine.italian_pizza">Italiana, pizza</string>
	<string name="type.cuisine.japanese">Cozinha japonesa</string>
	<string name="type.cuisine.kebab">Espetinho</string>
	<string name="type.cuisine.korean">Cozinha coreana</string>
	<string name="type.cuisine.lao">Cozinha laosiana</string>
	<string name="type.cuisine.lebanese">Cozinha libanesa</string>
	<string name="type.cuisine.local">Cozinha local</string>
	<string name="type.cuisine.malagasy">Cozinha malgaxe</string>
	<string name="type.cuisine.malaysian">Cozinha malaia</string>
	<string name="type.cuisine.mediterranean">Cozinha mediterrânea</string>
	<string name="type.cuisine.mexican">Cozinha mexicana</string>
	<string name="type.cuisine.moroccan">Cozinha marroquina</string>
	<string name="type.cuisine.noodles">Macarrão</string>
	<string name="type.cuisine.oriental">Cozinha oriental</string>
	<string name="type.cuisine.pancake">Panqueca</string>
	<string name="type.cuisine.pasta">Massa</string>
	<string name="type.cuisine.persian">Cozinha persa</string>
	<string name="type.cuisine.peruvian">Cozinha peruana</string>
	<string name="type.cuisine.pizza">Pizza</string>
	<string name="type.cuisine.polish">Cozinha polonesa</string>
	<string name="type.cuisine.portuguese">Cozinha portuguesa</string>
	<string name="type.cuisine.ramen">Lámen</string>
	<string name="type.cuisine.regional">Cozinha regional</string>
	<string name="type.cuisine.russian">Cozinha russa</string>
	<string name="type.cuisine.sandwich">Sanduíche</string>
	<string name="type.cuisine.sausage">Linguiça</string>
	<string name="type.cuisine.savory_pancakes">Panquecas salgadas</string>
	<string name="type.cuisine.seafood">Frutos do mar</string>
	<string name="type.cuisine.soba">Soba</string>
	<string name="type.cuisine.spanish">Cozinha espanhola</string>
	<string name="type.cuisine.steak_house">Churrascaria</string>
	<string name="type.cuisine.sushi">Sushi</string>
	<string name="type.cuisine.tapas">Tapas</string>
	<string name="type.cuisine.tea">Chá</string>
	<string name="type.cuisine.thai">Cozinha tailandesa</string>
	<string name="type.cuisine.turkish">Cozinha turca</string>
	<string name="type.cuisine.vegan">Cozinha vegana</string>
	<string name="type.cuisine.vegetarian">Cozinha vegetariana</string>
	<string name="type.cuisine.vietnamese">Cozinha vietnamita</string>
	<string name="type.emergency.defibrillator">Desfibrilador</string>
	<string name="type.emergency.fire_hydrant">Hidrante</string>
	<string name="type.emergency.phone">Telefone de emergência</string>
	<string name="type.entrance">Entrada</string>
	<string name="type.highway.bus_stop">Ponto de ônibus</string>
	<string name="type.highway.footway">Caminho</string>
	<string name="type.highway.footway.alpine_hiking">Caminho</string>
	<string name="type.highway.footway.area">Caminho</string>
	<string name="type.highway.footway.bridge">Caminho</string>
	<string name="type.highway.footway.demanding_alpine_hiking">Caminho</string>
	<string name="type.highway.footway.demanding_mountain_hiking">Caminho</string>
	<string name="type.highway.footway.difficult_alpine_hiking">Caminho</string>
	<string name="type.highway.footway.hiking">Caminho</string>
	<string name="type.highway.footway.mountain_hiking">Caminho</string>
	<string name="type.highway.footway.permissive">Caminho</string>
	<string name="type.highway.footway.tunnel">Caminho</string>
	<string name="type.highway.living_street">Rua</string>
	<string name="type.highway.living_street.bridge">Rua</string>
	<string name="type.highway.living_street.tunnel">Rua</string>
	<string name="type.highway.motorway">Rua</string>
	<string name="type.highway.motorway.bridge">Rua</string>
	<string name="type.highway.motorway.tunnel">Rua</string>
	<string name="type.highway.motorway_junction">Saída</string>
	<string name="type.highway.motorway_link">Rua</string>
	<string name="type.highway.motorway_link.bridge">Rua</string>
	<string name="type.highway.motorway_link.tunnel">Rua</string>
	<string name="type.highway.path">Caminho</string>
	<string name="type.highway.path.alpine_hiking">Caminho</string>
	<string name="type.highway.path.bicycle">Caminho</string>
	<string name="type.highway.path.bridge">Caminho</string>
	<string name="type.highway.path.demanding_alpine_hiking">Caminho</string>
	<string name="type.highway.path.demanding_mountain_hiking">Caminho</string>
	<string name="type.highway.path.difficult_alpine_hiking">Caminho</string>
	<string name="type.highway.path.hiking">Caminho</string>
	<string name="type.highway.path.horse">Caminho</string>
	<string name="type.highway.path.mountain_hiking">Caminho</string>
	<string name="type.highway.path.permissive">Caminho</string>
	<string name="type.highway.path.tunnel">Caminho</string>
	<string name="type.highway.pedestrian">Rua</string>
	<string name="type.highway.pedestrian.area">Rua</string>
	<string name="type.highway.pedestrian.bridge">Rua</string>
	<string name="type.highway.pedestrian.tunnel">Rua</string>
	<string name="type.highway.primary">Rua</string>
	<string name="type.highway.primary.bridge">Rua</string>
	<string name="type.highway.primary.tunnel">Rua</string>
	<string name="type.highway.primary_link">Rua</string>
	<string name="type.highway.primary_link.bridge">Rua</string>
	<string name="type.highway.primary_link.tunnel">Rua</string>
	<string name="type.highway.raceway">Pista de corrida</string>
	<string name="type.highway.residential">Rua</string>
	<string name="type.highway.residential.area">Rua</string>
	<string name="type.highway.residential.bridge">Rua</string>
	<string name="type.highway.residential.tunnel">Rua</string>
	<string name="type.highway.rest_area">Área de descanso</string>
	<string name="type.highway.road">Rua</string>
	<string name="type.highway.road.bridge">Rua</string>
	<string name="type.highway.road.tunnel">Rua</string>
	<string name="type.highway.secondary">Rua</string>
	<string name="type.highway.secondary.bridge">Rua</string>
	<string name="type.highway.secondary.tunnel">Rua</string>
	<string name="type.highway.secondary_link">Rua</string>
	<string name="type.highway.secondary_link.bridge">Rua</string>
	<string name="type.highway.secondary_link.tunnel">Rua</string>
	<string name="type.highway.service">Rua</string>
	<string name="type.highway.service.area">Rua</string>
	<string name="type.highway.service.bridge">Rua</string>
	<string name="type.highway.service.driveway">Rua</string>
	<string name="type.highway.service.driveway.area">Rua</string>
	<string name="type.highway.service.driveway.bridge">Rua</string>
	<string name="type.highway.service.driveway.tunnel">Rua</string>
	<string name="type.highway.service.parking_aisle">Rua</string>
	<string name="type.highway.service.tunnel">Rua</string>
	<string name="type.highway.speed_camera">Radar de velocidade</string>
	<string name="type.highway.steps">Caminho</string>
	<string name="type.highway.steps.bridge">Caminho</string>
	<string name="type.highway.steps.tunnel">Caminho</string>
	<string name="type.highway.tertiary">Rua</string>
	<string name="type.highway.tertiary.bridge">Rua</string>
	<string name="type.highway.tertiary.tunnel">Rua</string>
	<string name="type.highway.tertiary_link">Rua</string>
	<string name="type.highway.tertiary_link.bridge">Rua</string>
	<string name="type.highway.tertiary_link.tunnel">Rua</string>
	<string name="type.highway.track">Rua</string>
	<string name="type.highway.track.area">Rua</string>
	<string name="type.highway.track.bridge">Rua</string>
	<string name="type.highway.track.grade1">Rua</string>
	<string name="type.highway.track.grade2">Rua</string>
	<string name="type.highway.track.grade3">Rua</string>
	<string name="type.highway.track.grade3.no.access">Rua</string>
	<string name="type.highway.track.grade3.permissive">Rua</string>
	<string name="type.highway.track.grade4">Rua</string>
	<string name="type.highway.track.grade4.no.access">Rua</string>
	<string name="type.highway.track.grade4.permissive">Rua</string>
	<string name="type.highway.track.grade5">Rua</string>
	<string name="type.highway.track.grade5.no.access">Rua</string>
	<string name="type.highway.track.grade5.permissive">Rua</string>
	<string name="type.highway.track.no.access">Rua</string>
	<string name="type.highway.track.permissive">Rua</string>
	<string name="type.highway.track.tunnel">Rua</string>
	<string name="type.highway.traffic_signals">Semáforo</string>
	<string name="type.highway.trunk">Rua</string>
	<string name="type.highway.trunk.bridge">Rua</string>
	<string name="type.highway.trunk.tunnel">Rua</string>
	<string name="type.highway.trunk_link">Rua</string>
	<string name="type.highway.trunk_link.bridge">Rua</string>
	<string name="type.highway.trunk_link.tunnel">Rua</string>
	<string name="type.highway.unclassified">Rua</string>
	<string name="type.highway.unclassified.area">Rua</string>
	<string name="type.highway.unclassified.bridge">Rua</string>
	<string name="type.highway.unclassified.tunnel">Rua</string>
	<string name="type.historic.archaeological_site">Sítio arqueológico</string>
	<string name="type.historic.castle">Castelo</string>
	<string name="type.historic.castle.defensive">Castelo</string>
	<string name="type.historic.castle.stately">Castelo</string>
	<string name="type.historic.monument">Monumento</string>
	<string name="type.historic.ruins">Ruínas</string>
	<string name="type.historic.ship">Turismo</string>
	<string name="type.historic.tomb">Turismo</string>
	<string name="type.landuse.basin">Água</string>
	<string name="type.landuse.cemetery">Cemitério</string>
	<string name="type.landuse.cemetery.christian">Cemitério</string>
	<string name="type.landuse.forest">Floresta</string>
	<string name="type.landuse.forest.coniferous">Floresta</string>
	<string name="type.landuse.forest.deciduous">Floresta</string>
	<string name="type.landuse.forest.mixed">Floresta</string>
	<string name="type.landuse.reservoir">Água</string>
	<string name="type.leisure.fitness_centre">Academia de ginástica</string>
	<string name="type.leisure.fitness_station">Estação de fitness</string>
	<string name="type.leisure.garden">Jardim</string>
	<string name="type.leisure.golf_course">Campo de golfe</string>
	<string name="type.leisure.nature_reserve">Reserva natural</string>
	<string name="type.leisure.park">Parque</string>
	<string name="type.leisure.park.no.access">Parque</string>
	<string name="type.leisure.park.permissive">Parque</string>
	<string name="type.leisure.park.private">Parque</string>
	<string name="type.leisure.pitch">Campo de esportes</string>
	<string name="type.leisure.pitch.tennis">Campo de esportes</string>
	<string name="type.leisure.playground">Parquinho</string>
	<string name="type.leisure.playground.tennis">Parquinho</string>
	<string name="type.leisure.sports_centre">Centro esportivo</string>
	<string name="type.leisure.sports_centre.climbing">Ginásio de escalada</string>
	<string name="type.leisure.sports_centre.shooting">Clube de tiro</string>
	<string name="type.leisure.sports_centre.swimming">Centro de natação</string>
	<string name="type.leisure.sports_centre.yoga">Estúdio de ioga</string>
	<string name="type.leisure.stadium">Estádio</string>
	<string name="type.leisure.swimming_pool">Piscina</string>
	<string name="type.leisure.water_park">Parque aquático</string>
	<string name="type.man_made.chimney">Chaminé de fábrica</string>
	<string name="type.man_made.lighthouse">Farol</string>
	<string name="type.man_made.surveillance">Câmara de vigilância</string>
	<string name="type.man_made.tower">Torre</string>
	<string name="type.man_made.water_tap">Torneira de água</string>
	<string name="type.man_made.water_tower">Torre de água</string>
	<string name="type.man_made.water_well">Poço de água</string>
	<string name="type.man_made.windmill">Moinho de vento</string>
	<string name="type.natural.bay">Baía</string>
	<string name="type.natural.beach">Praia</string>
	<string name="type.natural.cape">Cabo</string>
	<string name="type.natural.cave_entrance">Entrada de caverna</string>
	<string name="type.natural.geyser">Geiser</string>
	<string name="type.natural.glacier">Glaciar</string>
	<string name="type.natural.lake">Lago</string>
	<string name="type.natural.peak">Pico</string>
	<string name="type.natural.pond">Lagoa</string>
	<string name="type.natural.spring">Nascente</string>
	<string name="type.natural.tree">Árvore</string>
	<string name="type.natural.volcano">Vulcão</string>
	<string name="type.natural.water">Água</string>
	<string name="type.natural.wood">Floresta</string>
	<string name="type.natural.wood.coniferous">Floresta</string>
	<string name="type.natural.wood.deciduous">Floresta</string>
	<string name="type.natural.wood.mixed">Floresta</string>
	<string name="type.office">Escritório</string>
	<string name="type.office.company">Escritório de empresa</string>
	<string name="type.office.estate_agent">Corretor imobiliário</string>
	<string name="type.office.government">Gabinete governamental</string>
	<string name="type.office.insurance">Seguradora</string>
	<string name="type.office.lawyer">Escritório de advogado</string>
	<string name="type.office.ngo">Escritório de ONG</string>
	<string name="type.office.telecommunication">Operadora de telecomunicações</string>
	<string name="type.place.city">Cidade</string>
	<string name="type.place.continent">Continente</string>
	<string name="type.place.country">País</string>
	<string name="type.place.county">Município</string>
	<string name="type.place.farm">Fazenda</string>
	<string name="type.place.hamlet">Lugarejo</string>
	<string name="type.place.island">Ilha</string>
	<string name="type.place.islet">Ilha</string>
	<string name="type.place.locality">Localidade</string>
	<string name="type.place.ocean">Oceano</string>
	<string name="type.place.region">Região</string>
	<string name="type.place.sea">Mar</string>
	<string name="type.place.state">Estado</string>
	<string name="type.place.state.USA">Estado</string>
	<string name="type.place.suburb">Bairro</string>
	<string name="type.place.town">Cidade</string>
	<string name="type.place.village">Povoado</string>
	<string name="type.power.pole">Poste de eletricidade</string>
	<string name="type.power.substation">Subestação</string>
	<string name="type.power.tower">Poste de eletricidade</string>
	<string name="type.railway.halt">Estação de trem</string>
	<string name="type.railway.level_crossing">Passagem em nível</string>
	<string name="type.railway.station">Estação de trem</string>
	<string name="type.railway.station.light_rail">Estação de trem</string>
	<string name="type.railway.station.monorail">Estação de trem</string>
	<string name="type.railway.station.subway">Entrada de estação do metrô</string>
	<string name="type.railway.station.subway.barcelona">Entrada de estação do metrô</string>
	<string name="type.railway.station.subway.berlin">Entrada de estação do metrô</string>
	<string name="type.railway.station.subway.blue">Entrada de estação do metrô</string>
	<string name="type.railway.station.subway.brown">Entrada de estação do metrô</string>
	<string name="type.railway.station.subway.darkgreen">Entrada de estação do metrô</string>
	<string name="type.railway.station.subway.gray">Entrada de estação do metrô</string>
	<string name="type.railway.station.subway.green">Entrada de estação do metrô</string>
	<string name="type.railway.station.subway.grey">Entrada de estação do metrô</string>
	<string name="type.railway.station.subway.kiev">Entrada de estação do metrô</string>
	<string name="type.railway.station.subway.lightblue">Entrada de estação do metrô</string>
	<string name="type.railway.station.subway.lightgreen">Entrada de estação do metrô</string>
	<string name="type.railway.station.subway.london">Entrada de estação do metrô</string>
	<string name="type.railway.station.subway.madrid">Entrada de estação do metrô</string>
	<string name="type.railway.station.subway.minsk">Entrada de estação do metrô</string>
	<string name="type.railway.station.subway.moscow">Entrada de estação do metrô</string>
	<string name="type.railway.station.subway.newyork">Entrada de estação do metrô</string>
	<string name="type.railway.station.subway.orange">Entrada de estação do metrô</string>
	<string name="type.railway.station.subway.paris">Entrada de estação do metrô</string>
	<string name="type.railway.station.subway.purple">Entrada de estação do metrô</string>
	<string name="type.railway.station.subway.red">Entrada de estação do metrô</string>
	<string name="type.railway.station.subway.roma">Entrada de estação do metrô</string>
	<string name="type.railway.station.subway.spb">Entrada de estação do metrô</string>
	<string name="type.railway.station.subway.violet">Entrada de estação do metrô</string>
	<string name="type.railway.station.subway.yellow">Entrada de estação do metrô</string>
	<string name="type.railway.subway_entrance">Entrada de estação do metrô</string>
	<string name="type.railway.subway_entrance.barcelona">Entrada de estação do metrô</string>
	<string name="type.railway.subway_entrance.berlin">Entrada de estação do metrô</string>
	<string name="type.railway.subway_entrance.kiev">Entrada de estação do metrô</string>
	<string name="type.railway.subway_entrance.london">Entrada de estação do metrô</string>
	<string name="type.railway.subway_entrance.madrid">Entrada de estação do metrô</string>
	<string name="type.railway.subway_entrance.minsk">Entrada de estação do metrô</string>
	<string name="type.railway.subway_entrance.moscow">Entrada de estação do metrô</string>
	<string name="type.railway.subway_entrance.newyork">Entrada de estação do metrô</string>
	<string name="type.railway.subway_entrance.paris">Entrada de estação do metrô</string>
	<string name="type.railway.subway_entrance.roma">Entrada de estação do metrô</string>
	<string name="type.railway.subway_entrance.spb">Entrada de estação do metrô</string>
	<string name="type.railway.tram_stop">Parada de bonde</string>
	<string name="type.shop">Loja</string>
	<string name="type.shop.alcohol">Loja de bebidas</string>
	<string name="type.shop.bakery">Padaria</string>
	<string name="type.shop.beauty">Salão de beleza</string>
	<string name="type.shop.beverages">Bebidas</string>
	<string name="type.shop.bicycle">Loja de bicicletas</string>
	<string name="type.shop.bookmaker">Livreiro</string>
	<string name="type.shop.books">Livraria</string>
	<string name="type.shop.butcher">Açougue</string>
	<string name="type.shop.car">Loja de carros</string>
	<string name="type.shop.car_parts">Peças de carro</string>
	<string name="type.shop.car_repair">Oficina de automóveis</string>
	<string name="type.shop.car_repair.tyres">Borracheiro</string>
	<string name="type.shop.chemist">Drogaria</string>
	<string name="type.shop.chocolate">Loja</string>
	<string name="type.shop.clothes">Loja de roupas</string>
	<string name="type.shop.coffee">Loja</string>
	<string name="type.shop.computer">Loja de informática</string>
	<string name="type.shop.confectionery">Confeitaria</string>
	<string name="type.shop.convenience">Loja de conveniência</string>
	<string name="type.shop.copyshop">Copiadora</string>
	<string name="type.shop.cosmetics">Cosméticos</string>
	<string name="type.shop.department_store">Loja de departamentos</string>
	<string name="type.shop.doityourself">Loja de ferramentas</string>
	<string name="type.shop.dry_cleaning">Lavagem a seco</string>
	<string name="type.shop.electronics">Loja de eletrônicos</string>
	<string name="type.shop.erotic">Sex Shop</string>
	<string name="type.shop.fabric">Loja</string>
	<string name="type.shop.florist">Floricultura</string>
	<string name="type.shop.funeral_directors">Funerária</string>
	<string name="type.shop.furniture">Loja de móveis</string>
	<string name="type.shop.garden_centre">Loja de plantas</string>
	<string name="type.shop.gift">Loja de presentes</string>
	<string name="type.shop.greengrocer">Quitanda</string>
	<string name="type.shop.hairdresser">Cabeleireiro</string>
	<string name="type.shop.hardware">Loja de ferramentas</string>
	<string name="type.shop.jewelry">Joalheria</string>
	<string name="type.shop.kiosk">Quiosque</string>
	<string name="type.shop.laundry">Lavanderia</string>
	<string name="type.shop.mall">Shopping center</string>
	<string name="type.shop.massage">Massagista</string>
	<string name="type.shop.mobile_phone">Loja de celulares</string>
	<string name="type.shop.money_lender">Loja</string>
	<string name="type.shop.motorcycle">Loja de Motos</string>
	<string name="type.shop.music">Loja</string>
	<string name="type.shop.musical_instrument">Loja</string>
	<string name="type.shop.newsagent">Banca de jornais</string>
	<string name="type.shop.optician">Ótica</string>
	<string name="type.shop.outdoor">Equipamentos esportivos</string>
	<string name="type.shop.pawnbroker">Casa de penhores</string>
	<string name="type.shop.pet">Pet-shop</string>
	<string name="type.shop.photo">Artigos para fotografia</string>
	<string name="type.shop.seafood">Peixaria</string>
	<string name="type.shop.shoes">Sapataria</string>
	<string name="type.shop.sports">Artigos esportivos</string>
	<string name="type.shop.stationery">Papelaria</string>
	<string name="type.shop.supermarket">Supermercado</string>
	<string name="type.shop.tattoo">Estúdio de tatuagens</string>
	<string name="type.shop.tea">Loja</string>
	<string name="type.shop.ticket">Bilheteria</string>
	<string name="type.shop.toys">Loja de brinquedos</string>
	<string name="type.shop.travel_agency">Agência de viagem</string>
	<string name="type.shop.tyres">Loja de pneus</string>
	<string name="type.shop.variety_store">1,99</string>
	<string name="type.shop.video">Loja</string>
	<string name="type.shop.wine">Loja de vinhos</string>
	<string name="type.sport.athletics">Atletismo</string>
	<string name="type.sport.basketball">Basquetebol</string>
	<string name="type.sport.equestrian">Esportes equestres</string>
	<string name="type.tourism.alpine_hut">Abrigo de montanha</string>
	<string name="type.tourism.apartment">Apartamentos</string>
	<string name="type.tourism.artwork">Obra de arte</string>
	<string name="type.tourism.artwork.architecture">Obra de arte</string>
	<string name="type.tourism.artwork.painting">Obra de arte</string>
	<string name="type.tourism.artwork.sculpture">Obra de arte</string>
	<string name="type.tourism.artwork.statue">Obra de arte</string>
	<string name="type.tourism.attraction">Atração turística</string>
	<string name="type.tourism.attraction.animal">Atração turística</string>
	<string name="type.tourism.attraction.specified">Atração turística</string>
	<string name="type.tourism.camp_site">Local de acampamento</string>
	<string name="type.tourism.caravan_site">Área de trailers</string>
	<string name="type.tourism.chalet">Chalé</string>
	<string name="type.tourism.gallery">Turismo</string>
	<string name="type.tourism.guest_house">Pousada</string>
	<string name="type.tourism.information">Informações turísticas</string>
	<string name="type.tourism.information.board">Painel de informações</string>
	<string name="type.tourism.information.guidepost">Informações turísticas</string>
	<string name="type.tourism.information.map">Mapa turístico</string>
	<string name="type.tourism.information.office">Escritório de turismo</string>
	<string name="type.tourism.museum">Museu</string>
	<string name="type.tourism.picnic_site">Local de piquenique</string>
	<string name="type.tourism.theme_park">Parque de diversão</string>
	<string name="type.tourism.viewpoint">Mirante</string>
	<string name="type.tourism.wilderness_hut">Cabana</string>
	<string name="type.tourism.zoo">Zoológico</string>
	<string name="type.waterway.lock_gate">Comporta</string>
	<string name="type.waterway.river">Rio</string>
	<string name="type.waterway.river.tunnel">Rio</string>
	<string name="type.waterway.riverbank">Rio</string>
	<string name="type.waterway.stream">Rio</string>
	<string name="type.waterway.stream.ephemeral">Rio</string>
	<string name="type.waterway.stream.intermittent">Rio</string>
	<string name="type.waterway.stream.tunnel">Rio</string>
	<string name="type.waterway.waterfall">Cachoeira</string>
</resources>