noosfero.pot
42.6 KB
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
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: noosfero 0.5.0\n"
"POT-Creation-Date: 2008-01-02 22:12-0300\n"
"PO-Revision-Date: 2007-08-30 18:47-0300\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#: app/helpers/features_helper.rb:4
msgid "Administrator must approve all new organizations"
msgstr ""
#: app/helpers/features_helper.rb:5
msgid "Administrator assigns validator organizations per region."
msgstr ""
#: app/helpers/enterprise_validation_helper.rb:6
msgid "Approved"
msgstr ""
#: app/helpers/enterprise_validation_helper.rb:11
msgid "Rejected"
msgstr ""
#: app/helpers/profile_helper.rb:6
msgid "This profile does not have any public information"
msgstr ""
#: app/helpers/application_helper.rb:60
msgid "Help"
msgstr ""
#: app/helpers/application_helper.rb:61
msgid "Close"
msgstr ""
#: app/helpers/application_helper.rb:115
#: app/views/profile_editor/index.rhtml:1
msgid "My profile"
msgstr ""
#: app/helpers/application_helper.rb:118
#: app/views/environment_role_manager/make_admin.rhtml:4
msgid "Admin"
msgstr ""
#: app/helpers/application_helper.rb:119
msgid "Logout"
msgstr ""
#: app/helpers/application_helper.rb:123 app/views/account/login.rhtml:1
#: app/views/account/login.rhtml:5
msgid "Login"
msgstr ""
#: app/helpers/application_helper.rb:138
#: app/views/region_validators/region.rhtml:22
msgid "Search"
msgstr ""
#: app/helpers/application_helper.rb:139
msgid "your search here"
msgstr ""
#: app/helpers/application_helper.rb:148
msgid "%s, version %s"
msgstr ""
#: app/helpers/application_helper.rb:282 app/models/product.rb:32
msgid "Uncategorized product"
msgstr ""
#: app/helpers/application_helper.rb:287
msgid "No product"
msgstr ""
#: app/helpers/cms_helper.rb:5
msgid "New %s"
msgstr ""
#: app/helpers/cms_helper.rb:30 app/views/categories/index.rhtml:1
#: app/views/content_viewer/view_page.rhtml:28
msgid "Categories"
msgstr ""
#: app/helpers/categories_helper.rb:6
msgid "Do not display at the menu"
msgstr ""
#: app/helpers/categories_helper.rb:7
msgid "Orange"
msgstr ""
#: app/helpers/categories_helper.rb:8
msgid "Green"
msgstr ""
#: app/helpers/categories_helper.rb:9
msgid "Purple"
msgstr ""
#: app/helpers/categories_helper.rb:10
msgid "Red"
msgstr ""
#: app/helpers/categories_helper.rb:14
msgid "General Category"
msgstr ""
#: app/helpers/categories_helper.rb:15
msgid "Product Category"
msgstr ""
#: app/helpers/categories_helper.rb:16
msgid "Region"
msgstr ""
#: app/helpers/categories_helper.rb:21
msgid "Display at the menu?"
msgstr ""
#: app/helpers/categories_helper.rb:38
msgid "Type of category"
msgstr ""
#: app/models/category.rb:3
msgid "%{fn} cannot be like that."
msgstr ""
#: app/models/category.rb:5
msgid "%{fn} is already being used by another category."
msgstr ""
#: app/models/category.rb:9
msgid "%{fn} was already assigned to another category."
msgstr ""
#: app/models/category.rb:13
msgid "%{fn} must be the same as the parents'"
msgstr ""
#: app/models/user.rb:7
msgid "User|Password"
msgstr ""
#: app/models/user.rb:8
msgid "User|Password confirmation"
msgstr ""
#: app/models/user.rb:31
msgid "%{fn} must be checked in order to signup."
msgstr ""
#: app/models/comment.rb:14
msgid "%{fn} can only be informed for unauthenticated authors"
msgstr ""
#: app/models/task.rb:86
msgid "Generic task"
msgstr ""
#: app/models/task.rb:93
msgid "The task was created at %s"
msgstr ""
#: app/models/task.rb:99
msgid "The task was finished at %s"
msgstr ""
#: app/models/task.rb:105
msgid "The task was cancelled at %s"
msgstr ""
#: app/models/create_enterprise.rb:3 app/models/create_enterprise.rb:160
msgid "CreateEnterprise|Identifier"
msgstr ""
#: app/models/create_enterprise.rb:4
msgid "CreateEnterprise|Name"
msgstr ""
#: app/models/create_enterprise.rb:5
msgid "CreateEnterprise|Address"
msgstr ""
#: app/models/create_enterprise.rb:6
msgid "CreateEnterprise|Contact phone"
msgstr ""
#: app/models/create_enterprise.rb:7
msgid "CreateEnterprise|Contact person"
msgstr ""
#: app/models/create_enterprise.rb:8
msgid "CreateEnterprise|Acronym"
msgstr ""
#: app/models/create_enterprise.rb:9
msgid "CreateEnterprise|Foundation year"
msgstr ""
#: app/models/create_enterprise.rb:10
msgid "CreateEnterprise|Legal form"
msgstr ""
#: app/models/create_enterprise.rb:11
msgid "CreateEnterprise|Economic activity"
msgstr ""
#: app/models/create_enterprise.rb:12
msgid "CreateEnterprise|Management information"
msgstr ""
#: app/models/create_enterprise.rb:124
msgid "Enterprise registration: \"%s\""
msgstr ""
#: app/models/create_enterprise.rb:128
msgid ""
"Your request for registering enterprise \"%{enterprise}\" at %{environment} "
"was just received. It will be reviewed by the chosen validator organization "
"you chose, according to its methods and creteria.\n"
"\n"
" You will be notified as soon as the validator organization has a "
"position about your request."
msgstr ""
#: app/models/create_enterprise.rb:134
msgid ""
"Your request for registering the enterprise \"%{enterprise}\" was approved. "
"You can access %{environment} now and start using it for your new enterprise."
msgstr ""
#: app/models/create_enterprise.rb:138
msgid ""
"Your request for registering the enterprise %{enterprise} at %{environment} "
"was NOT approved by the validator organization. The following explanation "
"was given: \n"
"\n"
"%{explanation}"
msgstr ""
#: app/models/create_enterprise.rb:143
msgid ""
"Enterprise \"%{enterprise}\" just requested to enter %{environment}. You "
"have to approve or reject it through the \"Pending Validations\" section in "
"your control panel.\n"
msgstr ""
#: app/models/create_enterprise.rb:145
msgid "The data provided by the enterprise was the following:\n"
msgstr ""
#: app/models/create_enterprise.rb:148
msgid "Name: %s"
msgstr ""
#: app/models/create_enterprise.rb:149
msgid "Acronym: %s"
msgstr ""
#: app/models/create_enterprise.rb:150
msgid "Address: %s"
msgstr ""
#: app/models/create_enterprise.rb:151
msgid "Legal form: %s"
msgstr ""
#: app/models/create_enterprise.rb:152
msgid "Foundation Year: %d"
msgstr ""
#: app/models/create_enterprise.rb:153
msgid "Economic activity: %s"
msgstr ""
#: app/models/create_enterprise.rb:155
msgid "Information about enterprise's management:\n"
msgstr ""
#: app/models/create_enterprise.rb:157
msgid "Contact phone: %s"
msgstr ""
#: app/models/create_enterprise.rb:158
msgid "Contact person: %s"
msgstr ""
#: app/models/environment.rb:7
msgid "View environment admin panel"
msgstr ""
#: app/models/environment.rb:8
msgid "Edit environment features"
msgstr ""
#: app/models/environment.rb:9
msgid "Edit environment design"
msgstr ""
#: app/models/environment.rb:10
msgid "Manage environment categories"
msgstr ""
#: app/models/environment.rb:11
msgid "Manage environment roles"
msgstr ""
#: app/models/environment.rb:12
msgid "Manage environment validators"
msgstr ""
#: app/models/environment.rb:19
msgid "Some feature"
msgstr ""
#: app/models/environment.rb:20
msgid "Other feature"
msgstr ""
#: app/models/environment.rb:143
msgid "Only one Virtual Community can be the default one"
msgstr ""
#: app/models/domain.rb:13
msgid ""
"%{fn} must be composed only of lowercase latters (a to z), numbers (0 to 9) "
"and \"_\""
msgstr ""
#: app/models/domain.rb:20
msgid "%{fn} must not start with www."
msgstr ""
#: app/models/change_password.rb:13
msgid "ChangePassword|Login"
msgstr ""
#: app/models/change_password.rb:14
msgid "ChangePassword|Email"
msgstr ""
#: app/models/change_password.rb:15
msgid "ChangePassword|Password"
msgstr ""
#: app/models/change_password.rb:16
msgid "ChangePassword|Password Confirmation"
msgstr ""
#: app/models/change_password.rb:31
msgid "%{fn} is not a valid username."
msgstr ""
#: app/models/change_password.rb:34
msgid "%{fn} is invalid."
msgstr ""
#: app/models/change_password.rb:65
msgid "Your password change request was cancelled at %s."
msgstr ""
#: app/models/change_password.rb:69
msgid "Your password was changed successfully."
msgstr ""
#: app/models/change_password.rb:78
msgid ""
"In order to change your password, please visit the following address:\n"
"\n"
"%s"
msgstr ""
#: app/models/change_password.rb:83
msgid "Password change request"
msgstr ""
#: app/models/profile.rb:7
msgid "Edit profile"
msgstr ""
#: app/models/profile.rb:8
msgid "Destroy profile"
msgstr ""
#: app/models/profile.rb:9
msgid "Manage memberships"
msgstr ""
#: app/models/profile.rb:10
msgid "Post content"
msgstr ""
#: app/models/profile.rb:11
msgid "Edit profile design"
msgstr ""
#: app/models/profile.rb:12
msgid "Manage products"
msgstr ""
#: app/models/profile.rb:66
msgid "An existing profile cannot be renamed."
msgstr ""
#: app/models/rss_feed.rb:70
msgid "%s's RSS feed"
msgstr ""
#: app/models/rss_feed.rb:72
msgid "%s's content published at %s"
msgstr ""
#: app/models/rss_feed.rb:98
msgid "RSS Feed"
msgstr ""
#: app/models/rss_feed.rb:102
msgid "Provides a news feed of your more recent articles."
msgstr ""
#: app/models/uploaded_file.rb:24
msgid "Uploaded file"
msgstr ""
#: app/models/uploaded_file.rb:28
msgid "Upload any kind of file you want."
msgstr ""
#: app/models/article.rb:6
msgid ""
"%{fn} (the code generated from the article name) is already being used by "
"another article."
msgstr ""
#: app/models/article.rb:15
msgid "Tag list"
msgstr ""
#: app/models/article.rb:68
msgid "HTML Text document"
msgstr ""
#: app/models/article.rb:85
msgid "Article"
msgstr ""
#: app/models/article.rb:87
msgid "\"%s\" article"
msgstr ""
#: app/models/article.rb:93
msgid "An ordinary article"
msgstr ""
#: app/models/article.rb:95
msgid "An article of type \"%s\""
msgstr ""
#: app/models/tiny_mce_article.rb:4
msgid "Text article with visual editor."
msgstr ""
#: app/models/tiny_mce_article.rb:8
msgid "Not accessible for visually impaired users."
msgstr ""
#: app/models/textile_article.rb:4
msgid "Text article with Textile markup language"
msgstr ""
#: app/models/textile_article.rb:8
msgid "Accessible alternative for visually impaired users."
msgstr ""
#: app/controllers/my_profile/profile_members_controller.rb:18
#: app/controllers/admin/environment_role_manager_controller.rb:17
msgid "Roles successfuly updated"
msgstr ""
#: app/controllers/my_profile/profile_members_controller.rb:20
#: app/controllers/admin/environment_role_manager_controller.rb:19
msgid "Couldn't change the roles"
msgstr ""
#: app/controllers/my_profile/manage_products_controller.rb:19
#: app/controllers/my_profile/consumed_products_controller.rb:15
msgid "Product succesfully created"
msgstr ""
#: app/controllers/my_profile/manage_products_controller.rb:22
#: app/controllers/my_profile/consumed_products_controller.rb:18
msgid "Could not create the product"
msgstr ""
#: app/controllers/my_profile/manage_products_controller.rb:31
msgid "Product succesfully updated"
msgstr ""
#: app/controllers/my_profile/manage_products_controller.rb:34
msgid "Could not update the product"
msgstr ""
#: app/controllers/my_profile/manage_products_controller.rb:42
#: app/controllers/my_profile/consumed_products_controller.rb:26
msgid "Product succesfully removed"
msgstr ""
#: app/controllers/my_profile/manage_products_controller.rb:45
#: app/controllers/my_profile/consumed_products_controller.rb:28
msgid "Could not remove the product"
msgstr ""
#: app/controllers/my_profile/enterprise_editor_controller.rb:22
msgid "Could not update the enterprise"
msgstr ""
#: app/controllers/my_profile/enterprise_editor_controller.rb:32
msgid "Enterprise sucessfully erased from the system"
msgstr ""
#: app/controllers/my_profile/profile_editor_controller.rb:44
msgid "Image successfully uploaded"
msgstr ""
#: app/controllers/my_profile/profile_editor_controller.rb:47
msgid "Could not upload image"
msgstr ""
#: app/controllers/admin/features_controller.rb:13
msgid "Features updated successfully."
msgstr ""
#: app/controllers/admin/environment_role_manager_controller.rb:45
#: app/controllers/admin/environment_role_manager_controller.rb:55
msgid "Member succefully unassociated"
msgstr ""
#: app/controllers/admin/environment_role_manager_controller.rb:47
#: app/controllers/admin/environment_role_manager_controller.rb:57
msgid "Failed to unassociate member"
msgstr ""
#: app/controllers/admin/role_controller.rb:21
msgid "Failed to create role"
msgstr ""
#: app/controllers/admin/role_controller.rb:35
#: app/controllers/admin/role_controller.rb:45
msgid "Failed to edit role"
msgstr ""
#: app/controllers/public/account_controller.rb:25
msgid "Logged in successfully"
msgstr ""
#: app/controllers/public/account_controller.rb:27
msgid "Incorrect username or password"
msgstr ""
#: app/controllers/public/account_controller.rb:46
msgid "Thanks for signing up!"
msgstr ""
#: app/controllers/public/account_controller.rb:58
msgid "You have been logged out."
msgstr ""
#: app/controllers/public/account_controller.rb:69
msgid "Your password has been changed successfully!"
msgstr ""
#: app/controllers/public/account_controller.rb:72
msgid "The supplied current password is incorrect."
msgstr ""
#: app/controllers/my_profile_controller.rb:17
msgid "This action is not available for \"%s\"."
msgstr ""
#: app/design_blocks/favorite_links_profile/models/favorite_links_profile.rb:4
#: app/design_blocks/favorite_links/models/favorite_links.rb:4
#: app/design_blocks/favorite_links/views/manage_links.rhtml:3
msgid "Favorite Links"
msgstr ""
#: app/design_blocks/list_block/models/list_block.rb:12
msgid "List Block"
msgstr ""
#: app/design_blocks/list_block/controllers/list_block_controller.rb:24
#: app/design_blocks/profile_info_block/controllers/profile_info_block_controller.rb:24
#: app/design_blocks/view_article/controllers/view_article_controller.rb:24
#: app/design_blocks/favorite_links/controllers/favorite_links_controller.rb:4
#: app/design_blocks/login_box/controllers/login_box_controller.rb:22
#: app/views/cms/view.rhtml:70 app/views/categories/_category.rhtml:8
#: app/views/content_viewer/view_page.rhtml:11 app/views/role/index.rhtml:6
msgid "Edit"
msgstr ""
#: app/design_blocks/favorite_links/controllers/favorite_links_controller.rb:5
msgid "Manage Links"
msgstr ""
#: app/design_blocks/list_block/views/show.rhtml:1
msgid "Limit number of people: "
msgstr ""
#: app/design_blocks/list_block/views/edit.rhtml:1
msgid "Editing list of people"
msgstr ""
#: app/design_blocks/list_block/views/edit.rhtml:5
#: app/design_blocks/profile_info_block/views/edit.rhtml:5
#: app/design_blocks/view_article/views/edit.rhtml:5
#: app/design_blocks/favorite_links/views/add_link.rhtml:6
#: app/design_blocks/favorite_links/views/edit.rhtml:7
#: app/views/content_viewer/_comment_form.rhtml:16
msgid "Title"
msgstr ""
#: app/design_blocks/list_block/views/edit.rhtml:10
msgid "Type of objects to list"
msgstr ""
#: app/design_blocks/list_block/views/edit.rhtml:15
msgid "Max number of elements"
msgstr ""
#: app/design_blocks/list_block/views/edit.rhtml:19
#: app/design_blocks/profile_info_block/views/edit.rhtml:9
#: app/design_blocks/view_article/views/edit.rhtml:14
#: app/design_blocks/favorite_links/views/add_link.rhtml:10
#: app/design_blocks/favorite_links/views/edit.rhtml:26
#: app/views/cms/edit.rhtml:16 app/views/categories/_form.rhtml:16
#: app/views/profile_editor/person_info.rhtml:18
msgid "Save"
msgstr ""
#: app/design_blocks/list_block/views/nothing.rhtml:1
msgid "Nothing to see here"
msgstr ""
#: app/design_blocks/profile_info_block/views/edit.rhtml:1
msgid "Editing profile exibition"
msgstr ""
#: app/design_blocks/profile_info_block/views/index.rhtml:2
msgid "Change photo"
msgstr ""
#: app/design_blocks/profile_info_block/views/index.rhtml:3
msgid "User since %d"
msgstr ""
#: app/design_blocks/profile_info_block/views/index.rhtml:5
msgid "1 year"
msgid_plural "%{num} years"
msgstr[0] ""
msgstr[1] ""
#: app/design_blocks/view_article/views/edit.rhtml:1
msgid "Editing article shown"
msgstr ""
#: app/design_blocks/view_article/views/edit.rhtml:10
msgid "Page to show"
msgstr ""
#: app/design_blocks/favorite_links/views/add_link.rhtml:1
#: app/design_blocks/favorite_links/views/edit.rhtml:2
msgid "Editing Favorite Links"
msgstr ""
#: app/design_blocks/favorite_links/views/edit.rhtml:12
msgid "Display header?"
msgstr ""
#: app/design_blocks/favorite_links/views/edit.rhtml:17
msgid "Display title?"
msgstr ""
#: app/design_blocks/favorite_links/views/edit.rhtml:22
msgid "Max number of links"
msgstr ""
#: app/design_blocks/favorite_links/views/index.rhtml:4
#: app/design_blocks/favorite_links/views/manage_links.rhtml:8
msgid "Previous"
msgstr ""
#: app/design_blocks/favorite_links/views/index.rhtml:7
#: app/design_blocks/favorite_links/views/manage_links.rhtml:11
#: app/views/enterprise_registration/basic_information.rhtml:32
msgid "Next"
msgstr ""
#: app/design_blocks/favorite_links/views/manage_links.rhtml:4
msgid "Add Link"
msgstr ""
#: app/design_blocks/favorite_links/views/manage_links.rhtml:18
#: app/views/categories/_category.rhtml:9
msgid "Remove"
msgstr ""
#: app/views/environment_role_manager/affiliate.rhtml:6
#: app/views/profile_members/affiliate.rhtml:6
msgid "Affiliate"
msgstr ""
#: app/views/environment_role_manager/affiliate.rhtml:9
#: app/views/environment_role_manager/index.rhtml:13
#: app/views/enterprise_editor/index.rhtml:22
#: app/views/enterprise_validation/view_processed.rhtml:3
#: app/views/enterprise_validation/list_processed.rhtml:3
#: app/views/enterprise_validation/details.rhtml:3
#: app/views/consumed_products/index.rhtml:11 app/views/role/show.rhtml:10
#: app/views/role/index.rhtml:12 app/views/profile_members/affiliate.rhtml:9
#: app/views/profile_members/index.rhtml:13
#: app/views/manage_products/index.rhtml:12
msgid "Back"
msgstr ""
#: app/views/environment_role_manager/make_admin.rhtml:1
#: app/views/environment_role_manager/index.rhtml:3
msgid "Make new admin"
msgstr ""
#: app/views/environment_role_manager/make_admin.rhtml:8
#: app/views/environment_role_manager/change_role.rhtml:5
#: app/views/profile_members/change_role.rhtml:5
msgid "Roles:"
msgstr ""
#: app/views/environment_role_manager/make_admin.rhtml:12
msgid "Make"
msgstr ""
#: app/views/environment_role_manager/change_role.rhtml:1
#: app/views/profile_members/change_role.rhtml:1
msgid "Changing role of %s"
msgstr ""
#: app/views/environment_role_manager/change_role.rhtml:11
#: app/views/role/_form.rhtml:12
#: app/views/profile_members/change_role.rhtml:12
#: app/views/manage_products/_form.rhtml:9
#: app/views/features/_features_table.rhtml:15
msgid "Save changes"
msgstr ""
#: app/views/environment_role_manager/change_role.rhtml:12
#: app/views/cms/edit.rhtml:17 app/views/categories/_form.rhtml:17
#: app/views/enterprise_editor/edit.rhtml:8
#: app/views/consumed_products/new.rhtml:9 app/views/role/_form.rhtml:13
#: app/views/profile_editor/change_image.rhtml:4
#: app/views/enterprise_registration/basic_information.rhtml:33
#: app/views/profile_members/change_role.rhtml:13
#: app/views/manage_products/_form.rhtml:10
msgid "Cancel"
msgstr ""
#: app/views/environment_role_manager/index.rhtml:1
msgid "Listing Administrators"
msgstr ""
#: app/views/environment_role_manager/index.rhtml:8
#: app/views/profile_members/index.rhtml:8
msgid "Edit member role"
msgstr ""
#: app/views/environment_role_manager/index.rhtml:9
#: app/views/profile_members/index.rhtml:9
msgid "Remove member"
msgstr ""
#: app/views/cms/select_article_type.rhtml:2
msgid "Choose the type of article:"
msgstr ""
#: app/views/cms/_uploaded_file.rhtml:1
msgid "Select the file you want to upload."
msgstr ""
#: app/views/cms/_uploaded_file.rhtml:3
msgid "Describe this file:"
msgstr ""
#: app/views/cms/_rss_feed.rhtml:3
msgid "Limit of articles"
msgstr ""
#: app/views/cms/_rss_feed.rhtml:5
msgid "Use as item description:"
msgstr ""
#: app/views/cms/_rss_feed.rhtml:5
msgid "Article abstract"
msgstr ""
#: app/views/cms/_rss_feed.rhtml:5
msgid "Article body"
msgstr ""
#: app/views/cms/_rss_feed.rhtml:7
msgid "Include in the feed:"
msgstr ""
#: app/views/cms/_rss_feed.rhtml:7
msgid "All articles"
msgstr ""
#: app/views/cms/_rss_feed.rhtml:7
msgid "Only articles child of the same article as the feed"
msgstr ""
#: app/views/cms/edit.rhtml:14
msgid "Separate tags with commas"
msgstr ""
#: app/views/cms/view.rhtml:10
msgid "Content management"
msgstr ""
#: app/views/cms/view.rhtml:14
msgid "New article"
msgstr ""
#: app/views/cms/view.rhtml:21
msgid "Hide subitems"
msgstr ""
#: app/views/cms/view.rhtml:21
msgid "Show subitems"
msgstr ""
#: app/views/cms/view.rhtml:25
msgid "Subitems"
msgstr ""
#: app/views/cms/view.rhtml:25
msgid "Articles"
msgstr ""
#: app/views/cms/view.rhtml:40
msgid "New subitem"
msgstr ""
#: app/views/cms/view.rhtml:42
msgid "Go up one level"
msgstr ""
#: app/views/cms/view.rhtml:59
msgid "\"%{article}\", last changed by %{author}"
msgstr ""
#: app/views/cms/view.rhtml:59
msgid "Unknown User"
msgstr ""
#: app/views/cms/view.rhtml:62
msgid "Public address of this article: %s"
msgstr ""
#: app/views/cms/view.rhtml:65
msgid "Tags:"
msgstr ""
#: app/views/cms/view.rhtml:67
msgid "Categories:"
msgstr ""
#: app/views/cms/view.rhtml:71
msgid "Use as homepage"
msgstr ""
#: app/views/cms/view.rhtml:72
msgid "Delete"
msgstr ""
#: app/views/cms/view.rhtml:72
msgid "Are you sure you wan to remove this article?"
msgstr ""
#: app/views/categories/_category.rhtml:7
msgid "Add subcategory"
msgstr ""
#: app/views/categories/_category.rhtml:9
msgid "Are you sure you want to remove \"%s\"?"
msgstr ""
#: app/views/categories/_category.rhtml:9
msgid "Are you sure you want to remove \"%s\" and all its subcategories?"
msgstr ""
#: app/views/categories/edit.rhtml:1
msgid "Editing %s"
msgstr ""
#: app/views/categories/index.rhtml:8 app/views/categories/new.rhtml:1
msgid "New category"
msgstr ""
#: app/views/enterprise_editor/_form.rhtml:1
#: app/views/enterprise_validation/_details.rhtml:3
#: app/views/content_viewer/_comment_form.rhtml:7
#: app/views/profile_editor/enterprise_info.rhtml:1
#: app/views/profile_editor/person_info.rhtml:5
msgid "Name"
msgstr ""
#: app/views/enterprise_editor/_form.rhtml:4
#: app/views/enterprise_validation/list_processed.rhtml:9
#: app/views/enterprise_validation/_details.rhtml:7
#: app/views/enterprise_validation/index.rhtml:7
#: app/views/profile_editor/enterprise_info.rhtml:4
#: app/views/profile_editor/person_info.rhtml:13
msgid "Address"
msgstr ""
#: app/views/enterprise_editor/_form.rhtml:7
#: app/views/enterprise_validation/list_processed.rhtml:13
#: app/views/enterprise_validation/_details.rhtml:11
#: app/views/enterprise_validation/index.rhtml:11
#: app/views/profile_editor/enterprise_info.rhtml:7
msgid "Contact Phone"
msgstr ""
#: app/views/enterprise_editor/_form.rhtml:10
#: app/views/enterprise_validation/list_processed.rhtml:17
#: app/views/enterprise_validation/_details.rhtml:15
#: app/views/enterprise_validation/index.rhtml:15
#: app/views/profile_editor/enterprise_info.rhtml:10
msgid "Contact Person"
msgstr ""
#: app/views/enterprise_editor/_form.rhtml:13
#: app/views/enterprise_validation/_details.rhtml:19
#: app/views/profile_editor/enterprise_info.rhtml:13
msgid "Acronym"
msgstr ""
#: app/views/enterprise_editor/_form.rhtml:16
#: app/views/enterprise_validation/_details.rhtml:27
#: app/views/profile_editor/enterprise_info.rhtml:16
msgid "Foundation Year"
msgstr ""
#: app/views/enterprise_editor/_form.rhtml:19
#: app/views/enterprise_validation/_details.rhtml:31
#: app/views/profile_editor/enterprise_info.rhtml:19
msgid "Legal Form"
msgstr ""
#: app/views/enterprise_editor/_form.rhtml:22
#: app/views/enterprise_validation/_details.rhtml:35
#: app/views/profile_editor/enterprise_info.rhtml:22
msgid "Economic Activity"
msgstr ""
#: app/views/enterprise_editor/_form.rhtml:25
#: app/views/enterprise_validation/_details.rhtml:39
#: app/views/profile_editor/enterprise_info.rhtml:25
msgid "Management Information"
msgstr ""
#: app/views/enterprise_editor/_form.rhtml:28
#: app/views/profile_editor/enterprise_info.rhtml:28
msgid "Validation Entity"
msgstr ""
#: app/views/enterprise_editor/edit.rhtml:3
msgid "Edit enterprise informations"
msgstr ""
#: app/views/enterprise_editor/edit.rhtml:7
msgid "Update"
msgstr ""
#: app/views/enterprise_editor/index.rhtml:5
msgid "Identifier:"
msgstr ""
#: app/views/enterprise_editor/index.rhtml:6
msgid "Address:"
msgstr ""
#: app/views/enterprise_editor/index.rhtml:7
msgid "Contact phone:"
msgstr ""
#: app/views/enterprise_editor/index.rhtml:8
msgid "Contact person:"
msgstr ""
#: app/views/enterprise_editor/index.rhtml:9
msgid "Acronym:"
msgstr ""
#: app/views/enterprise_editor/index.rhtml:10
msgid "Foundation year:"
msgstr ""
#: app/views/enterprise_editor/index.rhtml:11
msgid "Legal Form:"
msgstr ""
#: app/views/enterprise_editor/index.rhtml:12
msgid "Economic activity:"
msgstr ""
#: app/views/enterprise_editor/index.rhtml:13
msgid "Management infomation:"
msgstr ""
#: app/views/enterprise_editor/index.rhtml:15
msgid "Edit enterprise"
msgstr ""
#: app/views/enterprise_editor/index.rhtml:16
msgid "Change the information about the enterprise"
msgstr ""
#: app/views/enterprise_editor/index.rhtml:17
msgid "Delete enterprise"
msgstr ""
#: app/views/enterprise_editor/index.rhtml:18
msgid "Remove the enterprise from the system"
msgstr ""
#: app/views/enterprise_editor/index.rhtml:19
msgid "Activate"
msgstr ""
#: app/views/enterprise_editor/index.rhtml:20
msgid "Activate an approved enterprise"
msgstr ""
#: app/views/home/index.rhtml:8
msgid "Recent articles"
msgstr ""
#: app/views/enterprise_validation/view_processed.rhtml:1
msgid "Processed validation request for %s "
msgstr ""
#: app/views/enterprise_validation/list_processed.rhtml:1
#: app/views/enterprise_validation/index.rhtml:23
msgid "Processed enterprise validations"
msgstr ""
#: app/views/enterprise_validation/list_processed.rhtml:23
msgid "See details"
msgstr ""
#: app/views/enterprise_validation/_details.rhtml:23
msgid "Identifier"
msgstr ""
#: app/views/enterprise_validation/details.rhtml:1
msgid "%s's validation"
msgstr ""
#: app/views/enterprise_validation/details.rhtml:7
msgid "Provided information"
msgstr ""
#: app/views/enterprise_validation/details.rhtml:11
msgid "Final decision:"
msgstr ""
#: app/views/enterprise_validation/details.rhtml:13
#: app/views/enterprise_validation/details.rhtml:18
msgid "Approve"
msgstr ""
#: app/views/enterprise_validation/details.rhtml:15
msgid ""
"If this enterprise passes the criteria to be considered an solidarity "
"enconomy enterprise, you can approve it by click the button below."
msgstr ""
#: app/views/enterprise_validation/details.rhtml:21
#: app/views/enterprise_validation/details.rhtml:28
msgid "Reject"
msgstr ""
#: app/views/enterprise_validation/details.rhtml:23
msgid ""
"If this enterprise does not pass the criteria do be considered, use this "
"form."
msgstr ""
#: app/views/enterprise_validation/details.rhtml:26
msgid ""
"Please provide an explanation for the rejection. This explanation will be "
"sent to the requestor (required)."
msgstr ""
#: app/views/enterprise_validation/index.rhtml:1
msgid "Pending enterprise validations"
msgstr ""
#: app/views/enterprise_validation/index.rhtml:20
msgid "See details/approve/reject"
msgstr ""
#: app/views/enterprise_validation/index.rhtml:25
msgid "See the list of processed enterprise validations"
msgstr ""
#: app/views/content_viewer/not_found.rhtml:1
#: app/views/shared/not_found.rhtml:1
msgid "There is no such page: %s"
msgstr ""
#: app/views/content_viewer/no_home_page.rhtml:1
msgid "Missing home page"
msgstr ""
#: app/views/content_viewer/no_home_page.rhtml:4
msgid "%s did not choose an article for homepage yet."
msgstr ""
#: app/views/content_viewer/_comment.rhtml:3
msgid "By %{author} on %{date}"
msgstr ""
#: app/views/content_viewer/_comment_form.rhtml:1
msgid "Post a comment"
msgstr ""
#: app/views/content_viewer/_comment_form.rhtml:8
msgid "e-mail"
msgstr ""
#: app/views/content_viewer/_comment_form.rhtml:11
msgid ""
"If you are a registered user, you can login and be automatically recognized."
msgstr ""
#: app/views/content_viewer/_comment_form.rhtml:17
msgid "Enter your comment"
msgstr ""
#: app/views/content_viewer/_comment_form.rhtml:18
msgid "Post comment"
msgstr ""
#: app/views/content_viewer/view_page.rhtml:4
msgid "Tags: %s"
msgstr ""
#: app/views/content_viewer/view_page.rhtml:8
msgid "Up"
msgstr ""
#: app/views/content_viewer/view_page.rhtml:32
msgid "No comments yet"
msgstr ""
#: app/views/content_viewer/view_page.rhtml:32
msgid "One comment"
msgid_plural "%{comments} comments"
msgstr[0] ""
msgstr[1] ""
#: app/views/task_mailer/target_notification.rhtml:6
#: app/views/task_mailer/task_created.text.plain.rhtml:6
#: app/views/task_mailer/task_finished.text.plain.rhtml:6
#: app/views/task_mailer/task_cancelled.text.plain.rhtml:6
msgid "%s environment system"
msgstr ""
#: app/views/task_mailer/task_created.text.plain.rhtml:1
#: app/views/task_mailer/task_finished.text.plain.rhtml:1
#: app/views/task_mailer/task_cancelled.text.plain.rhtml:1
msgid "Dear %s,"
msgstr ""
#: app/views/account/new_password.rhtml:1
#: app/views/account/new_password.rhtml:11
msgid "Enter new password"
msgstr ""
#: app/views/account/new_password.rhtml:4
msgid "Hello, %s! Please enter your new password in the form below."
msgstr ""
#: app/views/account/new_password.rhtml:12
msgid "Confirm the new password"
msgstr ""
#: app/views/account/new_password.rhtml:13
#: app/views/account/change_password.rhtml:1
#: app/views/account/change_password.rhtml:14
msgid "Change password"
msgstr ""
#: app/views/account/index_anonymous.rhtml:1
msgid "Identify yourself"
msgstr ""
#: app/views/account/index_anonymous.rhtml:4
msgid "Login."
msgstr ""
#: app/views/account/index_anonymous.rhtml:5
msgid ""
"You need to login to be able to use all the features in this environment."
msgstr ""
#: app/views/account/index_anonymous.rhtml:9
msgid "Sign up."
msgstr ""
#: app/views/account/index_anonymous.rhtml:10
msgid ""
"If you are not an user already, you can register now to become a member of "
"this environment."
msgstr ""
#: app/views/account/forgot_password.rhtml:1
#: app/views/account/password_recovery_sent.rhtml:1
msgid "Password recovery"
msgstr ""
#: app/views/account/forgot_password.rhtml:5
msgid ""
"To change your password, please fill the form on this screen using yout "
"username and your e-mail. You will receive a message at that e-mail address "
"with a web address you can access to create a new password."
msgstr ""
#: app/views/account/forgot_password.rhtml:8
msgid "Username"
msgstr ""
#: app/views/account/forgot_password.rhtml:9
msgid "E-mail"
msgstr ""
#: app/views/account/forgot_password.rhtml:11
msgid "Send change password procedure by e-mail"
msgstr ""
#: app/views/account/new_password_ok.rhtml:1
msgid "Password changed sucessfully"
msgstr ""
#: app/views/account/new_password_ok.rhtml:4
msgid "%s, your new password was successfully installed."
msgstr ""
#: app/views/account/new_password_ok.rhtml:8
msgid "You can <a href='%s'>login</a> now."
msgstr ""
#: app/views/account/signup.rhtml:1
msgid "Register"
msgstr ""
#: app/views/account/signup.rhtml:17
msgid "I accept the terms of use"
msgstr ""
#: app/views/account/signup.rhtml:21
msgid "Sign up"
msgstr ""
#: app/views/account/change_password.rhtml:5
msgid "Current password"
msgstr ""
#: app/views/account/change_password.rhtml:8
msgid "New password"
msgstr ""
#: app/views/account/change_password.rhtml:11
msgid "Confirm your new Password"
msgstr ""
#: app/views/account/index.rhtml:1
msgid "Account options"
msgstr ""
#: app/views/account/index.rhtml:4
msgid "Change password."
msgstr ""
#: app/views/account/index.rhtml:5
msgid "It is a good idea to change your password from times to times."
msgstr ""
#: app/views/account/index.rhtml:9
msgid "Edit Personal details."
msgstr ""
#: app/views/account/index.rhtml:10
msgid "You can change your personal details."
msgstr ""
#: app/views/account/index.rhtml:14
msgid "My home page."
msgstr ""
#: app/views/account/index.rhtml:15
msgid "See your homepage."
msgstr ""
#: app/views/account/index.rhtml:19
msgid "Manage content."
msgstr ""
#: app/views/account/index.rhtml:20
msgid "Manage your content."
msgstr ""
#: app/views/account/index.rhtml:24
msgid "Logout."
msgstr ""
#: app/views/account/index.rhtml:25
msgid ""
"It is always a good idea to make a logout when you finish using the "
"environment."
msgstr ""
#: app/views/account/invalid_change_password_code.rhtml:1
msgid "Invalid change password code"
msgstr ""
#: app/views/account/invalid_change_password_code.rhtml:4
msgid ""
"The code you are using for password change is not valid. Please try to "
"request password change using the <a href=\"%s\">\"I forgot my password\"</"
"a> functionality."
msgstr ""
#: app/views/account/password_recovery_sent.rhtml:4
msgid ""
"An e-mail was just sent to your e-mail address, with instructions for "
"changing your password. You should receive it in a few minutes."
msgstr ""
#: app/views/account/login.rhtml:7
msgid "Password"
msgstr ""
#: app/views/account/login.rhtml:14
msgid "I forgot my password!"
msgstr ""
#: app/views/account/login.rhtml:18
msgid "I want to be an user!"
msgstr ""
#: app/views/consumed_products/index.rhtml:1
#: app/views/manage_products/index.rhtml:1
msgid "Listing products"
msgstr ""
#: app/views/consumed_products/index.rhtml:3
#: app/views/consumed_products/new.rhtml:1
#: app/views/consumed_products/new.rhtml:8
msgid "Add product"
msgstr ""
#: app/views/consumed_products/index.rhtml:7
#: app/views/manage_products/show.rhtml:9
#: app/views/manage_products/index.rhtml:9
msgid "destroy"
msgstr ""
#: app/views/consumed_products/new.rhtml:6
msgid "Product:"
msgstr ""
#: app/views/consumed_products/new.rhtml:7
msgid "Aditional specifications:"
msgstr ""
#: app/views/layouts/not_found.rhtml:5
msgid "Page not found"
msgstr ""
#: app/views/layouts/application.rhtml:40
msgid "Go to content"
msgstr ""
#: app/views/role/show.rhtml:3
msgid "Permissions"
msgstr ""
#: app/views/role/_form.rhtml:7
msgid "Permissions:"
msgstr ""
#: app/views/role/_form.rhtml:12
msgid "Create role"
msgstr ""
#: app/views/role/index.rhtml:1
msgid "New role"
msgstr ""
#: app/views/role/index.rhtml:7
msgid "Destroy"
msgstr ""
#: app/views/role/new.rhtml:1
msgid "New Role"
msgstr ""
#: app/views/search/tag.rhtml:2
msgid "Tagged with \"%s\""
msgstr ""
#: app/views/search/tag.rhtml:6
msgid "Back to tag cloud"
msgstr ""
#: app/views/search/tags.rhtml:1
msgid "Tag cloud"
msgstr ""
#: app/views/search/_product.rhtml:11
#: app/views/category/_product_category.rhtml:14
msgid "Price: %d"
msgstr ""
#: app/views/search/_product.rhtml:12
msgid "Suplier: %s"
msgstr ""
#: app/views/search/_product.rhtml:13 app/views/category/view.rhtml:3
msgid "Category: %s"
msgstr ""
#: app/views/search/index.rhtml:1
msgid "Search results for \"%s\""
msgstr ""
#: app/views/search/index.rhtml:6
msgid "Relevance: %d%%"
msgstr ""
#: app/views/profile_editor/enterprise_info.rhtml:31
msgid "Tags"
msgstr ""
#: app/views/profile_editor/person_info.rhtml:1
msgid "Edit person info"
msgstr ""
#: app/views/profile_editor/person_info.rhtml:7
msgid "Contact Information"
msgstr ""
#: app/views/profile_editor/person_info.rhtml:8
msgid "Birth day"
msgstr ""
#: app/views/profile_editor/person_info.rhtml:10
msgid "Sex: "
msgstr ""
#: app/views/profile_editor/person_info.rhtml:11
msgid "Male"
msgstr ""
#: app/views/profile_editor/person_info.rhtml:12
msgid "Female"
msgstr ""
#: app/views/profile_editor/person_info.rhtml:14
msgid "City"
msgstr ""
#: app/views/profile_editor/person_info.rhtml:15
msgid "State"
msgstr ""
#: app/views/profile_editor/person_info.rhtml:16
msgid "Country"
msgstr ""
#: app/views/profile_editor/change_image.rhtml:2
msgid "Image"
msgstr ""
#: app/views/profile_editor/change_image.rhtml:3
msgid "Upload"
msgstr ""
#: app/views/profile_editor/index.rhtml:3
msgid "Put image"
msgstr ""
#: app/views/profile_editor/index.rhtml:10
msgid "Edit Profile"
msgstr ""
#: app/views/profile_editor/index.rhtml:12
msgid "Edit Visual Design"
msgstr ""
#: app/views/profile_editor/index.rhtml:14
msgid "Manage Content"
msgstr ""
#: app/views/profile_editor/index.rhtml:16
msgid "Change Password"
msgstr ""
#: app/views/profile_editor/index.rhtml:18
msgid "Manage Members"
msgstr ""
#: app/views/profile_editor/index.rhtml:20
msgid "Consumed Products"
msgstr ""
#: app/views/profile_editor/index.rhtml:22
msgid "Manage Products"
msgstr ""
#: app/views/profile_editor/index.rhtml:27
msgid "My organizations"
msgstr ""
#: app/views/profile_editor/index.rhtml:35
msgid "Register a new Enterprise"
msgstr ""
#: app/views/shared/access_denied.rhtml:1
msgid "Access denied"
msgstr ""
#: app/views/admin_panel/index.rhtml:1
msgid "Administrator Panel"
msgstr ""
#: app/views/admin_panel/index.rhtml:3
msgid "You, as an environment administrator, has the following options:"
msgstr ""
#: app/views/admin_panel/index.rhtml:6
msgid "Enable/disable features"
msgstr ""
#: app/views/admin_panel/index.rhtml:7
msgid "Edit the Visual Design"
msgstr ""
#: app/views/admin_panel/index.rhtml:8
msgid "Manage Categories"
msgstr ""
#: app/views/admin_panel/index.rhtml:9
msgid "Manage User roles"
msgstr ""
#: app/views/admin_panel/index.rhtml:10
msgid "Manage Validators by region"
msgstr ""
#: app/views/enterprise_registration/select_validator.rhtml:1
msgid "Enterprise Registration: Select a validator organization"
msgstr ""
#: app/views/enterprise_registration/select_validator.rhtml:4
msgid ""
"Select one organization to validate your enterprise registration request. "
"Check the provided information about their validation methodoly and criteria."
msgstr ""
#: app/views/enterprise_registration/select_validator.rhtml:15
msgid "Validation Methodology:"
msgstr ""
#: app/views/enterprise_registration/select_validator.rhtml:15
#: app/views/enterprise_registration/select_validator.rhtml:16
msgid "(not informed)"
msgstr ""
#: app/views/enterprise_registration/select_validator.rhtml:16
msgid "Restrictions (if any):"
msgstr ""
#: app/views/enterprise_registration/select_validator.rhtml:21
msgid "Confirm"
msgstr ""
#: app/views/enterprise_registration/basic_information.rhtml:3
msgid "Register enterprise"
msgstr ""
#: app/views/enterprise_registration/basic_information.rhtml:5
msgid "How to proceed"
msgstr ""
#: app/views/enterprise_registration/basic_information.rhtml:6
msgid ""
"Fill the form and hit the Register button then the enterprise will be "
"submitted for evaluation at the validation entitiy of your choice (within "
"your state), when the enterprise is aproved you will be able to activate its "
"profile"
msgstr ""
#: app/views/enterprise_registration/basic_information.rhtml:27
msgid "Management information"
msgstr ""
#: app/views/enterprise_registration/confirmation.rhtml:1
msgid "Enterprise Registration completed"
msgstr ""
#: app/views/enterprise_registration/confirmation.rhtml:4
msgid ""
"Your enterprise registration request was successfully registered. The "
"validator organization you choose (%s) should get in touch with to start the "
"validation process. As soon as the validators approve (or reject) your "
"request, you will be notified by e-mail."
msgstr ""
#: app/views/enterprise_registration/confirmation.rhtml:8
msgid "You can continue to browse this environment."
msgstr ""
#: app/views/catalog/show.rhtml:8
msgid "Category: %s "
msgstr ""
#: app/views/catalog/index.rhtml:1
msgid "Catalog"
msgstr ""
#: app/views/profile_members/index.rhtml:1
msgid "Listing Members"
msgstr ""
#: app/views/profile_members/index.rhtml:3
msgid "Affiliate yourself"
msgstr ""
#: app/views/manage_products/show.rhtml:4
#: app/views/manage_products/_form.rhtml:5
#: app/views/manage_products/index.rhtml:7
msgid "Price:"
msgstr ""
#: app/views/manage_products/show.rhtml:5
#: app/views/manage_products/_form.rhtml:6
msgid "Description:"
msgstr ""
#: app/views/manage_products/show.rhtml:6
msgid "Category:"
msgstr ""
#: app/views/manage_products/show.rhtml:8
#: app/views/manage_products/index.rhtml:8
msgid "edit"
msgstr ""
#: app/views/manage_products/show.rhtml:11
msgid "back"
msgstr ""
#: app/views/manage_products/_form.rhtml:4
msgid "Name:"
msgstr ""
#: app/views/manage_products/_form.rhtml:7
msgid "Image:"
msgstr ""
#: app/views/manage_products/_form.rhtml:8
msgid "category:"
msgstr ""
#: app/views/manage_products/_form.rhtml:9
msgid "Create product"
msgstr ""
#: app/views/manage_products/edit.rhtml:1
msgid "Editing"
msgstr ""
#: app/views/manage_products/index.rhtml:3
#: app/views/manage_products/new.rhtml:1
msgid "New product"
msgstr ""
#: app/views/region_validators/_region.rhtml:5
msgid "1 validator"
msgid_plural "%{num} validators."
msgstr[0] ""
msgstr[1] ""
#: app/views/region_validators/region.rhtml:1
msgid "Validators for region %s"
msgstr ""
#: app/views/region_validators/region.rhtml:3
msgid "Current validators"
msgstr ""
#: app/views/region_validators/region.rhtml:9
msgid "Remove validation rights"
msgstr ""
#: app/views/region_validators/region.rhtml:14
msgid "Add new validators"
msgstr ""
#: app/views/region_validators/region.rhtml:17
msgid ""
"First search organizations by their name, then use the buttons in the search "
"result to add them as validators for this region. "
msgstr ""
#: app/views/region_validators/_search.rhtml:8
msgid "Adicionar"
msgstr ""
#: app/views/region_validators/index.rhtml:1
msgid "Validators by Region"
msgstr ""
#: app/views/category/view.rhtml:8
msgid "No children categories"
msgstr ""
#: app/views/category/view.rhtml:10
msgid "Child categories:"
msgstr ""
#: app/views/category/_product_category.rhtml:1
msgid "I consume this"
msgstr ""
#: app/views/category/_product_category.rhtml:3
msgid "One product in this category."
msgid_plural "%{num} products in this category."
msgstr[0] ""
msgstr[1] ""
#: app/views/category/_product_category.rhtml:4
msgid "One enterprise sells products in this category."
msgid_plural "%{num} enterprises sells products in this category."
msgstr[0] ""
msgstr[1] ""
#: app/views/category/_product_category.rhtml:5
msgid "One user consumes this product."
msgid_plural "%{num} users consumes this product"
msgstr[0] ""
msgstr[1] ""
#: app/views/category/_product_category.rhtml:8
msgid "Products under this category:"
msgstr ""
#: app/views/category/_product_category.rhtml:16
msgid "Enterprise:"
msgstr ""
#: app/views/category/_product_category.rhtml:21
msgid "Users that consumes products in this category:"
msgstr ""
#: app/views/features/_features_table.rhtml:12
msgid "Organization Approval Method"
msgstr ""
#: app/views/features/index.rhtml:1
msgid "Enable/Disable features"
msgstr ""
#: app/views/features/index.rhtml:5
msgid ""
"Here you can enable or disable several features of your environment. Each "
"feature represents some funcionality that your environment can use if you "
"enable it.\n"
"\n"
"Check all the features you want to enable for your environment, uncheck all "
"the ones you don\t want, and use the 'Save changes' button to confirm your "
"changes."
msgstr ""