Commit ddd4d07126daf08a1c7aeb3106b9485d534d29e4
1 parent
f8821f28
Exists in
staging
and in
42 other branches
ActionItem1050: changes need for a nice formatting of the news portal
Showing
10 changed files
with
238 additions
and
184 deletions
Show diff stats
app/views/home/index.rhtml
... | ... | @@ -3,31 +3,43 @@ |
3 | 3 | <% end %> |
4 | 4 | |
5 | 5 | <% if @has_news %> |
6 | - <h3><%= _('News') %></h3> | |
6 | + <h1><%= _('News') %></h1> | |
7 | 7 | <% cache @news_cache_key do %> |
8 | 8 | <div id='highlighted-news'> |
9 | 9 | <% @highlighted_news.each do |highlighted| %> |
10 | - <p><%= link_to(highlighted.title, highlighted.url) %><br/> | |
11 | - <span class="post-date"><%= show_date(highlighted.published_at, true) %> </span></p> | |
12 | - <div class='headline'><%= highlighted.first_paragraph %></div> | |
13 | - <br style='clear:both' /> | |
10 | + <div class='highlighted-news-item'> | |
11 | + <h2><%= link_to(highlighted.title, highlighted.url, :class => 'post-title') %></h2> | |
12 | + <span class="post-date"><%= show_date(highlighted.published_at, true) %> </span></p> | |
13 | + <p class='headline'><%= highlighted.first_paragraph %></p> | |
14 | + <br style='clear:both' /> | |
15 | + </div> | |
14 | 16 | <% end%> |
15 | 17 | </div> |
16 | 18 | |
19 | + <div class='sep'></div> | |
20 | + | |
17 | 21 | <div id='portal-news'> |
18 | - <% @portal_news.each do |news| %> | |
19 | - <p><span class="post-date"><%= show_date(news.published_at, true) %> </span><%= link_to(news.title, news.url) %></p> | |
20 | - <% end%> | |
22 | + <ul> | |
23 | + <% @portal_news.each do |news| %> | |
24 | + <li> | |
25 | + <span class="post-date"><%= show_date(news.published_at, true) %> </span> | |
26 | + <%= link_to(news.title, news.url, :class => 'post-title' ) %> | |
27 | + </li> | |
28 | + <% end%> | |
29 | + </ul> | |
21 | 30 | </div> |
22 | 31 | |
32 | + <div class='sep'></div> | |
33 | + | |
23 | 34 | <% @area_news.each_with_index do |folder, i| %> |
24 | 35 | <% content_tag(:div, :class => ["news-area", ['even', 'odd'][i%2]].join(' ')) do %> |
25 | 36 | <h3><%= link_to folder.title, folder.url %></h3> |
26 | 37 | <ul> |
27 | - <% folder.news(3).each do |news| %> | |
28 | - <li><span class='news-symbol'>></span> <%= link_to(news.title, news.url) %></li> | |
38 | + <% folder.news(4).each do |news| %> | |
39 | + <li> <%= link_to(news.title, news.url) %></li> | |
29 | 40 | <% end%> |
30 | 41 | </ul> |
42 | + <%= link_to _('View more'), folder.url, :class => 'news-see-more' %> | |
31 | 43 | <%end %> |
32 | 44 | <% end %> |
33 | 45 | <% end %> |
... | ... | @@ -47,16 +59,20 @@ |
47 | 59 | |
48 | 60 | <% end %> |
49 | 61 | |
50 | -<div id='home-search' style='text-align: center'> | |
51 | - <% form_tag :controller => 'search', :action => 'index' do %> | |
62 | +<% if environment.enabled?('search_in_home') %> | |
63 | + <div id='home-search' style='text-align: center'> | |
64 | + <% form_tag :controller => 'search', :action => 'index' do %> | |
52 | 65 | |
53 | - <div id='search-field' style='text-align: center;'> | |
54 | - <%= text_field_tag('query', '', :size => 50) %> | |
55 | - <%= submit_button(:search, _('Search')) %> | |
56 | - </div> | |
66 | + <div id='search-field' style='text-align: center;'> | |
67 | + <%= text_field_tag('query', '', :size => 50) %> | |
68 | + <%= submit_button(:search, _('Search')) %> | |
69 | + </div> | |
57 | 70 | |
58 | - <div> | |
59 | - <%= lightbox_link_to _('More options'), :controller => 'search', :action => 'popup' %> | |
60 | - </div> | |
61 | - <% end %> | |
62 | -</div> | |
71 | + <div> | |
72 | + <%= lightbox_link_to _('More options'), :controller => 'search', :action => 'popup' %> | |
73 | + </div> | |
74 | + <% end %> | |
75 | + </div> | |
76 | +<% end %> | |
77 | + | |
78 | +<br style='clear: both'/> | ... | ... |
po/bg/noosfero.po
... | ... | @@ -6,8 +6,8 @@ |
6 | 6 | #, fuzzy |
7 | 7 | msgid "" |
8 | 8 | msgstr "" |
9 | -"Project-Id-Version: noosfero 0.17.1\n" | |
10 | -"POT-Creation-Date: 2009-05-25 20:58-0300\n" | |
9 | +"Project-Id-Version: noosfero 0.18.0\n" | |
10 | +"POT-Creation-Date: 2009-05-25 22:58-0300\n" | |
11 | 11 | "PO-Revision-Date: 2007-08-30 18:47-0300\n" |
12 | 12 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
13 | 13 | "Language-Team: LANGUAGE <LL@li.org>\n" |
... | ... | @@ -843,56 +843,56 @@ msgid_plural "%s members" |
843 | 843 | msgstr[0] "" |
844 | 844 | msgstr[1] "" |
845 | 845 | |
846 | -#: app/helpers/application_helper.rb:508 | |
846 | +#: app/helpers/application_helper.rb:509 | |
847 | 847 | #: app/views/content_viewer/view_page.rhtml:92 |
848 | 848 | #: app/views/categories/index.rhtml:1 |
849 | 849 | msgid "Categories" |
850 | 850 | msgstr "" |
851 | 851 | |
852 | -#: app/helpers/application_helper.rb:531 | |
852 | +#: app/helpers/application_helper.rb:532 | |
853 | 853 | msgid "open" |
854 | 854 | msgstr "" |
855 | 855 | |
856 | -#: app/helpers/application_helper.rb:570 | |
856 | +#: app/helpers/application_helper.rb:571 | |
857 | 857 | #: app/views/layouts/application-ng.rhtml:70 |
858 | 858 | #: app/views/layouts/application-ng.rhtml:72 |
859 | 859 | #: app/views/layouts/application-ng.rhtml:75 |
860 | 860 | msgid "Search..." |
861 | 861 | msgstr "" |
862 | 862 | |
863 | -#: app/helpers/application_helper.rb:572 | |
863 | +#: app/helpers/application_helper.rb:573 | |
864 | 864 | msgid "This is a search box. Click, write your query, and press enter to find" |
865 | 865 | msgstr "" |
866 | 866 | |
867 | -#: app/helpers/application_helper.rb:573 | |
867 | +#: app/helpers/application_helper.rb:574 | |
868 | 868 | msgid "Click, write and press enter to find" |
869 | 869 | msgstr "" |
870 | 870 | |
871 | -#: app/helpers/application_helper.rb:579 app/models/link_list_block.rb:19 | |
871 | +#: app/helpers/application_helper.rb:580 app/models/link_list_block.rb:19 | |
872 | 872 | #: app/views/search/_sellers_form.rhtml:21 |
873 | 873 | #: app/views/search/_search_form.rhtml:19 app/views/search/communities.rhtml:9 |
874 | 874 | #: app/views/search/articles.rhtml:10 app/views/search/people.rhtml:10 |
875 | -#: app/views/home/index.rhtml:55 app/views/region_validators/region.rhtml:23 | |
875 | +#: app/views/home/index.rhtml:57 app/views/region_validators/region.rhtml:23 | |
876 | 876 | msgid "Search" |
877 | 877 | msgstr "" |
878 | 878 | |
879 | -#: app/helpers/application_helper.rb:759 | |
879 | +#: app/helpers/application_helper.rb:760 | |
880 | 880 | msgid "Searched for '%s'" |
881 | 881 | msgstr "" |
882 | 882 | |
883 | -#: app/helpers/application_helper.rb:760 | |
883 | +#: app/helpers/application_helper.rb:761 | |
884 | 884 | msgid "In category %s" |
885 | 885 | msgstr "" |
886 | 886 | |
887 | -#: app/helpers/application_helper.rb:761 | |
887 | +#: app/helpers/application_helper.rb:762 | |
888 | 888 | msgid "within %d km from %s" |
889 | 889 | msgstr "" |
890 | 890 | |
891 | -#: app/helpers/application_helper.rb:762 | |
891 | +#: app/helpers/application_helper.rb:763 | |
892 | 892 | msgid "%d results found" |
893 | 893 | msgstr "" |
894 | 894 | |
895 | -#: app/helpers/application_helper.rb:768 | |
895 | +#: app/helpers/application_helper.rb:769 | |
896 | 896 | msgid "In all categories" |
897 | 897 | msgstr "" |
898 | 898 | |
... | ... | @@ -4153,7 +4153,7 @@ msgstr "" |
4153 | 4153 | msgid "Search for:" |
4154 | 4154 | msgstr "" |
4155 | 4155 | |
4156 | -#: app/views/search/_search_form.rhtml:55 app/views/home/index.rhtml:59 | |
4156 | +#: app/views/search/_search_form.rhtml:55 app/views/home/index.rhtml:61 | |
4157 | 4157 | msgid "More options" |
4158 | 4158 | msgstr "" |
4159 | 4159 | |
... | ... | @@ -4353,15 +4353,19 @@ msgstr "" |
4353 | 4353 | msgid "News" |
4354 | 4354 | msgstr "" |
4355 | 4355 | |
4356 | -#: app/views/home/index.rhtml:42 | |
4357 | -msgid "Activate your enterprise" | |
4356 | +#: app/views/home/index.rhtml:31 | |
4357 | +msgid "View more" | |
4358 | 4358 | msgstr "" |
4359 | 4359 | |
4360 | 4360 | #: app/views/home/index.rhtml:43 |
4361 | +msgid "Activate your enterprise" | |
4362 | +msgstr "" | |
4363 | + | |
4364 | +#: app/views/home/index.rhtml:44 | |
4361 | 4365 | msgid "Enterprise activation code" |
4362 | 4366 | msgstr "" |
4363 | 4367 | |
4364 | -#: app/views/home/index.rhtml:44 app/views/enterprise_editor/index.rhtml:17 | |
4368 | +#: app/views/home/index.rhtml:45 app/views/enterprise_editor/index.rhtml:17 | |
4365 | 4369 | msgid "Activate" |
4366 | 4370 | msgstr "" |
4367 | 4371 | ... | ... |
po/de/noosfero.po
... | ... | @@ -6,8 +6,8 @@ |
6 | 6 | #, fuzzy |
7 | 7 | msgid "" |
8 | 8 | msgstr "" |
9 | -"Project-Id-Version: noosfero 0.17.1\n" | |
10 | -"POT-Creation-Date: 2009-05-25 20:58-0300\n" | |
9 | +"Project-Id-Version: noosfero 0.18.0\n" | |
10 | +"POT-Creation-Date: 2009-05-25 22:58-0300\n" | |
11 | 11 | "PO-Revision-Date: 2007-08-30 18:47-0300\n" |
12 | 12 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
13 | 13 | "Language-Team: LANGUAGE <LL@li.org>\n" |
... | ... | @@ -843,56 +843,56 @@ msgid_plural "%s members" |
843 | 843 | msgstr[0] "" |
844 | 844 | msgstr[1] "" |
845 | 845 | |
846 | -#: app/helpers/application_helper.rb:508 | |
846 | +#: app/helpers/application_helper.rb:509 | |
847 | 847 | #: app/views/content_viewer/view_page.rhtml:92 |
848 | 848 | #: app/views/categories/index.rhtml:1 |
849 | 849 | msgid "Categories" |
850 | 850 | msgstr "" |
851 | 851 | |
852 | -#: app/helpers/application_helper.rb:531 | |
852 | +#: app/helpers/application_helper.rb:532 | |
853 | 853 | msgid "open" |
854 | 854 | msgstr "" |
855 | 855 | |
856 | -#: app/helpers/application_helper.rb:570 | |
856 | +#: app/helpers/application_helper.rb:571 | |
857 | 857 | #: app/views/layouts/application-ng.rhtml:70 |
858 | 858 | #: app/views/layouts/application-ng.rhtml:72 |
859 | 859 | #: app/views/layouts/application-ng.rhtml:75 |
860 | 860 | msgid "Search..." |
861 | 861 | msgstr "" |
862 | 862 | |
863 | -#: app/helpers/application_helper.rb:572 | |
863 | +#: app/helpers/application_helper.rb:573 | |
864 | 864 | msgid "This is a search box. Click, write your query, and press enter to find" |
865 | 865 | msgstr "" |
866 | 866 | |
867 | -#: app/helpers/application_helper.rb:573 | |
867 | +#: app/helpers/application_helper.rb:574 | |
868 | 868 | msgid "Click, write and press enter to find" |
869 | 869 | msgstr "" |
870 | 870 | |
871 | -#: app/helpers/application_helper.rb:579 app/models/link_list_block.rb:19 | |
871 | +#: app/helpers/application_helper.rb:580 app/models/link_list_block.rb:19 | |
872 | 872 | #: app/views/search/_sellers_form.rhtml:21 |
873 | 873 | #: app/views/search/_search_form.rhtml:19 app/views/search/communities.rhtml:9 |
874 | 874 | #: app/views/search/articles.rhtml:10 app/views/search/people.rhtml:10 |
875 | -#: app/views/home/index.rhtml:55 app/views/region_validators/region.rhtml:23 | |
875 | +#: app/views/home/index.rhtml:57 app/views/region_validators/region.rhtml:23 | |
876 | 876 | msgid "Search" |
877 | 877 | msgstr "" |
878 | 878 | |
879 | -#: app/helpers/application_helper.rb:759 | |
879 | +#: app/helpers/application_helper.rb:760 | |
880 | 880 | msgid "Searched for '%s'" |
881 | 881 | msgstr "" |
882 | 882 | |
883 | -#: app/helpers/application_helper.rb:760 | |
883 | +#: app/helpers/application_helper.rb:761 | |
884 | 884 | msgid "In category %s" |
885 | 885 | msgstr "" |
886 | 886 | |
887 | -#: app/helpers/application_helper.rb:761 | |
887 | +#: app/helpers/application_helper.rb:762 | |
888 | 888 | msgid "within %d km from %s" |
889 | 889 | msgstr "" |
890 | 890 | |
891 | -#: app/helpers/application_helper.rb:762 | |
891 | +#: app/helpers/application_helper.rb:763 | |
892 | 892 | msgid "%d results found" |
893 | 893 | msgstr "" |
894 | 894 | |
895 | -#: app/helpers/application_helper.rb:768 | |
895 | +#: app/helpers/application_helper.rb:769 | |
896 | 896 | msgid "In all categories" |
897 | 897 | msgstr "" |
898 | 898 | |
... | ... | @@ -4153,7 +4153,7 @@ msgstr "" |
4153 | 4153 | msgid "Search for:" |
4154 | 4154 | msgstr "" |
4155 | 4155 | |
4156 | -#: app/views/search/_search_form.rhtml:55 app/views/home/index.rhtml:59 | |
4156 | +#: app/views/search/_search_form.rhtml:55 app/views/home/index.rhtml:61 | |
4157 | 4157 | msgid "More options" |
4158 | 4158 | msgstr "" |
4159 | 4159 | |
... | ... | @@ -4353,15 +4353,19 @@ msgstr "" |
4353 | 4353 | msgid "News" |
4354 | 4354 | msgstr "" |
4355 | 4355 | |
4356 | -#: app/views/home/index.rhtml:42 | |
4357 | -msgid "Activate your enterprise" | |
4356 | +#: app/views/home/index.rhtml:31 | |
4357 | +msgid "View more" | |
4358 | 4358 | msgstr "" |
4359 | 4359 | |
4360 | 4360 | #: app/views/home/index.rhtml:43 |
4361 | +msgid "Activate your enterprise" | |
4362 | +msgstr "" | |
4363 | + | |
4364 | +#: app/views/home/index.rhtml:44 | |
4361 | 4365 | msgid "Enterprise activation code" |
4362 | 4366 | msgstr "" |
4363 | 4367 | |
4364 | -#: app/views/home/index.rhtml:44 app/views/enterprise_editor/index.rhtml:17 | |
4368 | +#: app/views/home/index.rhtml:45 app/views/enterprise_editor/index.rhtml:17 | |
4365 | 4369 | msgid "Activate" |
4366 | 4370 | msgstr "" |
4367 | 4371 | ... | ... |
po/es/noosfero.po
... | ... | @@ -6,8 +6,8 @@ |
6 | 6 | #, fuzzy |
7 | 7 | msgid "" |
8 | 8 | msgstr "" |
9 | -"Project-Id-Version: noosfero 0.17.1\n" | |
10 | -"POT-Creation-Date: 2009-05-25 20:58-0300\n" | |
9 | +"Project-Id-Version: noosfero 0.18.0\n" | |
10 | +"POT-Creation-Date: 2009-05-25 22:58-0300\n" | |
11 | 11 | "PO-Revision-Date: 2007-08-30 18:47-0300\n" |
12 | 12 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
13 | 13 | "Language-Team: LANGUAGE <LL@li.org>\n" |
... | ... | @@ -843,56 +843,56 @@ msgid_plural "%s members" |
843 | 843 | msgstr[0] "" |
844 | 844 | msgstr[1] "" |
845 | 845 | |
846 | -#: app/helpers/application_helper.rb:508 | |
846 | +#: app/helpers/application_helper.rb:509 | |
847 | 847 | #: app/views/content_viewer/view_page.rhtml:92 |
848 | 848 | #: app/views/categories/index.rhtml:1 |
849 | 849 | msgid "Categories" |
850 | 850 | msgstr "" |
851 | 851 | |
852 | -#: app/helpers/application_helper.rb:531 | |
852 | +#: app/helpers/application_helper.rb:532 | |
853 | 853 | msgid "open" |
854 | 854 | msgstr "" |
855 | 855 | |
856 | -#: app/helpers/application_helper.rb:570 | |
856 | +#: app/helpers/application_helper.rb:571 | |
857 | 857 | #: app/views/layouts/application-ng.rhtml:70 |
858 | 858 | #: app/views/layouts/application-ng.rhtml:72 |
859 | 859 | #: app/views/layouts/application-ng.rhtml:75 |
860 | 860 | msgid "Search..." |
861 | 861 | msgstr "" |
862 | 862 | |
863 | -#: app/helpers/application_helper.rb:572 | |
863 | +#: app/helpers/application_helper.rb:573 | |
864 | 864 | msgid "This is a search box. Click, write your query, and press enter to find" |
865 | 865 | msgstr "" |
866 | 866 | |
867 | -#: app/helpers/application_helper.rb:573 | |
867 | +#: app/helpers/application_helper.rb:574 | |
868 | 868 | msgid "Click, write and press enter to find" |
869 | 869 | msgstr "" |
870 | 870 | |
871 | -#: app/helpers/application_helper.rb:579 app/models/link_list_block.rb:19 | |
871 | +#: app/helpers/application_helper.rb:580 app/models/link_list_block.rb:19 | |
872 | 872 | #: app/views/search/_sellers_form.rhtml:21 |
873 | 873 | #: app/views/search/_search_form.rhtml:19 app/views/search/communities.rhtml:9 |
874 | 874 | #: app/views/search/articles.rhtml:10 app/views/search/people.rhtml:10 |
875 | -#: app/views/home/index.rhtml:55 app/views/region_validators/region.rhtml:23 | |
875 | +#: app/views/home/index.rhtml:57 app/views/region_validators/region.rhtml:23 | |
876 | 876 | msgid "Search" |
877 | 877 | msgstr "" |
878 | 878 | |
879 | -#: app/helpers/application_helper.rb:759 | |
879 | +#: app/helpers/application_helper.rb:760 | |
880 | 880 | msgid "Searched for '%s'" |
881 | 881 | msgstr "" |
882 | 882 | |
883 | -#: app/helpers/application_helper.rb:760 | |
883 | +#: app/helpers/application_helper.rb:761 | |
884 | 884 | msgid "In category %s" |
885 | 885 | msgstr "" |
886 | 886 | |
887 | -#: app/helpers/application_helper.rb:761 | |
887 | +#: app/helpers/application_helper.rb:762 | |
888 | 888 | msgid "within %d km from %s" |
889 | 889 | msgstr "" |
890 | 890 | |
891 | -#: app/helpers/application_helper.rb:762 | |
891 | +#: app/helpers/application_helper.rb:763 | |
892 | 892 | msgid "%d results found" |
893 | 893 | msgstr "" |
894 | 894 | |
895 | -#: app/helpers/application_helper.rb:768 | |
895 | +#: app/helpers/application_helper.rb:769 | |
896 | 896 | msgid "In all categories" |
897 | 897 | msgstr "" |
898 | 898 | |
... | ... | @@ -4153,7 +4153,7 @@ msgstr "" |
4153 | 4153 | msgid "Search for:" |
4154 | 4154 | msgstr "" |
4155 | 4155 | |
4156 | -#: app/views/search/_search_form.rhtml:55 app/views/home/index.rhtml:59 | |
4156 | +#: app/views/search/_search_form.rhtml:55 app/views/home/index.rhtml:61 | |
4157 | 4157 | msgid "More options" |
4158 | 4158 | msgstr "" |
4159 | 4159 | |
... | ... | @@ -4353,15 +4353,19 @@ msgstr "" |
4353 | 4353 | msgid "News" |
4354 | 4354 | msgstr "" |
4355 | 4355 | |
4356 | -#: app/views/home/index.rhtml:42 | |
4357 | -msgid "Activate your enterprise" | |
4356 | +#: app/views/home/index.rhtml:31 | |
4357 | +msgid "View more" | |
4358 | 4358 | msgstr "" |
4359 | 4359 | |
4360 | 4360 | #: app/views/home/index.rhtml:43 |
4361 | +msgid "Activate your enterprise" | |
4362 | +msgstr "" | |
4363 | + | |
4364 | +#: app/views/home/index.rhtml:44 | |
4361 | 4365 | msgid "Enterprise activation code" |
4362 | 4366 | msgstr "" |
4363 | 4367 | |
4364 | -#: app/views/home/index.rhtml:44 app/views/enterprise_editor/index.rhtml:17 | |
4368 | +#: app/views/home/index.rhtml:45 app/views/enterprise_editor/index.rhtml:17 | |
4365 | 4369 | msgid "Activate" |
4366 | 4370 | msgstr "" |
4367 | 4371 | ... | ... |
po/fr/noosfero.po
... | ... | @@ -5,9 +5,9 @@ |
5 | 5 | # |
6 | 6 | msgid "" |
7 | 7 | msgstr "" |
8 | -"Project-Id-Version: noosfero 0.17.1\n" | |
8 | +"Project-Id-Version: noosfero 0.18.0\n" | |
9 | 9 | "Report-Msgid-Bugs-To: \n" |
10 | -"POT-Creation-Date: 2009-05-25 20:58-0300\n" | |
10 | +"POT-Creation-Date: 2009-05-25 22:58-0300\n" | |
11 | 11 | "PO-Revision-Date: 2008-06-13 16:15-0300\n" |
12 | 12 | "Last-Translator: Raphael Rousseau <pootle.colivre.coop.br@r4f.org>\n" |
13 | 13 | "Language-Team: LANGUAGE <LL@li.org>\n" |
... | ... | @@ -860,58 +860,58 @@ msgid_plural "%s members" |
860 | 860 | msgstr[0] "Ôter le membre" |
861 | 861 | msgstr[1] "Ôter le membre" |
862 | 862 | |
863 | -#: app/helpers/application_helper.rb:508 | |
863 | +#: app/helpers/application_helper.rb:509 | |
864 | 864 | #: app/views/content_viewer/view_page.rhtml:92 |
865 | 865 | #: app/views/categories/index.rhtml:1 |
866 | 866 | msgid "Categories" |
867 | 867 | msgstr "Catégories" |
868 | 868 | |
869 | -#: app/helpers/application_helper.rb:531 | |
869 | +#: app/helpers/application_helper.rb:532 | |
870 | 870 | msgid "open" |
871 | 871 | msgstr "ouvrir" |
872 | 872 | |
873 | -#: app/helpers/application_helper.rb:570 | |
873 | +#: app/helpers/application_helper.rb:571 | |
874 | 874 | #: app/views/layouts/application-ng.rhtml:70 |
875 | 875 | #: app/views/layouts/application-ng.rhtml:72 |
876 | 876 | #: app/views/layouts/application-ng.rhtml:75 |
877 | 877 | msgid "Search..." |
878 | 878 | msgstr "Chercher..." |
879 | 879 | |
880 | -#: app/helpers/application_helper.rb:572 | |
880 | +#: app/helpers/application_helper.rb:573 | |
881 | 881 | msgid "This is a search box. Click, write your query, and press enter to find" |
882 | 882 | msgstr "" |
883 | 883 | "Ceci est une boîte de recherche. Cliquez, entrez votre requête et appuyez " |
884 | 884 | "sur Entrée pour trouver." |
885 | 885 | |
886 | -#: app/helpers/application_helper.rb:573 | |
886 | +#: app/helpers/application_helper.rb:574 | |
887 | 887 | msgid "Click, write and press enter to find" |
888 | 888 | msgstr "Cliquez, écrivez et appuyez sur Entrée pour trouver." |
889 | 889 | |
890 | -#: app/helpers/application_helper.rb:579 app/models/link_list_block.rb:19 | |
890 | +#: app/helpers/application_helper.rb:580 app/models/link_list_block.rb:19 | |
891 | 891 | #: app/views/search/_sellers_form.rhtml:21 |
892 | 892 | #: app/views/search/_search_form.rhtml:19 app/views/search/communities.rhtml:9 |
893 | 893 | #: app/views/search/articles.rhtml:10 app/views/search/people.rhtml:10 |
894 | -#: app/views/home/index.rhtml:55 app/views/region_validators/region.rhtml:23 | |
894 | +#: app/views/home/index.rhtml:57 app/views/region_validators/region.rhtml:23 | |
895 | 895 | msgid "Search" |
896 | 896 | msgstr "Chercher" |
897 | 897 | |
898 | -#: app/helpers/application_helper.rb:759 | |
898 | +#: app/helpers/application_helper.rb:760 | |
899 | 899 | msgid "Searched for '%s'" |
900 | 900 | msgstr "Recherche de «%s»" |
901 | 901 | |
902 | -#: app/helpers/application_helper.rb:760 | |
902 | +#: app/helpers/application_helper.rb:761 | |
903 | 903 | msgid "In category %s" |
904 | 904 | msgstr "Dans la catégorie %s" |
905 | 905 | |
906 | -#: app/helpers/application_helper.rb:761 | |
906 | +#: app/helpers/application_helper.rb:762 | |
907 | 907 | msgid "within %d km from %s" |
908 | 908 | msgstr "dans les %d km de %s" |
909 | 909 | |
910 | -#: app/helpers/application_helper.rb:762 | |
910 | +#: app/helpers/application_helper.rb:763 | |
911 | 911 | msgid "%d results found" |
912 | 912 | msgstr "%d resultats trouvés" |
913 | 913 | |
914 | -#: app/helpers/application_helper.rb:768 | |
914 | +#: app/helpers/application_helper.rb:769 | |
915 | 915 | #, fuzzy |
916 | 916 | msgid "In all categories" |
917 | 917 | msgstr "Désactiver les catégories" |
... | ... | @@ -4420,7 +4420,7 @@ msgstr "Recherche dans :" |
4420 | 4420 | msgid "Search for:" |
4421 | 4421 | msgstr "Rechercher :" |
4422 | 4422 | |
4423 | -#: app/views/search/_search_form.rhtml:55 app/views/home/index.rhtml:59 | |
4423 | +#: app/views/search/_search_form.rhtml:55 app/views/home/index.rhtml:61 | |
4424 | 4424 | msgid "More options" |
4425 | 4425 | msgstr "Plus d'options" |
4426 | 4426 | |
... | ... | @@ -4633,17 +4633,22 @@ msgstr "Toutes les entreprises" |
4633 | 4633 | msgid "News" |
4634 | 4634 | msgstr "Nouveau %s" |
4635 | 4635 | |
4636 | -#: app/views/home/index.rhtml:42 | |
4636 | +#: app/views/home/index.rhtml:31 | |
4637 | +#, fuzzy | |
4638 | +msgid "View more" | |
4639 | +msgstr "Voir le profil" | |
4640 | + | |
4641 | +#: app/views/home/index.rhtml:43 | |
4637 | 4642 | #, fuzzy |
4638 | 4643 | msgid "Activate your enterprise" |
4639 | 4644 | msgstr "Activer une entreprise approuvée" |
4640 | 4645 | |
4641 | -#: app/views/home/index.rhtml:43 | |
4646 | +#: app/views/home/index.rhtml:44 | |
4642 | 4647 | #, fuzzy |
4643 | 4648 | msgid "Enterprise activation code" |
4644 | 4649 | msgstr "Validation d'entreprises" |
4645 | 4650 | |
4646 | -#: app/views/home/index.rhtml:44 app/views/enterprise_editor/index.rhtml:17 | |
4651 | +#: app/views/home/index.rhtml:45 app/views/enterprise_editor/index.rhtml:17 | |
4647 | 4652 | msgid "Activate" |
4648 | 4653 | msgstr "Activer" |
4649 | 4654 | ... | ... |
po/hy/noosfero.po
... | ... | @@ -6,8 +6,8 @@ |
6 | 6 | #, fuzzy |
7 | 7 | msgid "" |
8 | 8 | msgstr "" |
9 | -"Project-Id-Version: noosfero 0.17.1\n" | |
10 | -"POT-Creation-Date: 2009-05-25 20:58-0300\n" | |
9 | +"Project-Id-Version: noosfero 0.18.0\n" | |
10 | +"POT-Creation-Date: 2009-05-25 22:58-0300\n" | |
11 | 11 | "PO-Revision-Date: 2007-08-30 18:47-0300\n" |
12 | 12 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
13 | 13 | "Language-Team: LANGUAGE <LL@li.org>\n" |
... | ... | @@ -849,58 +849,58 @@ msgid_plural "%s members" |
849 | 849 | msgstr[0] "Նոր անդամ" |
850 | 850 | msgstr[1] "Նոր անդամ" |
851 | 851 | |
852 | -#: app/helpers/application_helper.rb:508 | |
852 | +#: app/helpers/application_helper.rb:509 | |
853 | 853 | #: app/views/content_viewer/view_page.rhtml:92 |
854 | 854 | #: app/views/categories/index.rhtml:1 |
855 | 855 | msgid "Categories" |
856 | 856 | msgstr "Կատեգորիաներ" |
857 | 857 | |
858 | -#: app/helpers/application_helper.rb:531 | |
858 | +#: app/helpers/application_helper.rb:532 | |
859 | 859 | msgid "open" |
860 | 860 | msgstr "բացել" |
861 | 861 | |
862 | -#: app/helpers/application_helper.rb:570 | |
862 | +#: app/helpers/application_helper.rb:571 | |
863 | 863 | #: app/views/layouts/application-ng.rhtml:70 |
864 | 864 | #: app/views/layouts/application-ng.rhtml:72 |
865 | 865 | #: app/views/layouts/application-ng.rhtml:75 |
866 | 866 | msgid "Search..." |
867 | 867 | msgstr "Որոնել..." |
868 | 868 | |
869 | -#: app/helpers/application_helper.rb:572 | |
869 | +#: app/helpers/application_helper.rb:573 | |
870 | 870 | msgid "This is a search box. Click, write your query, and press enter to find" |
871 | 871 | msgstr "" |
872 | 872 | "Այստեղ կարող եք որոնում կատարել: Մուտքագրեք Ձեր հարցումն ու սեղմեք «Enter» " |
873 | 873 | "կոճակը:" |
874 | 874 | |
875 | -#: app/helpers/application_helper.rb:573 | |
875 | +#: app/helpers/application_helper.rb:574 | |
876 | 876 | msgid "Click, write and press enter to find" |
877 | 877 | msgstr "Մուտքագրեք և սեղմեք «Enter» կոճակը" |
878 | 878 | |
879 | -#: app/helpers/application_helper.rb:579 app/models/link_list_block.rb:19 | |
879 | +#: app/helpers/application_helper.rb:580 app/models/link_list_block.rb:19 | |
880 | 880 | #: app/views/search/_sellers_form.rhtml:21 |
881 | 881 | #: app/views/search/_search_form.rhtml:19 app/views/search/communities.rhtml:9 |
882 | 882 | #: app/views/search/articles.rhtml:10 app/views/search/people.rhtml:10 |
883 | -#: app/views/home/index.rhtml:55 app/views/region_validators/region.rhtml:23 | |
883 | +#: app/views/home/index.rhtml:57 app/views/region_validators/region.rhtml:23 | |
884 | 884 | msgid "Search" |
885 | 885 | msgstr "Որոնում" |
886 | 886 | |
887 | -#: app/helpers/application_helper.rb:759 | |
887 | +#: app/helpers/application_helper.rb:760 | |
888 | 888 | msgid "Searched for '%s'" |
889 | 889 | msgstr "«%s»-ի որոնում" |
890 | 890 | |
891 | -#: app/helpers/application_helper.rb:760 | |
891 | +#: app/helpers/application_helper.rb:761 | |
892 | 892 | msgid "In category %s" |
893 | 893 | msgstr "%s կատեգորիայում" |
894 | 894 | |
895 | -#: app/helpers/application_helper.rb:761 | |
895 | +#: app/helpers/application_helper.rb:762 | |
896 | 896 | msgid "within %d km from %s" |
897 | 897 | msgstr "%s-ից %d կմ հեռավորության վրա" |
898 | 898 | |
899 | -#: app/helpers/application_helper.rb:762 | |
899 | +#: app/helpers/application_helper.rb:763 | |
900 | 900 | msgid "%d results found" |
901 | 901 | msgstr "Գտնված արդյունքներ %d" |
902 | 902 | |
903 | -#: app/helpers/application_helper.rb:768 | |
903 | +#: app/helpers/application_helper.rb:769 | |
904 | 904 | #, fuzzy |
905 | 905 | msgid "In all categories" |
906 | 906 | msgstr "%s կատեգորիայում" |
... | ... | @@ -4258,7 +4258,7 @@ msgstr "Որոնել" |
4258 | 4258 | msgid "Search for:" |
4259 | 4259 | msgstr "Որոնել" |
4260 | 4260 | |
4261 | -#: app/views/search/_search_form.rhtml:55 app/views/home/index.rhtml:59 | |
4261 | +#: app/views/search/_search_form.rhtml:55 app/views/home/index.rhtml:61 | |
4262 | 4262 | msgid "More options" |
4263 | 4263 | msgstr "" |
4264 | 4264 | |
... | ... | @@ -4465,17 +4465,22 @@ msgstr "" |
4465 | 4465 | msgid "News" |
4466 | 4466 | msgstr "Նորություններ" |
4467 | 4467 | |
4468 | -#: app/views/home/index.rhtml:42 | |
4468 | +#: app/views/home/index.rhtml:31 | |
4469 | +#, fuzzy | |
4470 | +msgid "View more" | |
4471 | +msgstr "Նայել անհատական էջը" | |
4472 | + | |
4473 | +#: app/views/home/index.rhtml:43 | |
4469 | 4474 | #, fuzzy |
4470 | 4475 | msgid "Activate your enterprise" |
4471 | 4476 | msgstr "Ակտիվացնել հաստատված ձեռնարկությունը" |
4472 | 4477 | |
4473 | -#: app/views/home/index.rhtml:43 | |
4478 | +#: app/views/home/index.rhtml:44 | |
4474 | 4479 | #, fuzzy |
4475 | 4480 | msgid "Enterprise activation code" |
4476 | 4481 | msgstr "Ձեռնարկության հաստատում" |
4477 | 4482 | |
4478 | -#: app/views/home/index.rhtml:44 app/views/enterprise_editor/index.rhtml:17 | |
4483 | +#: app/views/home/index.rhtml:45 app/views/enterprise_editor/index.rhtml:17 | |
4479 | 4484 | msgid "Activate" |
4480 | 4485 | msgstr "Ակտիվացնել" |
4481 | 4486 | ... | ... |
po/it/noosfero.po
... | ... | @@ -6,8 +6,8 @@ |
6 | 6 | #, fuzzy |
7 | 7 | msgid "" |
8 | 8 | msgstr "" |
9 | -"Project-Id-Version: noosfero 0.17.1\n" | |
10 | -"POT-Creation-Date: 2009-05-25 20:58-0300\n" | |
9 | +"Project-Id-Version: noosfero 0.18.0\n" | |
10 | +"POT-Creation-Date: 2009-05-25 22:58-0300\n" | |
11 | 11 | "PO-Revision-Date: 2007-08-30 18:47-0300\n" |
12 | 12 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
13 | 13 | "Language-Team: LANGUAGE <LL@li.org>\n" |
... | ... | @@ -843,56 +843,56 @@ msgid_plural "%s members" |
843 | 843 | msgstr[0] "" |
844 | 844 | msgstr[1] "" |
845 | 845 | |
846 | -#: app/helpers/application_helper.rb:508 | |
846 | +#: app/helpers/application_helper.rb:509 | |
847 | 847 | #: app/views/content_viewer/view_page.rhtml:92 |
848 | 848 | #: app/views/categories/index.rhtml:1 |
849 | 849 | msgid "Categories" |
850 | 850 | msgstr "" |
851 | 851 | |
852 | -#: app/helpers/application_helper.rb:531 | |
852 | +#: app/helpers/application_helper.rb:532 | |
853 | 853 | msgid "open" |
854 | 854 | msgstr "" |
855 | 855 | |
856 | -#: app/helpers/application_helper.rb:570 | |
856 | +#: app/helpers/application_helper.rb:571 | |
857 | 857 | #: app/views/layouts/application-ng.rhtml:70 |
858 | 858 | #: app/views/layouts/application-ng.rhtml:72 |
859 | 859 | #: app/views/layouts/application-ng.rhtml:75 |
860 | 860 | msgid "Search..." |
861 | 861 | msgstr "" |
862 | 862 | |
863 | -#: app/helpers/application_helper.rb:572 | |
863 | +#: app/helpers/application_helper.rb:573 | |
864 | 864 | msgid "This is a search box. Click, write your query, and press enter to find" |
865 | 865 | msgstr "" |
866 | 866 | |
867 | -#: app/helpers/application_helper.rb:573 | |
867 | +#: app/helpers/application_helper.rb:574 | |
868 | 868 | msgid "Click, write and press enter to find" |
869 | 869 | msgstr "" |
870 | 870 | |
871 | -#: app/helpers/application_helper.rb:579 app/models/link_list_block.rb:19 | |
871 | +#: app/helpers/application_helper.rb:580 app/models/link_list_block.rb:19 | |
872 | 872 | #: app/views/search/_sellers_form.rhtml:21 |
873 | 873 | #: app/views/search/_search_form.rhtml:19 app/views/search/communities.rhtml:9 |
874 | 874 | #: app/views/search/articles.rhtml:10 app/views/search/people.rhtml:10 |
875 | -#: app/views/home/index.rhtml:55 app/views/region_validators/region.rhtml:23 | |
875 | +#: app/views/home/index.rhtml:57 app/views/region_validators/region.rhtml:23 | |
876 | 876 | msgid "Search" |
877 | 877 | msgstr "" |
878 | 878 | |
879 | -#: app/helpers/application_helper.rb:759 | |
879 | +#: app/helpers/application_helper.rb:760 | |
880 | 880 | msgid "Searched for '%s'" |
881 | 881 | msgstr "" |
882 | 882 | |
883 | -#: app/helpers/application_helper.rb:760 | |
883 | +#: app/helpers/application_helper.rb:761 | |
884 | 884 | msgid "In category %s" |
885 | 885 | msgstr "" |
886 | 886 | |
887 | -#: app/helpers/application_helper.rb:761 | |
887 | +#: app/helpers/application_helper.rb:762 | |
888 | 888 | msgid "within %d km from %s" |
889 | 889 | msgstr "" |
890 | 890 | |
891 | -#: app/helpers/application_helper.rb:762 | |
891 | +#: app/helpers/application_helper.rb:763 | |
892 | 892 | msgid "%d results found" |
893 | 893 | msgstr "" |
894 | 894 | |
895 | -#: app/helpers/application_helper.rb:768 | |
895 | +#: app/helpers/application_helper.rb:769 | |
896 | 896 | msgid "In all categories" |
897 | 897 | msgstr "" |
898 | 898 | |
... | ... | @@ -4153,7 +4153,7 @@ msgstr "" |
4153 | 4153 | msgid "Search for:" |
4154 | 4154 | msgstr "" |
4155 | 4155 | |
4156 | -#: app/views/search/_search_form.rhtml:55 app/views/home/index.rhtml:59 | |
4156 | +#: app/views/search/_search_form.rhtml:55 app/views/home/index.rhtml:61 | |
4157 | 4157 | msgid "More options" |
4158 | 4158 | msgstr "" |
4159 | 4159 | |
... | ... | @@ -4353,15 +4353,19 @@ msgstr "" |
4353 | 4353 | msgid "News" |
4354 | 4354 | msgstr "" |
4355 | 4355 | |
4356 | -#: app/views/home/index.rhtml:42 | |
4357 | -msgid "Activate your enterprise" | |
4356 | +#: app/views/home/index.rhtml:31 | |
4357 | +msgid "View more" | |
4358 | 4358 | msgstr "" |
4359 | 4359 | |
4360 | 4360 | #: app/views/home/index.rhtml:43 |
4361 | +msgid "Activate your enterprise" | |
4362 | +msgstr "" | |
4363 | + | |
4364 | +#: app/views/home/index.rhtml:44 | |
4361 | 4365 | msgid "Enterprise activation code" |
4362 | 4366 | msgstr "" |
4363 | 4367 | |
4364 | -#: app/views/home/index.rhtml:44 app/views/enterprise_editor/index.rhtml:17 | |
4368 | +#: app/views/home/index.rhtml:45 app/views/enterprise_editor/index.rhtml:17 | |
4365 | 4369 | msgid "Activate" |
4366 | 4370 | msgstr "" |
4367 | 4371 | ... | ... |
po/nl/noosfero.po
... | ... | @@ -6,8 +6,8 @@ |
6 | 6 | #, fuzzy |
7 | 7 | msgid "" |
8 | 8 | msgstr "" |
9 | -"Project-Id-Version: noosfero 0.17.1\n" | |
10 | -"POT-Creation-Date: 2009-05-25 20:58-0300\n" | |
9 | +"Project-Id-Version: noosfero 0.18.0\n" | |
10 | +"POT-Creation-Date: 2009-05-25 22:58-0300\n" | |
11 | 11 | "PO-Revision-Date: 2007-08-30 18:47-0300\n" |
12 | 12 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
13 | 13 | "Language-Team: LANGUAGE <LL@li.org>\n" |
... | ... | @@ -843,56 +843,56 @@ msgid_plural "%s members" |
843 | 843 | msgstr[0] "" |
844 | 844 | msgstr[1] "" |
845 | 845 | |
846 | -#: app/helpers/application_helper.rb:508 | |
846 | +#: app/helpers/application_helper.rb:509 | |
847 | 847 | #: app/views/content_viewer/view_page.rhtml:92 |
848 | 848 | #: app/views/categories/index.rhtml:1 |
849 | 849 | msgid "Categories" |
850 | 850 | msgstr "" |
851 | 851 | |
852 | -#: app/helpers/application_helper.rb:531 | |
852 | +#: app/helpers/application_helper.rb:532 | |
853 | 853 | msgid "open" |
854 | 854 | msgstr "" |
855 | 855 | |
856 | -#: app/helpers/application_helper.rb:570 | |
856 | +#: app/helpers/application_helper.rb:571 | |
857 | 857 | #: app/views/layouts/application-ng.rhtml:70 |
858 | 858 | #: app/views/layouts/application-ng.rhtml:72 |
859 | 859 | #: app/views/layouts/application-ng.rhtml:75 |
860 | 860 | msgid "Search..." |
861 | 861 | msgstr "" |
862 | 862 | |
863 | -#: app/helpers/application_helper.rb:572 | |
863 | +#: app/helpers/application_helper.rb:573 | |
864 | 864 | msgid "This is a search box. Click, write your query, and press enter to find" |
865 | 865 | msgstr "" |
866 | 866 | |
867 | -#: app/helpers/application_helper.rb:573 | |
867 | +#: app/helpers/application_helper.rb:574 | |
868 | 868 | msgid "Click, write and press enter to find" |
869 | 869 | msgstr "" |
870 | 870 | |
871 | -#: app/helpers/application_helper.rb:579 app/models/link_list_block.rb:19 | |
871 | +#: app/helpers/application_helper.rb:580 app/models/link_list_block.rb:19 | |
872 | 872 | #: app/views/search/_sellers_form.rhtml:21 |
873 | 873 | #: app/views/search/_search_form.rhtml:19 app/views/search/communities.rhtml:9 |
874 | 874 | #: app/views/search/articles.rhtml:10 app/views/search/people.rhtml:10 |
875 | -#: app/views/home/index.rhtml:55 app/views/region_validators/region.rhtml:23 | |
875 | +#: app/views/home/index.rhtml:57 app/views/region_validators/region.rhtml:23 | |
876 | 876 | msgid "Search" |
877 | 877 | msgstr "" |
878 | 878 | |
879 | -#: app/helpers/application_helper.rb:759 | |
879 | +#: app/helpers/application_helper.rb:760 | |
880 | 880 | msgid "Searched for '%s'" |
881 | 881 | msgstr "" |
882 | 882 | |
883 | -#: app/helpers/application_helper.rb:760 | |
883 | +#: app/helpers/application_helper.rb:761 | |
884 | 884 | msgid "In category %s" |
885 | 885 | msgstr "" |
886 | 886 | |
887 | -#: app/helpers/application_helper.rb:761 | |
887 | +#: app/helpers/application_helper.rb:762 | |
888 | 888 | msgid "within %d km from %s" |
889 | 889 | msgstr "" |
890 | 890 | |
891 | -#: app/helpers/application_helper.rb:762 | |
891 | +#: app/helpers/application_helper.rb:763 | |
892 | 892 | msgid "%d results found" |
893 | 893 | msgstr "" |
894 | 894 | |
895 | -#: app/helpers/application_helper.rb:768 | |
895 | +#: app/helpers/application_helper.rb:769 | |
896 | 896 | msgid "In all categories" |
897 | 897 | msgstr "" |
898 | 898 | |
... | ... | @@ -4153,7 +4153,7 @@ msgstr "" |
4153 | 4153 | msgid "Search for:" |
4154 | 4154 | msgstr "" |
4155 | 4155 | |
4156 | -#: app/views/search/_search_form.rhtml:55 app/views/home/index.rhtml:59 | |
4156 | +#: app/views/search/_search_form.rhtml:55 app/views/home/index.rhtml:61 | |
4157 | 4157 | msgid "More options" |
4158 | 4158 | msgstr "" |
4159 | 4159 | |
... | ... | @@ -4353,15 +4353,19 @@ msgstr "" |
4353 | 4353 | msgid "News" |
4354 | 4354 | msgstr "" |
4355 | 4355 | |
4356 | -#: app/views/home/index.rhtml:42 | |
4357 | -msgid "Activate your enterprise" | |
4356 | +#: app/views/home/index.rhtml:31 | |
4357 | +msgid "View more" | |
4358 | 4358 | msgstr "" |
4359 | 4359 | |
4360 | 4360 | #: app/views/home/index.rhtml:43 |
4361 | +msgid "Activate your enterprise" | |
4362 | +msgstr "" | |
4363 | + | |
4364 | +#: app/views/home/index.rhtml:44 | |
4361 | 4365 | msgid "Enterprise activation code" |
4362 | 4366 | msgstr "" |
4363 | 4367 | |
4364 | -#: app/views/home/index.rhtml:44 app/views/enterprise_editor/index.rhtml:17 | |
4368 | +#: app/views/home/index.rhtml:45 app/views/enterprise_editor/index.rhtml:17 | |
4365 | 4369 | msgid "Activate" |
4366 | 4370 | msgstr "" |
4367 | 4371 | ... | ... |
po/noosfero.pot
... | ... | @@ -6,8 +6,8 @@ |
6 | 6 | #, fuzzy |
7 | 7 | msgid "" |
8 | 8 | msgstr "" |
9 | -"Project-Id-Version: noosfero 0.17.1\n" | |
10 | -"POT-Creation-Date: 2009-05-25 20:58-0300\n" | |
9 | +"Project-Id-Version: noosfero 0.18.0\n" | |
10 | +"POT-Creation-Date: 2009-05-25 22:58-0300\n" | |
11 | 11 | "PO-Revision-Date: 2007-08-30 18:47-0300\n" |
12 | 12 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
13 | 13 | "Language-Team: LANGUAGE <LL@li.org>\n" |
... | ... | @@ -843,56 +843,56 @@ msgid_plural "%s members" |
843 | 843 | msgstr[0] "" |
844 | 844 | msgstr[1] "" |
845 | 845 | |
846 | -#: app/helpers/application_helper.rb:508 | |
846 | +#: app/helpers/application_helper.rb:509 | |
847 | 847 | #: app/views/content_viewer/view_page.rhtml:92 |
848 | 848 | #: app/views/categories/index.rhtml:1 |
849 | 849 | msgid "Categories" |
850 | 850 | msgstr "" |
851 | 851 | |
852 | -#: app/helpers/application_helper.rb:531 | |
852 | +#: app/helpers/application_helper.rb:532 | |
853 | 853 | msgid "open" |
854 | 854 | msgstr "" |
855 | 855 | |
856 | -#: app/helpers/application_helper.rb:570 | |
856 | +#: app/helpers/application_helper.rb:571 | |
857 | 857 | #: app/views/layouts/application-ng.rhtml:70 |
858 | 858 | #: app/views/layouts/application-ng.rhtml:72 |
859 | 859 | #: app/views/layouts/application-ng.rhtml:75 |
860 | 860 | msgid "Search..." |
861 | 861 | msgstr "" |
862 | 862 | |
863 | -#: app/helpers/application_helper.rb:572 | |
863 | +#: app/helpers/application_helper.rb:573 | |
864 | 864 | msgid "This is a search box. Click, write your query, and press enter to find" |
865 | 865 | msgstr "" |
866 | 866 | |
867 | -#: app/helpers/application_helper.rb:573 | |
867 | +#: app/helpers/application_helper.rb:574 | |
868 | 868 | msgid "Click, write and press enter to find" |
869 | 869 | msgstr "" |
870 | 870 | |
871 | -#: app/helpers/application_helper.rb:579 app/models/link_list_block.rb:19 | |
871 | +#: app/helpers/application_helper.rb:580 app/models/link_list_block.rb:19 | |
872 | 872 | #: app/views/search/_sellers_form.rhtml:21 |
873 | 873 | #: app/views/search/_search_form.rhtml:19 app/views/search/communities.rhtml:9 |
874 | 874 | #: app/views/search/articles.rhtml:10 app/views/search/people.rhtml:10 |
875 | -#: app/views/home/index.rhtml:55 app/views/region_validators/region.rhtml:23 | |
875 | +#: app/views/home/index.rhtml:57 app/views/region_validators/region.rhtml:23 | |
876 | 876 | msgid "Search" |
877 | 877 | msgstr "" |
878 | 878 | |
879 | -#: app/helpers/application_helper.rb:759 | |
879 | +#: app/helpers/application_helper.rb:760 | |
880 | 880 | msgid "Searched for '%s'" |
881 | 881 | msgstr "" |
882 | 882 | |
883 | -#: app/helpers/application_helper.rb:760 | |
883 | +#: app/helpers/application_helper.rb:761 | |
884 | 884 | msgid "In category %s" |
885 | 885 | msgstr "" |
886 | 886 | |
887 | -#: app/helpers/application_helper.rb:761 | |
887 | +#: app/helpers/application_helper.rb:762 | |
888 | 888 | msgid "within %d km from %s" |
889 | 889 | msgstr "" |
890 | 890 | |
891 | -#: app/helpers/application_helper.rb:762 | |
891 | +#: app/helpers/application_helper.rb:763 | |
892 | 892 | msgid "%d results found" |
893 | 893 | msgstr "" |
894 | 894 | |
895 | -#: app/helpers/application_helper.rb:768 | |
895 | +#: app/helpers/application_helper.rb:769 | |
896 | 896 | msgid "In all categories" |
897 | 897 | msgstr "" |
898 | 898 | |
... | ... | @@ -4153,7 +4153,7 @@ msgstr "" |
4153 | 4153 | msgid "Search for:" |
4154 | 4154 | msgstr "" |
4155 | 4155 | |
4156 | -#: app/views/search/_search_form.rhtml:55 app/views/home/index.rhtml:59 | |
4156 | +#: app/views/search/_search_form.rhtml:55 app/views/home/index.rhtml:61 | |
4157 | 4157 | msgid "More options" |
4158 | 4158 | msgstr "" |
4159 | 4159 | |
... | ... | @@ -4353,15 +4353,19 @@ msgstr "" |
4353 | 4353 | msgid "News" |
4354 | 4354 | msgstr "" |
4355 | 4355 | |
4356 | -#: app/views/home/index.rhtml:42 | |
4357 | -msgid "Activate your enterprise" | |
4356 | +#: app/views/home/index.rhtml:31 | |
4357 | +msgid "View more" | |
4358 | 4358 | msgstr "" |
4359 | 4359 | |
4360 | 4360 | #: app/views/home/index.rhtml:43 |
4361 | +msgid "Activate your enterprise" | |
4362 | +msgstr "" | |
4363 | + | |
4364 | +#: app/views/home/index.rhtml:44 | |
4361 | 4365 | msgid "Enterprise activation code" |
4362 | 4366 | msgstr "" |
4363 | 4367 | |
4364 | -#: app/views/home/index.rhtml:44 app/views/enterprise_editor/index.rhtml:17 | |
4368 | +#: app/views/home/index.rhtml:45 app/views/enterprise_editor/index.rhtml:17 | |
4365 | 4369 | msgid "Activate" |
4366 | 4370 | msgstr "" |
4367 | 4371 | ... | ... |
po/pt_BR/noosfero.po
... | ... | @@ -11,9 +11,9 @@ |
11 | 11 | # |
12 | 12 | msgid "" |
13 | 13 | msgstr "" |
14 | -"Project-Id-Version: noosfero 0.17.1\n" | |
15 | -"POT-Creation-Date: 2009-05-25 20:58-0300\n" | |
16 | -"PO-Revision-Date: 2009-05-25 21:45-0300\n" | |
14 | +"Project-Id-Version: noosfero 0.18.0\n" | |
15 | +"POT-Creation-Date: 2009-05-25 22:58-0300\n" | |
16 | +"PO-Revision-Date: 2009-05-25 22:59-0300\n" | |
17 | 17 | "Last-Translator: Joenio Costa <joenio@colivre.coop.br>\n" |
18 | 18 | "Language-Team: LANGUAGE <LL@li.org>\n" |
19 | 19 | "MIME-Version: 1.0\n" |
... | ... | @@ -849,58 +849,58 @@ msgid_plural "%s members" |
849 | 849 | msgstr[0] "1 integrante" |
850 | 850 | msgstr[1] "%s integrantes" |
851 | 851 | |
852 | -#: app/helpers/application_helper.rb:508 | |
852 | +#: app/helpers/application_helper.rb:509 | |
853 | 853 | #: app/views/content_viewer/view_page.rhtml:92 |
854 | 854 | #: app/views/categories/index.rhtml:1 |
855 | 855 | msgid "Categories" |
856 | 856 | msgstr "Categorias" |
857 | 857 | |
858 | -#: app/helpers/application_helper.rb:531 | |
858 | +#: app/helpers/application_helper.rb:532 | |
859 | 859 | msgid "open" |
860 | 860 | msgstr "aberto" |
861 | 861 | |
862 | -#: app/helpers/application_helper.rb:570 | |
862 | +#: app/helpers/application_helper.rb:571 | |
863 | 863 | #: app/views/layouts/application-ng.rhtml:70 |
864 | 864 | #: app/views/layouts/application-ng.rhtml:72 |
865 | 865 | #: app/views/layouts/application-ng.rhtml:75 |
866 | 866 | msgid "Search..." |
867 | 867 | msgstr "Busca..." |
868 | 868 | |
869 | -#: app/helpers/application_helper.rb:572 | |
869 | +#: app/helpers/application_helper.rb:573 | |
870 | 870 | msgid "This is a search box. Click, write your query, and press enter to find" |
871 | 871 | msgstr "" |
872 | 872 | "Isto é uma caixa de busca. Clique, escreva sua consulta, e pressione enter " |
873 | 873 | "para pesquisar" |
874 | 874 | |
875 | -#: app/helpers/application_helper.rb:573 | |
875 | +#: app/helpers/application_helper.rb:574 | |
876 | 876 | msgid "Click, write and press enter to find" |
877 | 877 | msgstr "Clique, escreva e pressione enter para pesquisar" |
878 | 878 | |
879 | -#: app/helpers/application_helper.rb:579 app/models/link_list_block.rb:19 | |
879 | +#: app/helpers/application_helper.rb:580 app/models/link_list_block.rb:19 | |
880 | 880 | #: app/views/search/_sellers_form.rhtml:21 |
881 | 881 | #: app/views/search/_search_form.rhtml:19 app/views/search/communities.rhtml:9 |
882 | 882 | #: app/views/search/articles.rhtml:10 app/views/search/people.rhtml:10 |
883 | -#: app/views/home/index.rhtml:55 app/views/region_validators/region.rhtml:23 | |
883 | +#: app/views/home/index.rhtml:57 app/views/region_validators/region.rhtml:23 | |
884 | 884 | msgid "Search" |
885 | 885 | msgstr "Busca" |
886 | 886 | |
887 | -#: app/helpers/application_helper.rb:759 | |
887 | +#: app/helpers/application_helper.rb:760 | |
888 | 888 | msgid "Searched for '%s'" |
889 | 889 | msgstr "Busca por '%s'" |
890 | 890 | |
891 | -#: app/helpers/application_helper.rb:760 | |
891 | +#: app/helpers/application_helper.rb:761 | |
892 | 892 | msgid "In category %s" |
893 | 893 | msgstr "Na categoria %s" |
894 | 894 | |
895 | -#: app/helpers/application_helper.rb:761 | |
895 | +#: app/helpers/application_helper.rb:762 | |
896 | 896 | msgid "within %d km from %s" |
897 | 897 | msgstr "no raio de %s km até %s" |
898 | 898 | |
899 | -#: app/helpers/application_helper.rb:762 | |
899 | +#: app/helpers/application_helper.rb:763 | |
900 | 900 | msgid "%d results found" |
901 | 901 | msgstr "%d resultados encontrados" |
902 | 902 | |
903 | -#: app/helpers/application_helper.rb:768 | |
903 | +#: app/helpers/application_helper.rb:769 | |
904 | 904 | msgid "In all categories" |
905 | 905 | msgstr "Em todas as categorias" |
906 | 906 | |
... | ... | @@ -4298,7 +4298,7 @@ msgstr "Buscar dentro de:" |
4298 | 4298 | msgid "Search for:" |
4299 | 4299 | msgstr "Buscar por:" |
4300 | 4300 | |
4301 | -#: app/views/search/_search_form.rhtml:55 app/views/home/index.rhtml:59 | |
4301 | +#: app/views/search/_search_form.rhtml:55 app/views/home/index.rhtml:61 | |
4302 | 4302 | msgid "More options" |
4303 | 4303 | msgstr "Mais opções" |
4304 | 4304 | |
... | ... | @@ -4501,15 +4501,19 @@ msgstr "Editar empreendimento como favorito" |
4501 | 4501 | msgid "News" |
4502 | 4502 | msgstr "Notícias" |
4503 | 4503 | |
4504 | -#: app/views/home/index.rhtml:42 | |
4504 | +#: app/views/home/index.rhtml:31 | |
4505 | +msgid "View more" | |
4506 | +msgstr "Ver mais" | |
4507 | + | |
4508 | +#: app/views/home/index.rhtml:43 | |
4505 | 4509 | msgid "Activate your enterprise" |
4506 | 4510 | msgstr "Ativar seu empreendimento" |
4507 | 4511 | |
4508 | -#: app/views/home/index.rhtml:43 | |
4512 | +#: app/views/home/index.rhtml:44 | |
4509 | 4513 | msgid "Enterprise activation code" |
4510 | 4514 | msgstr "Código de Ativação do empreendimento" |
4511 | 4515 | |
4512 | -#: app/views/home/index.rhtml:44 app/views/enterprise_editor/index.rhtml:17 | |
4516 | +#: app/views/home/index.rhtml:45 app/views/enterprise_editor/index.rhtml:17 | |
4513 | 4517 | msgid "Activate" |
4514 | 4518 | msgstr "Ativar" |
4515 | 4519 | ... | ... |