Commit e38b8396196c41a317c3278d7d5139390d373559
Committed by
Antonio Terceiro
1 parent
3bb862fb
Exists in
master
and in
29 other branches
ActionItem1147: translations problems on upload profile image
* hardcode size limit in the validate message
Showing
13 changed files
with
450 additions
and
525 deletions
Show diff stats
app/models/image.rb
@@ -7,13 +7,13 @@ class Image < ActiveRecord::Base | @@ -7,13 +7,13 @@ class Image < ActiveRecord::Base | ||
7 | 7 | ||
8 | has_attachment :content_type => :image, | 8 | has_attachment :content_type => :image, |
9 | :storage => :file_system, | 9 | :storage => :file_system, |
10 | - :max_size => 500.kilobytes, | ||
11 | :resize_to => '320x200>', | 10 | :resize_to => '320x200>', |
12 | :thumbnails => { :big => '150x150', | 11 | :thumbnails => { :big => '150x150', |
13 | :thumb => '100x100', | 12 | :thumb => '100x100', |
14 | :portrait => '64x64', | 13 | :portrait => '64x64', |
15 | :minor => '50x50', | 14 | :minor => '50x50', |
16 | - :icon => '20x20!' } | 15 | + :icon => '20x20!' }, |
16 | + :max_size => 500.kilobytes # remember to update validate message below | ||
17 | 17 | ||
18 | - validates_attachment :size => N_("%{fn} of uploaded file was larger than the maximum size of %s") % Image.max_size.to_humanreadable | 18 | + validates_attachment :size => N_("%{fn} of uploaded file was larger than the maximum size of 500.0 KB") |
19 | end | 19 | end |
app/models/uploaded_file.rb
@@ -4,6 +4,10 @@ | @@ -4,6 +4,10 @@ | ||
4 | # of the file itself is kept. (FIXME?) | 4 | # of the file itself is kept. (FIXME?) |
5 | class UploadedFile < Article | 5 | class UploadedFile < Article |
6 | 6 | ||
7 | + def self.max_size | ||
8 | + UploadedFile.attachment_options[:max_size] | ||
9 | + end | ||
10 | + | ||
7 | # FIXME need to define min/max file size | 11 | # FIXME need to define min/max file size |
8 | # | 12 | # |
9 | # default max_size is 1.megabyte to redefine it set options: | 13 | # default max_size is 1.megabyte to redefine it set options: |
@@ -12,13 +16,9 @@ class UploadedFile < Article | @@ -12,13 +16,9 @@ class UploadedFile < Article | ||
12 | has_attachment :storage => :file_system, | 16 | has_attachment :storage => :file_system, |
13 | :thumbnails => { :icon => [24,24], :thumb => '130x130>', :display => '640X480>' }, | 17 | :thumbnails => { :icon => [24,24], :thumb => '130x130>', :display => '640X480>' }, |
14 | :thumbnail_class => Thumbnail, | 18 | :thumbnail_class => Thumbnail, |
15 | - :max_size => 5.megabytes | ||
16 | - | ||
17 | - def self.max_size | ||
18 | - UploadedFile.attachment_options[:max_size] | ||
19 | - end | 19 | + :max_size => 5.megabytes # remember to update validate message below |
20 | 20 | ||
21 | - validates_attachment :size => N_("%{fn} of uploaded file was larger than the maximum size of %s") % UploadedFile.max_size.to_humanreadable | 21 | + validates_attachment :size => N_("%{fn} of uploaded file was larger than the maximum size of 5.0 MB") |
22 | 22 | ||
23 | def icon_name | 23 | def icon_name |
24 | self.image? ? public_filename(:icon) : self.content_type.gsub('/', '-') | 24 | self.image? ? public_filename(:icon) : self.content_type.gsub('/', '-') |
po/bg/noosfero.po
@@ -6,8 +6,8 @@ | @@ -6,8 +6,8 @@ | ||
6 | #, fuzzy | 6 | #, fuzzy |
7 | msgid "" | 7 | msgid "" |
8 | msgstr "" | 8 | msgstr "" |
9 | -"Project-Id-Version: noosfero 0.18.2\n" | ||
10 | -"POT-Creation-Date: 2009-06-20 02:04-0300\n" | 9 | +"Project-Id-Version: noosfero 0.18.4\n" |
10 | +"POT-Creation-Date: 2009-07-20 11:40-0300\n" | ||
11 | "PO-Revision-Date: 2007-08-30 18:47-0300\n" | 11 | "PO-Revision-Date: 2007-08-30 18:47-0300\n" |
12 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | 12 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
13 | "Language-Team: LANGUAGE <LL@li.org>\n" | 13 | "Language-Team: LANGUAGE <LL@li.org>\n" |
@@ -1211,8 +1211,8 @@ msgstr "" | @@ -1211,8 +1211,8 @@ msgstr "" | ||
1211 | msgid "Code" | 1211 | msgid "Code" |
1212 | msgstr "" | 1212 | msgstr "" |
1213 | 1213 | ||
1214 | -#: app/models/task.rb:- app/models/profile.rb:- app/models/category.rb:- | ||
1215 | -#: app/models/block.rb:- app/views/cms/view.rhtml:29 | 1214 | +#: app/models/task.rb:- app/models/profile.rb:- app/models/block.rb:- |
1215 | +#: app/views/cms/view.rhtml:29 | ||
1216 | msgid "Type" | 1216 | msgid "Type" |
1217 | msgstr "" | 1217 | msgstr "" |
1218 | 1218 | ||
@@ -1259,7 +1259,7 @@ msgstr "" | @@ -1259,7 +1259,7 @@ msgstr "" | ||
1259 | msgid "Save" | 1259 | msgid "Save" |
1260 | msgstr "" | 1260 | msgstr "" |
1261 | 1261 | ||
1262 | -#: app/models/link_list_block.rb:7 app/views/contact/new.rhtml:21 | 1262 | +#: app/models/link_list_block.rb:7 app/views/contact/new.rhtml:20 |
1263 | #: app/views/tasks/new.rhtml:15 | 1263 | #: app/views/tasks/new.rhtml:15 |
1264 | msgid "Send" | 1264 | msgid "Send" |
1265 | msgstr "" | 1265 | msgstr "" |
@@ -1525,12 +1525,12 @@ msgstr "" | @@ -1525,12 +1525,12 @@ msgstr "" | ||
1525 | msgid "profile" | 1525 | msgid "profile" |
1526 | msgstr "" | 1526 | msgstr "" |
1527 | 1527 | ||
1528 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/comment.rb:- | 1528 | +#: app/models/profile.rb:- app/models/comment.rb:- |
1529 | #: app/models/create_enterprise.rb:4 app/models/product.rb:- | 1529 | #: app/models/create_enterprise.rb:4 app/models/product.rb:- |
1530 | #: app/models/domain.rb:- app/models/contact.rb:- app/models/contact.rb:13 | 1530 | #: app/models/domain.rb:- app/models/contact.rb:- app/models/contact.rb:13 |
1531 | #: app/models/environment.rb:- | 1531 | #: app/models/environment.rb:- |
1532 | #: app/views/box_organizer/_link_list_block.rhtml:4 | 1532 | #: app/views/box_organizer/_link_list_block.rhtml:4 |
1533 | -#: app/views/content_viewer/_comment_form.rhtml:26 | 1533 | +#: app/views/content_viewer/_comment_form.rhtml:27 |
1534 | #: app/views/enterprise_editor/_form.rhtml:1 | 1534 | #: app/views/enterprise_editor/_form.rhtml:1 |
1535 | #: app/views/enterprise_validation/_details.rhtml:3 | 1535 | #: app/views/enterprise_validation/_details.rhtml:3 |
1536 | #: app/views/cms/view.rhtml:28 | 1536 | #: app/views/cms/view.rhtml:28 |
@@ -1542,7 +1542,7 @@ msgstr "" | @@ -1542,7 +1542,7 @@ msgstr "" | ||
1542 | msgid "Identifier" | 1542 | msgid "Identifier" |
1543 | msgstr "" | 1543 | msgstr "" |
1544 | 1544 | ||
1545 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/user.rb:- | 1545 | +#: app/models/profile.rb:- app/models/user.rb:- |
1546 | msgid "Environment" | 1546 | msgid "Environment" |
1547 | msgstr "" | 1547 | msgstr "" |
1548 | 1548 | ||
@@ -1558,11 +1558,11 @@ msgstr "" | @@ -1558,11 +1558,11 @@ msgstr "" | ||
1558 | msgid "User" | 1558 | msgid "User" |
1559 | msgstr "" | 1559 | msgstr "" |
1560 | 1560 | ||
1561 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/product.rb:- | 1561 | +#: app/models/profile.rb:- app/models/product.rb:- |
1562 | msgid "Lat" | 1562 | msgid "Lat" |
1563 | msgstr "" | 1563 | msgstr "" |
1564 | 1564 | ||
1565 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/product.rb:- | 1565 | +#: app/models/profile.rb:- app/models/product.rb:- |
1566 | msgid "Lng" | 1566 | msgid "Lng" |
1567 | msgstr "" | 1567 | msgstr "" |
1568 | 1568 | ||
@@ -1672,34 +1672,6 @@ msgstr "" | @@ -1672,34 +1672,6 @@ msgstr "" | ||
1672 | msgid "%s can't has moderators" | 1672 | msgid "%s can't has moderators" |
1673 | msgstr "" | 1673 | msgstr "" |
1674 | 1674 | ||
1675 | -#: app/models/category.rb:- | ||
1676 | -msgid "category" | ||
1677 | -msgstr "" | ||
1678 | - | ||
1679 | -#: app/models/category.rb:- | ||
1680 | -msgid "Slug" | ||
1681 | -msgstr "" | ||
1682 | - | ||
1683 | -#: app/models/category.rb:- | ||
1684 | -msgid "Path" | ||
1685 | -msgstr "" | ||
1686 | - | ||
1687 | -#: app/models/category.rb:- | ||
1688 | -msgid "Display color" | ||
1689 | -msgstr "" | ||
1690 | - | ||
1691 | -#: app/models/category.rb:- app/models/image.rb:- app/models/thumbnail.rb:- | ||
1692 | -msgid "Parent" | ||
1693 | -msgstr "" | ||
1694 | - | ||
1695 | -#: app/models/category.rb:- | ||
1696 | -msgid "Display in menu" | ||
1697 | -msgstr "" | ||
1698 | - | ||
1699 | -#: app/models/category.rb:- | ||
1700 | -msgid "Children count" | ||
1701 | -msgstr "" | ||
1702 | - | ||
1703 | #: app/models/category.rb:3 | 1675 | #: app/models/category.rb:3 |
1704 | msgid "%{fn} cannot be like that." | 1676 | msgid "%{fn} cannot be like that." |
1705 | msgstr "" | 1677 | msgstr "" |
@@ -1830,7 +1802,7 @@ msgstr "" | @@ -1830,7 +1802,7 @@ msgstr "" | ||
1830 | msgid "Remember token expires at" | 1802 | msgid "Remember token expires at" |
1831 | msgstr "" | 1803 | msgstr "" |
1832 | 1804 | ||
1833 | -#: app/models/user.rb:- app/views/account/_signup_form.rhtml:55 | 1805 | +#: app/models/user.rb:- app/views/account/_signup_form.rhtml:54 |
1834 | msgid "Terms of use" | 1806 | msgid "Terms of use" |
1835 | msgstr "" | 1807 | msgstr "" |
1836 | 1808 | ||
@@ -1982,6 +1954,10 @@ msgid "image" | @@ -1982,6 +1954,10 @@ msgid "image" | ||
1982 | msgstr "" | 1954 | msgstr "" |
1983 | 1955 | ||
1984 | #: app/models/image.rb:- app/models/thumbnail.rb:- | 1956 | #: app/models/image.rb:- app/models/thumbnail.rb:- |
1957 | +msgid "Parent" | ||
1958 | +msgstr "" | ||
1959 | + | ||
1960 | +#: app/models/image.rb:- app/models/thumbnail.rb:- | ||
1985 | msgid "Content type" | 1961 | msgid "Content type" |
1986 | msgstr "" | 1962 | msgstr "" |
1987 | 1963 | ||
@@ -2005,8 +1981,8 @@ msgstr "" | @@ -2005,8 +1981,8 @@ msgstr "" | ||
2005 | msgid "Height" | 1981 | msgid "Height" |
2006 | msgstr "" | 1982 | msgstr "" |
2007 | 1983 | ||
2008 | -#: app/models/image.rb:18 app/models/uploaded_file.rb:21 | ||
2009 | -msgid "%{fn} of uploaded file was larger than the maximum size of %s" | 1984 | +#: app/models/image.rb:18 |
1985 | +msgid "%{fn} of uploaded file was larger than the maximum size of 500.0 KB" | ||
2010 | msgstr "" | 1986 | msgstr "" |
2011 | 1987 | ||
2012 | #: app/models/image_gallery.rb:8 | 1988 | #: app/models/image_gallery.rb:8 |
@@ -2313,6 +2289,10 @@ msgstr "" | @@ -2313,6 +2289,10 @@ msgstr "" | ||
2313 | msgid "A reference to another article published in another profile" | 2289 | msgid "A reference to another article published in another profile" |
2314 | msgstr "" | 2290 | msgstr "" |
2315 | 2291 | ||
2292 | +#: app/models/published_article.rb:31 | ||
2293 | +msgid "The original text was removed." | ||
2294 | +msgstr "" | ||
2295 | + | ||
2316 | #: app/models/contact.rb:- app/views/friends/index.rhtml:32 | 2296 | #: app/models/contact.rb:- app/views/friends/index.rhtml:32 |
2317 | #: app/views/friends/index.rhtml:35 | 2297 | #: app/views/friends/index.rhtml:35 |
2318 | msgid "contact" | 2298 | msgid "contact" |
@@ -2331,7 +2311,7 @@ msgstr "" | @@ -2331,7 +2311,7 @@ msgstr "" | ||
2331 | msgid "Receive a copy" | 2311 | msgid "Receive a copy" |
2332 | msgstr "" | 2312 | msgstr "" |
2333 | 2313 | ||
2334 | -#: app/models/contact.rb:13 app/views/contact/new.rhtml:13 | 2314 | +#: app/models/contact.rb:13 app/views/contact/new.rhtml:14 |
2335 | msgid "City and state" | 2315 | msgid "City and state" |
2336 | msgstr "" | 2316 | msgstr "" |
2337 | 2317 | ||
@@ -2547,6 +2527,10 @@ msgstr "" | @@ -2547,6 +2527,10 @@ msgstr "" | ||
2547 | msgid "This block presents the members of a collective." | 2527 | msgid "This block presents the members of a collective." |
2548 | msgstr "" | 2528 | msgstr "" |
2549 | 2529 | ||
2530 | +#: app/models/uploaded_file.rb:21 | ||
2531 | +msgid "%{fn} of uploaded file was larger than the maximum size of 5.0 MB" | ||
2532 | +msgstr "" | ||
2533 | + | ||
2550 | #: app/models/uploaded_file.rb:32 | 2534 | #: app/models/uploaded_file.rb:32 |
2551 | msgid "Uploaded file" | 2535 | msgid "Uploaded file" |
2552 | msgstr "" | 2536 | msgstr "" |
@@ -2758,16 +2742,16 @@ msgstr "" | @@ -2758,16 +2742,16 @@ msgstr "" | ||
2758 | msgid "Most commented articles" | 2742 | msgid "Most commented articles" |
2759 | msgstr "" | 2743 | msgstr "" |
2760 | 2744 | ||
2761 | -#: app/controllers/public/contact_controller.rb:11 | ||
2762 | -#: app/controllers/public/contact_controller.rb:12 | 2745 | +#: app/controllers/public/contact_controller.rb:13 |
2746 | +#: app/controllers/public/contact_controller.rb:14 | ||
2763 | msgid "Missing" | 2747 | msgid "Missing" |
2764 | msgstr "" | 2748 | msgstr "" |
2765 | 2749 | ||
2766 | -#: app/controllers/public/contact_controller.rb:14 | 2750 | +#: app/controllers/public/contact_controller.rb:16 |
2767 | msgid "Contact successfully sent" | 2751 | msgid "Contact successfully sent" |
2768 | msgstr "" | 2752 | msgstr "" |
2769 | 2753 | ||
2770 | -#: app/controllers/public/contact_controller.rb:17 | 2754 | +#: app/controllers/public/contact_controller.rb:19 |
2771 | msgid "Contact not sent" | 2755 | msgid "Contact not sent" |
2772 | msgstr "" | 2756 | msgstr "" |
2773 | 2757 | ||
@@ -3500,7 +3484,7 @@ msgstr "" | @@ -3500,7 +3484,7 @@ msgstr "" | ||
3500 | msgid "Post a comment" | 3484 | msgid "Post a comment" |
3501 | msgstr "" | 3485 | msgstr "" |
3502 | 3486 | ||
3503 | -#: app/views/content_viewer/_comment_form.rhtml:27 | 3487 | +#: app/views/content_viewer/_comment_form.rhtml:28 |
3504 | msgid "e-mail" | 3488 | msgid "e-mail" |
3505 | msgstr "" | 3489 | msgstr "" |
3506 | 3490 | ||
@@ -4077,7 +4061,7 @@ msgstr "" | @@ -4077,7 +4061,7 @@ msgstr "" | ||
4077 | msgid "Contact %s" | 4061 | msgid "Contact %s" |
4078 | msgstr "" | 4062 | msgstr "" |
4079 | 4063 | ||
4080 | -#: app/views/contact/new.rhtml:17 | 4064 | +#: app/views/contact/new.rhtml:18 |
4081 | msgid "I want to receive a copy of the message in my e-mail." | 4065 | msgid "I want to receive a copy of the message in my e-mail." |
4082 | msgstr "" | 4066 | msgstr "" |
4083 | 4067 | ||
@@ -5339,37 +5323,37 @@ msgid "" | @@ -5339,37 +5323,37 @@ msgid "" | ||
5339 | "password!</b>\" link. ;-)" | 5323 | "password!</b>\" link. ;-)" |
5340 | msgstr "" | 5324 | msgstr "" |
5341 | 5325 | ||
5342 | -#: app/views/account/_signup_form.rhtml:24 | 5326 | +#: app/views/account/_signup_form.rhtml:25 |
5343 | msgid "This e-mail address will be used to contact you." | 5327 | msgid "This e-mail address will be used to contact you." |
5344 | msgstr "" | 5328 | msgstr "" |
5345 | 5329 | ||
5346 | -#: app/views/account/_signup_form.rhtml:29 | 5330 | +#: app/views/account/_signup_form.rhtml:30 |
5347 | msgid "Insert your login" | 5331 | msgid "Insert your login" |
5348 | msgstr "" | 5332 | msgstr "" |
5349 | 5333 | ||
5350 | -#: app/views/account/_signup_form.rhtml:39 | 5334 | +#: app/views/account/_signup_form.rhtml:40 |
5351 | msgid "Choose a password that you can remember easily." | 5335 | msgid "Choose a password that you can remember easily." |
5352 | msgstr "" | 5336 | msgstr "" |
5353 | 5337 | ||
5354 | -#: app/views/account/_signup_form.rhtml:44 | 5338 | +#: app/views/account/_signup_form.rhtml:45 |
5355 | msgid "To confirm, repeat your password." | 5339 | msgid "To confirm, repeat your password." |
5356 | msgstr "" | 5340 | msgstr "" |
5357 | 5341 | ||
5358 | -#: app/views/account/_signup_form.rhtml:54 | 5342 | +#: app/views/account/_signup_form.rhtml:53 |
5359 | msgid "" | 5343 | msgid "" |
5360 | "By clicking on 'I accept the terms of use' below you are agreeing to the %s" | 5344 | "By clicking on 'I accept the terms of use' below you are agreeing to the %s" |
5361 | msgstr "" | 5345 | msgstr "" |
5362 | 5346 | ||
5363 | -#: app/views/account/_signup_form.rhtml:61 | 5347 | +#: app/views/account/_signup_form.rhtml:60 |
5364 | msgid "Hide" | 5348 | msgid "Hide" |
5365 | msgstr "" | 5349 | msgstr "" |
5366 | 5350 | ||
5367 | -#: app/views/account/_signup_form.rhtml:65 | 5351 | +#: app/views/account/_signup_form.rhtml:64 |
5368 | msgid "I accept the terms of use" | 5352 | msgid "I accept the terms of use" |
5369 | msgstr "" | 5353 | msgstr "" |
5370 | 5354 | ||
5371 | -#: app/views/account/_signup_form.rhtml:77 | ||
5372 | -#: app/views/account/_signup_form.rhtml:79 | 5355 | +#: app/views/account/_signup_form.rhtml:76 |
5356 | +#: app/views/account/_signup_form.rhtml:78 | ||
5373 | msgid "Sign up" | 5357 | msgid "Sign up" |
5374 | msgstr "" | 5358 | msgstr "" |
5375 | 5359 |
po/de/noosfero.po
@@ -6,8 +6,8 @@ | @@ -6,8 +6,8 @@ | ||
6 | #, fuzzy | 6 | #, fuzzy |
7 | msgid "" | 7 | msgid "" |
8 | msgstr "" | 8 | msgstr "" |
9 | -"Project-Id-Version: noosfero 0.18.2\n" | ||
10 | -"POT-Creation-Date: 2009-06-20 02:04-0300\n" | 9 | +"Project-Id-Version: noosfero 0.18.4\n" |
10 | +"POT-Creation-Date: 2009-07-20 11:40-0300\n" | ||
11 | "PO-Revision-Date: 2007-08-30 18:47-0300\n" | 11 | "PO-Revision-Date: 2007-08-30 18:47-0300\n" |
12 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | 12 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
13 | "Language-Team: LANGUAGE <LL@li.org>\n" | 13 | "Language-Team: LANGUAGE <LL@li.org>\n" |
@@ -1211,8 +1211,8 @@ msgstr "" | @@ -1211,8 +1211,8 @@ msgstr "" | ||
1211 | msgid "Code" | 1211 | msgid "Code" |
1212 | msgstr "" | 1212 | msgstr "" |
1213 | 1213 | ||
1214 | -#: app/models/task.rb:- app/models/profile.rb:- app/models/category.rb:- | ||
1215 | -#: app/models/block.rb:- app/views/cms/view.rhtml:29 | 1214 | +#: app/models/task.rb:- app/models/profile.rb:- app/models/block.rb:- |
1215 | +#: app/views/cms/view.rhtml:29 | ||
1216 | msgid "Type" | 1216 | msgid "Type" |
1217 | msgstr "" | 1217 | msgstr "" |
1218 | 1218 | ||
@@ -1259,7 +1259,7 @@ msgstr "" | @@ -1259,7 +1259,7 @@ msgstr "" | ||
1259 | msgid "Save" | 1259 | msgid "Save" |
1260 | msgstr "" | 1260 | msgstr "" |
1261 | 1261 | ||
1262 | -#: app/models/link_list_block.rb:7 app/views/contact/new.rhtml:21 | 1262 | +#: app/models/link_list_block.rb:7 app/views/contact/new.rhtml:20 |
1263 | #: app/views/tasks/new.rhtml:15 | 1263 | #: app/views/tasks/new.rhtml:15 |
1264 | msgid "Send" | 1264 | msgid "Send" |
1265 | msgstr "" | 1265 | msgstr "" |
@@ -1525,12 +1525,12 @@ msgstr "" | @@ -1525,12 +1525,12 @@ msgstr "" | ||
1525 | msgid "profile" | 1525 | msgid "profile" |
1526 | msgstr "" | 1526 | msgstr "" |
1527 | 1527 | ||
1528 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/comment.rb:- | 1528 | +#: app/models/profile.rb:- app/models/comment.rb:- |
1529 | #: app/models/create_enterprise.rb:4 app/models/product.rb:- | 1529 | #: app/models/create_enterprise.rb:4 app/models/product.rb:- |
1530 | #: app/models/domain.rb:- app/models/contact.rb:- app/models/contact.rb:13 | 1530 | #: app/models/domain.rb:- app/models/contact.rb:- app/models/contact.rb:13 |
1531 | #: app/models/environment.rb:- | 1531 | #: app/models/environment.rb:- |
1532 | #: app/views/box_organizer/_link_list_block.rhtml:4 | 1532 | #: app/views/box_organizer/_link_list_block.rhtml:4 |
1533 | -#: app/views/content_viewer/_comment_form.rhtml:26 | 1533 | +#: app/views/content_viewer/_comment_form.rhtml:27 |
1534 | #: app/views/enterprise_editor/_form.rhtml:1 | 1534 | #: app/views/enterprise_editor/_form.rhtml:1 |
1535 | #: app/views/enterprise_validation/_details.rhtml:3 | 1535 | #: app/views/enterprise_validation/_details.rhtml:3 |
1536 | #: app/views/cms/view.rhtml:28 | 1536 | #: app/views/cms/view.rhtml:28 |
@@ -1542,7 +1542,7 @@ msgstr "" | @@ -1542,7 +1542,7 @@ msgstr "" | ||
1542 | msgid "Identifier" | 1542 | msgid "Identifier" |
1543 | msgstr "" | 1543 | msgstr "" |
1544 | 1544 | ||
1545 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/user.rb:- | 1545 | +#: app/models/profile.rb:- app/models/user.rb:- |
1546 | msgid "Environment" | 1546 | msgid "Environment" |
1547 | msgstr "" | 1547 | msgstr "" |
1548 | 1548 | ||
@@ -1558,11 +1558,11 @@ msgstr "" | @@ -1558,11 +1558,11 @@ msgstr "" | ||
1558 | msgid "User" | 1558 | msgid "User" |
1559 | msgstr "" | 1559 | msgstr "" |
1560 | 1560 | ||
1561 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/product.rb:- | 1561 | +#: app/models/profile.rb:- app/models/product.rb:- |
1562 | msgid "Lat" | 1562 | msgid "Lat" |
1563 | msgstr "" | 1563 | msgstr "" |
1564 | 1564 | ||
1565 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/product.rb:- | 1565 | +#: app/models/profile.rb:- app/models/product.rb:- |
1566 | msgid "Lng" | 1566 | msgid "Lng" |
1567 | msgstr "" | 1567 | msgstr "" |
1568 | 1568 | ||
@@ -1672,34 +1672,6 @@ msgstr "" | @@ -1672,34 +1672,6 @@ msgstr "" | ||
1672 | msgid "%s can't has moderators" | 1672 | msgid "%s can't has moderators" |
1673 | msgstr "" | 1673 | msgstr "" |
1674 | 1674 | ||
1675 | -#: app/models/category.rb:- | ||
1676 | -msgid "category" | ||
1677 | -msgstr "" | ||
1678 | - | ||
1679 | -#: app/models/category.rb:- | ||
1680 | -msgid "Slug" | ||
1681 | -msgstr "" | ||
1682 | - | ||
1683 | -#: app/models/category.rb:- | ||
1684 | -msgid "Path" | ||
1685 | -msgstr "" | ||
1686 | - | ||
1687 | -#: app/models/category.rb:- | ||
1688 | -msgid "Display color" | ||
1689 | -msgstr "" | ||
1690 | - | ||
1691 | -#: app/models/category.rb:- app/models/image.rb:- app/models/thumbnail.rb:- | ||
1692 | -msgid "Parent" | ||
1693 | -msgstr "" | ||
1694 | - | ||
1695 | -#: app/models/category.rb:- | ||
1696 | -msgid "Display in menu" | ||
1697 | -msgstr "" | ||
1698 | - | ||
1699 | -#: app/models/category.rb:- | ||
1700 | -msgid "Children count" | ||
1701 | -msgstr "" | ||
1702 | - | ||
1703 | #: app/models/category.rb:3 | 1675 | #: app/models/category.rb:3 |
1704 | msgid "%{fn} cannot be like that." | 1676 | msgid "%{fn} cannot be like that." |
1705 | msgstr "" | 1677 | msgstr "" |
@@ -1830,7 +1802,7 @@ msgstr "" | @@ -1830,7 +1802,7 @@ msgstr "" | ||
1830 | msgid "Remember token expires at" | 1802 | msgid "Remember token expires at" |
1831 | msgstr "" | 1803 | msgstr "" |
1832 | 1804 | ||
1833 | -#: app/models/user.rb:- app/views/account/_signup_form.rhtml:55 | 1805 | +#: app/models/user.rb:- app/views/account/_signup_form.rhtml:54 |
1834 | msgid "Terms of use" | 1806 | msgid "Terms of use" |
1835 | msgstr "" | 1807 | msgstr "" |
1836 | 1808 | ||
@@ -1982,6 +1954,10 @@ msgid "image" | @@ -1982,6 +1954,10 @@ msgid "image" | ||
1982 | msgstr "" | 1954 | msgstr "" |
1983 | 1955 | ||
1984 | #: app/models/image.rb:- app/models/thumbnail.rb:- | 1956 | #: app/models/image.rb:- app/models/thumbnail.rb:- |
1957 | +msgid "Parent" | ||
1958 | +msgstr "" | ||
1959 | + | ||
1960 | +#: app/models/image.rb:- app/models/thumbnail.rb:- | ||
1985 | msgid "Content type" | 1961 | msgid "Content type" |
1986 | msgstr "" | 1962 | msgstr "" |
1987 | 1963 | ||
@@ -2005,8 +1981,8 @@ msgstr "" | @@ -2005,8 +1981,8 @@ msgstr "" | ||
2005 | msgid "Height" | 1981 | msgid "Height" |
2006 | msgstr "" | 1982 | msgstr "" |
2007 | 1983 | ||
2008 | -#: app/models/image.rb:18 app/models/uploaded_file.rb:21 | ||
2009 | -msgid "%{fn} of uploaded file was larger than the maximum size of %s" | 1984 | +#: app/models/image.rb:18 |
1985 | +msgid "%{fn} of uploaded file was larger than the maximum size of 500.0 KB" | ||
2010 | msgstr "" | 1986 | msgstr "" |
2011 | 1987 | ||
2012 | #: app/models/image_gallery.rb:8 | 1988 | #: app/models/image_gallery.rb:8 |
@@ -2313,6 +2289,10 @@ msgstr "" | @@ -2313,6 +2289,10 @@ msgstr "" | ||
2313 | msgid "A reference to another article published in another profile" | 2289 | msgid "A reference to another article published in another profile" |
2314 | msgstr "" | 2290 | msgstr "" |
2315 | 2291 | ||
2292 | +#: app/models/published_article.rb:31 | ||
2293 | +msgid "The original text was removed." | ||
2294 | +msgstr "" | ||
2295 | + | ||
2316 | #: app/models/contact.rb:- app/views/friends/index.rhtml:32 | 2296 | #: app/models/contact.rb:- app/views/friends/index.rhtml:32 |
2317 | #: app/views/friends/index.rhtml:35 | 2297 | #: app/views/friends/index.rhtml:35 |
2318 | msgid "contact" | 2298 | msgid "contact" |
@@ -2331,7 +2311,7 @@ msgstr "" | @@ -2331,7 +2311,7 @@ msgstr "" | ||
2331 | msgid "Receive a copy" | 2311 | msgid "Receive a copy" |
2332 | msgstr "" | 2312 | msgstr "" |
2333 | 2313 | ||
2334 | -#: app/models/contact.rb:13 app/views/contact/new.rhtml:13 | 2314 | +#: app/models/contact.rb:13 app/views/contact/new.rhtml:14 |
2335 | msgid "City and state" | 2315 | msgid "City and state" |
2336 | msgstr "" | 2316 | msgstr "" |
2337 | 2317 | ||
@@ -2547,6 +2527,10 @@ msgstr "" | @@ -2547,6 +2527,10 @@ msgstr "" | ||
2547 | msgid "This block presents the members of a collective." | 2527 | msgid "This block presents the members of a collective." |
2548 | msgstr "" | 2528 | msgstr "" |
2549 | 2529 | ||
2530 | +#: app/models/uploaded_file.rb:21 | ||
2531 | +msgid "%{fn} of uploaded file was larger than the maximum size of 5.0 MB" | ||
2532 | +msgstr "" | ||
2533 | + | ||
2550 | #: app/models/uploaded_file.rb:32 | 2534 | #: app/models/uploaded_file.rb:32 |
2551 | msgid "Uploaded file" | 2535 | msgid "Uploaded file" |
2552 | msgstr "" | 2536 | msgstr "" |
@@ -2758,16 +2742,16 @@ msgstr "" | @@ -2758,16 +2742,16 @@ msgstr "" | ||
2758 | msgid "Most commented articles" | 2742 | msgid "Most commented articles" |
2759 | msgstr "" | 2743 | msgstr "" |
2760 | 2744 | ||
2761 | -#: app/controllers/public/contact_controller.rb:11 | ||
2762 | -#: app/controllers/public/contact_controller.rb:12 | 2745 | +#: app/controllers/public/contact_controller.rb:13 |
2746 | +#: app/controllers/public/contact_controller.rb:14 | ||
2763 | msgid "Missing" | 2747 | msgid "Missing" |
2764 | msgstr "" | 2748 | msgstr "" |
2765 | 2749 | ||
2766 | -#: app/controllers/public/contact_controller.rb:14 | 2750 | +#: app/controllers/public/contact_controller.rb:16 |
2767 | msgid "Contact successfully sent" | 2751 | msgid "Contact successfully sent" |
2768 | msgstr "" | 2752 | msgstr "" |
2769 | 2753 | ||
2770 | -#: app/controllers/public/contact_controller.rb:17 | 2754 | +#: app/controllers/public/contact_controller.rb:19 |
2771 | msgid "Contact not sent" | 2755 | msgid "Contact not sent" |
2772 | msgstr "" | 2756 | msgstr "" |
2773 | 2757 | ||
@@ -3500,7 +3484,7 @@ msgstr "" | @@ -3500,7 +3484,7 @@ msgstr "" | ||
3500 | msgid "Post a comment" | 3484 | msgid "Post a comment" |
3501 | msgstr "" | 3485 | msgstr "" |
3502 | 3486 | ||
3503 | -#: app/views/content_viewer/_comment_form.rhtml:27 | 3487 | +#: app/views/content_viewer/_comment_form.rhtml:28 |
3504 | msgid "e-mail" | 3488 | msgid "e-mail" |
3505 | msgstr "" | 3489 | msgstr "" |
3506 | 3490 | ||
@@ -4077,7 +4061,7 @@ msgstr "" | @@ -4077,7 +4061,7 @@ msgstr "" | ||
4077 | msgid "Contact %s" | 4061 | msgid "Contact %s" |
4078 | msgstr "" | 4062 | msgstr "" |
4079 | 4063 | ||
4080 | -#: app/views/contact/new.rhtml:17 | 4064 | +#: app/views/contact/new.rhtml:18 |
4081 | msgid "I want to receive a copy of the message in my e-mail." | 4065 | msgid "I want to receive a copy of the message in my e-mail." |
4082 | msgstr "" | 4066 | msgstr "" |
4083 | 4067 | ||
@@ -5339,37 +5323,37 @@ msgid "" | @@ -5339,37 +5323,37 @@ msgid "" | ||
5339 | "password!</b>\" link. ;-)" | 5323 | "password!</b>\" link. ;-)" |
5340 | msgstr "" | 5324 | msgstr "" |
5341 | 5325 | ||
5342 | -#: app/views/account/_signup_form.rhtml:24 | 5326 | +#: app/views/account/_signup_form.rhtml:25 |
5343 | msgid "This e-mail address will be used to contact you." | 5327 | msgid "This e-mail address will be used to contact you." |
5344 | msgstr "" | 5328 | msgstr "" |
5345 | 5329 | ||
5346 | -#: app/views/account/_signup_form.rhtml:29 | 5330 | +#: app/views/account/_signup_form.rhtml:30 |
5347 | msgid "Insert your login" | 5331 | msgid "Insert your login" |
5348 | msgstr "" | 5332 | msgstr "" |
5349 | 5333 | ||
5350 | -#: app/views/account/_signup_form.rhtml:39 | 5334 | +#: app/views/account/_signup_form.rhtml:40 |
5351 | msgid "Choose a password that you can remember easily." | 5335 | msgid "Choose a password that you can remember easily." |
5352 | msgstr "" | 5336 | msgstr "" |
5353 | 5337 | ||
5354 | -#: app/views/account/_signup_form.rhtml:44 | 5338 | +#: app/views/account/_signup_form.rhtml:45 |
5355 | msgid "To confirm, repeat your password." | 5339 | msgid "To confirm, repeat your password." |
5356 | msgstr "" | 5340 | msgstr "" |
5357 | 5341 | ||
5358 | -#: app/views/account/_signup_form.rhtml:54 | 5342 | +#: app/views/account/_signup_form.rhtml:53 |
5359 | msgid "" | 5343 | msgid "" |
5360 | "By clicking on 'I accept the terms of use' below you are agreeing to the %s" | 5344 | "By clicking on 'I accept the terms of use' below you are agreeing to the %s" |
5361 | msgstr "" | 5345 | msgstr "" |
5362 | 5346 | ||
5363 | -#: app/views/account/_signup_form.rhtml:61 | 5347 | +#: app/views/account/_signup_form.rhtml:60 |
5364 | msgid "Hide" | 5348 | msgid "Hide" |
5365 | msgstr "" | 5349 | msgstr "" |
5366 | 5350 | ||
5367 | -#: app/views/account/_signup_form.rhtml:65 | 5351 | +#: app/views/account/_signup_form.rhtml:64 |
5368 | msgid "I accept the terms of use" | 5352 | msgid "I accept the terms of use" |
5369 | msgstr "" | 5353 | msgstr "" |
5370 | 5354 | ||
5371 | -#: app/views/account/_signup_form.rhtml:77 | ||
5372 | -#: app/views/account/_signup_form.rhtml:79 | 5355 | +#: app/views/account/_signup_form.rhtml:76 |
5356 | +#: app/views/account/_signup_form.rhtml:78 | ||
5373 | msgid "Sign up" | 5357 | msgid "Sign up" |
5374 | msgstr "" | 5358 | msgstr "" |
5375 | 5359 |
po/es/noosfero.po
@@ -6,8 +6,8 @@ | @@ -6,8 +6,8 @@ | ||
6 | #, fuzzy | 6 | #, fuzzy |
7 | msgid "" | 7 | msgid "" |
8 | msgstr "" | 8 | msgstr "" |
9 | -"Project-Id-Version: noosfero 0.18.2\n" | ||
10 | -"POT-Creation-Date: 2009-06-20 02:04-0300\n" | 9 | +"Project-Id-Version: noosfero 0.18.4\n" |
10 | +"POT-Creation-Date: 2009-07-20 11:40-0300\n" | ||
11 | "PO-Revision-Date: 2007-08-30 18:47-0300\n" | 11 | "PO-Revision-Date: 2007-08-30 18:47-0300\n" |
12 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | 12 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
13 | "Language-Team: LANGUAGE <LL@li.org>\n" | 13 | "Language-Team: LANGUAGE <LL@li.org>\n" |
@@ -1211,8 +1211,8 @@ msgstr "" | @@ -1211,8 +1211,8 @@ msgstr "" | ||
1211 | msgid "Code" | 1211 | msgid "Code" |
1212 | msgstr "" | 1212 | msgstr "" |
1213 | 1213 | ||
1214 | -#: app/models/task.rb:- app/models/profile.rb:- app/models/category.rb:- | ||
1215 | -#: app/models/block.rb:- app/views/cms/view.rhtml:29 | 1214 | +#: app/models/task.rb:- app/models/profile.rb:- app/models/block.rb:- |
1215 | +#: app/views/cms/view.rhtml:29 | ||
1216 | msgid "Type" | 1216 | msgid "Type" |
1217 | msgstr "" | 1217 | msgstr "" |
1218 | 1218 | ||
@@ -1259,7 +1259,7 @@ msgstr "" | @@ -1259,7 +1259,7 @@ msgstr "" | ||
1259 | msgid "Save" | 1259 | msgid "Save" |
1260 | msgstr "" | 1260 | msgstr "" |
1261 | 1261 | ||
1262 | -#: app/models/link_list_block.rb:7 app/views/contact/new.rhtml:21 | 1262 | +#: app/models/link_list_block.rb:7 app/views/contact/new.rhtml:20 |
1263 | #: app/views/tasks/new.rhtml:15 | 1263 | #: app/views/tasks/new.rhtml:15 |
1264 | msgid "Send" | 1264 | msgid "Send" |
1265 | msgstr "" | 1265 | msgstr "" |
@@ -1525,12 +1525,12 @@ msgstr "" | @@ -1525,12 +1525,12 @@ msgstr "" | ||
1525 | msgid "profile" | 1525 | msgid "profile" |
1526 | msgstr "" | 1526 | msgstr "" |
1527 | 1527 | ||
1528 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/comment.rb:- | 1528 | +#: app/models/profile.rb:- app/models/comment.rb:- |
1529 | #: app/models/create_enterprise.rb:4 app/models/product.rb:- | 1529 | #: app/models/create_enterprise.rb:4 app/models/product.rb:- |
1530 | #: app/models/domain.rb:- app/models/contact.rb:- app/models/contact.rb:13 | 1530 | #: app/models/domain.rb:- app/models/contact.rb:- app/models/contact.rb:13 |
1531 | #: app/models/environment.rb:- | 1531 | #: app/models/environment.rb:- |
1532 | #: app/views/box_organizer/_link_list_block.rhtml:4 | 1532 | #: app/views/box_organizer/_link_list_block.rhtml:4 |
1533 | -#: app/views/content_viewer/_comment_form.rhtml:26 | 1533 | +#: app/views/content_viewer/_comment_form.rhtml:27 |
1534 | #: app/views/enterprise_editor/_form.rhtml:1 | 1534 | #: app/views/enterprise_editor/_form.rhtml:1 |
1535 | #: app/views/enterprise_validation/_details.rhtml:3 | 1535 | #: app/views/enterprise_validation/_details.rhtml:3 |
1536 | #: app/views/cms/view.rhtml:28 | 1536 | #: app/views/cms/view.rhtml:28 |
@@ -1542,7 +1542,7 @@ msgstr "" | @@ -1542,7 +1542,7 @@ msgstr "" | ||
1542 | msgid "Identifier" | 1542 | msgid "Identifier" |
1543 | msgstr "" | 1543 | msgstr "" |
1544 | 1544 | ||
1545 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/user.rb:- | 1545 | +#: app/models/profile.rb:- app/models/user.rb:- |
1546 | msgid "Environment" | 1546 | msgid "Environment" |
1547 | msgstr "" | 1547 | msgstr "" |
1548 | 1548 | ||
@@ -1558,11 +1558,11 @@ msgstr "" | @@ -1558,11 +1558,11 @@ msgstr "" | ||
1558 | msgid "User" | 1558 | msgid "User" |
1559 | msgstr "" | 1559 | msgstr "" |
1560 | 1560 | ||
1561 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/product.rb:- | 1561 | +#: app/models/profile.rb:- app/models/product.rb:- |
1562 | msgid "Lat" | 1562 | msgid "Lat" |
1563 | msgstr "" | 1563 | msgstr "" |
1564 | 1564 | ||
1565 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/product.rb:- | 1565 | +#: app/models/profile.rb:- app/models/product.rb:- |
1566 | msgid "Lng" | 1566 | msgid "Lng" |
1567 | msgstr "" | 1567 | msgstr "" |
1568 | 1568 | ||
@@ -1672,34 +1672,6 @@ msgstr "" | @@ -1672,34 +1672,6 @@ msgstr "" | ||
1672 | msgid "%s can't has moderators" | 1672 | msgid "%s can't has moderators" |
1673 | msgstr "" | 1673 | msgstr "" |
1674 | 1674 | ||
1675 | -#: app/models/category.rb:- | ||
1676 | -msgid "category" | ||
1677 | -msgstr "" | ||
1678 | - | ||
1679 | -#: app/models/category.rb:- | ||
1680 | -msgid "Slug" | ||
1681 | -msgstr "" | ||
1682 | - | ||
1683 | -#: app/models/category.rb:- | ||
1684 | -msgid "Path" | ||
1685 | -msgstr "" | ||
1686 | - | ||
1687 | -#: app/models/category.rb:- | ||
1688 | -msgid "Display color" | ||
1689 | -msgstr "" | ||
1690 | - | ||
1691 | -#: app/models/category.rb:- app/models/image.rb:- app/models/thumbnail.rb:- | ||
1692 | -msgid "Parent" | ||
1693 | -msgstr "" | ||
1694 | - | ||
1695 | -#: app/models/category.rb:- | ||
1696 | -msgid "Display in menu" | ||
1697 | -msgstr "" | ||
1698 | - | ||
1699 | -#: app/models/category.rb:- | ||
1700 | -msgid "Children count" | ||
1701 | -msgstr "" | ||
1702 | - | ||
1703 | #: app/models/category.rb:3 | 1675 | #: app/models/category.rb:3 |
1704 | msgid "%{fn} cannot be like that." | 1676 | msgid "%{fn} cannot be like that." |
1705 | msgstr "" | 1677 | msgstr "" |
@@ -1830,7 +1802,7 @@ msgstr "" | @@ -1830,7 +1802,7 @@ msgstr "" | ||
1830 | msgid "Remember token expires at" | 1802 | msgid "Remember token expires at" |
1831 | msgstr "" | 1803 | msgstr "" |
1832 | 1804 | ||
1833 | -#: app/models/user.rb:- app/views/account/_signup_form.rhtml:55 | 1805 | +#: app/models/user.rb:- app/views/account/_signup_form.rhtml:54 |
1834 | msgid "Terms of use" | 1806 | msgid "Terms of use" |
1835 | msgstr "" | 1807 | msgstr "" |
1836 | 1808 | ||
@@ -1982,6 +1954,10 @@ msgid "image" | @@ -1982,6 +1954,10 @@ msgid "image" | ||
1982 | msgstr "" | 1954 | msgstr "" |
1983 | 1955 | ||
1984 | #: app/models/image.rb:- app/models/thumbnail.rb:- | 1956 | #: app/models/image.rb:- app/models/thumbnail.rb:- |
1957 | +msgid "Parent" | ||
1958 | +msgstr "" | ||
1959 | + | ||
1960 | +#: app/models/image.rb:- app/models/thumbnail.rb:- | ||
1985 | msgid "Content type" | 1961 | msgid "Content type" |
1986 | msgstr "" | 1962 | msgstr "" |
1987 | 1963 | ||
@@ -2005,8 +1981,8 @@ msgstr "" | @@ -2005,8 +1981,8 @@ msgstr "" | ||
2005 | msgid "Height" | 1981 | msgid "Height" |
2006 | msgstr "" | 1982 | msgstr "" |
2007 | 1983 | ||
2008 | -#: app/models/image.rb:18 app/models/uploaded_file.rb:21 | ||
2009 | -msgid "%{fn} of uploaded file was larger than the maximum size of %s" | 1984 | +#: app/models/image.rb:18 |
1985 | +msgid "%{fn} of uploaded file was larger than the maximum size of 500.0 KB" | ||
2010 | msgstr "" | 1986 | msgstr "" |
2011 | 1987 | ||
2012 | #: app/models/image_gallery.rb:8 | 1988 | #: app/models/image_gallery.rb:8 |
@@ -2313,6 +2289,10 @@ msgstr "" | @@ -2313,6 +2289,10 @@ msgstr "" | ||
2313 | msgid "A reference to another article published in another profile" | 2289 | msgid "A reference to another article published in another profile" |
2314 | msgstr "" | 2290 | msgstr "" |
2315 | 2291 | ||
2292 | +#: app/models/published_article.rb:31 | ||
2293 | +msgid "The original text was removed." | ||
2294 | +msgstr "" | ||
2295 | + | ||
2316 | #: app/models/contact.rb:- app/views/friends/index.rhtml:32 | 2296 | #: app/models/contact.rb:- app/views/friends/index.rhtml:32 |
2317 | #: app/views/friends/index.rhtml:35 | 2297 | #: app/views/friends/index.rhtml:35 |
2318 | msgid "contact" | 2298 | msgid "contact" |
@@ -2331,7 +2311,7 @@ msgstr "" | @@ -2331,7 +2311,7 @@ msgstr "" | ||
2331 | msgid "Receive a copy" | 2311 | msgid "Receive a copy" |
2332 | msgstr "" | 2312 | msgstr "" |
2333 | 2313 | ||
2334 | -#: app/models/contact.rb:13 app/views/contact/new.rhtml:13 | 2314 | +#: app/models/contact.rb:13 app/views/contact/new.rhtml:14 |
2335 | msgid "City and state" | 2315 | msgid "City and state" |
2336 | msgstr "" | 2316 | msgstr "" |
2337 | 2317 | ||
@@ -2547,6 +2527,10 @@ msgstr "" | @@ -2547,6 +2527,10 @@ msgstr "" | ||
2547 | msgid "This block presents the members of a collective." | 2527 | msgid "This block presents the members of a collective." |
2548 | msgstr "" | 2528 | msgstr "" |
2549 | 2529 | ||
2530 | +#: app/models/uploaded_file.rb:21 | ||
2531 | +msgid "%{fn} of uploaded file was larger than the maximum size of 5.0 MB" | ||
2532 | +msgstr "" | ||
2533 | + | ||
2550 | #: app/models/uploaded_file.rb:32 | 2534 | #: app/models/uploaded_file.rb:32 |
2551 | msgid "Uploaded file" | 2535 | msgid "Uploaded file" |
2552 | msgstr "" | 2536 | msgstr "" |
@@ -2758,16 +2742,16 @@ msgstr "" | @@ -2758,16 +2742,16 @@ msgstr "" | ||
2758 | msgid "Most commented articles" | 2742 | msgid "Most commented articles" |
2759 | msgstr "" | 2743 | msgstr "" |
2760 | 2744 | ||
2761 | -#: app/controllers/public/contact_controller.rb:11 | ||
2762 | -#: app/controllers/public/contact_controller.rb:12 | 2745 | +#: app/controllers/public/contact_controller.rb:13 |
2746 | +#: app/controllers/public/contact_controller.rb:14 | ||
2763 | msgid "Missing" | 2747 | msgid "Missing" |
2764 | msgstr "" | 2748 | msgstr "" |
2765 | 2749 | ||
2766 | -#: app/controllers/public/contact_controller.rb:14 | 2750 | +#: app/controllers/public/contact_controller.rb:16 |
2767 | msgid "Contact successfully sent" | 2751 | msgid "Contact successfully sent" |
2768 | msgstr "" | 2752 | msgstr "" |
2769 | 2753 | ||
2770 | -#: app/controllers/public/contact_controller.rb:17 | 2754 | +#: app/controllers/public/contact_controller.rb:19 |
2771 | msgid "Contact not sent" | 2755 | msgid "Contact not sent" |
2772 | msgstr "" | 2756 | msgstr "" |
2773 | 2757 | ||
@@ -3500,7 +3484,7 @@ msgstr "" | @@ -3500,7 +3484,7 @@ msgstr "" | ||
3500 | msgid "Post a comment" | 3484 | msgid "Post a comment" |
3501 | msgstr "" | 3485 | msgstr "" |
3502 | 3486 | ||
3503 | -#: app/views/content_viewer/_comment_form.rhtml:27 | 3487 | +#: app/views/content_viewer/_comment_form.rhtml:28 |
3504 | msgid "e-mail" | 3488 | msgid "e-mail" |
3505 | msgstr "" | 3489 | msgstr "" |
3506 | 3490 | ||
@@ -4077,7 +4061,7 @@ msgstr "" | @@ -4077,7 +4061,7 @@ msgstr "" | ||
4077 | msgid "Contact %s" | 4061 | msgid "Contact %s" |
4078 | msgstr "" | 4062 | msgstr "" |
4079 | 4063 | ||
4080 | -#: app/views/contact/new.rhtml:17 | 4064 | +#: app/views/contact/new.rhtml:18 |
4081 | msgid "I want to receive a copy of the message in my e-mail." | 4065 | msgid "I want to receive a copy of the message in my e-mail." |
4082 | msgstr "" | 4066 | msgstr "" |
4083 | 4067 | ||
@@ -5339,37 +5323,37 @@ msgid "" | @@ -5339,37 +5323,37 @@ msgid "" | ||
5339 | "password!</b>\" link. ;-)" | 5323 | "password!</b>\" link. ;-)" |
5340 | msgstr "" | 5324 | msgstr "" |
5341 | 5325 | ||
5342 | -#: app/views/account/_signup_form.rhtml:24 | 5326 | +#: app/views/account/_signup_form.rhtml:25 |
5343 | msgid "This e-mail address will be used to contact you." | 5327 | msgid "This e-mail address will be used to contact you." |
5344 | msgstr "" | 5328 | msgstr "" |
5345 | 5329 | ||
5346 | -#: app/views/account/_signup_form.rhtml:29 | 5330 | +#: app/views/account/_signup_form.rhtml:30 |
5347 | msgid "Insert your login" | 5331 | msgid "Insert your login" |
5348 | msgstr "" | 5332 | msgstr "" |
5349 | 5333 | ||
5350 | -#: app/views/account/_signup_form.rhtml:39 | 5334 | +#: app/views/account/_signup_form.rhtml:40 |
5351 | msgid "Choose a password that you can remember easily." | 5335 | msgid "Choose a password that you can remember easily." |
5352 | msgstr "" | 5336 | msgstr "" |
5353 | 5337 | ||
5354 | -#: app/views/account/_signup_form.rhtml:44 | 5338 | +#: app/views/account/_signup_form.rhtml:45 |
5355 | msgid "To confirm, repeat your password." | 5339 | msgid "To confirm, repeat your password." |
5356 | msgstr "" | 5340 | msgstr "" |
5357 | 5341 | ||
5358 | -#: app/views/account/_signup_form.rhtml:54 | 5342 | +#: app/views/account/_signup_form.rhtml:53 |
5359 | msgid "" | 5343 | msgid "" |
5360 | "By clicking on 'I accept the terms of use' below you are agreeing to the %s" | 5344 | "By clicking on 'I accept the terms of use' below you are agreeing to the %s" |
5361 | msgstr "" | 5345 | msgstr "" |
5362 | 5346 | ||
5363 | -#: app/views/account/_signup_form.rhtml:61 | 5347 | +#: app/views/account/_signup_form.rhtml:60 |
5364 | msgid "Hide" | 5348 | msgid "Hide" |
5365 | msgstr "" | 5349 | msgstr "" |
5366 | 5350 | ||
5367 | -#: app/views/account/_signup_form.rhtml:65 | 5351 | +#: app/views/account/_signup_form.rhtml:64 |
5368 | msgid "I accept the terms of use" | 5352 | msgid "I accept the terms of use" |
5369 | msgstr "" | 5353 | msgstr "" |
5370 | 5354 | ||
5371 | -#: app/views/account/_signup_form.rhtml:77 | ||
5372 | -#: app/views/account/_signup_form.rhtml:79 | 5355 | +#: app/views/account/_signup_form.rhtml:76 |
5356 | +#: app/views/account/_signup_form.rhtml:78 | ||
5373 | msgid "Sign up" | 5357 | msgid "Sign up" |
5374 | msgstr "" | 5358 | msgstr "" |
5375 | 5359 |
po/fr/noosfero.po
@@ -5,9 +5,9 @@ | @@ -5,9 +5,9 @@ | ||
5 | # | 5 | # |
6 | msgid "" | 6 | msgid "" |
7 | msgstr "" | 7 | msgstr "" |
8 | -"Project-Id-Version: noosfero 0.18.2\n" | 8 | +"Project-Id-Version: noosfero 0.18.4\n" |
9 | "Report-Msgid-Bugs-To: \n" | 9 | "Report-Msgid-Bugs-To: \n" |
10 | -"POT-Creation-Date: 2009-06-20 02:04-0300\n" | 10 | +"POT-Creation-Date: 2009-07-20 11:40-0300\n" |
11 | "PO-Revision-Date: 2008-06-13 16:15-0300\n" | 11 | "PO-Revision-Date: 2008-06-13 16:15-0300\n" |
12 | "Last-Translator: Raphael Rousseau <pootle.colivre.coop.br@r4f.org>\n" | 12 | "Last-Translator: Raphael Rousseau <pootle.colivre.coop.br@r4f.org>\n" |
13 | "Language-Team: LANGUAGE <LL@li.org>\n" | 13 | "Language-Team: LANGUAGE <LL@li.org>\n" |
@@ -1254,8 +1254,8 @@ msgstr "Cible" | @@ -1254,8 +1254,8 @@ msgstr "Cible" | ||
1254 | msgid "Code" | 1254 | msgid "Code" |
1255 | msgstr "Code" | 1255 | msgstr "Code" |
1256 | 1256 | ||
1257 | -#: app/models/task.rb:- app/models/profile.rb:- app/models/category.rb:- | ||
1258 | -#: app/models/block.rb:- app/views/cms/view.rhtml:29 | 1257 | +#: app/models/task.rb:- app/models/profile.rb:- app/models/block.rb:- |
1258 | +#: app/views/cms/view.rhtml:29 | ||
1259 | msgid "Type" | 1259 | msgid "Type" |
1260 | msgstr "Type" | 1260 | msgstr "Type" |
1261 | 1261 | ||
@@ -1304,7 +1304,7 @@ msgstr "Nouveau %s" | @@ -1304,7 +1304,7 @@ msgstr "Nouveau %s" | ||
1304 | msgid "Save" | 1304 | msgid "Save" |
1305 | msgstr "Enregistrer" | 1305 | msgstr "Enregistrer" |
1306 | 1306 | ||
1307 | -#: app/models/link_list_block.rb:7 app/views/contact/new.rhtml:21 | 1307 | +#: app/models/link_list_block.rb:7 app/views/contact/new.rhtml:20 |
1308 | #: app/views/tasks/new.rhtml:15 | 1308 | #: app/views/tasks/new.rhtml:15 |
1309 | msgid "Send" | 1309 | msgid "Send" |
1310 | msgstr "Envoyer" | 1310 | msgstr "Envoyer" |
@@ -1588,12 +1588,12 @@ msgstr "Souscrire à des flux RSS" | @@ -1588,12 +1588,12 @@ msgstr "Souscrire à des flux RSS" | ||
1588 | msgid "profile" | 1588 | msgid "profile" |
1589 | msgstr "profil" | 1589 | msgstr "profil" |
1590 | 1590 | ||
1591 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/comment.rb:- | 1591 | +#: app/models/profile.rb:- app/models/comment.rb:- |
1592 | #: app/models/create_enterprise.rb:4 app/models/product.rb:- | 1592 | #: app/models/create_enterprise.rb:4 app/models/product.rb:- |
1593 | #: app/models/domain.rb:- app/models/contact.rb:- app/models/contact.rb:13 | 1593 | #: app/models/domain.rb:- app/models/contact.rb:- app/models/contact.rb:13 |
1594 | #: app/models/environment.rb:- | 1594 | #: app/models/environment.rb:- |
1595 | #: app/views/box_organizer/_link_list_block.rhtml:4 | 1595 | #: app/views/box_organizer/_link_list_block.rhtml:4 |
1596 | -#: app/views/content_viewer/_comment_form.rhtml:26 | 1596 | +#: app/views/content_viewer/_comment_form.rhtml:27 |
1597 | #: app/views/enterprise_editor/_form.rhtml:1 | 1597 | #: app/views/enterprise_editor/_form.rhtml:1 |
1598 | #: app/views/enterprise_validation/_details.rhtml:3 | 1598 | #: app/views/enterprise_validation/_details.rhtml:3 |
1599 | #: app/views/cms/view.rhtml:28 | 1599 | #: app/views/cms/view.rhtml:28 |
@@ -1605,7 +1605,7 @@ msgstr "Nom" | @@ -1605,7 +1605,7 @@ msgstr "Nom" | ||
1605 | msgid "Identifier" | 1605 | msgid "Identifier" |
1606 | msgstr "Identifiant" | 1606 | msgstr "Identifiant" |
1607 | 1607 | ||
1608 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/user.rb:- | 1608 | +#: app/models/profile.rb:- app/models/user.rb:- |
1609 | msgid "Environment" | 1609 | msgid "Environment" |
1610 | msgstr "Environnement" | 1610 | msgstr "Environnement" |
1611 | 1611 | ||
@@ -1622,11 +1622,11 @@ msgstr "Accueil" | @@ -1622,11 +1622,11 @@ msgstr "Accueil" | ||
1622 | msgid "User" | 1622 | msgid "User" |
1623 | msgstr "Utilisateur" | 1623 | msgstr "Utilisateur" |
1624 | 1624 | ||
1625 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/product.rb:- | 1625 | +#: app/models/profile.rb:- app/models/product.rb:- |
1626 | msgid "Lat" | 1626 | msgid "Lat" |
1627 | msgstr "Latitude" | 1627 | msgstr "Latitude" |
1628 | 1628 | ||
1629 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/product.rb:- | 1629 | +#: app/models/profile.rb:- app/models/product.rb:- |
1630 | msgid "Lng" | 1630 | msgid "Lng" |
1631 | msgstr "Longitude" | 1631 | msgstr "Longitude" |
1632 | 1632 | ||
@@ -1742,35 +1742,6 @@ msgstr "%s ne peut pas avoir de membres" | @@ -1742,35 +1742,6 @@ msgstr "%s ne peut pas avoir de membres" | ||
1742 | msgid "%s can't has moderators" | 1742 | msgid "%s can't has moderators" |
1743 | msgstr "%s ne peut pas avoir de modérateur" | 1743 | msgstr "%s ne peut pas avoir de modérateur" |
1744 | 1744 | ||
1745 | -#: app/models/category.rb:- | ||
1746 | -msgid "category" | ||
1747 | -msgstr "catégorie" | ||
1748 | - | ||
1749 | -#: app/models/category.rb:- | ||
1750 | -msgid "Slug" | ||
1751 | -msgstr "" | ||
1752 | - | ||
1753 | -#: app/models/category.rb:- | ||
1754 | -msgid "Path" | ||
1755 | -msgstr "Chemin" | ||
1756 | - | ||
1757 | -#: app/models/category.rb:- | ||
1758 | -msgid "Display color" | ||
1759 | -msgstr "Afficher la couleur" | ||
1760 | - | ||
1761 | -#: app/models/category.rb:- app/models/image.rb:- app/models/thumbnail.rb:- | ||
1762 | -#, fuzzy | ||
1763 | -msgid "Parent" | ||
1764 | -msgstr "Parent" | ||
1765 | - | ||
1766 | -#: app/models/category.rb:- | ||
1767 | -msgid "Display in menu" | ||
1768 | -msgstr "Afficher dans le menu" | ||
1769 | - | ||
1770 | -#: app/models/category.rb:- | ||
1771 | -msgid "Children count" | ||
1772 | -msgstr "Nombre d'enfants" | ||
1773 | - | ||
1774 | #: app/models/category.rb:3 | 1745 | #: app/models/category.rb:3 |
1775 | msgid "%{fn} cannot be like that." | 1746 | msgid "%{fn} cannot be like that." |
1776 | msgstr "%{fn} ne peut pas être comme ça." | 1747 | msgstr "%{fn} ne peut pas être comme ça." |
@@ -1910,7 +1881,7 @@ msgstr "Mémoriser le token" | @@ -1910,7 +1881,7 @@ msgstr "Mémoriser le token" | ||
1910 | msgid "Remember token expires at" | 1881 | msgid "Remember token expires at" |
1911 | msgstr "Le token mémorisé expire le" | 1882 | msgstr "Le token mémorisé expire le" |
1912 | 1883 | ||
1913 | -#: app/models/user.rb:- app/views/account/_signup_form.rhtml:55 | 1884 | +#: app/models/user.rb:- app/views/account/_signup_form.rhtml:54 |
1914 | #, fuzzy | 1885 | #, fuzzy |
1915 | msgid "Terms of use" | 1886 | msgid "Terms of use" |
1916 | msgstr "Conditions d'utilisation" | 1887 | msgstr "Conditions d'utilisation" |
@@ -2072,6 +2043,11 @@ msgstr "image" | @@ -2072,6 +2043,11 @@ msgstr "image" | ||
2072 | 2043 | ||
2073 | #: app/models/image.rb:- app/models/thumbnail.rb:- | 2044 | #: app/models/image.rb:- app/models/thumbnail.rb:- |
2074 | #, fuzzy | 2045 | #, fuzzy |
2046 | +msgid "Parent" | ||
2047 | +msgstr "Parent" | ||
2048 | + | ||
2049 | +#: app/models/image.rb:- app/models/thumbnail.rb:- | ||
2050 | +#, fuzzy | ||
2075 | msgid "Content type" | 2051 | msgid "Content type" |
2076 | msgstr "Type de contenu" | 2052 | msgstr "Type de contenu" |
2077 | 2053 | ||
@@ -2098,9 +2074,9 @@ msgstr "Largeur" | @@ -2098,9 +2074,9 @@ msgstr "Largeur" | ||
2098 | msgid "Height" | 2074 | msgid "Height" |
2099 | msgstr "Hauteur" | 2075 | msgstr "Hauteur" |
2100 | 2076 | ||
2101 | -#: app/models/image.rb:18 app/models/uploaded_file.rb:21 | 2077 | +#: app/models/image.rb:18 |
2102 | #, fuzzy | 2078 | #, fuzzy |
2103 | -msgid "%{fn} of uploaded file was larger than the maximum size of %s" | 2079 | +msgid "%{fn} of uploaded file was larger than the maximum size of 500.0 KB" |
2104 | msgstr "" | 2080 | msgstr "" |
2105 | "Le fichier que vous avez téléversé était plus gros que la taille maximale de " | 2081 | "Le fichier que vous avez téléversé était plus gros que la taille maximale de " |
2106 | "%s" | 2082 | "%s" |
@@ -2440,6 +2416,10 @@ msgstr "Référence à un autre article" | @@ -2440,6 +2416,10 @@ msgstr "Référence à un autre article" | ||
2440 | msgid "A reference to another article published in another profile" | 2416 | msgid "A reference to another article published in another profile" |
2441 | msgstr "Une référence à un autre article publié sur un autre profil" | 2417 | msgstr "Une référence à un autre article publié sur un autre profil" |
2442 | 2418 | ||
2419 | +#: app/models/published_article.rb:31 | ||
2420 | +msgid "The original text was removed." | ||
2421 | +msgstr "" | ||
2422 | + | ||
2443 | #: app/models/contact.rb:- app/views/friends/index.rhtml:32 | 2423 | #: app/models/contact.rb:- app/views/friends/index.rhtml:32 |
2444 | #: app/views/friends/index.rhtml:35 | 2424 | #: app/views/friends/index.rhtml:35 |
2445 | msgid "contact" | 2425 | msgid "contact" |
@@ -2458,7 +2438,7 @@ msgstr "Message" | @@ -2458,7 +2438,7 @@ msgstr "Message" | ||
2458 | msgid "Receive a copy" | 2438 | msgid "Receive a copy" |
2459 | msgstr "Recevoir une copie" | 2439 | msgstr "Recevoir une copie" |
2460 | 2440 | ||
2461 | -#: app/models/contact.rb:13 app/views/contact/new.rhtml:13 | 2441 | +#: app/models/contact.rb:13 app/views/contact/new.rhtml:14 |
2462 | msgid "City and state" | 2442 | msgid "City and state" |
2463 | msgstr "Pays et état" | 2443 | msgstr "Pays et état" |
2464 | 2444 | ||
@@ -2686,6 +2666,13 @@ msgstr "Les membres de %s" | @@ -2686,6 +2666,13 @@ msgstr "Les membres de %s" | ||
2686 | msgid "This block presents the members of a collective." | 2666 | msgid "This block presents the members of a collective." |
2687 | msgstr "Ce bloc présente les membres d'un collectif." | 2667 | msgstr "Ce bloc présente les membres d'un collectif." |
2688 | 2668 | ||
2669 | +#: app/models/uploaded_file.rb:21 | ||
2670 | +#, fuzzy | ||
2671 | +msgid "%{fn} of uploaded file was larger than the maximum size of 5.0 MB" | ||
2672 | +msgstr "" | ||
2673 | +"Le fichier que vous avez téléversé était plus gros que la taille maximale de " | ||
2674 | +"%s" | ||
2675 | + | ||
2689 | #: app/models/uploaded_file.rb:32 | 2676 | #: app/models/uploaded_file.rb:32 |
2690 | msgid "Uploaded file" | 2677 | msgid "Uploaded file" |
2691 | msgstr "Fichier téléversé" | 2678 | msgstr "Fichier téléversé" |
@@ -2909,16 +2896,16 @@ msgstr "Événements à venir" | @@ -2909,16 +2896,16 @@ msgstr "Événements à venir" | ||
2909 | msgid "Most commented articles" | 2896 | msgid "Most commented articles" |
2910 | msgstr "Articles les plus commentés" | 2897 | msgstr "Articles les plus commentés" |
2911 | 2898 | ||
2912 | -#: app/controllers/public/contact_controller.rb:11 | ||
2913 | -#: app/controllers/public/contact_controller.rb:12 | 2899 | +#: app/controllers/public/contact_controller.rb:13 |
2900 | +#: app/controllers/public/contact_controller.rb:14 | ||
2914 | msgid "Missing" | 2901 | msgid "Missing" |
2915 | msgstr "Manquant" | 2902 | msgstr "Manquant" |
2916 | 2903 | ||
2917 | -#: app/controllers/public/contact_controller.rb:14 | 2904 | +#: app/controllers/public/contact_controller.rb:16 |
2918 | msgid "Contact successfully sent" | 2905 | msgid "Contact successfully sent" |
2919 | msgstr "Le contact a bien été envoyé" | 2906 | msgstr "Le contact a bien été envoyé" |
2920 | 2907 | ||
2921 | -#: app/controllers/public/contact_controller.rb:17 | 2908 | +#: app/controllers/public/contact_controller.rb:19 |
2922 | msgid "Contact not sent" | 2909 | msgid "Contact not sent" |
2923 | msgstr "Le contact n'a pas été envoyé" | 2910 | msgstr "Le contact n'a pas été envoyé" |
2924 | 2911 | ||
@@ -3686,7 +3673,7 @@ msgstr "(vide)" | @@ -3686,7 +3673,7 @@ msgstr "(vide)" | ||
3686 | msgid "Post a comment" | 3673 | msgid "Post a comment" |
3687 | msgstr "Poster un commentaire" | 3674 | msgstr "Poster un commentaire" |
3688 | 3675 | ||
3689 | -#: app/views/content_viewer/_comment_form.rhtml:27 | 3676 | +#: app/views/content_viewer/_comment_form.rhtml:28 |
3690 | msgid "e-mail" | 3677 | msgid "e-mail" |
3691 | msgstr "courrier électronique" | 3678 | msgstr "courrier électronique" |
3692 | 3679 | ||
@@ -4309,7 +4296,7 @@ msgstr "Les entreprises préférées de <b>%s</b>" | @@ -4309,7 +4296,7 @@ msgstr "Les entreprises préférées de <b>%s</b>" | ||
4309 | msgid "Contact %s" | 4296 | msgid "Contact %s" |
4310 | msgstr "Contactez %s" | 4297 | msgstr "Contactez %s" |
4311 | 4298 | ||
4312 | -#: app/views/contact/new.rhtml:17 | 4299 | +#: app/views/contact/new.rhtml:18 |
4313 | msgid "I want to receive a copy of the message in my e-mail." | 4300 | msgid "I want to receive a copy of the message in my e-mail." |
4314 | msgstr "Recevoir une copie du message par mél" | 4301 | msgstr "Recevoir une copie du message par mél" |
4315 | 4302 | ||
@@ -5697,40 +5684,40 @@ msgstr "" | @@ -5697,40 +5684,40 @@ msgstr "" | ||
5697 | "oublié votre mot de passe, ne créez pas un nouveau compte, cliquez sur le " | 5684 | "oublié votre mot de passe, ne créez pas un nouveau compte, cliquez sur le " |
5698 | "lien «<b>J'ai oublié mon mot de passe</b>»." | 5685 | "lien «<b>J'ai oublié mon mot de passe</b>»." |
5699 | 5686 | ||
5700 | -#: app/views/account/_signup_form.rhtml:24 | 5687 | +#: app/views/account/_signup_form.rhtml:25 |
5701 | msgid "This e-mail address will be used to contact you." | 5688 | msgid "This e-mail address will be used to contact you." |
5702 | msgstr "" | 5689 | msgstr "" |
5703 | 5690 | ||
5704 | -#: app/views/account/_signup_form.rhtml:29 | 5691 | +#: app/views/account/_signup_form.rhtml:30 |
5705 | #, fuzzy | 5692 | #, fuzzy |
5706 | msgid "Insert your login" | 5693 | msgid "Insert your login" |
5707 | msgstr "Entrez votre commentaire" | 5694 | msgstr "Entrez votre commentaire" |
5708 | 5695 | ||
5709 | -#: app/views/account/_signup_form.rhtml:39 | 5696 | +#: app/views/account/_signup_form.rhtml:40 |
5710 | msgid "Choose a password that you can remember easily." | 5697 | msgid "Choose a password that you can remember easily." |
5711 | msgstr "" | 5698 | msgstr "" |
5712 | 5699 | ||
5713 | -#: app/views/account/_signup_form.rhtml:44 | 5700 | +#: app/views/account/_signup_form.rhtml:45 |
5714 | #, fuzzy | 5701 | #, fuzzy |
5715 | msgid "To confirm, repeat your password." | 5702 | msgid "To confirm, repeat your password." |
5716 | msgstr "Confirmer votre nouveau mot de passe" | 5703 | msgstr "Confirmer votre nouveau mot de passe" |
5717 | 5704 | ||
5718 | -#: app/views/account/_signup_form.rhtml:54 | 5705 | +#: app/views/account/_signup_form.rhtml:53 |
5719 | msgid "" | 5706 | msgid "" |
5720 | "By clicking on 'I accept the terms of use' below you are agreeing to the %s" | 5707 | "By clicking on 'I accept the terms of use' below you are agreeing to the %s" |
5721 | msgstr "" | 5708 | msgstr "" |
5722 | 5709 | ||
5723 | -#: app/views/account/_signup_form.rhtml:61 | 5710 | +#: app/views/account/_signup_form.rhtml:60 |
5724 | msgid "Hide" | 5711 | msgid "Hide" |
5725 | msgstr "" | 5712 | msgstr "" |
5726 | 5713 | ||
5727 | -#: app/views/account/_signup_form.rhtml:65 | 5714 | +#: app/views/account/_signup_form.rhtml:64 |
5728 | msgid "I accept the terms of use" | 5715 | msgid "I accept the terms of use" |
5729 | msgstr "J'accepte les conditions d'utilisation" | 5716 | msgstr "J'accepte les conditions d'utilisation" |
5730 | 5717 | ||
5731 | # Je ne suis pas sûr de la distinction "sign up" / "register" | 5718 | # Je ne suis pas sûr de la distinction "sign up" / "register" |
5732 | -#: app/views/account/_signup_form.rhtml:77 | ||
5733 | -#: app/views/account/_signup_form.rhtml:79 | 5719 | +#: app/views/account/_signup_form.rhtml:76 |
5720 | +#: app/views/account/_signup_form.rhtml:78 | ||
5734 | #, fuzzy | 5721 | #, fuzzy |
5735 | msgid "Sign up" | 5722 | msgid "Sign up" |
5736 | msgstr "S'enregistrer" | 5723 | msgstr "S'enregistrer" |
@@ -6775,6 +6762,21 @@ msgstr "info organisation" | @@ -6775,6 +6762,21 @@ msgstr "info organisation" | ||
6775 | msgid "Organization Info and settings" | 6762 | msgid "Organization Info and settings" |
6776 | msgstr "Région" | 6763 | msgstr "Région" |
6777 | 6764 | ||
6765 | +#~ msgid "category" | ||
6766 | +#~ msgstr "catégorie" | ||
6767 | + | ||
6768 | +#~ msgid "Path" | ||
6769 | +#~ msgstr "Chemin" | ||
6770 | + | ||
6771 | +#~ msgid "Display color" | ||
6772 | +#~ msgstr "Afficher la couleur" | ||
6773 | + | ||
6774 | +#~ msgid "Display in menu" | ||
6775 | +#~ msgstr "Afficher dans le menu" | ||
6776 | + | ||
6777 | +#~ msgid "Children count" | ||
6778 | +#~ msgstr "Nombre d'enfants" | ||
6779 | + | ||
6778 | #, fuzzy | 6780 | #, fuzzy |
6779 | #~ msgid "Last updated" | 6781 | #~ msgid "Last updated" |
6780 | #~ msgstr "Dernière mise à jour" | 6782 | #~ msgstr "Dernière mise à jour" |
po/hy/noosfero.po
@@ -6,8 +6,8 @@ | @@ -6,8 +6,8 @@ | ||
6 | #, fuzzy | 6 | #, fuzzy |
7 | msgid "" | 7 | msgid "" |
8 | msgstr "" | 8 | msgstr "" |
9 | -"Project-Id-Version: noosfero 0.18.2\n" | ||
10 | -"POT-Creation-Date: 2009-06-20 02:04-0300\n" | 9 | +"Project-Id-Version: noosfero 0.18.4\n" |
10 | +"POT-Creation-Date: 2009-07-20 11:40-0300\n" | ||
11 | "PO-Revision-Date: 2007-08-30 18:47-0300\n" | 11 | "PO-Revision-Date: 2007-08-30 18:47-0300\n" |
12 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | 12 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
13 | "Language-Team: LANGUAGE <LL@li.org>\n" | 13 | "Language-Team: LANGUAGE <LL@li.org>\n" |
@@ -1227,8 +1227,8 @@ msgstr "Թիրախ" | @@ -1227,8 +1227,8 @@ msgstr "Թիրախ" | ||
1227 | msgid "Code" | 1227 | msgid "Code" |
1228 | msgstr "Կոդ" | 1228 | msgstr "Կոդ" |
1229 | 1229 | ||
1230 | -#: app/models/task.rb:- app/models/profile.rb:- app/models/category.rb:- | ||
1231 | -#: app/models/block.rb:- app/views/cms/view.rhtml:29 | 1230 | +#: app/models/task.rb:- app/models/profile.rb:- app/models/block.rb:- |
1231 | +#: app/views/cms/view.rhtml:29 | ||
1232 | msgid "Type" | 1232 | msgid "Type" |
1233 | msgstr "Տեսակ" | 1233 | msgstr "Տեսակ" |
1234 | 1234 | ||
@@ -1276,7 +1276,7 @@ msgstr "Նորություններ" | @@ -1276,7 +1276,7 @@ msgstr "Նորություններ" | ||
1276 | msgid "Save" | 1276 | msgid "Save" |
1277 | msgstr "Պահպանել" | 1277 | msgstr "Պահպանել" |
1278 | 1278 | ||
1279 | -#: app/models/link_list_block.rb:7 app/views/contact/new.rhtml:21 | 1279 | +#: app/models/link_list_block.rb:7 app/views/contact/new.rhtml:20 |
1280 | #: app/views/tasks/new.rhtml:15 | 1280 | #: app/views/tasks/new.rhtml:15 |
1281 | msgid "Send" | 1281 | msgid "Send" |
1282 | msgstr "" | 1282 | msgstr "" |
@@ -1551,12 +1551,12 @@ msgstr "" | @@ -1551,12 +1551,12 @@ msgstr "" | ||
1551 | msgid "profile" | 1551 | msgid "profile" |
1552 | msgstr "անհատական էջ" | 1552 | msgstr "անհատական էջ" |
1553 | 1553 | ||
1554 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/comment.rb:- | 1554 | +#: app/models/profile.rb:- app/models/comment.rb:- |
1555 | #: app/models/create_enterprise.rb:4 app/models/product.rb:- | 1555 | #: app/models/create_enterprise.rb:4 app/models/product.rb:- |
1556 | #: app/models/domain.rb:- app/models/contact.rb:- app/models/contact.rb:13 | 1556 | #: app/models/domain.rb:- app/models/contact.rb:- app/models/contact.rb:13 |
1557 | #: app/models/environment.rb:- | 1557 | #: app/models/environment.rb:- |
1558 | #: app/views/box_organizer/_link_list_block.rhtml:4 | 1558 | #: app/views/box_organizer/_link_list_block.rhtml:4 |
1559 | -#: app/views/content_viewer/_comment_form.rhtml:26 | 1559 | +#: app/views/content_viewer/_comment_form.rhtml:27 |
1560 | #: app/views/enterprise_editor/_form.rhtml:1 | 1560 | #: app/views/enterprise_editor/_form.rhtml:1 |
1561 | #: app/views/enterprise_validation/_details.rhtml:3 | 1561 | #: app/views/enterprise_validation/_details.rhtml:3 |
1562 | #: app/views/cms/view.rhtml:28 | 1562 | #: app/views/cms/view.rhtml:28 |
@@ -1568,7 +1568,7 @@ msgstr "Անվանում" | @@ -1568,7 +1568,7 @@ msgstr "Անվանում" | ||
1568 | msgid "Identifier" | 1568 | msgid "Identifier" |
1569 | msgstr "Որոշիչ" | 1569 | msgstr "Որոշիչ" |
1570 | 1570 | ||
1571 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/user.rb:- | 1571 | +#: app/models/profile.rb:- app/models/user.rb:- |
1572 | msgid "Environment" | 1572 | msgid "Environment" |
1573 | msgstr "Արտաքին տեսք" | 1573 | msgstr "Արտաքին տեսք" |
1574 | 1574 | ||
@@ -1584,11 +1584,11 @@ msgstr "Գլխավոր էջ" | @@ -1584,11 +1584,11 @@ msgstr "Գլխավոր էջ" | ||
1584 | msgid "User" | 1584 | msgid "User" |
1585 | msgstr "Օգտվող" | 1585 | msgstr "Օգտվող" |
1586 | 1586 | ||
1587 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/product.rb:- | 1587 | +#: app/models/profile.rb:- app/models/product.rb:- |
1588 | msgid "Lat" | 1588 | msgid "Lat" |
1589 | msgstr "" | 1589 | msgstr "" |
1590 | 1590 | ||
1591 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/product.rb:- | 1591 | +#: app/models/profile.rb:- app/models/product.rb:- |
1592 | msgid "Lng" | 1592 | msgid "Lng" |
1593 | msgstr "" | 1593 | msgstr "" |
1594 | 1594 | ||
@@ -1699,34 +1699,6 @@ msgstr "%s - ը անդամներ ունենալ չի կարող" | @@ -1699,34 +1699,6 @@ msgstr "%s - ը անդամներ ունենալ չի կարող" | ||
1699 | msgid "%s can't has moderators" | 1699 | msgid "%s can't has moderators" |
1700 | msgstr "մոդերատորներ ունենալ չի կարող" | 1700 | msgstr "մոդերատորներ ունենալ չի կարող" |
1701 | 1701 | ||
1702 | -#: app/models/category.rb:- | ||
1703 | -msgid "category" | ||
1704 | -msgstr "կատեգորիա" | ||
1705 | - | ||
1706 | -#: app/models/category.rb:- | ||
1707 | -msgid "Slug" | ||
1708 | -msgstr "Խորագիր" | ||
1709 | - | ||
1710 | -#: app/models/category.rb:- | ||
1711 | -msgid "Path" | ||
1712 | -msgstr "Ճանապարհ" | ||
1713 | - | ||
1714 | -#: app/models/category.rb:- | ||
1715 | -msgid "Display color" | ||
1716 | -msgstr "Ցուցադրել գույնը" | ||
1717 | - | ||
1718 | -#: app/models/category.rb:- app/models/image.rb:- app/models/thumbnail.rb:- | ||
1719 | -msgid "Parent" | ||
1720 | -msgstr "Ծնող" | ||
1721 | - | ||
1722 | -#: app/models/category.rb:- | ||
1723 | -msgid "Display in menu" | ||
1724 | -msgstr "Ցուցադրել մենյուի մեջ" | ||
1725 | - | ||
1726 | -#: app/models/category.rb:- | ||
1727 | -msgid "Children count" | ||
1728 | -msgstr "Երեխաների հաշվում" | ||
1729 | - | ||
1730 | #: app/models/category.rb:3 | 1702 | #: app/models/category.rb:3 |
1731 | msgid "%{fn} cannot be like that." | 1703 | msgid "%{fn} cannot be like that." |
1732 | msgstr "%{fn} չի կարող այդպես լինել" | 1704 | msgstr "%{fn} չի կարող այդպես լինել" |
@@ -1860,7 +1832,7 @@ msgstr "" | @@ -1860,7 +1832,7 @@ msgstr "" | ||
1860 | msgid "Remember token expires at" | 1832 | msgid "Remember token expires at" |
1861 | msgstr "" | 1833 | msgstr "" |
1862 | 1834 | ||
1863 | -#: app/models/user.rb:- app/views/account/_signup_form.rhtml:55 | 1835 | +#: app/models/user.rb:- app/views/account/_signup_form.rhtml:54 |
1864 | msgid "Terms of use" | 1836 | msgid "Terms of use" |
1865 | msgstr "Օգտագործման կանոններն ու պայմանները" | 1837 | msgstr "Օգտագործման կանոններն ու պայմանները" |
1866 | 1838 | ||
@@ -2014,6 +1986,10 @@ msgid "image" | @@ -2014,6 +1986,10 @@ msgid "image" | ||
2014 | msgstr "պատկեր" | 1986 | msgstr "պատկեր" |
2015 | 1987 | ||
2016 | #: app/models/image.rb:- app/models/thumbnail.rb:- | 1988 | #: app/models/image.rb:- app/models/thumbnail.rb:- |
1989 | +msgid "Parent" | ||
1990 | +msgstr "Ծնող" | ||
1991 | + | ||
1992 | +#: app/models/image.rb:- app/models/thumbnail.rb:- | ||
2017 | msgid "Content type" | 1993 | msgid "Content type" |
2018 | msgstr "Բովանդակության տեսակ" | 1994 | msgstr "Բովանդակության տեսակ" |
2019 | 1995 | ||
@@ -2037,9 +2013,9 @@ msgstr "Լայնություն" | @@ -2037,9 +2013,9 @@ msgstr "Լայնություն" | ||
2037 | msgid "Height" | 2013 | msgid "Height" |
2038 | msgstr "Բարձրություն" | 2014 | msgstr "Բարձրություն" |
2039 | 2015 | ||
2040 | -#: app/models/image.rb:18 app/models/uploaded_file.rb:21 | 2016 | +#: app/models/image.rb:18 |
2041 | #, fuzzy | 2017 | #, fuzzy |
2042 | -msgid "%{fn} of uploaded file was larger than the maximum size of %s" | 2018 | +msgid "%{fn} of uploaded file was larger than the maximum size of 500.0 KB" |
2043 | msgstr "Ձեր բեռնած ֆայլի չափսն անցնում է առավելագույն սահմանված %s չափսից" | 2019 | msgstr "Ձեր բեռնած ֆայլի չափսն անցնում է առավելագույն սահմանված %s չափսից" |
2044 | 2020 | ||
2045 | #: app/models/image_gallery.rb:8 | 2021 | #: app/models/image_gallery.rb:8 |
@@ -2362,6 +2338,10 @@ msgstr "" | @@ -2362,6 +2338,10 @@ msgstr "" | ||
2362 | msgid "A reference to another article published in another profile" | 2338 | msgid "A reference to another article published in another profile" |
2363 | msgstr "" | 2339 | msgstr "" |
2364 | 2340 | ||
2341 | +#: app/models/published_article.rb:31 | ||
2342 | +msgid "The original text was removed." | ||
2343 | +msgstr "" | ||
2344 | + | ||
2365 | #: app/models/contact.rb:- app/views/friends/index.rhtml:32 | 2345 | #: app/models/contact.rb:- app/views/friends/index.rhtml:32 |
2366 | #: app/views/friends/index.rhtml:35 | 2346 | #: app/views/friends/index.rhtml:35 |
2367 | msgid "contact" | 2347 | msgid "contact" |
@@ -2380,7 +2360,7 @@ msgstr "" | @@ -2380,7 +2360,7 @@ msgstr "" | ||
2380 | msgid "Receive a copy" | 2360 | msgid "Receive a copy" |
2381 | msgstr "" | 2361 | msgstr "" |
2382 | 2362 | ||
2383 | -#: app/models/contact.rb:13 app/views/contact/new.rhtml:13 | 2363 | +#: app/models/contact.rb:13 app/views/contact/new.rhtml:14 |
2384 | msgid "City and state" | 2364 | msgid "City and state" |
2385 | msgstr "" | 2365 | msgstr "" |
2386 | 2366 | ||
@@ -2603,6 +2583,11 @@ msgstr "%s-ի անդամները" | @@ -2603,6 +2583,11 @@ msgstr "%s-ի անդամները" | ||
2603 | msgid "This block presents the members of a collective." | 2583 | msgid "This block presents the members of a collective." |
2604 | msgstr "" | 2584 | msgstr "" |
2605 | 2585 | ||
2586 | +#: app/models/uploaded_file.rb:21 | ||
2587 | +#, fuzzy | ||
2588 | +msgid "%{fn} of uploaded file was larger than the maximum size of 5.0 MB" | ||
2589 | +msgstr "Ձեր բեռնած ֆայլի չափսն անցնում է առավելագույն սահմանված %s չափսից" | ||
2590 | + | ||
2606 | #: app/models/uploaded_file.rb:32 | 2591 | #: app/models/uploaded_file.rb:32 |
2607 | msgid "Uploaded file" | 2592 | msgid "Uploaded file" |
2608 | msgstr "Վերբեռնած ֆայլ" | 2593 | msgstr "Վերբեռնած ֆայլ" |
@@ -2817,16 +2802,16 @@ msgstr "Գալիք իրադարձություններ" | @@ -2817,16 +2802,16 @@ msgstr "Գալիք իրադարձություններ" | ||
2817 | msgid "Most commented articles" | 2802 | msgid "Most commented articles" |
2818 | msgstr "Ամենից հաճախ մեկնաբանվող հոդվածները" | 2803 | msgstr "Ամենից հաճախ մեկնաբանվող հոդվածները" |
2819 | 2804 | ||
2820 | -#: app/controllers/public/contact_controller.rb:11 | ||
2821 | -#: app/controllers/public/contact_controller.rb:12 | 2805 | +#: app/controllers/public/contact_controller.rb:13 |
2806 | +#: app/controllers/public/contact_controller.rb:14 | ||
2822 | msgid "Missing" | 2807 | msgid "Missing" |
2823 | msgstr "" | 2808 | msgstr "" |
2824 | 2809 | ||
2825 | -#: app/controllers/public/contact_controller.rb:14 | 2810 | +#: app/controllers/public/contact_controller.rb:16 |
2826 | msgid "Contact successfully sent" | 2811 | msgid "Contact successfully sent" |
2827 | msgstr "" | 2812 | msgstr "" |
2828 | 2813 | ||
2829 | -#: app/controllers/public/contact_controller.rb:17 | 2814 | +#: app/controllers/public/contact_controller.rb:19 |
2830 | msgid "Contact not sent" | 2815 | msgid "Contact not sent" |
2831 | msgstr "" | 2816 | msgstr "" |
2832 | 2817 | ||
@@ -3580,7 +3565,7 @@ msgstr "" | @@ -3580,7 +3565,7 @@ msgstr "" | ||
3580 | msgid "Post a comment" | 3565 | msgid "Post a comment" |
3581 | msgstr "Մեկնաբանություն թողնել" | 3566 | msgstr "Մեկնաբանություն թողնել" |
3582 | 3567 | ||
3583 | -#: app/views/content_viewer/_comment_form.rhtml:27 | 3568 | +#: app/views/content_viewer/_comment_form.rhtml:28 |
3584 | msgid "e-mail" | 3569 | msgid "e-mail" |
3585 | msgstr "էլ. հասցե" | 3570 | msgstr "էլ. հասցե" |
3586 | 3571 | ||
@@ -4173,7 +4158,7 @@ msgstr "%s-ի նախընտրած ձեռնարկությունները" | @@ -4173,7 +4158,7 @@ msgstr "%s-ի նախընտրած ձեռնարկությունները" | ||
4173 | msgid "Contact %s" | 4158 | msgid "Contact %s" |
4174 | msgstr "" | 4159 | msgstr "" |
4175 | 4160 | ||
4176 | -#: app/views/contact/new.rhtml:17 | 4161 | +#: app/views/contact/new.rhtml:18 |
4177 | msgid "I want to receive a copy of the message in my e-mail." | 4162 | msgid "I want to receive a copy of the message in my e-mail." |
4178 | msgstr "" | 4163 | msgstr "" |
4179 | 4164 | ||
@@ -5498,38 +5483,38 @@ msgid "" | @@ -5498,38 +5483,38 @@ msgid "" | ||
5498 | "password!</b>\" link. ;-)" | 5483 | "password!</b>\" link. ;-)" |
5499 | msgstr "" | 5484 | msgstr "" |
5500 | 5485 | ||
5501 | -#: app/views/account/_signup_form.rhtml:24 | 5486 | +#: app/views/account/_signup_form.rhtml:25 |
5502 | msgid "This e-mail address will be used to contact you." | 5487 | msgid "This e-mail address will be used to contact you." |
5503 | msgstr "" | 5488 | msgstr "" |
5504 | 5489 | ||
5505 | -#: app/views/account/_signup_form.rhtml:29 | 5490 | +#: app/views/account/_signup_form.rhtml:30 |
5506 | #, fuzzy | 5491 | #, fuzzy |
5507 | msgid "Insert your login" | 5492 | msgid "Insert your login" |
5508 | msgstr "Գրեք Ձեր մեկնաբանությունը" | 5493 | msgstr "Գրեք Ձեր մեկնաբանությունը" |
5509 | 5494 | ||
5510 | -#: app/views/account/_signup_form.rhtml:39 | 5495 | +#: app/views/account/_signup_form.rhtml:40 |
5511 | msgid "Choose a password that you can remember easily." | 5496 | msgid "Choose a password that you can remember easily." |
5512 | msgstr "" | 5497 | msgstr "" |
5513 | 5498 | ||
5514 | -#: app/views/account/_signup_form.rhtml:44 | 5499 | +#: app/views/account/_signup_form.rhtml:45 |
5515 | msgid "To confirm, repeat your password." | 5500 | msgid "To confirm, repeat your password." |
5516 | msgstr "" | 5501 | msgstr "" |
5517 | 5502 | ||
5518 | -#: app/views/account/_signup_form.rhtml:54 | 5503 | +#: app/views/account/_signup_form.rhtml:53 |
5519 | msgid "" | 5504 | msgid "" |
5520 | "By clicking on 'I accept the terms of use' below you are agreeing to the %s" | 5505 | "By clicking on 'I accept the terms of use' below you are agreeing to the %s" |
5521 | msgstr "" | 5506 | msgstr "" |
5522 | 5507 | ||
5523 | -#: app/views/account/_signup_form.rhtml:61 | 5508 | +#: app/views/account/_signup_form.rhtml:60 |
5524 | msgid "Hide" | 5509 | msgid "Hide" |
5525 | msgstr "" | 5510 | msgstr "" |
5526 | 5511 | ||
5527 | -#: app/views/account/_signup_form.rhtml:65 | 5512 | +#: app/views/account/_signup_form.rhtml:64 |
5528 | msgid "I accept the terms of use" | 5513 | msgid "I accept the terms of use" |
5529 | msgstr "Ես ընդունում եմ օգտագործման կանոնները" | 5514 | msgstr "Ես ընդունում եմ օգտագործման կանոնները" |
5530 | 5515 | ||
5531 | -#: app/views/account/_signup_form.rhtml:77 | ||
5532 | -#: app/views/account/_signup_form.rhtml:79 | 5516 | +#: app/views/account/_signup_form.rhtml:76 |
5517 | +#: app/views/account/_signup_form.rhtml:78 | ||
5533 | msgid "Sign up" | 5518 | msgid "Sign up" |
5534 | msgstr "Գրանցվել" | 5519 | msgstr "Գրանցվել" |
5535 | 5520 | ||
@@ -6519,6 +6504,24 @@ msgstr "Կազնակերպությունները «%s»:" | @@ -6519,6 +6504,24 @@ msgstr "Կազնակերպությունները «%s»:" | ||
6519 | msgid "Organization Info and settings" | 6504 | msgid "Organization Info and settings" |
6520 | msgstr "Անհանատական էջի տվյալների բաժին" | 6505 | msgstr "Անհանատական էջի տվյալների բաժին" |
6521 | 6506 | ||
6507 | +#~ msgid "category" | ||
6508 | +#~ msgstr "կատեգորիա" | ||
6509 | + | ||
6510 | +#~ msgid "Slug" | ||
6511 | +#~ msgstr "Խորագիր" | ||
6512 | + | ||
6513 | +#~ msgid "Path" | ||
6514 | +#~ msgstr "Ճանապարհ" | ||
6515 | + | ||
6516 | +#~ msgid "Display color" | ||
6517 | +#~ msgstr "Ցուցադրել գույնը" | ||
6518 | + | ||
6519 | +#~ msgid "Display in menu" | ||
6520 | +#~ msgstr "Ցուցադրել մենյուի մեջ" | ||
6521 | + | ||
6522 | +#~ msgid "Children count" | ||
6523 | +#~ msgstr "Երեխաների հաշվում" | ||
6524 | + | ||
6522 | #, fuzzy | 6525 | #, fuzzy |
6523 | #~ msgid "Last updated" | 6526 | #~ msgid "Last updated" |
6524 | #~ msgstr "Վերջինը թարմացվել է %s" | 6527 | #~ msgstr "Վերջինը թարմացվել է %s" |
po/it/noosfero.po
@@ -6,8 +6,8 @@ | @@ -6,8 +6,8 @@ | ||
6 | #, fuzzy | 6 | #, fuzzy |
7 | msgid "" | 7 | msgid "" |
8 | msgstr "" | 8 | msgstr "" |
9 | -"Project-Id-Version: noosfero 0.18.2\n" | ||
10 | -"POT-Creation-Date: 2009-06-20 02:04-0300\n" | 9 | +"Project-Id-Version: noosfero 0.18.4\n" |
10 | +"POT-Creation-Date: 2009-07-20 11:40-0300\n" | ||
11 | "PO-Revision-Date: 2007-08-30 18:47-0300\n" | 11 | "PO-Revision-Date: 2007-08-30 18:47-0300\n" |
12 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | 12 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
13 | "Language-Team: LANGUAGE <LL@li.org>\n" | 13 | "Language-Team: LANGUAGE <LL@li.org>\n" |
@@ -1211,8 +1211,8 @@ msgstr "" | @@ -1211,8 +1211,8 @@ msgstr "" | ||
1211 | msgid "Code" | 1211 | msgid "Code" |
1212 | msgstr "" | 1212 | msgstr "" |
1213 | 1213 | ||
1214 | -#: app/models/task.rb:- app/models/profile.rb:- app/models/category.rb:- | ||
1215 | -#: app/models/block.rb:- app/views/cms/view.rhtml:29 | 1214 | +#: app/models/task.rb:- app/models/profile.rb:- app/models/block.rb:- |
1215 | +#: app/views/cms/view.rhtml:29 | ||
1216 | msgid "Type" | 1216 | msgid "Type" |
1217 | msgstr "" | 1217 | msgstr "" |
1218 | 1218 | ||
@@ -1259,7 +1259,7 @@ msgstr "" | @@ -1259,7 +1259,7 @@ msgstr "" | ||
1259 | msgid "Save" | 1259 | msgid "Save" |
1260 | msgstr "" | 1260 | msgstr "" |
1261 | 1261 | ||
1262 | -#: app/models/link_list_block.rb:7 app/views/contact/new.rhtml:21 | 1262 | +#: app/models/link_list_block.rb:7 app/views/contact/new.rhtml:20 |
1263 | #: app/views/tasks/new.rhtml:15 | 1263 | #: app/views/tasks/new.rhtml:15 |
1264 | msgid "Send" | 1264 | msgid "Send" |
1265 | msgstr "" | 1265 | msgstr "" |
@@ -1525,12 +1525,12 @@ msgstr "" | @@ -1525,12 +1525,12 @@ msgstr "" | ||
1525 | msgid "profile" | 1525 | msgid "profile" |
1526 | msgstr "" | 1526 | msgstr "" |
1527 | 1527 | ||
1528 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/comment.rb:- | 1528 | +#: app/models/profile.rb:- app/models/comment.rb:- |
1529 | #: app/models/create_enterprise.rb:4 app/models/product.rb:- | 1529 | #: app/models/create_enterprise.rb:4 app/models/product.rb:- |
1530 | #: app/models/domain.rb:- app/models/contact.rb:- app/models/contact.rb:13 | 1530 | #: app/models/domain.rb:- app/models/contact.rb:- app/models/contact.rb:13 |
1531 | #: app/models/environment.rb:- | 1531 | #: app/models/environment.rb:- |
1532 | #: app/views/box_organizer/_link_list_block.rhtml:4 | 1532 | #: app/views/box_organizer/_link_list_block.rhtml:4 |
1533 | -#: app/views/content_viewer/_comment_form.rhtml:26 | 1533 | +#: app/views/content_viewer/_comment_form.rhtml:27 |
1534 | #: app/views/enterprise_editor/_form.rhtml:1 | 1534 | #: app/views/enterprise_editor/_form.rhtml:1 |
1535 | #: app/views/enterprise_validation/_details.rhtml:3 | 1535 | #: app/views/enterprise_validation/_details.rhtml:3 |
1536 | #: app/views/cms/view.rhtml:28 | 1536 | #: app/views/cms/view.rhtml:28 |
@@ -1542,7 +1542,7 @@ msgstr "" | @@ -1542,7 +1542,7 @@ msgstr "" | ||
1542 | msgid "Identifier" | 1542 | msgid "Identifier" |
1543 | msgstr "" | 1543 | msgstr "" |
1544 | 1544 | ||
1545 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/user.rb:- | 1545 | +#: app/models/profile.rb:- app/models/user.rb:- |
1546 | msgid "Environment" | 1546 | msgid "Environment" |
1547 | msgstr "" | 1547 | msgstr "" |
1548 | 1548 | ||
@@ -1558,11 +1558,11 @@ msgstr "" | @@ -1558,11 +1558,11 @@ msgstr "" | ||
1558 | msgid "User" | 1558 | msgid "User" |
1559 | msgstr "" | 1559 | msgstr "" |
1560 | 1560 | ||
1561 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/product.rb:- | 1561 | +#: app/models/profile.rb:- app/models/product.rb:- |
1562 | msgid "Lat" | 1562 | msgid "Lat" |
1563 | msgstr "" | 1563 | msgstr "" |
1564 | 1564 | ||
1565 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/product.rb:- | 1565 | +#: app/models/profile.rb:- app/models/product.rb:- |
1566 | msgid "Lng" | 1566 | msgid "Lng" |
1567 | msgstr "" | 1567 | msgstr "" |
1568 | 1568 | ||
@@ -1672,34 +1672,6 @@ msgstr "" | @@ -1672,34 +1672,6 @@ msgstr "" | ||
1672 | msgid "%s can't has moderators" | 1672 | msgid "%s can't has moderators" |
1673 | msgstr "" | 1673 | msgstr "" |
1674 | 1674 | ||
1675 | -#: app/models/category.rb:- | ||
1676 | -msgid "category" | ||
1677 | -msgstr "" | ||
1678 | - | ||
1679 | -#: app/models/category.rb:- | ||
1680 | -msgid "Slug" | ||
1681 | -msgstr "" | ||
1682 | - | ||
1683 | -#: app/models/category.rb:- | ||
1684 | -msgid "Path" | ||
1685 | -msgstr "" | ||
1686 | - | ||
1687 | -#: app/models/category.rb:- | ||
1688 | -msgid "Display color" | ||
1689 | -msgstr "" | ||
1690 | - | ||
1691 | -#: app/models/category.rb:- app/models/image.rb:- app/models/thumbnail.rb:- | ||
1692 | -msgid "Parent" | ||
1693 | -msgstr "" | ||
1694 | - | ||
1695 | -#: app/models/category.rb:- | ||
1696 | -msgid "Display in menu" | ||
1697 | -msgstr "" | ||
1698 | - | ||
1699 | -#: app/models/category.rb:- | ||
1700 | -msgid "Children count" | ||
1701 | -msgstr "" | ||
1702 | - | ||
1703 | #: app/models/category.rb:3 | 1675 | #: app/models/category.rb:3 |
1704 | msgid "%{fn} cannot be like that." | 1676 | msgid "%{fn} cannot be like that." |
1705 | msgstr "" | 1677 | msgstr "" |
@@ -1830,7 +1802,7 @@ msgstr "" | @@ -1830,7 +1802,7 @@ msgstr "" | ||
1830 | msgid "Remember token expires at" | 1802 | msgid "Remember token expires at" |
1831 | msgstr "" | 1803 | msgstr "" |
1832 | 1804 | ||
1833 | -#: app/models/user.rb:- app/views/account/_signup_form.rhtml:55 | 1805 | +#: app/models/user.rb:- app/views/account/_signup_form.rhtml:54 |
1834 | msgid "Terms of use" | 1806 | msgid "Terms of use" |
1835 | msgstr "" | 1807 | msgstr "" |
1836 | 1808 | ||
@@ -1982,6 +1954,10 @@ msgid "image" | @@ -1982,6 +1954,10 @@ msgid "image" | ||
1982 | msgstr "" | 1954 | msgstr "" |
1983 | 1955 | ||
1984 | #: app/models/image.rb:- app/models/thumbnail.rb:- | 1956 | #: app/models/image.rb:- app/models/thumbnail.rb:- |
1957 | +msgid "Parent" | ||
1958 | +msgstr "" | ||
1959 | + | ||
1960 | +#: app/models/image.rb:- app/models/thumbnail.rb:- | ||
1985 | msgid "Content type" | 1961 | msgid "Content type" |
1986 | msgstr "" | 1962 | msgstr "" |
1987 | 1963 | ||
@@ -2005,8 +1981,8 @@ msgstr "" | @@ -2005,8 +1981,8 @@ msgstr "" | ||
2005 | msgid "Height" | 1981 | msgid "Height" |
2006 | msgstr "" | 1982 | msgstr "" |
2007 | 1983 | ||
2008 | -#: app/models/image.rb:18 app/models/uploaded_file.rb:21 | ||
2009 | -msgid "%{fn} of uploaded file was larger than the maximum size of %s" | 1984 | +#: app/models/image.rb:18 |
1985 | +msgid "%{fn} of uploaded file was larger than the maximum size of 500.0 KB" | ||
2010 | msgstr "" | 1986 | msgstr "" |
2011 | 1987 | ||
2012 | #: app/models/image_gallery.rb:8 | 1988 | #: app/models/image_gallery.rb:8 |
@@ -2313,6 +2289,10 @@ msgstr "" | @@ -2313,6 +2289,10 @@ msgstr "" | ||
2313 | msgid "A reference to another article published in another profile" | 2289 | msgid "A reference to another article published in another profile" |
2314 | msgstr "" | 2290 | msgstr "" |
2315 | 2291 | ||
2292 | +#: app/models/published_article.rb:31 | ||
2293 | +msgid "The original text was removed." | ||
2294 | +msgstr "" | ||
2295 | + | ||
2316 | #: app/models/contact.rb:- app/views/friends/index.rhtml:32 | 2296 | #: app/models/contact.rb:- app/views/friends/index.rhtml:32 |
2317 | #: app/views/friends/index.rhtml:35 | 2297 | #: app/views/friends/index.rhtml:35 |
2318 | msgid "contact" | 2298 | msgid "contact" |
@@ -2331,7 +2311,7 @@ msgstr "" | @@ -2331,7 +2311,7 @@ msgstr "" | ||
2331 | msgid "Receive a copy" | 2311 | msgid "Receive a copy" |
2332 | msgstr "" | 2312 | msgstr "" |
2333 | 2313 | ||
2334 | -#: app/models/contact.rb:13 app/views/contact/new.rhtml:13 | 2314 | +#: app/models/contact.rb:13 app/views/contact/new.rhtml:14 |
2335 | msgid "City and state" | 2315 | msgid "City and state" |
2336 | msgstr "" | 2316 | msgstr "" |
2337 | 2317 | ||
@@ -2547,6 +2527,10 @@ msgstr "" | @@ -2547,6 +2527,10 @@ msgstr "" | ||
2547 | msgid "This block presents the members of a collective." | 2527 | msgid "This block presents the members of a collective." |
2548 | msgstr "" | 2528 | msgstr "" |
2549 | 2529 | ||
2530 | +#: app/models/uploaded_file.rb:21 | ||
2531 | +msgid "%{fn} of uploaded file was larger than the maximum size of 5.0 MB" | ||
2532 | +msgstr "" | ||
2533 | + | ||
2550 | #: app/models/uploaded_file.rb:32 | 2534 | #: app/models/uploaded_file.rb:32 |
2551 | msgid "Uploaded file" | 2535 | msgid "Uploaded file" |
2552 | msgstr "" | 2536 | msgstr "" |
@@ -2758,16 +2742,16 @@ msgstr "" | @@ -2758,16 +2742,16 @@ msgstr "" | ||
2758 | msgid "Most commented articles" | 2742 | msgid "Most commented articles" |
2759 | msgstr "" | 2743 | msgstr "" |
2760 | 2744 | ||
2761 | -#: app/controllers/public/contact_controller.rb:11 | ||
2762 | -#: app/controllers/public/contact_controller.rb:12 | 2745 | +#: app/controllers/public/contact_controller.rb:13 |
2746 | +#: app/controllers/public/contact_controller.rb:14 | ||
2763 | msgid "Missing" | 2747 | msgid "Missing" |
2764 | msgstr "" | 2748 | msgstr "" |
2765 | 2749 | ||
2766 | -#: app/controllers/public/contact_controller.rb:14 | 2750 | +#: app/controllers/public/contact_controller.rb:16 |
2767 | msgid "Contact successfully sent" | 2751 | msgid "Contact successfully sent" |
2768 | msgstr "" | 2752 | msgstr "" |
2769 | 2753 | ||
2770 | -#: app/controllers/public/contact_controller.rb:17 | 2754 | +#: app/controllers/public/contact_controller.rb:19 |
2771 | msgid "Contact not sent" | 2755 | msgid "Contact not sent" |
2772 | msgstr "" | 2756 | msgstr "" |
2773 | 2757 | ||
@@ -3500,7 +3484,7 @@ msgstr "" | @@ -3500,7 +3484,7 @@ msgstr "" | ||
3500 | msgid "Post a comment" | 3484 | msgid "Post a comment" |
3501 | msgstr "" | 3485 | msgstr "" |
3502 | 3486 | ||
3503 | -#: app/views/content_viewer/_comment_form.rhtml:27 | 3487 | +#: app/views/content_viewer/_comment_form.rhtml:28 |
3504 | msgid "e-mail" | 3488 | msgid "e-mail" |
3505 | msgstr "" | 3489 | msgstr "" |
3506 | 3490 | ||
@@ -4077,7 +4061,7 @@ msgstr "" | @@ -4077,7 +4061,7 @@ msgstr "" | ||
4077 | msgid "Contact %s" | 4061 | msgid "Contact %s" |
4078 | msgstr "" | 4062 | msgstr "" |
4079 | 4063 | ||
4080 | -#: app/views/contact/new.rhtml:17 | 4064 | +#: app/views/contact/new.rhtml:18 |
4081 | msgid "I want to receive a copy of the message in my e-mail." | 4065 | msgid "I want to receive a copy of the message in my e-mail." |
4082 | msgstr "" | 4066 | msgstr "" |
4083 | 4067 | ||
@@ -5339,37 +5323,37 @@ msgid "" | @@ -5339,37 +5323,37 @@ msgid "" | ||
5339 | "password!</b>\" link. ;-)" | 5323 | "password!</b>\" link. ;-)" |
5340 | msgstr "" | 5324 | msgstr "" |
5341 | 5325 | ||
5342 | -#: app/views/account/_signup_form.rhtml:24 | 5326 | +#: app/views/account/_signup_form.rhtml:25 |
5343 | msgid "This e-mail address will be used to contact you." | 5327 | msgid "This e-mail address will be used to contact you." |
5344 | msgstr "" | 5328 | msgstr "" |
5345 | 5329 | ||
5346 | -#: app/views/account/_signup_form.rhtml:29 | 5330 | +#: app/views/account/_signup_form.rhtml:30 |
5347 | msgid "Insert your login" | 5331 | msgid "Insert your login" |
5348 | msgstr "" | 5332 | msgstr "" |
5349 | 5333 | ||
5350 | -#: app/views/account/_signup_form.rhtml:39 | 5334 | +#: app/views/account/_signup_form.rhtml:40 |
5351 | msgid "Choose a password that you can remember easily." | 5335 | msgid "Choose a password that you can remember easily." |
5352 | msgstr "" | 5336 | msgstr "" |
5353 | 5337 | ||
5354 | -#: app/views/account/_signup_form.rhtml:44 | 5338 | +#: app/views/account/_signup_form.rhtml:45 |
5355 | msgid "To confirm, repeat your password." | 5339 | msgid "To confirm, repeat your password." |
5356 | msgstr "" | 5340 | msgstr "" |
5357 | 5341 | ||
5358 | -#: app/views/account/_signup_form.rhtml:54 | 5342 | +#: app/views/account/_signup_form.rhtml:53 |
5359 | msgid "" | 5343 | msgid "" |
5360 | "By clicking on 'I accept the terms of use' below you are agreeing to the %s" | 5344 | "By clicking on 'I accept the terms of use' below you are agreeing to the %s" |
5361 | msgstr "" | 5345 | msgstr "" |
5362 | 5346 | ||
5363 | -#: app/views/account/_signup_form.rhtml:61 | 5347 | +#: app/views/account/_signup_form.rhtml:60 |
5364 | msgid "Hide" | 5348 | msgid "Hide" |
5365 | msgstr "" | 5349 | msgstr "" |
5366 | 5350 | ||
5367 | -#: app/views/account/_signup_form.rhtml:65 | 5351 | +#: app/views/account/_signup_form.rhtml:64 |
5368 | msgid "I accept the terms of use" | 5352 | msgid "I accept the terms of use" |
5369 | msgstr "" | 5353 | msgstr "" |
5370 | 5354 | ||
5371 | -#: app/views/account/_signup_form.rhtml:77 | ||
5372 | -#: app/views/account/_signup_form.rhtml:79 | 5355 | +#: app/views/account/_signup_form.rhtml:76 |
5356 | +#: app/views/account/_signup_form.rhtml:78 | ||
5373 | msgid "Sign up" | 5357 | msgid "Sign up" |
5374 | msgstr "" | 5358 | msgstr "" |
5375 | 5359 |
po/nl/noosfero.po
@@ -6,8 +6,8 @@ | @@ -6,8 +6,8 @@ | ||
6 | #, fuzzy | 6 | #, fuzzy |
7 | msgid "" | 7 | msgid "" |
8 | msgstr "" | 8 | msgstr "" |
9 | -"Project-Id-Version: noosfero 0.18.2\n" | ||
10 | -"POT-Creation-Date: 2009-06-20 02:04-0300\n" | 9 | +"Project-Id-Version: noosfero 0.18.4\n" |
10 | +"POT-Creation-Date: 2009-07-20 11:40-0300\n" | ||
11 | "PO-Revision-Date: 2007-08-30 18:47-0300\n" | 11 | "PO-Revision-Date: 2007-08-30 18:47-0300\n" |
12 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | 12 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
13 | "Language-Team: LANGUAGE <LL@li.org>\n" | 13 | "Language-Team: LANGUAGE <LL@li.org>\n" |
@@ -1211,8 +1211,8 @@ msgstr "" | @@ -1211,8 +1211,8 @@ msgstr "" | ||
1211 | msgid "Code" | 1211 | msgid "Code" |
1212 | msgstr "" | 1212 | msgstr "" |
1213 | 1213 | ||
1214 | -#: app/models/task.rb:- app/models/profile.rb:- app/models/category.rb:- | ||
1215 | -#: app/models/block.rb:- app/views/cms/view.rhtml:29 | 1214 | +#: app/models/task.rb:- app/models/profile.rb:- app/models/block.rb:- |
1215 | +#: app/views/cms/view.rhtml:29 | ||
1216 | msgid "Type" | 1216 | msgid "Type" |
1217 | msgstr "" | 1217 | msgstr "" |
1218 | 1218 | ||
@@ -1259,7 +1259,7 @@ msgstr "" | @@ -1259,7 +1259,7 @@ msgstr "" | ||
1259 | msgid "Save" | 1259 | msgid "Save" |
1260 | msgstr "" | 1260 | msgstr "" |
1261 | 1261 | ||
1262 | -#: app/models/link_list_block.rb:7 app/views/contact/new.rhtml:21 | 1262 | +#: app/models/link_list_block.rb:7 app/views/contact/new.rhtml:20 |
1263 | #: app/views/tasks/new.rhtml:15 | 1263 | #: app/views/tasks/new.rhtml:15 |
1264 | msgid "Send" | 1264 | msgid "Send" |
1265 | msgstr "" | 1265 | msgstr "" |
@@ -1525,12 +1525,12 @@ msgstr "" | @@ -1525,12 +1525,12 @@ msgstr "" | ||
1525 | msgid "profile" | 1525 | msgid "profile" |
1526 | msgstr "" | 1526 | msgstr "" |
1527 | 1527 | ||
1528 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/comment.rb:- | 1528 | +#: app/models/profile.rb:- app/models/comment.rb:- |
1529 | #: app/models/create_enterprise.rb:4 app/models/product.rb:- | 1529 | #: app/models/create_enterprise.rb:4 app/models/product.rb:- |
1530 | #: app/models/domain.rb:- app/models/contact.rb:- app/models/contact.rb:13 | 1530 | #: app/models/domain.rb:- app/models/contact.rb:- app/models/contact.rb:13 |
1531 | #: app/models/environment.rb:- | 1531 | #: app/models/environment.rb:- |
1532 | #: app/views/box_organizer/_link_list_block.rhtml:4 | 1532 | #: app/views/box_organizer/_link_list_block.rhtml:4 |
1533 | -#: app/views/content_viewer/_comment_form.rhtml:26 | 1533 | +#: app/views/content_viewer/_comment_form.rhtml:27 |
1534 | #: app/views/enterprise_editor/_form.rhtml:1 | 1534 | #: app/views/enterprise_editor/_form.rhtml:1 |
1535 | #: app/views/enterprise_validation/_details.rhtml:3 | 1535 | #: app/views/enterprise_validation/_details.rhtml:3 |
1536 | #: app/views/cms/view.rhtml:28 | 1536 | #: app/views/cms/view.rhtml:28 |
@@ -1542,7 +1542,7 @@ msgstr "" | @@ -1542,7 +1542,7 @@ msgstr "" | ||
1542 | msgid "Identifier" | 1542 | msgid "Identifier" |
1543 | msgstr "" | 1543 | msgstr "" |
1544 | 1544 | ||
1545 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/user.rb:- | 1545 | +#: app/models/profile.rb:- app/models/user.rb:- |
1546 | msgid "Environment" | 1546 | msgid "Environment" |
1547 | msgstr "" | 1547 | msgstr "" |
1548 | 1548 | ||
@@ -1558,11 +1558,11 @@ msgstr "" | @@ -1558,11 +1558,11 @@ msgstr "" | ||
1558 | msgid "User" | 1558 | msgid "User" |
1559 | msgstr "" | 1559 | msgstr "" |
1560 | 1560 | ||
1561 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/product.rb:- | 1561 | +#: app/models/profile.rb:- app/models/product.rb:- |
1562 | msgid "Lat" | 1562 | msgid "Lat" |
1563 | msgstr "" | 1563 | msgstr "" |
1564 | 1564 | ||
1565 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/product.rb:- | 1565 | +#: app/models/profile.rb:- app/models/product.rb:- |
1566 | msgid "Lng" | 1566 | msgid "Lng" |
1567 | msgstr "" | 1567 | msgstr "" |
1568 | 1568 | ||
@@ -1672,34 +1672,6 @@ msgstr "" | @@ -1672,34 +1672,6 @@ msgstr "" | ||
1672 | msgid "%s can't has moderators" | 1672 | msgid "%s can't has moderators" |
1673 | msgstr "" | 1673 | msgstr "" |
1674 | 1674 | ||
1675 | -#: app/models/category.rb:- | ||
1676 | -msgid "category" | ||
1677 | -msgstr "" | ||
1678 | - | ||
1679 | -#: app/models/category.rb:- | ||
1680 | -msgid "Slug" | ||
1681 | -msgstr "" | ||
1682 | - | ||
1683 | -#: app/models/category.rb:- | ||
1684 | -msgid "Path" | ||
1685 | -msgstr "" | ||
1686 | - | ||
1687 | -#: app/models/category.rb:- | ||
1688 | -msgid "Display color" | ||
1689 | -msgstr "" | ||
1690 | - | ||
1691 | -#: app/models/category.rb:- app/models/image.rb:- app/models/thumbnail.rb:- | ||
1692 | -msgid "Parent" | ||
1693 | -msgstr "" | ||
1694 | - | ||
1695 | -#: app/models/category.rb:- | ||
1696 | -msgid "Display in menu" | ||
1697 | -msgstr "" | ||
1698 | - | ||
1699 | -#: app/models/category.rb:- | ||
1700 | -msgid "Children count" | ||
1701 | -msgstr "" | ||
1702 | - | ||
1703 | #: app/models/category.rb:3 | 1675 | #: app/models/category.rb:3 |
1704 | msgid "%{fn} cannot be like that." | 1676 | msgid "%{fn} cannot be like that." |
1705 | msgstr "" | 1677 | msgstr "" |
@@ -1830,7 +1802,7 @@ msgstr "" | @@ -1830,7 +1802,7 @@ msgstr "" | ||
1830 | msgid "Remember token expires at" | 1802 | msgid "Remember token expires at" |
1831 | msgstr "" | 1803 | msgstr "" |
1832 | 1804 | ||
1833 | -#: app/models/user.rb:- app/views/account/_signup_form.rhtml:55 | 1805 | +#: app/models/user.rb:- app/views/account/_signup_form.rhtml:54 |
1834 | msgid "Terms of use" | 1806 | msgid "Terms of use" |
1835 | msgstr "" | 1807 | msgstr "" |
1836 | 1808 | ||
@@ -1982,6 +1954,10 @@ msgid "image" | @@ -1982,6 +1954,10 @@ msgid "image" | ||
1982 | msgstr "" | 1954 | msgstr "" |
1983 | 1955 | ||
1984 | #: app/models/image.rb:- app/models/thumbnail.rb:- | 1956 | #: app/models/image.rb:- app/models/thumbnail.rb:- |
1957 | +msgid "Parent" | ||
1958 | +msgstr "" | ||
1959 | + | ||
1960 | +#: app/models/image.rb:- app/models/thumbnail.rb:- | ||
1985 | msgid "Content type" | 1961 | msgid "Content type" |
1986 | msgstr "" | 1962 | msgstr "" |
1987 | 1963 | ||
@@ -2005,8 +1981,8 @@ msgstr "" | @@ -2005,8 +1981,8 @@ msgstr "" | ||
2005 | msgid "Height" | 1981 | msgid "Height" |
2006 | msgstr "" | 1982 | msgstr "" |
2007 | 1983 | ||
2008 | -#: app/models/image.rb:18 app/models/uploaded_file.rb:21 | ||
2009 | -msgid "%{fn} of uploaded file was larger than the maximum size of %s" | 1984 | +#: app/models/image.rb:18 |
1985 | +msgid "%{fn} of uploaded file was larger than the maximum size of 500.0 KB" | ||
2010 | msgstr "" | 1986 | msgstr "" |
2011 | 1987 | ||
2012 | #: app/models/image_gallery.rb:8 | 1988 | #: app/models/image_gallery.rb:8 |
@@ -2313,6 +2289,10 @@ msgstr "" | @@ -2313,6 +2289,10 @@ msgstr "" | ||
2313 | msgid "A reference to another article published in another profile" | 2289 | msgid "A reference to another article published in another profile" |
2314 | msgstr "" | 2290 | msgstr "" |
2315 | 2291 | ||
2292 | +#: app/models/published_article.rb:31 | ||
2293 | +msgid "The original text was removed." | ||
2294 | +msgstr "" | ||
2295 | + | ||
2316 | #: app/models/contact.rb:- app/views/friends/index.rhtml:32 | 2296 | #: app/models/contact.rb:- app/views/friends/index.rhtml:32 |
2317 | #: app/views/friends/index.rhtml:35 | 2297 | #: app/views/friends/index.rhtml:35 |
2318 | msgid "contact" | 2298 | msgid "contact" |
@@ -2331,7 +2311,7 @@ msgstr "" | @@ -2331,7 +2311,7 @@ msgstr "" | ||
2331 | msgid "Receive a copy" | 2311 | msgid "Receive a copy" |
2332 | msgstr "" | 2312 | msgstr "" |
2333 | 2313 | ||
2334 | -#: app/models/contact.rb:13 app/views/contact/new.rhtml:13 | 2314 | +#: app/models/contact.rb:13 app/views/contact/new.rhtml:14 |
2335 | msgid "City and state" | 2315 | msgid "City and state" |
2336 | msgstr "" | 2316 | msgstr "" |
2337 | 2317 | ||
@@ -2547,6 +2527,10 @@ msgstr "" | @@ -2547,6 +2527,10 @@ msgstr "" | ||
2547 | msgid "This block presents the members of a collective." | 2527 | msgid "This block presents the members of a collective." |
2548 | msgstr "" | 2528 | msgstr "" |
2549 | 2529 | ||
2530 | +#: app/models/uploaded_file.rb:21 | ||
2531 | +msgid "%{fn} of uploaded file was larger than the maximum size of 5.0 MB" | ||
2532 | +msgstr "" | ||
2533 | + | ||
2550 | #: app/models/uploaded_file.rb:32 | 2534 | #: app/models/uploaded_file.rb:32 |
2551 | msgid "Uploaded file" | 2535 | msgid "Uploaded file" |
2552 | msgstr "" | 2536 | msgstr "" |
@@ -2758,16 +2742,16 @@ msgstr "" | @@ -2758,16 +2742,16 @@ msgstr "" | ||
2758 | msgid "Most commented articles" | 2742 | msgid "Most commented articles" |
2759 | msgstr "" | 2743 | msgstr "" |
2760 | 2744 | ||
2761 | -#: app/controllers/public/contact_controller.rb:11 | ||
2762 | -#: app/controllers/public/contact_controller.rb:12 | 2745 | +#: app/controllers/public/contact_controller.rb:13 |
2746 | +#: app/controllers/public/contact_controller.rb:14 | ||
2763 | msgid "Missing" | 2747 | msgid "Missing" |
2764 | msgstr "" | 2748 | msgstr "" |
2765 | 2749 | ||
2766 | -#: app/controllers/public/contact_controller.rb:14 | 2750 | +#: app/controllers/public/contact_controller.rb:16 |
2767 | msgid "Contact successfully sent" | 2751 | msgid "Contact successfully sent" |
2768 | msgstr "" | 2752 | msgstr "" |
2769 | 2753 | ||
2770 | -#: app/controllers/public/contact_controller.rb:17 | 2754 | +#: app/controllers/public/contact_controller.rb:19 |
2771 | msgid "Contact not sent" | 2755 | msgid "Contact not sent" |
2772 | msgstr "" | 2756 | msgstr "" |
2773 | 2757 | ||
@@ -3500,7 +3484,7 @@ msgstr "" | @@ -3500,7 +3484,7 @@ msgstr "" | ||
3500 | msgid "Post a comment" | 3484 | msgid "Post a comment" |
3501 | msgstr "" | 3485 | msgstr "" |
3502 | 3486 | ||
3503 | -#: app/views/content_viewer/_comment_form.rhtml:27 | 3487 | +#: app/views/content_viewer/_comment_form.rhtml:28 |
3504 | msgid "e-mail" | 3488 | msgid "e-mail" |
3505 | msgstr "" | 3489 | msgstr "" |
3506 | 3490 | ||
@@ -4077,7 +4061,7 @@ msgstr "" | @@ -4077,7 +4061,7 @@ msgstr "" | ||
4077 | msgid "Contact %s" | 4061 | msgid "Contact %s" |
4078 | msgstr "" | 4062 | msgstr "" |
4079 | 4063 | ||
4080 | -#: app/views/contact/new.rhtml:17 | 4064 | +#: app/views/contact/new.rhtml:18 |
4081 | msgid "I want to receive a copy of the message in my e-mail." | 4065 | msgid "I want to receive a copy of the message in my e-mail." |
4082 | msgstr "" | 4066 | msgstr "" |
4083 | 4067 | ||
@@ -5339,37 +5323,37 @@ msgid "" | @@ -5339,37 +5323,37 @@ msgid "" | ||
5339 | "password!</b>\" link. ;-)" | 5323 | "password!</b>\" link. ;-)" |
5340 | msgstr "" | 5324 | msgstr "" |
5341 | 5325 | ||
5342 | -#: app/views/account/_signup_form.rhtml:24 | 5326 | +#: app/views/account/_signup_form.rhtml:25 |
5343 | msgid "This e-mail address will be used to contact you." | 5327 | msgid "This e-mail address will be used to contact you." |
5344 | msgstr "" | 5328 | msgstr "" |
5345 | 5329 | ||
5346 | -#: app/views/account/_signup_form.rhtml:29 | 5330 | +#: app/views/account/_signup_form.rhtml:30 |
5347 | msgid "Insert your login" | 5331 | msgid "Insert your login" |
5348 | msgstr "" | 5332 | msgstr "" |
5349 | 5333 | ||
5350 | -#: app/views/account/_signup_form.rhtml:39 | 5334 | +#: app/views/account/_signup_form.rhtml:40 |
5351 | msgid "Choose a password that you can remember easily." | 5335 | msgid "Choose a password that you can remember easily." |
5352 | msgstr "" | 5336 | msgstr "" |
5353 | 5337 | ||
5354 | -#: app/views/account/_signup_form.rhtml:44 | 5338 | +#: app/views/account/_signup_form.rhtml:45 |
5355 | msgid "To confirm, repeat your password." | 5339 | msgid "To confirm, repeat your password." |
5356 | msgstr "" | 5340 | msgstr "" |
5357 | 5341 | ||
5358 | -#: app/views/account/_signup_form.rhtml:54 | 5342 | +#: app/views/account/_signup_form.rhtml:53 |
5359 | msgid "" | 5343 | msgid "" |
5360 | "By clicking on 'I accept the terms of use' below you are agreeing to the %s" | 5344 | "By clicking on 'I accept the terms of use' below you are agreeing to the %s" |
5361 | msgstr "" | 5345 | msgstr "" |
5362 | 5346 | ||
5363 | -#: app/views/account/_signup_form.rhtml:61 | 5347 | +#: app/views/account/_signup_form.rhtml:60 |
5364 | msgid "Hide" | 5348 | msgid "Hide" |
5365 | msgstr "" | 5349 | msgstr "" |
5366 | 5350 | ||
5367 | -#: app/views/account/_signup_form.rhtml:65 | 5351 | +#: app/views/account/_signup_form.rhtml:64 |
5368 | msgid "I accept the terms of use" | 5352 | msgid "I accept the terms of use" |
5369 | msgstr "" | 5353 | msgstr "" |
5370 | 5354 | ||
5371 | -#: app/views/account/_signup_form.rhtml:77 | ||
5372 | -#: app/views/account/_signup_form.rhtml:79 | 5355 | +#: app/views/account/_signup_form.rhtml:76 |
5356 | +#: app/views/account/_signup_form.rhtml:78 | ||
5373 | msgid "Sign up" | 5357 | msgid "Sign up" |
5374 | msgstr "" | 5358 | msgstr "" |
5375 | 5359 |
po/noosfero.pot
@@ -6,8 +6,8 @@ | @@ -6,8 +6,8 @@ | ||
6 | #, fuzzy | 6 | #, fuzzy |
7 | msgid "" | 7 | msgid "" |
8 | msgstr "" | 8 | msgstr "" |
9 | -"Project-Id-Version: noosfero 0.18.2\n" | ||
10 | -"POT-Creation-Date: 2009-06-20 02:04-0300\n" | 9 | +"Project-Id-Version: noosfero 0.18.4\n" |
10 | +"POT-Creation-Date: 2009-07-20 11:40-0300\n" | ||
11 | "PO-Revision-Date: 2007-08-30 18:47-0300\n" | 11 | "PO-Revision-Date: 2007-08-30 18:47-0300\n" |
12 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | 12 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
13 | "Language-Team: LANGUAGE <LL@li.org>\n" | 13 | "Language-Team: LANGUAGE <LL@li.org>\n" |
@@ -1211,8 +1211,8 @@ msgstr "" | @@ -1211,8 +1211,8 @@ msgstr "" | ||
1211 | msgid "Code" | 1211 | msgid "Code" |
1212 | msgstr "" | 1212 | msgstr "" |
1213 | 1213 | ||
1214 | -#: app/models/task.rb:- app/models/profile.rb:- app/models/category.rb:- | ||
1215 | -#: app/models/block.rb:- app/views/cms/view.rhtml:29 | 1214 | +#: app/models/task.rb:- app/models/profile.rb:- app/models/block.rb:- |
1215 | +#: app/views/cms/view.rhtml:29 | ||
1216 | msgid "Type" | 1216 | msgid "Type" |
1217 | msgstr "" | 1217 | msgstr "" |
1218 | 1218 | ||
@@ -1259,7 +1259,7 @@ msgstr "" | @@ -1259,7 +1259,7 @@ msgstr "" | ||
1259 | msgid "Save" | 1259 | msgid "Save" |
1260 | msgstr "" | 1260 | msgstr "" |
1261 | 1261 | ||
1262 | -#: app/models/link_list_block.rb:7 app/views/contact/new.rhtml:21 | 1262 | +#: app/models/link_list_block.rb:7 app/views/contact/new.rhtml:20 |
1263 | #: app/views/tasks/new.rhtml:15 | 1263 | #: app/views/tasks/new.rhtml:15 |
1264 | msgid "Send" | 1264 | msgid "Send" |
1265 | msgstr "" | 1265 | msgstr "" |
@@ -1525,12 +1525,12 @@ msgstr "" | @@ -1525,12 +1525,12 @@ msgstr "" | ||
1525 | msgid "profile" | 1525 | msgid "profile" |
1526 | msgstr "" | 1526 | msgstr "" |
1527 | 1527 | ||
1528 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/comment.rb:- | 1528 | +#: app/models/profile.rb:- app/models/comment.rb:- |
1529 | #: app/models/create_enterprise.rb:4 app/models/product.rb:- | 1529 | #: app/models/create_enterprise.rb:4 app/models/product.rb:- |
1530 | #: app/models/domain.rb:- app/models/contact.rb:- app/models/contact.rb:13 | 1530 | #: app/models/domain.rb:- app/models/contact.rb:- app/models/contact.rb:13 |
1531 | #: app/models/environment.rb:- | 1531 | #: app/models/environment.rb:- |
1532 | #: app/views/box_organizer/_link_list_block.rhtml:4 | 1532 | #: app/views/box_organizer/_link_list_block.rhtml:4 |
1533 | -#: app/views/content_viewer/_comment_form.rhtml:26 | 1533 | +#: app/views/content_viewer/_comment_form.rhtml:27 |
1534 | #: app/views/enterprise_editor/_form.rhtml:1 | 1534 | #: app/views/enterprise_editor/_form.rhtml:1 |
1535 | #: app/views/enterprise_validation/_details.rhtml:3 | 1535 | #: app/views/enterprise_validation/_details.rhtml:3 |
1536 | #: app/views/cms/view.rhtml:28 | 1536 | #: app/views/cms/view.rhtml:28 |
@@ -1542,7 +1542,7 @@ msgstr "" | @@ -1542,7 +1542,7 @@ msgstr "" | ||
1542 | msgid "Identifier" | 1542 | msgid "Identifier" |
1543 | msgstr "" | 1543 | msgstr "" |
1544 | 1544 | ||
1545 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/user.rb:- | 1545 | +#: app/models/profile.rb:- app/models/user.rb:- |
1546 | msgid "Environment" | 1546 | msgid "Environment" |
1547 | msgstr "" | 1547 | msgstr "" |
1548 | 1548 | ||
@@ -1558,11 +1558,11 @@ msgstr "" | @@ -1558,11 +1558,11 @@ msgstr "" | ||
1558 | msgid "User" | 1558 | msgid "User" |
1559 | msgstr "" | 1559 | msgstr "" |
1560 | 1560 | ||
1561 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/product.rb:- | 1561 | +#: app/models/profile.rb:- app/models/product.rb:- |
1562 | msgid "Lat" | 1562 | msgid "Lat" |
1563 | msgstr "" | 1563 | msgstr "" |
1564 | 1564 | ||
1565 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/product.rb:- | 1565 | +#: app/models/profile.rb:- app/models/product.rb:- |
1566 | msgid "Lng" | 1566 | msgid "Lng" |
1567 | msgstr "" | 1567 | msgstr "" |
1568 | 1568 | ||
@@ -1672,34 +1672,6 @@ msgstr "" | @@ -1672,34 +1672,6 @@ msgstr "" | ||
1672 | msgid "%s can't has moderators" | 1672 | msgid "%s can't has moderators" |
1673 | msgstr "" | 1673 | msgstr "" |
1674 | 1674 | ||
1675 | -#: app/models/category.rb:- | ||
1676 | -msgid "category" | ||
1677 | -msgstr "" | ||
1678 | - | ||
1679 | -#: app/models/category.rb:- | ||
1680 | -msgid "Slug" | ||
1681 | -msgstr "" | ||
1682 | - | ||
1683 | -#: app/models/category.rb:- | ||
1684 | -msgid "Path" | ||
1685 | -msgstr "" | ||
1686 | - | ||
1687 | -#: app/models/category.rb:- | ||
1688 | -msgid "Display color" | ||
1689 | -msgstr "" | ||
1690 | - | ||
1691 | -#: app/models/category.rb:- app/models/image.rb:- app/models/thumbnail.rb:- | ||
1692 | -msgid "Parent" | ||
1693 | -msgstr "" | ||
1694 | - | ||
1695 | -#: app/models/category.rb:- | ||
1696 | -msgid "Display in menu" | ||
1697 | -msgstr "" | ||
1698 | - | ||
1699 | -#: app/models/category.rb:- | ||
1700 | -msgid "Children count" | ||
1701 | -msgstr "" | ||
1702 | - | ||
1703 | #: app/models/category.rb:3 | 1675 | #: app/models/category.rb:3 |
1704 | msgid "%{fn} cannot be like that." | 1676 | msgid "%{fn} cannot be like that." |
1705 | msgstr "" | 1677 | msgstr "" |
@@ -1830,7 +1802,7 @@ msgstr "" | @@ -1830,7 +1802,7 @@ msgstr "" | ||
1830 | msgid "Remember token expires at" | 1802 | msgid "Remember token expires at" |
1831 | msgstr "" | 1803 | msgstr "" |
1832 | 1804 | ||
1833 | -#: app/models/user.rb:- app/views/account/_signup_form.rhtml:55 | 1805 | +#: app/models/user.rb:- app/views/account/_signup_form.rhtml:54 |
1834 | msgid "Terms of use" | 1806 | msgid "Terms of use" |
1835 | msgstr "" | 1807 | msgstr "" |
1836 | 1808 | ||
@@ -1982,6 +1954,10 @@ msgid "image" | @@ -1982,6 +1954,10 @@ msgid "image" | ||
1982 | msgstr "" | 1954 | msgstr "" |
1983 | 1955 | ||
1984 | #: app/models/image.rb:- app/models/thumbnail.rb:- | 1956 | #: app/models/image.rb:- app/models/thumbnail.rb:- |
1957 | +msgid "Parent" | ||
1958 | +msgstr "" | ||
1959 | + | ||
1960 | +#: app/models/image.rb:- app/models/thumbnail.rb:- | ||
1985 | msgid "Content type" | 1961 | msgid "Content type" |
1986 | msgstr "" | 1962 | msgstr "" |
1987 | 1963 | ||
@@ -2005,8 +1981,8 @@ msgstr "" | @@ -2005,8 +1981,8 @@ msgstr "" | ||
2005 | msgid "Height" | 1981 | msgid "Height" |
2006 | msgstr "" | 1982 | msgstr "" |
2007 | 1983 | ||
2008 | -#: app/models/image.rb:18 app/models/uploaded_file.rb:21 | ||
2009 | -msgid "%{fn} of uploaded file was larger than the maximum size of %s" | 1984 | +#: app/models/image.rb:18 |
1985 | +msgid "%{fn} of uploaded file was larger than the maximum size of 500.0 KB" | ||
2010 | msgstr "" | 1986 | msgstr "" |
2011 | 1987 | ||
2012 | #: app/models/image_gallery.rb:8 | 1988 | #: app/models/image_gallery.rb:8 |
@@ -2313,6 +2289,10 @@ msgstr "" | @@ -2313,6 +2289,10 @@ msgstr "" | ||
2313 | msgid "A reference to another article published in another profile" | 2289 | msgid "A reference to another article published in another profile" |
2314 | msgstr "" | 2290 | msgstr "" |
2315 | 2291 | ||
2292 | +#: app/models/published_article.rb:31 | ||
2293 | +msgid "The original text was removed." | ||
2294 | +msgstr "" | ||
2295 | + | ||
2316 | #: app/models/contact.rb:- app/views/friends/index.rhtml:32 | 2296 | #: app/models/contact.rb:- app/views/friends/index.rhtml:32 |
2317 | #: app/views/friends/index.rhtml:35 | 2297 | #: app/views/friends/index.rhtml:35 |
2318 | msgid "contact" | 2298 | msgid "contact" |
@@ -2331,7 +2311,7 @@ msgstr "" | @@ -2331,7 +2311,7 @@ msgstr "" | ||
2331 | msgid "Receive a copy" | 2311 | msgid "Receive a copy" |
2332 | msgstr "" | 2312 | msgstr "" |
2333 | 2313 | ||
2334 | -#: app/models/contact.rb:13 app/views/contact/new.rhtml:13 | 2314 | +#: app/models/contact.rb:13 app/views/contact/new.rhtml:14 |
2335 | msgid "City and state" | 2315 | msgid "City and state" |
2336 | msgstr "" | 2316 | msgstr "" |
2337 | 2317 | ||
@@ -2547,6 +2527,10 @@ msgstr "" | @@ -2547,6 +2527,10 @@ msgstr "" | ||
2547 | msgid "This block presents the members of a collective." | 2527 | msgid "This block presents the members of a collective." |
2548 | msgstr "" | 2528 | msgstr "" |
2549 | 2529 | ||
2530 | +#: app/models/uploaded_file.rb:21 | ||
2531 | +msgid "%{fn} of uploaded file was larger than the maximum size of 5.0 MB" | ||
2532 | +msgstr "" | ||
2533 | + | ||
2550 | #: app/models/uploaded_file.rb:32 | 2534 | #: app/models/uploaded_file.rb:32 |
2551 | msgid "Uploaded file" | 2535 | msgid "Uploaded file" |
2552 | msgstr "" | 2536 | msgstr "" |
@@ -2758,16 +2742,16 @@ msgstr "" | @@ -2758,16 +2742,16 @@ msgstr "" | ||
2758 | msgid "Most commented articles" | 2742 | msgid "Most commented articles" |
2759 | msgstr "" | 2743 | msgstr "" |
2760 | 2744 | ||
2761 | -#: app/controllers/public/contact_controller.rb:11 | ||
2762 | -#: app/controllers/public/contact_controller.rb:12 | 2745 | +#: app/controllers/public/contact_controller.rb:13 |
2746 | +#: app/controllers/public/contact_controller.rb:14 | ||
2763 | msgid "Missing" | 2747 | msgid "Missing" |
2764 | msgstr "" | 2748 | msgstr "" |
2765 | 2749 | ||
2766 | -#: app/controllers/public/contact_controller.rb:14 | 2750 | +#: app/controllers/public/contact_controller.rb:16 |
2767 | msgid "Contact successfully sent" | 2751 | msgid "Contact successfully sent" |
2768 | msgstr "" | 2752 | msgstr "" |
2769 | 2753 | ||
2770 | -#: app/controllers/public/contact_controller.rb:17 | 2754 | +#: app/controllers/public/contact_controller.rb:19 |
2771 | msgid "Contact not sent" | 2755 | msgid "Contact not sent" |
2772 | msgstr "" | 2756 | msgstr "" |
2773 | 2757 | ||
@@ -3500,7 +3484,7 @@ msgstr "" | @@ -3500,7 +3484,7 @@ msgstr "" | ||
3500 | msgid "Post a comment" | 3484 | msgid "Post a comment" |
3501 | msgstr "" | 3485 | msgstr "" |
3502 | 3486 | ||
3503 | -#: app/views/content_viewer/_comment_form.rhtml:27 | 3487 | +#: app/views/content_viewer/_comment_form.rhtml:28 |
3504 | msgid "e-mail" | 3488 | msgid "e-mail" |
3505 | msgstr "" | 3489 | msgstr "" |
3506 | 3490 | ||
@@ -4077,7 +4061,7 @@ msgstr "" | @@ -4077,7 +4061,7 @@ msgstr "" | ||
4077 | msgid "Contact %s" | 4061 | msgid "Contact %s" |
4078 | msgstr "" | 4062 | msgstr "" |
4079 | 4063 | ||
4080 | -#: app/views/contact/new.rhtml:17 | 4064 | +#: app/views/contact/new.rhtml:18 |
4081 | msgid "I want to receive a copy of the message in my e-mail." | 4065 | msgid "I want to receive a copy of the message in my e-mail." |
4082 | msgstr "" | 4066 | msgstr "" |
4083 | 4067 | ||
@@ -5339,37 +5323,37 @@ msgid "" | @@ -5339,37 +5323,37 @@ msgid "" | ||
5339 | "password!</b>\" link. ;-)" | 5323 | "password!</b>\" link. ;-)" |
5340 | msgstr "" | 5324 | msgstr "" |
5341 | 5325 | ||
5342 | -#: app/views/account/_signup_form.rhtml:24 | 5326 | +#: app/views/account/_signup_form.rhtml:25 |
5343 | msgid "This e-mail address will be used to contact you." | 5327 | msgid "This e-mail address will be used to contact you." |
5344 | msgstr "" | 5328 | msgstr "" |
5345 | 5329 | ||
5346 | -#: app/views/account/_signup_form.rhtml:29 | 5330 | +#: app/views/account/_signup_form.rhtml:30 |
5347 | msgid "Insert your login" | 5331 | msgid "Insert your login" |
5348 | msgstr "" | 5332 | msgstr "" |
5349 | 5333 | ||
5350 | -#: app/views/account/_signup_form.rhtml:39 | 5334 | +#: app/views/account/_signup_form.rhtml:40 |
5351 | msgid "Choose a password that you can remember easily." | 5335 | msgid "Choose a password that you can remember easily." |
5352 | msgstr "" | 5336 | msgstr "" |
5353 | 5337 | ||
5354 | -#: app/views/account/_signup_form.rhtml:44 | 5338 | +#: app/views/account/_signup_form.rhtml:45 |
5355 | msgid "To confirm, repeat your password." | 5339 | msgid "To confirm, repeat your password." |
5356 | msgstr "" | 5340 | msgstr "" |
5357 | 5341 | ||
5358 | -#: app/views/account/_signup_form.rhtml:54 | 5342 | +#: app/views/account/_signup_form.rhtml:53 |
5359 | msgid "" | 5343 | msgid "" |
5360 | "By clicking on 'I accept the terms of use' below you are agreeing to the %s" | 5344 | "By clicking on 'I accept the terms of use' below you are agreeing to the %s" |
5361 | msgstr "" | 5345 | msgstr "" |
5362 | 5346 | ||
5363 | -#: app/views/account/_signup_form.rhtml:61 | 5347 | +#: app/views/account/_signup_form.rhtml:60 |
5364 | msgid "Hide" | 5348 | msgid "Hide" |
5365 | msgstr "" | 5349 | msgstr "" |
5366 | 5350 | ||
5367 | -#: app/views/account/_signup_form.rhtml:65 | 5351 | +#: app/views/account/_signup_form.rhtml:64 |
5368 | msgid "I accept the terms of use" | 5352 | msgid "I accept the terms of use" |
5369 | msgstr "" | 5353 | msgstr "" |
5370 | 5354 | ||
5371 | -#: app/views/account/_signup_form.rhtml:77 | ||
5372 | -#: app/views/account/_signup_form.rhtml:79 | 5355 | +#: app/views/account/_signup_form.rhtml:76 |
5356 | +#: app/views/account/_signup_form.rhtml:78 | ||
5373 | msgid "Sign up" | 5357 | msgid "Sign up" |
5374 | msgstr "" | 5358 | msgstr "" |
5375 | 5359 |
po/pt_BR/noosfero.po
@@ -11,9 +11,9 @@ | @@ -11,9 +11,9 @@ | ||
11 | # | 11 | # |
12 | msgid "" | 12 | msgid "" |
13 | msgstr "" | 13 | msgstr "" |
14 | -"Project-Id-Version: noosfero 0.18.2\n" | ||
15 | -"POT-Creation-Date: 2009-06-20 02:04-0300\n" | ||
16 | -"PO-Revision-Date: 2009-07-10 18:03-0300\n" | 14 | +"Project-Id-Version: noosfero 0.18.4\n" |
15 | +"POT-Creation-Date: 2009-07-20 11:40-0300\n" | ||
16 | +"PO-Revision-Date: 2009-07-20 11:43-0300\n" | ||
17 | "Last-Translator: Joenio Costa <joenio@colivre.coop.br>\n" | 17 | "Last-Translator: Joenio Costa <joenio@colivre.coop.br>\n" |
18 | "Language-Team: LANGUAGE <LL@li.org>\n" | 18 | "Language-Team: LANGUAGE <LL@li.org>\n" |
19 | "MIME-Version: 1.0\n" | 19 | "MIME-Version: 1.0\n" |
@@ -1223,8 +1223,8 @@ msgstr "Alvo" | @@ -1223,8 +1223,8 @@ msgstr "Alvo" | ||
1223 | msgid "Code" | 1223 | msgid "Code" |
1224 | msgstr "Código" | 1224 | msgstr "Código" |
1225 | 1225 | ||
1226 | -#: app/models/task.rb:- app/models/profile.rb:- app/models/category.rb:- | ||
1227 | -#: app/models/block.rb:- app/views/cms/view.rhtml:29 | 1226 | +#: app/models/task.rb:- app/models/profile.rb:- app/models/block.rb:- |
1227 | +#: app/views/cms/view.rhtml:29 | ||
1228 | msgid "Type" | 1228 | msgid "Type" |
1229 | msgstr "Tipo" | 1229 | msgstr "Tipo" |
1230 | 1230 | ||
@@ -1271,7 +1271,7 @@ msgstr "Novo" | @@ -1271,7 +1271,7 @@ msgstr "Novo" | ||
1271 | msgid "Save" | 1271 | msgid "Save" |
1272 | msgstr "Salvar" | 1272 | msgstr "Salvar" |
1273 | 1273 | ||
1274 | -#: app/models/link_list_block.rb:7 app/views/contact/new.rhtml:21 | 1274 | +#: app/models/link_list_block.rb:7 app/views/contact/new.rhtml:20 |
1275 | #: app/views/tasks/new.rhtml:15 | 1275 | #: app/views/tasks/new.rhtml:15 |
1276 | msgid "Send" | 1276 | msgid "Send" |
1277 | msgstr "Enviar" | 1277 | msgstr "Enviar" |
@@ -1546,12 +1546,12 @@ msgstr "Assinar feed RSS" | @@ -1546,12 +1546,12 @@ msgstr "Assinar feed RSS" | ||
1546 | msgid "profile" | 1546 | msgid "profile" |
1547 | msgstr "perfil" | 1547 | msgstr "perfil" |
1548 | 1548 | ||
1549 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/comment.rb:- | 1549 | +#: app/models/profile.rb:- app/models/comment.rb:- |
1550 | #: app/models/create_enterprise.rb:4 app/models/product.rb:- | 1550 | #: app/models/create_enterprise.rb:4 app/models/product.rb:- |
1551 | #: app/models/domain.rb:- app/models/contact.rb:- app/models/contact.rb:13 | 1551 | #: app/models/domain.rb:- app/models/contact.rb:- app/models/contact.rb:13 |
1552 | #: app/models/environment.rb:- | 1552 | #: app/models/environment.rb:- |
1553 | #: app/views/box_organizer/_link_list_block.rhtml:4 | 1553 | #: app/views/box_organizer/_link_list_block.rhtml:4 |
1554 | -#: app/views/content_viewer/_comment_form.rhtml:26 | 1554 | +#: app/views/content_viewer/_comment_form.rhtml:27 |
1555 | #: app/views/enterprise_editor/_form.rhtml:1 | 1555 | #: app/views/enterprise_editor/_form.rhtml:1 |
1556 | #: app/views/enterprise_validation/_details.rhtml:3 | 1556 | #: app/views/enterprise_validation/_details.rhtml:3 |
1557 | #: app/views/cms/view.rhtml:28 | 1557 | #: app/views/cms/view.rhtml:28 |
@@ -1563,7 +1563,7 @@ msgstr "Nome" | @@ -1563,7 +1563,7 @@ msgstr "Nome" | ||
1563 | msgid "Identifier" | 1563 | msgid "Identifier" |
1564 | msgstr "Identificador" | 1564 | msgstr "Identificador" |
1565 | 1565 | ||
1566 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/user.rb:- | 1566 | +#: app/models/profile.rb:- app/models/user.rb:- |
1567 | msgid "Environment" | 1567 | msgid "Environment" |
1568 | msgstr "Ambiente" | 1568 | msgstr "Ambiente" |
1569 | 1569 | ||
@@ -1579,11 +1579,11 @@ msgstr "Página inicial" | @@ -1579,11 +1579,11 @@ msgstr "Página inicial" | ||
1579 | msgid "User" | 1579 | msgid "User" |
1580 | msgstr "usuário" | 1580 | msgstr "usuário" |
1581 | 1581 | ||
1582 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/product.rb:- | 1582 | +#: app/models/profile.rb:- app/models/product.rb:- |
1583 | msgid "Lat" | 1583 | msgid "Lat" |
1584 | msgstr "Lat" | 1584 | msgstr "Lat" |
1585 | 1585 | ||
1586 | -#: app/models/profile.rb:- app/models/category.rb:- app/models/product.rb:- | 1586 | +#: app/models/profile.rb:- app/models/product.rb:- |
1587 | msgid "Lng" | 1587 | msgid "Lng" |
1588 | msgstr "Lng" | 1588 | msgstr "Lng" |
1589 | 1589 | ||
@@ -1695,34 +1695,6 @@ msgstr "%s não pode ter integrantes" | @@ -1695,34 +1695,6 @@ msgstr "%s não pode ter integrantes" | ||
1695 | msgid "%s can't has moderators" | 1695 | msgid "%s can't has moderators" |
1696 | msgstr "%s não pode ter moderadores" | 1696 | msgstr "%s não pode ter moderadores" |
1697 | 1697 | ||
1698 | -#: app/models/category.rb:- | ||
1699 | -msgid "category" | ||
1700 | -msgstr "categoria" | ||
1701 | - | ||
1702 | -#: app/models/category.rb:- | ||
1703 | -msgid "Slug" | ||
1704 | -msgstr "Atalho" | ||
1705 | - | ||
1706 | -#: app/models/category.rb:- | ||
1707 | -msgid "Path" | ||
1708 | -msgstr "Caminho" | ||
1709 | - | ||
1710 | -#: app/models/category.rb:- | ||
1711 | -msgid "Display color" | ||
1712 | -msgstr "Cor de exibição" | ||
1713 | - | ||
1714 | -#: app/models/category.rb:- app/models/image.rb:- app/models/thumbnail.rb:- | ||
1715 | -msgid "Parent" | ||
1716 | -msgstr "Pai" | ||
1717 | - | ||
1718 | -#: app/models/category.rb:- | ||
1719 | -msgid "Display in menu" | ||
1720 | -msgstr "Mostrar no menu" | ||
1721 | - | ||
1722 | -#: app/models/category.rb:- | ||
1723 | -msgid "Children count" | ||
1724 | -msgstr "Quantidade de filhos" | ||
1725 | - | ||
1726 | #: app/models/category.rb:3 | 1698 | #: app/models/category.rb:3 |
1727 | msgid "%{fn} cannot be like that." | 1699 | msgid "%{fn} cannot be like that." |
1728 | msgstr "%{fn} não pode ser assim." | 1700 | msgstr "%{fn} não pode ser assim." |
@@ -1858,7 +1830,7 @@ msgstr "Lembrar token" | @@ -1858,7 +1830,7 @@ msgstr "Lembrar token" | ||
1858 | msgid "Remember token expires at" | 1830 | msgid "Remember token expires at" |
1859 | msgstr "Lembre do token que expira em" | 1831 | msgstr "Lembre do token que expira em" |
1860 | 1832 | ||
1861 | -#: app/models/user.rb:- app/views/account/_signup_form.rhtml:55 | 1833 | +#: app/models/user.rb:- app/views/account/_signup_form.rhtml:54 |
1862 | msgid "Terms of use" | 1834 | msgid "Terms of use" |
1863 | msgstr "Termos de Uso" | 1835 | msgstr "Termos de Uso" |
1864 | 1836 | ||
@@ -2011,6 +1983,10 @@ msgid "image" | @@ -2011,6 +1983,10 @@ msgid "image" | ||
2011 | msgstr "imagem" | 1983 | msgstr "imagem" |
2012 | 1984 | ||
2013 | #: app/models/image.rb:- app/models/thumbnail.rb:- | 1985 | #: app/models/image.rb:- app/models/thumbnail.rb:- |
1986 | +msgid "Parent" | ||
1987 | +msgstr "Pai" | ||
1988 | + | ||
1989 | +#: app/models/image.rb:- app/models/thumbnail.rb:- | ||
2014 | msgid "Content type" | 1990 | msgid "Content type" |
2015 | msgstr "Tipo de conteúdo" | 1991 | msgstr "Tipo de conteúdo" |
2016 | 1992 | ||
@@ -2034,9 +2010,9 @@ msgstr "Largura" | @@ -2034,9 +2010,9 @@ msgstr "Largura" | ||
2034 | msgid "Height" | 2010 | msgid "Height" |
2035 | msgstr "Altura" | 2011 | msgstr "Altura" |
2036 | 2012 | ||
2037 | -#: app/models/image.rb:18 app/models/uploaded_file.rb:21 | ||
2038 | -msgid "%{fn} of uploaded file was larger than the maximum size of %s" | ||
2039 | -msgstr "%{fn} do arquivo enviado é maior que o máximo permitido de %s" | 2013 | +#: app/models/image.rb:18 |
2014 | +msgid "%{fn} of uploaded file was larger than the maximum size of 500.0 KB" | ||
2015 | +msgstr "%{fn} do arquivo enviado é maior que o máximo permitido de 500.0 KB" | ||
2040 | 2016 | ||
2041 | #: app/models/image_gallery.rb:8 | 2017 | #: app/models/image_gallery.rb:8 |
2042 | msgid "A collection of photos, logos or other kinds of images." | 2018 | msgid "A collection of photos, logos or other kinds of images." |
@@ -2362,6 +2338,10 @@ msgstr "Referência a outro artigo" | @@ -2362,6 +2338,10 @@ msgstr "Referência a outro artigo" | ||
2362 | msgid "A reference to another article published in another profile" | 2338 | msgid "A reference to another article published in another profile" |
2363 | msgstr "Uma referência a outro artigo publico em outro perfil" | 2339 | msgstr "Uma referência a outro artigo publico em outro perfil" |
2364 | 2340 | ||
2341 | +#: app/models/published_article.rb:31 | ||
2342 | +msgid "The original text was removed." | ||
2343 | +msgstr "" | ||
2344 | + | ||
2365 | #: app/models/contact.rb:- app/views/friends/index.rhtml:32 | 2345 | #: app/models/contact.rb:- app/views/friends/index.rhtml:32 |
2366 | #: app/views/friends/index.rhtml:35 | 2346 | #: app/views/friends/index.rhtml:35 |
2367 | msgid "contact" | 2347 | msgid "contact" |
@@ -2380,7 +2360,7 @@ msgstr "Mensagem" | @@ -2380,7 +2360,7 @@ msgstr "Mensagem" | ||
2380 | msgid "Receive a copy" | 2360 | msgid "Receive a copy" |
2381 | msgstr "Receber uma cópia" | 2361 | msgstr "Receber uma cópia" |
2382 | 2362 | ||
2383 | -#: app/models/contact.rb:13 app/views/contact/new.rhtml:13 | 2363 | +#: app/models/contact.rb:13 app/views/contact/new.rhtml:14 |
2384 | msgid "City and state" | 2364 | msgid "City and state" |
2385 | msgstr "Cidade e Estado" | 2365 | msgstr "Cidade e Estado" |
2386 | 2366 | ||
@@ -2600,6 +2580,10 @@ msgstr "{#} integrantes" | @@ -2600,6 +2580,10 @@ msgstr "{#} integrantes" | ||
2600 | msgid "This block presents the members of a collective." | 2580 | msgid "This block presents the members of a collective." |
2601 | msgstr "Este bloco apresenta os integrantes de um coletivo." | 2581 | msgstr "Este bloco apresenta os integrantes de um coletivo." |
2602 | 2582 | ||
2583 | +#: app/models/uploaded_file.rb:21 | ||
2584 | +msgid "%{fn} of uploaded file was larger than the maximum size of 5.0 MB" | ||
2585 | +msgstr "%{fn} do arquivo enviado é maior que o máximo permitido de 5.0 MB" | ||
2586 | + | ||
2603 | #: app/models/uploaded_file.rb:32 | 2587 | #: app/models/uploaded_file.rb:32 |
2604 | msgid "Uploaded file" | 2588 | msgid "Uploaded file" |
2605 | msgstr "Arquivo enviado" | 2589 | msgstr "Arquivo enviado" |
@@ -2817,16 +2801,16 @@ msgstr "Próximos eventos" | @@ -2817,16 +2801,16 @@ msgstr "Próximos eventos" | ||
2817 | msgid "Most commented articles" | 2801 | msgid "Most commented articles" |
2818 | msgstr "Artigos mais comentados" | 2802 | msgstr "Artigos mais comentados" |
2819 | 2803 | ||
2820 | -#: app/controllers/public/contact_controller.rb:11 | ||
2821 | -#: app/controllers/public/contact_controller.rb:12 | 2804 | +#: app/controllers/public/contact_controller.rb:13 |
2805 | +#: app/controllers/public/contact_controller.rb:14 | ||
2822 | msgid "Missing" | 2806 | msgid "Missing" |
2823 | msgstr "Faltando" | 2807 | msgstr "Faltando" |
2824 | 2808 | ||
2825 | -#: app/controllers/public/contact_controller.rb:14 | 2809 | +#: app/controllers/public/contact_controller.rb:16 |
2826 | msgid "Contact successfully sent" | 2810 | msgid "Contact successfully sent" |
2827 | msgstr "Contato enviado com sucesso" | 2811 | msgstr "Contato enviado com sucesso" |
2828 | 2812 | ||
2829 | -#: app/controllers/public/contact_controller.rb:17 | 2813 | +#: app/controllers/public/contact_controller.rb:19 |
2830 | msgid "Contact not sent" | 2814 | msgid "Contact not sent" |
2831 | msgstr "Contato não enviado" | 2815 | msgstr "Contato não enviado" |
2832 | 2816 | ||
@@ -3570,7 +3554,7 @@ msgstr "(sem posts)" | @@ -3570,7 +3554,7 @@ msgstr "(sem posts)" | ||
3570 | msgid "Post a comment" | 3554 | msgid "Post a comment" |
3571 | msgstr "Enviar um comentário" | 3555 | msgstr "Enviar um comentário" |
3572 | 3556 | ||
3573 | -#: app/views/content_viewer/_comment_form.rhtml:27 | 3557 | +#: app/views/content_viewer/_comment_form.rhtml:28 |
3574 | msgid "e-mail" | 3558 | msgid "e-mail" |
3575 | msgstr "e-mail" | 3559 | msgstr "e-mail" |
3576 | 3560 | ||
@@ -4171,7 +4155,7 @@ msgstr "Empreendimentos favoritos de %s" | @@ -4171,7 +4155,7 @@ msgstr "Empreendimentos favoritos de %s" | ||
4171 | msgid "Contact %s" | 4155 | msgid "Contact %s" |
4172 | msgstr "Contactar %s" | 4156 | msgstr "Contactar %s" |
4173 | 4157 | ||
4174 | -#: app/views/contact/new.rhtml:17 | 4158 | +#: app/views/contact/new.rhtml:18 |
4175 | msgid "I want to receive a copy of the message in my e-mail." | 4159 | msgid "I want to receive a copy of the message in my e-mail." |
4176 | msgstr "Quero receber uma cópia da mensagem no meu e-mail." | 4160 | msgstr "Quero receber uma cópia da mensagem no meu e-mail." |
4177 | 4161 | ||
@@ -5512,39 +5496,39 @@ msgstr "" | @@ -5512,39 +5496,39 @@ msgstr "" | ||
5512 | "sua senha, não crie uma nova conta, clique no link \"<b>Eu esqueci minha " | 5496 | "sua senha, não crie uma nova conta, clique no link \"<b>Eu esqueci minha " |
5513 | "senha!</b>\". ;-)" | 5497 | "senha!</b>\". ;-)" |
5514 | 5498 | ||
5515 | -#: app/views/account/_signup_form.rhtml:24 | 5499 | +#: app/views/account/_signup_form.rhtml:25 |
5516 | msgid "This e-mail address will be used to contact you." | 5500 | msgid "This e-mail address will be used to contact you." |
5517 | msgstr "Este endereço de e-mail será usado para contactar você." | 5501 | msgstr "Este endereço de e-mail será usado para contactar você." |
5518 | 5502 | ||
5519 | -#: app/views/account/_signup_form.rhtml:29 | 5503 | +#: app/views/account/_signup_form.rhtml:30 |
5520 | msgid "Insert your login" | 5504 | msgid "Insert your login" |
5521 | msgstr "Insira seu login" | 5505 | msgstr "Insira seu login" |
5522 | 5506 | ||
5523 | -#: app/views/account/_signup_form.rhtml:39 | 5507 | +#: app/views/account/_signup_form.rhtml:40 |
5524 | msgid "Choose a password that you can remember easily." | 5508 | msgid "Choose a password that you can remember easily." |
5525 | msgstr "Escolha uma senha fácil de ser lembrada por você." | 5509 | msgstr "Escolha uma senha fácil de ser lembrada por você." |
5526 | 5510 | ||
5527 | -#: app/views/account/_signup_form.rhtml:44 | 5511 | +#: app/views/account/_signup_form.rhtml:45 |
5528 | msgid "To confirm, repeat your password." | 5512 | msgid "To confirm, repeat your password." |
5529 | msgstr "Para confirmar, repita sua senha." | 5513 | msgstr "Para confirmar, repita sua senha." |
5530 | 5514 | ||
5531 | -#: app/views/account/_signup_form.rhtml:54 | 5515 | +#: app/views/account/_signup_form.rhtml:53 |
5532 | msgid "" | 5516 | msgid "" |
5533 | "By clicking on 'I accept the terms of use' below you are agreeing to the %s" | 5517 | "By clicking on 'I accept the terms of use' below you are agreeing to the %s" |
5534 | msgstr "" | 5518 | msgstr "" |
5535 | "Ao clicar em 'Eu aceito os termos de uso' abaixo você está concordando com " | 5519 | "Ao clicar em 'Eu aceito os termos de uso' abaixo você está concordando com " |
5536 | "os %s" | 5520 | "os %s" |
5537 | 5521 | ||
5538 | -#: app/views/account/_signup_form.rhtml:61 | 5522 | +#: app/views/account/_signup_form.rhtml:60 |
5539 | msgid "Hide" | 5523 | msgid "Hide" |
5540 | msgstr "Esconder" | 5524 | msgstr "Esconder" |
5541 | 5525 | ||
5542 | -#: app/views/account/_signup_form.rhtml:65 | 5526 | +#: app/views/account/_signup_form.rhtml:64 |
5543 | msgid "I accept the terms of use" | 5527 | msgid "I accept the terms of use" |
5544 | msgstr "Eu aceito os termos de uso" | 5528 | msgstr "Eu aceito os termos de uso" |
5545 | 5529 | ||
5546 | -#: app/views/account/_signup_form.rhtml:77 | ||
5547 | -#: app/views/account/_signup_form.rhtml:79 | 5530 | +#: app/views/account/_signup_form.rhtml:76 |
5531 | +#: app/views/account/_signup_form.rhtml:78 | ||
5548 | msgid "Sign up" | 5532 | msgid "Sign up" |
5549 | msgstr "Registre-se" | 5533 | msgstr "Registre-se" |
5550 | 5534 | ||
@@ -6536,6 +6520,24 @@ msgstr "Validação de Organização" | @@ -6536,6 +6520,24 @@ msgstr "Validação de Organização" | ||
6536 | msgid "Organization Info and settings" | 6520 | msgid "Organization Info and settings" |
6537 | msgstr "Informações e Configurações da Comunidade" | 6521 | msgstr "Informações e Configurações da Comunidade" |
6538 | 6522 | ||
6523 | +#~ msgid "category" | ||
6524 | +#~ msgstr "categoria" | ||
6525 | + | ||
6526 | +#~ msgid "Slug" | ||
6527 | +#~ msgstr "Atalho" | ||
6528 | + | ||
6529 | +#~ msgid "Path" | ||
6530 | +#~ msgstr "Caminho" | ||
6531 | + | ||
6532 | +#~ msgid "Display color" | ||
6533 | +#~ msgstr "Cor de exibição" | ||
6534 | + | ||
6535 | +#~ msgid "Display in menu" | ||
6536 | +#~ msgstr "Mostrar no menu" | ||
6537 | + | ||
6538 | +#~ msgid "Children count" | ||
6539 | +#~ msgstr "Quantidade de filhos" | ||
6540 | + | ||
6539 | #~ msgid "Last updated" | 6541 | #~ msgid "Last updated" |
6540 | #~ msgstr "Última atualização" | 6542 | #~ msgstr "Última atualização" |
6541 | 6543 |
test/unit/image_test.rb
@@ -9,4 +9,11 @@ class ImageTest < Test::Unit::TestCase | @@ -9,4 +9,11 @@ class ImageTest < Test::Unit::TestCase | ||
9 | end | 9 | end |
10 | end | 10 | end |
11 | 11 | ||
12 | + should 'match max_size in validates message of size field' do | ||
13 | + image = Image.new(:filename => 'fake_filename.png') | ||
14 | + image.valid? | ||
15 | + | ||
16 | + assert_match /#{Image.max_size.to_humanreadable}/, image.errors[:size] | ||
17 | + end | ||
18 | + | ||
12 | end | 19 | end |
test/unit/uploaded_file_test.rb
@@ -102,4 +102,11 @@ class UploadedFileTest < Test::Unit::TestCase | @@ -102,4 +102,11 @@ class UploadedFileTest < Test::Unit::TestCase | ||
102 | file.destroy | 102 | file.destroy |
103 | end | 103 | end |
104 | 104 | ||
105 | + should 'match max_size in validates message of size field' do | ||
106 | + up = UploadedFile.new(:filename => 'fake_filename.png') | ||
107 | + up.valid? | ||
108 | + | ||
109 | + assert_match /#{UploadedFile.max_size.to_humanreadable}/, up.errors[:size] | ||
110 | + end | ||
111 | + | ||
105 | end | 112 | end |