Commit 7270935f29363b7f7539d1003e45829e8f1926b2
Exists in
master
and in
27 other branches
Merge branch 'master' into stoa
Showing
75 changed files
with
2515 additions
and
1826 deletions
Show diff stats
app/controllers/my_profile/profile_editor_controller.rb
| ... | ... | @@ -20,14 +20,16 @@ class ProfileEditorController < MyProfileController |
| 20 | 20 | if request.post? |
| 21 | 21 | params[:profile_data][:fields_privacy] ||= {} if profile.person? && params[:profile_data].is_a?(Hash) |
| 22 | 22 | Profile.transaction do |
| 23 | - Image.transaction do | |
| 24 | - if @profile_data.update_attributes(params[:profile_data]) | |
| 25 | - redirect_to :action => 'index', :profile => profile.identifier | |
| 26 | - else | |
| 27 | - profile.identifier = params[:profile] if profile.identifier.blank? | |
| 23 | + Image.transaction do | |
| 24 | + begin | |
| 25 | + @plugins.dispatch(:profile_editor_transaction_extras) | |
| 26 | + @profile_data.update_attributes!(params[:profile_data]) | |
| 27 | + redirect_to :action => 'index', :profile => profile.identifier | |
| 28 | + rescue Exception => ex | |
| 29 | + profile.identifier = params[:profile] if profile.identifier.blank? | |
| 30 | + end | |
| 28 | 31 | end |
| 29 | 32 | end |
| 30 | - end | |
| 31 | 33 | end |
| 32 | 34 | end |
| 33 | 35 | ... | ... |
app/controllers/public/chat_controller.rb
| ... | ... | @@ -19,7 +19,7 @@ class ChatController < PublicController |
| 19 | 19 | def avatar |
| 20 | 20 | profile = environment.profiles.find_by_identifier(params[:id]) |
| 21 | 21 | filename, mimetype = profile_icon(profile, :minor, true) |
| 22 | - if filename =~ /^https?:/ | |
| 22 | + if filename =~ /^(https?:)?\/\// | |
| 23 | 23 | redirect_to filename |
| 24 | 24 | else |
| 25 | 25 | data = File.read(File.join(Rails.root, 'public', filename)) | ... | ... |
app/controllers/public/profile_controller.rb
| ... | ... | @@ -65,13 +65,13 @@ class ProfileController < PublicController |
| 65 | 65 | |
| 66 | 66 | def friends |
| 67 | 67 | if is_cache_expired?(profile.friends_cache_key(params)) |
| 68 | - @friends = profile.friends.includes(relations_to_include).paginate(:per_page => per_page, :page => params[:npage]) | |
| 68 | + @friends = profile.friends.includes(relations_to_include).paginate(:per_page => per_page, :page => params[:npage], :total_entries => profile.friends.count) | |
| 69 | 69 | end |
| 70 | 70 | end |
| 71 | 71 | |
| 72 | 72 | def members |
| 73 | 73 | if is_cache_expired?(profile.members_cache_key(params)) |
| 74 | - @members = profile.members_by_name.includes(relations_to_include).paginate(:per_page => members_per_page, :page => params[:npage]) | |
| 74 | + @members = profile.members_by_name.includes(relations_to_include).paginate(:per_page => members_per_page, :page => params[:npage], :total_entries => profile.members.count) | |
| 75 | 75 | end |
| 76 | 76 | end |
| 77 | 77 | ... | ... |
app/helpers/application_helper.rb
| ... | ... | @@ -907,13 +907,15 @@ module ApplicationHelper |
| 907 | 907 | end |
| 908 | 908 | |
| 909 | 909 | def page_title |
| 910 | - (@page ? @page.title + ' - ' : '') + | |
| 911 | - (@topic ? @topic.title + ' - ' : '') + | |
| 912 | - (@section ? @section.title + ' - ' : '') + | |
| 913 | - (@toc ? _('Online Manual') + ' - ' : '') + | |
| 914 | - (controller.controller_name == 'chat' ? _('Chat') + ' - ' : '') + | |
| 915 | - (profile ? profile.short_name : environment.name) + | |
| 916 | - (@category ? " - #{@category.full_name}" : '') | |
| 910 | + CGI.escapeHTML( | |
| 911 | + (@page ? @page.title + ' - ' : '') + | |
| 912 | + (@topic ? @topic.title + ' - ' : '') + | |
| 913 | + (@section ? @section.title + ' - ' : '') + | |
| 914 | + (@toc ? _('Online Manual') + ' - ' : '') + | |
| 915 | + (controller.controller_name == 'chat' ? _('Chat') + ' - ' : '') + | |
| 916 | + (profile ? profile.short_name : environment.name) + | |
| 917 | + (@category ? " - #{@category.full_name}" : '') | |
| 918 | + ) | |
| 917 | 919 | end |
| 918 | 920 | |
| 919 | 921 | # DEPRECATED. Do not use this. |
| ... | ... | @@ -1285,11 +1287,13 @@ module ApplicationHelper |
| 1285 | 1287 | end |
| 1286 | 1288 | |
| 1287 | 1289 | def delete_article_message(article) |
| 1288 | - if article.folder? | |
| 1289 | - _("Are you sure that you want to remove the folder \"%s\"? Note that all the items inside it will also be removed!") % article.name | |
| 1290 | - else | |
| 1291 | - _("Are you sure that you want to remove the item \"%s\"?") % article.name | |
| 1292 | - end | |
| 1290 | + CGI.escapeHTML( | |
| 1291 | + if article.folder? | |
| 1292 | + _("Are you sure that you want to remove the folder \"%s\"? Note that all the items inside it will also be removed!") % article.name | |
| 1293 | + else | |
| 1294 | + _("Are you sure that you want to remove the item \"%s\"?") % article.name | |
| 1295 | + end | |
| 1296 | + ) | |
| 1293 | 1297 | end |
| 1294 | 1298 | |
| 1295 | 1299 | def expirable_link_to(expired, content, url, options = {}) | ... | ... |
app/helpers/layout_helper.rb
| ... | ... | @@ -92,7 +92,7 @@ module LayoutHelper |
| 92 | 92 | end |
| 93 | 93 | |
| 94 | 94 | def meta_description_tag(article=nil) |
| 95 | - article ? truncate(strip_tags(article.body.to_s), :length => 200) : environment.name | |
| 95 | + article ? CGI.escapeHTML(truncate(strip_tags(article.body.to_s), :length => 200)) : environment.name | |
| 96 | 96 | end |
| 97 | 97 | end |
| 98 | 98 | ... | ... |
app/helpers/role_helper.rb
app/models/profile.rb
app/models/user.rb
| ... | ... | @@ -205,6 +205,10 @@ class User < ActiveRecord::Base |
| 205 | 205 | Digest::MD5.hexdigest(password) |
| 206 | 206 | end |
| 207 | 207 | |
| 208 | + add_encryption_method :salted_md5 do |password, salt| | |
| 209 | + Digest::MD5.hexdigest(password+salt) | |
| 210 | + end | |
| 211 | + | |
| 208 | 212 | add_encryption_method :clear do |password, salt| |
| 209 | 213 | password |
| 210 | 214 | end |
| ... | ... | @@ -354,6 +358,7 @@ class User < ActiveRecord::Base |
| 354 | 358 | end |
| 355 | 359 | |
| 356 | 360 | def delay_activation_check |
| 361 | + return if person.is_template? | |
| 357 | 362 | Delayed::Job.enqueue(UserActivationJob.new(self.id), {:priority => 0, :run_at => 72.hours.from_now}) |
| 358 | 363 | end |
| 359 | 364 | end | ... | ... |
app/views/file_presenter/_generic.html.erb
| 1 | 1 | <span class="download-link"> |
| 2 | 2 | <span>Download</span> |
| 3 | - <strong><%= link_to generic.filename, generic.public_filename %></strong> | |
| 3 | + <strong><%= link_to generic.filename, [Noosfero.root, generic.public_filename].join %></strong> | |
| 4 | 4 | </span> |
| 5 | 5 | |
| 6 | 6 | <div class="uploaded-file-description <%= 'empty' if generic.abstract.blank? %>"> | ... | ... |
app/views/file_presenter/_image.html.erb
| ... | ... | @@ -28,7 +28,7 @@ |
| 28 | 28 | |
| 29 | 29 | <%# image_tag(article.public_filename(:display), :class => article.css_class_name, :style => 'max-width: 100%') %> |
| 30 | 30 | |
| 31 | -<img src="<%=image.public_filename(:display)%>" class="<%=image.css_class_name%>"> | |
| 31 | +<img src="<%= [Noosfero.root, image.public_filename(:display)].join %>" class="<%=image.css_class_name%>"> | |
| 32 | 32 | |
| 33 | 33 | <div class="uploaded-file-description <%= 'empty' if image.abstract.blank? %>"> |
| 34 | 34 | <%= image.abstract %> | ... | ... |
app/views/home/index.html.erb
app/views/layouts/application-ng.html.erb
| ... | ... | @@ -17,7 +17,7 @@ |
| 17 | 17 | <meta property="og:url" content="<%= @page ? url_for(@page.url) : @environment.top_url %>"> |
| 18 | 18 | <meta property="og:title" content="<%= h page_title %>"> |
| 19 | 19 | <meta property="og:site_name" content="<%= profile ? profile.name : @environment.name %>"> |
| 20 | - <meta property="og:description" content="<%= @page ? truncate(strip_tags(@page.body.to_s), :length => 200) : @environment.name %>"> | |
| 20 | + <meta property="og:description" content="<%= meta_description_tag(@page) %>"> | |
| 21 | 21 | |
| 22 | 22 | <!-- site root --> |
| 23 | 23 | <meta property="noosfero:root" content="<%= Noosfero.root %>"/> | ... | ... |
app/views/profile_editor/_person_form.html.erb
| ... | ... | @@ -27,6 +27,10 @@ |
| 27 | 27 | <%= optional_field(@person, 'district', labelled_form_field(_('District'), text_field(:profile_data, :district, :rel => _('District')))) %> |
| 28 | 28 | <%= optional_field(@person, 'image', labelled_form_field(_('Image'), file_field(:file, :image, :rel => _('Image')))) %> |
| 29 | 29 | |
| 30 | +<% @plugins.dispatch(:extra_optional_fields).each do |field| %> | |
| 31 | + <%= optional_field(@person, field[:name], labelled_form_field(field[:label], text_field(field[:object_name], field[:method], :rel => field[:label], :value => field[:value]))) %> | |
| 32 | +<% end %> | |
| 33 | + | |
| 30 | 34 | <% optional_field(@person, 'schooling') do %> |
| 31 | 35 | <div class="formfieldline"> |
| 32 | 36 | <label class='formlabel' for='profile_data_schooling'><%= _('Schooling') %></label> | ... | ... |
app/views/role/_form.html.erb
| ... | ... | @@ -6,10 +6,14 @@ |
| 6 | 6 | |
| 7 | 7 | <%= required f.text_field(:name) %> |
| 8 | 8 | |
| 9 | - <p><%= _('Permissions:') %><p> | |
| 10 | - <% permissions.keys.each do |p| %> | |
| 11 | - <%= check_box_tag("role[permissions][]", p, role.has_permission?(p), { :id => p }) %> | |
| 12 | - <%= content_tag(:label, permission_name(p), { :for => p }) %><br/> | |
| 9 | + <% permissions.each do |key| %> | |
| 10 | + <div class="permissions <%= key.downcase %>"> | |
| 11 | + <h4><%= _('%s Permissions:' % key) %></h4> | |
| 12 | + <% ActiveRecord::Base::PERMISSIONS[key].keys.each do |p| %> | |
| 13 | + <%= check_box_tag("role[permissions][]", p, role.has_permission?(p), { :id => p }) %> | |
| 14 | + <%= content_tag(:label, permission_name(p), { :for => p }) %><br/> | |
| 15 | + <% end %> | |
| 16 | + </div> | |
| 13 | 17 | <% end %> |
| 14 | 18 | |
| 15 | 19 | <% button_bar do %> | ... | ... |
app/views/role/edit.html.erb
| 1 | 1 | <h2> <%= _("Editing #{@role.name}") %> </h2> |
| 2 | 2 | |
| 3 | -<%= render :partial => 'form', :locals => { :mode => :edit, :role => @role, :permissions => ActiveRecord::Base::PERMISSIONS[@role.kind] } %> | |
| 3 | +<%= render :partial => 'form', :locals => { :mode => :edit, :role => @role, :permissions => role_available_permissions(@role) } %> | ... | ... |
app/views/role/new.html.erb
| 1 | 1 | <h2> <%= _("Create a new role") %> </h2> |
| 2 | 2 | |
| 3 | -<%= render :partial => 'form', :locals => { :mode => :create, :role => @role, :permissions => ActiveRecord::Base::PERMISSIONS[@role.kind] } %> | |
| 3 | +<%= render :partial => 'form', :locals => { :mode => :create, :role => @role, :permissions => role_available_permissions(@role) } %> | ... | ... |
debian/changelog
| ... | ... | @@ -2,25 +2,25 @@ noosfero (1.0~rc4) wheezy-test; urgency=low |
| 2 | 2 | |
| 3 | 3 | * Fourth release candidate |
| 4 | 4 | |
| 5 | - -- Antonio Terceiro <vagrant@wheezy-base> Wed, 19 Nov 2014 10:31:16 -0300 | |
| 5 | + -- Antonio Terceiro <terceiro@colivre.coop.br> Wed, 19 Nov 2014 10:31:16 -0300 | |
| 6 | 6 | |
| 7 | 7 | noosfero (1.0~rc3) wheezy-test; urgency=low |
| 8 | 8 | |
| 9 | 9 | * Third release candidate to Noosfero 1.0 |
| 10 | 10 | |
| 11 | - -- Antonio Terceiro <terceiro@debian.org> Fri, 12 Sep 2014 16:20:58 -0300 | |
| 11 | + -- Antonio Terceiro <terceiro@colivre.coop.br> Fri, 12 Sep 2014 16:20:58 -0300 | |
| 12 | 12 | |
| 13 | 13 | noosfero (1.0~rc2) wheezy-test; urgency=low |
| 14 | 14 | |
| 15 | 15 | * Second 1.0 release candidate |
| 16 | 16 | |
| 17 | - -- Antonio Terceiro <terceiro@debian.org> Fri, 12 Sep 2014 13:01:11 -0300 | |
| 17 | + -- Antonio Terceiro <terceiro@colivre.coop.br> Fri, 12 Sep 2014 13:01:11 -0300 | |
| 18 | 18 | |
| 19 | 19 | noosfero (1.0~rc1) wheezy-test; urgency=low |
| 20 | 20 | |
| 21 | 21 | * First 1.0 release candidate |
| 22 | 22 | |
| 23 | - -- Rodrigo Souto <vagrant@wheezy-base> Fri, 15 Aug 2014 16:35:35 -0300 | |
| 23 | + -- Rodrigo Souto <rodrigo@colivre.coop.br> Fri, 15 Aug 2014 16:35:35 -0300 | |
| 24 | 24 | |
| 25 | 25 | noosfero (0.99.0~rc20140618202455) wheezy-test; urgency=low |
| 26 | 26 | ... | ... |
features/gravatar_support.feature
| ... | ... | @@ -20,11 +20,11 @@ Feature: Gravatar Support |
| 20 | 20 | Scenario: The Aurium's gravatar picture must link to his gravatar profile |
| 21 | 21 | # because Aurium has his picture registered at garvatar.com. |
| 22 | 22 | When I go to article "My Article" |
| 23 | - Then I should see "Aurium" linking to "http://www.gravatar.com/24a625896a07aa37fdb2352e302e96de" | |
| 23 | + Then I should see "Aurium" linking to "//www.gravatar.com/24a625896a07aa37fdb2352e302e96de" | |
| 24 | 24 | |
| 25 | 25 | @selenium |
| 26 | 26 | Scenario: The NoOne's gravatar picture must link to Gravatar homepage |
| 27 | 27 | # because NoOne <nobody@colivre.coop.br> has no picture registered. |
| 28 | 28 | When I go to article "My Article" |
| 29 | - Then I should see "NoOne" linking to "http://www.gravatar.com" | |
| 29 | + Then I should see "NoOne" linking to "//www.gravatar.com" | |
| 30 | 30 | ... | ... |
features/step_definitions/noosfero_steps.rb
| ... | ... | @@ -764,3 +764,11 @@ When /^I confirm the "(.*)" dialog$/ do |confirmation| |
| 764 | 764 | assert_equal confirmation, a.text |
| 765 | 765 | a.accept |
| 766 | 766 | end |
| 767 | + | |
| 768 | +Given /^the field (.*) is public for all users$/ do |field| | |
| 769 | + Person.all.each do |person| | |
| 770 | + person.fields_privacy = Hash.new if person.fields_privacy.nil? | |
| 771 | + person.fields_privacy[field] = "public" | |
| 772 | + person.save! | |
| 773 | + end | |
| 774 | +end | |
| 767 | 775 | \ No newline at end of file | ... | ... |
lib/log_memory_consumption_job.rb
lib/noosfero/gravatar.rb
| 1 | 1 | module Noosfero::Gravatar |
| 2 | 2 | def gravatar_profile_image_url(email, options = {}) |
| 3 | - "http://www.gravatar.com/avatar/#{Digest::MD5.hexdigest(email.to_s)}?" + { | |
| 3 | + "//www.gravatar.com/avatar/#{Digest::MD5.hexdigest(email.to_s)}?" + { | |
| 4 | 4 | :only_path => false, |
| 5 | 5 | }.merge(options).map{|k,v| '%s=%s' % [ k,v ] }.join('&') |
| 6 | 6 | end |
| 7 | 7 | |
| 8 | 8 | def gravatar_profile_url(email) |
| 9 | - 'http://www.gravatar.com/'+ Digest::MD5.hexdigest(email.to_s) | |
| 9 | + '//www.gravatar.com/'+ Digest::MD5.hexdigest(email.to_s) | |
| 10 | 10 | end |
| 11 | 11 | end | ... | ... |
lib/noosfero/plugin.rb
| ... | ... | @@ -545,6 +545,18 @@ class Noosfero::Plugin |
| 545 | 545 | nil |
| 546 | 546 | end |
| 547 | 547 | |
| 548 | + # -> Perform extra transactions related to profile in profile editor | |
| 549 | + # returns = true in success or raise and exception if it could not update the data | |
| 550 | + def profile_editor_transaction_extras | |
| 551 | + nil | |
| 552 | + end | |
| 553 | + | |
| 554 | + # -> Return a list of hashs with the needed information to create optional fields | |
| 555 | + # returns = a list of hashs as {:name => "string", :label => "string", :object_name => :key, :method => :key} | |
| 556 | + def extra_optional_fields | |
| 557 | + [] | |
| 558 | + end | |
| 559 | + | |
| 548 | 560 | # -> Adds additional blocks to profiles and environments. |
| 549 | 561 | # Your plugin must implements a class method called 'extra_blocks' |
| 550 | 562 | # that returns a hash with the following syntax. | ... | ... |
lib/tasks/ci.rake
| ... | ... | @@ -35,7 +35,7 @@ namespace :ci do |
| 35 | 35 | |
| 36 | 36 | sh 'testrb', '-Itest', *tests unless tests.empty? |
| 37 | 37 | sh 'cucumber', *features unless features.empty? |
| 38 | - sh 'cucumber', '-p', 'selenium', *features unless features.empty? | |
| 38 | + sh 'xvfb-run', 'cucumber', '-p', 'selenium', *features unless features.empty? | |
| 39 | 39 | |
| 40 | 40 | changed_plugins.each do |plugin| |
| 41 | 41 | task = "test:noosfero_plugins:#{plugin}" | ... | ... |
lib/tasks/plugins_tests.rake
lib/user_activation_job.rb
| ... | ... | @@ -0,0 +1,45 @@ |
| 1 | +README - Lattes Curriculum (LattesCurriculum Plugin) | |
| 2 | +================================ | |
| 3 | + | |
| 4 | +Lattes Curriculum is a plugin that allow users to show their academic informations in the wall, extracted from CNPQ's lattes plataform | |
| 5 | + | |
| 6 | +INSTALL | |
| 7 | +======= | |
| 8 | + | |
| 9 | +Enable Plugin | |
| 10 | +------------- | |
| 11 | + | |
| 12 | +Also, you need to enable LattesCurriculum Plugin on your Noosfero: | |
| 13 | + | |
| 14 | +cd <your_noosfero_dir> | |
| 15 | +./script/noosfero-plugins enable lattes_curriculum | |
| 16 | + | |
| 17 | +Active Plugin | |
| 18 | +------------- | |
| 19 | + | |
| 20 | +As a Noosfero administrator user, go to administrator panel: | |
| 21 | + | |
| 22 | +- Click on "Enable/disable plugins" option | |
| 23 | +- Click on "LattesCurriculumPlugin" check-box | |
| 24 | + | |
| 25 | +Running LattesCurriculum tests | |
| 26 | +-------------------- | |
| 27 | + | |
| 28 | +$ rake test:noosfero_plugins:lattes_curriculum | |
| 29 | + | |
| 30 | +LICENSE | |
| 31 | +======= | |
| 32 | + | |
| 33 | +Copyright (c) The Author developers. | |
| 34 | + | |
| 35 | +See Noosfero license. | |
| 36 | + | |
| 37 | + | |
| 38 | +AUTHORS | |
| 39 | +======= | |
| 40 | + | |
| 41 | +Jose Pedro (1jpsneto at gmail.com) | |
| 42 | +Thiago Kairala (thiagor.kairala at gmail.com) | |
| 43 | +Ana Paula Vargas (anapaulavnoronha at gmail.com) | |
| 44 | +Leandro Veloso (leandrovelosorodrigues at gmail.com) | |
| 45 | +Arthur Del Esposte (arthurmde at gmail.com) | |
| 0 | 46 | \ No newline at end of file | ... | ... |
plugins/lattes_curriculum/db/migrate/20140814210103_create_academic_infos.rb
0 → 100644
plugins/lattes_curriculum/features/lattes_curriculum.feature
0 → 100644
| ... | ... | @@ -0,0 +1,49 @@ |
| 1 | +Feature: import lattes information | |
| 2 | + As an user | |
| 3 | + I want to inform my lattes url address | |
| 4 | + So that I can import my academic informations automatically | |
| 5 | + | |
| 6 | + Background: | |
| 7 | + Given "LattesCurriculumPlugin" plugin is enabled | |
| 8 | + And I am logged in as admin | |
| 9 | + And I go to /admin/plugins | |
| 10 | + And I check "Lattes Curriculum Plugin" | |
| 11 | + And I press "Save changes" | |
| 12 | + And I go to /admin/features/manage_fields | |
| 13 | + Given I follow "Person's fields" | |
| 14 | + And I check "person_fields_lattes_url_active" | |
| 15 | + And I check "person_fields_lattes_url_signup" | |
| 16 | + And I press "save_person_fields" | |
| 17 | + | |
| 18 | + Scenario: Don't accept edit the profile with invalid lattes url | |
| 19 | + Given I am on admin_user's control panel | |
| 20 | + When I follow "Edit Profile" | |
| 21 | + And I fill in "Lattes URL" with "http://youtube.com.br/" | |
| 22 | + And I press "Save" | |
| 23 | + Then I should see "Academic info lattes url is invalid" | |
| 24 | + | |
| 25 | + Scenario: Import lattes informations | |
| 26 | + Given I am on admin_user's control panel | |
| 27 | + And the field lattes_url is public for all users | |
| 28 | + When I follow "Edit Profile" | |
| 29 | + And I fill in "Lattes URL" with "http://lattes.cnpq.br/2864976228727880" | |
| 30 | + And I press "Save" | |
| 31 | + And I go to /profile/admin_user#lattes_tab | |
| 32 | + Then I should see "Endereço para acessar este CV: http://lattes.cnpq.br/2864976228727880" | |
| 33 | + | |
| 34 | + Scenario: Don't show lattes informations for blank lattes urls | |
| 35 | + Given I am on admin_user's control panel | |
| 36 | + And the field lattes_url is public for all users | |
| 37 | + When I follow "Edit Profile" | |
| 38 | + And I press "Save" | |
| 39 | + And I go to /profile/admin_user | |
| 40 | + Then I should not see "Lattes" | |
| 41 | + | |
| 42 | + Scenario: Inform problem if the informed lattes doesn't exist | |
| 43 | + Given I am on admin_user's control panel | |
| 44 | + And the field lattes_url is public for all users | |
| 45 | + When I follow "Edit Profile" | |
| 46 | + And I fill in "Lattes URL" with "http://lattes.cnpq.br/123456" | |
| 47 | + And I press "Save" | |
| 48 | + And I go to /profile/admin_user#lattes_tab | |
| 49 | + Then I should see "Lattes not found. Please, make sure the informed URL is correct." | |
| 0 | 50 | \ No newline at end of file | ... | ... |
| ... | ... | @@ -0,0 +1,23 @@ |
| 1 | +class AcademicInfo < ActiveRecord::Base | |
| 2 | + | |
| 3 | + belongs_to :person | |
| 4 | + | |
| 5 | + attr_accessible :lattes_url | |
| 6 | + validate :lattes_url_validate? | |
| 7 | + | |
| 8 | + def lattes_url_validate? | |
| 9 | + unless AcademicInfo.matches?(self.lattes_url) | |
| 10 | + self.errors.add(:lattes_url, _(" is invalid.")) | |
| 11 | + end | |
| 12 | + end | |
| 13 | + | |
| 14 | + def self.matches?(info) | |
| 15 | + lattes = nil | |
| 16 | + if info.class == String | |
| 17 | + lattes = info | |
| 18 | + elsif info.class == Hash | |
| 19 | + lattes = info[:lattes_url] | |
| 20 | + end | |
| 21 | + return lattes.blank? || lattes =~ /^http:\/\/lattes.cnpq.br\/\d+$/ | |
| 22 | + end | |
| 23 | +end | ... | ... |
| ... | ... | @@ -0,0 +1,32 @@ |
| 1 | +require_dependency 'person' | |
| 2 | + | |
| 3 | +class Person | |
| 4 | + | |
| 5 | + attr_accessible :lattes_url, :academic_info_attributes | |
| 6 | + | |
| 7 | + has_one :academic_info | |
| 8 | + | |
| 9 | + after_destroy do |person| | |
| 10 | + if !person.environment.nil? && | |
| 11 | +person.environment.plugin_enabled?(LattesCurriculumPlugin) && | |
| 12 | +!person.academic_info.nil? | |
| 13 | + person.academic_info.destroy | |
| 14 | + end | |
| 15 | + end | |
| 16 | + | |
| 17 | + accepts_nested_attributes_for :academic_info | |
| 18 | + | |
| 19 | + def lattes_url | |
| 20 | + if self.environment && self.environment.plugin_enabled?(LattesCurriculumPlugin) | |
| 21 | + self.academic_info.nil? ? nil : self.academic_info.lattes_url | |
| 22 | + end | |
| 23 | + end | |
| 24 | + | |
| 25 | + def lattes_url= value | |
| 26 | + if self.environment && self.environment.plugin_enabled?(LattesCurriculumPlugin) | |
| 27 | + self.academic_info.lattes_url = value unless self.academic_info.nil? | |
| 28 | + end | |
| 29 | + end | |
| 30 | + | |
| 31 | + FIELDS << "lattes_url" | |
| 32 | +end | ... | ... |
| ... | ... | @@ -0,0 +1,64 @@ |
| 1 | +require 'rubygems' | |
| 2 | +require 'nokogiri' | |
| 3 | +require 'open-uri' | |
| 4 | + | |
| 5 | +Encoding.default_external = Encoding::UTF_8 | |
| 6 | +Encoding.default_internal = Encoding::UTF_8 | |
| 7 | + | |
| 8 | +class Html_parser | |
| 9 | + def get_html(lattes_link = "") | |
| 10 | + begin | |
| 11 | + page = Nokogiri::HTML(open(lattes_link), nil, "UTF-8") | |
| 12 | + page = page.css(".main-content").to_s() | |
| 13 | + page = remove_class_tooltip(page) | |
| 14 | + page = remove_img(page) | |
| 15 | + page = remove_select(page) | |
| 16 | + page = remove_footer(page) | |
| 17 | + page = remove_further_informations(page) | |
| 18 | + rescue OpenURI::HTTPError => e | |
| 19 | + page = _("Lattes not found. Please, make sure the informed URL is correct.") | |
| 20 | + rescue Timeout::Error => e | |
| 21 | + page = _("Lattes Platform is unreachable. Please, try it later.") | |
| 22 | + end | |
| 23 | + end | |
| 24 | + | |
| 25 | + def remove_class_tooltip(page = "") | |
| 26 | + while page.include? 'class="tooltip"' do | |
| 27 | + page['class="tooltip"'] = 'class="link_not_to_mark"' | |
| 28 | + end | |
| 29 | + | |
| 30 | + return page | |
| 31 | + end | |
| 32 | + | |
| 33 | + def remove_img(page = "") | |
| 34 | + fist_part_to_keep, *rest = page.split('<img') | |
| 35 | + second_part = rest.join(" ") | |
| 36 | + part_to_throw_away, *after_img = second_part.split('>',2) | |
| 37 | + page = fist_part_to_keep + after_img.join(" ") | |
| 38 | + end | |
| 39 | + | |
| 40 | + def remove_select(page = "") | |
| 41 | + while page.include? '<label' do | |
| 42 | + first_part_to_keep, *rest = page.split('<label') | |
| 43 | + second_part = rest.join(" ") | |
| 44 | + part_to_throw_away, *after_img = second_part.split('</select>') | |
| 45 | + page = first_part_to_keep + after_img.join(" ") | |
| 46 | + end | |
| 47 | + | |
| 48 | + return page | |
| 49 | + end | |
| 50 | + | |
| 51 | + def remove_footer(page = "") | |
| 52 | + first_part_to_keep, *rest = page.split('<div class="rodape-cv">') | |
| 53 | + second_part = rest.join(" ") | |
| 54 | + part_to_throw_away, *after_img = second_part.split('Imprimir Currículo</a>') | |
| 55 | + page = first_part_to_keep + after_img.join(" ") | |
| 56 | + end | |
| 57 | + | |
| 58 | + def remove_further_informations(page = "") | |
| 59 | + first_part_to_keep, *rest = page.split('<a name="OutrasI') | |
| 60 | + second_part = rest.join(" ") | |
| 61 | + part_to_throw_away, *after_img = second_part.split('</div>',2) | |
| 62 | + page = first_part_to_keep + after_img.join(" ") | |
| 63 | + end | |
| 64 | +end | ... | ... |
plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb
0 → 100755
| ... | ... | @@ -0,0 +1,139 @@ |
| 1 | +class LattesCurriculumPlugin < Noosfero::Plugin | |
| 2 | + | |
| 3 | + def self.plugin_name | |
| 4 | + "Lattes Curriculum Plugin" | |
| 5 | + end | |
| 6 | + | |
| 7 | + def self.plugin_description | |
| 8 | + _("A plugin that imports the lattes curriculum into the users profiles") | |
| 9 | + end | |
| 10 | + | |
| 11 | + def js_files | |
| 12 | + ["singup_complement.js"] | |
| 13 | + end | |
| 14 | + | |
| 15 | + def stylesheet? | |
| 16 | + true | |
| 17 | + end | |
| 18 | + | |
| 19 | + def extra_optional_fields | |
| 20 | + fields = [] | |
| 21 | + | |
| 22 | + lattes_url = { | |
| 23 | + :name => 'lattes_url', | |
| 24 | + :label => 'Lattes URL', | |
| 25 | + :object_name => :academic_infos, | |
| 26 | + :method => :lattes_url, | |
| 27 | + :value => context.profile.nil? ? "" : context.profile.academic_info.lattes_url | |
| 28 | + } | |
| 29 | + | |
| 30 | + fields << lattes_url | |
| 31 | + | |
| 32 | + return fields | |
| 33 | + end | |
| 34 | + | |
| 35 | + def profile_tabs | |
| 36 | + if show_lattes_tab? | |
| 37 | + href = context.profile.academic_info.lattes_url | |
| 38 | + html_parser = Html_parser.new | |
| 39 | + { | |
| 40 | + :title => _("Lattes"), | |
| 41 | + :id => 'lattes_tab', | |
| 42 | + :content => lambda{html_parser.get_html(href)}, | |
| 43 | + :start => false | |
| 44 | + } | |
| 45 | + end | |
| 46 | + end | |
| 47 | + | |
| 48 | + def profile_editor_transaction_extras | |
| 49 | + if context.profile.person? | |
| 50 | + if context.params.has_key?(:academic_infos) | |
| 51 | + academic_info_transaction | |
| 52 | + end | |
| 53 | + end | |
| 54 | + end | |
| 55 | + | |
| 56 | + def profile_editor_controller_filters | |
| 57 | + validate_lattes_url_block = proc do | |
| 58 | + if request.post? | |
| 59 | + if !params[:academic_infos].blank? | |
| 60 | + @profile_data = profile | |
| 61 | + | |
| 62 | + academic_infos = {"academic_info_attributes" => params[:academic_infos]} | |
| 63 | + | |
| 64 | + params_profile_data = params[:profile_data] | |
| 65 | + params_profile_data = params_profile_data.merge(academic_infos) | |
| 66 | + | |
| 67 | + @profile_data.attributes = params_profile_data | |
| 68 | + @profile_data.valid? | |
| 69 | + | |
| 70 | + @possible_domains = profile.possible_domains | |
| 71 | + | |
| 72 | + unless AcademicInfo.matches?(params[:academic_infos]) | |
| 73 | + @profile_data.errors.add(:lattes_url, _(' Invalid lattes url')) | |
| 74 | + render :action => :edit, :profile => profile.identifier | |
| 75 | + end | |
| 76 | + end | |
| 77 | + end | |
| 78 | + end | |
| 79 | + | |
| 80 | + create_academic_info_block = proc do | |
| 81 | + if profile && profile.person? && profile.academic_info.nil? | |
| 82 | + profile.academic_info = AcademicInfo.new | |
| 83 | + end | |
| 84 | + end | |
| 85 | + | |
| 86 | + [{:type => 'before_filter', | |
| 87 | + :method_name => 'validate_lattes_url', | |
| 88 | + :options => {:only => 'edit'}, | |
| 89 | + :block => validate_lattes_url_block }, | |
| 90 | + {:type => 'before_filter', | |
| 91 | + :method_name => 'create_academic_info', | |
| 92 | + :options => {:only => 'edit'}, | |
| 93 | + :block => create_academic_info_block }] | |
| 94 | + end | |
| 95 | + | |
| 96 | + def account_controller_filters | |
| 97 | + validate_lattes_url_block = proc do | |
| 98 | + if request.post? | |
| 99 | + params[:profile_data] ||= {} | |
| 100 | + params[:profile_data][:academic_info_attributes] = params[:academic_infos] | |
| 101 | + | |
| 102 | + if !params[:academic_infos].blank? && !AcademicInfo.matches?(params[:academic_infos]) | |
| 103 | + @person = Person.new(params[:profile_data]) | |
| 104 | + @person.environment = environment | |
| 105 | + @user = User.new(params[:user]) | |
| 106 | + @person.errors.add(:lattes_url, _(' Invalid lattes url')) | |
| 107 | + render :action => :signup | |
| 108 | + end | |
| 109 | + end | |
| 110 | + end | |
| 111 | + | |
| 112 | + create_academic_info_block = proc do | |
| 113 | + if profile && profile.person? && profile.academic_info.nil? | |
| 114 | + profile.academic_info = AcademicInfo.new | |
| 115 | + end | |
| 116 | + end | |
| 117 | + | |
| 118 | + [{:type => 'before_filter', | |
| 119 | + :method_name => 'validate_lattes_url', | |
| 120 | + :options => {:only => 'signup'}, | |
| 121 | + :block => validate_lattes_url_block }, | |
| 122 | + {:type => 'before_filter', | |
| 123 | + :method_name => 'create_academic_info', | |
| 124 | + :options => {:only => 'edit'}, | |
| 125 | + :block => create_academic_info_block }] | |
| 126 | + end | |
| 127 | + | |
| 128 | + protected | |
| 129 | + | |
| 130 | + def academic_info_transaction | |
| 131 | + AcademicInfo.transaction do | |
| 132 | + context.profile.academic_info.update_attributes!(context.params[:academic_infos]) | |
| 133 | + end | |
| 134 | + end | |
| 135 | + | |
| 136 | + def show_lattes_tab? | |
| 137 | + return context.profile.person? && !context.profile.academic_info.nil? && !context.profile.academic_info.lattes_url.blank? && context.profile.public_fields.include?("lattes_url") | |
| 138 | + end | |
| 139 | +end | ... | ... |
| ... | ... | @@ -0,0 +1,12 @@ |
| 1 | +8950 4e47 0d0a 1a0a 0000 000d 4948 4452 | |
| 2 | +0000 0009 0000 0027 0806 0000 00dd 3762 | |
| 3 | +5600 0000 0173 5247 4200 aece 1ce9 0000 | |
| 4 | +0006 624b 4744 00ff 00ff 00ff a0bd a793 | |
| 5 | +0000 0009 7048 5973 0000 0dd7 0000 0dd7 | |
| 6 | +0142 289b 7800 0000 0774 494d 4507 dc05 | |
| 7 | +040f 1a01 22dc e3a3 0000 003b 4944 4154 | |
| 8 | +38cb 635c 30bd f53f 0301 c0c4 4004 188c | |
| 9 | +8a58 18fe 13a3 8808 552c ff87 6810 101b | |
| 10 | +4eff 87af efa8 1704 c33e 1550 29b7 0c4a | |
| 11 | +dffd 1fa2 b905 009c 4210 1067 9fec 9d00 | |
| 12 | +0000 0049 454e 44ae 4260 82 | |
| 0 | 13 | \ No newline at end of file | ... | ... |
| ... | ... | @@ -0,0 +1,15 @@ |
| 1 | +jQuery(function($){ | |
| 2 | + $(document).ready(function(){ | |
| 3 | + $('#lattes_id_field').blur(function(){ | |
| 4 | + var value = this.value | |
| 5 | + }) | |
| 6 | + | |
| 7 | + $('#lattes_id_field').focus(function(){ | |
| 8 | + $('#lattes-id-balloon').fadeIn('slow') | |
| 9 | + }) | |
| 10 | + | |
| 11 | + $('#lattes_id_field').blur(function(){ | |
| 12 | + $('#lattes-id-balloon').fadeOut('slow') | |
| 13 | + }) | |
| 14 | + }) | |
| 15 | +}) | |
| 0 | 16 | \ No newline at end of file | ... | ... |
| ... | ... | @@ -0,0 +1,37 @@ |
| 1 | +#signup-form label[for="lattes_id_field"], | |
| 2 | +{ | |
| 3 | + display: block; | |
| 4 | +} | |
| 5 | + | |
| 6 | +#signup-form small#lattes-id-balloon | |
| 7 | +{ | |
| 8 | + display: none; | |
| 9 | + width: 142px; | |
| 10 | + height: 69px; | |
| 11 | + color: #FFFFFF; | |
| 12 | + font-weight: bold; | |
| 13 | + font-size: 11px; | |
| 14 | + padding: 5px 10px 45px 10px; | |
| 15 | + margin: 0; | |
| 16 | + line-height: 1.5em; | |
| 17 | + background: transparent url(/images/gray-balloon.png) bottom center no-repeat; | |
| 18 | + position: absolute; | |
| 19 | + z-index: 2; | |
| 20 | + right: -150px; | |
| 21 | + top: -75px; | |
| 22 | +} | |
| 23 | + | |
| 24 | +#signup-form .formfield.checking { | |
| 25 | + border-color: transparent; | |
| 26 | + background-image: none; | |
| 27 | +} | |
| 28 | + | |
| 29 | +#signup-form small#lattes-id-balloon | |
| 30 | +{ | |
| 31 | + top: -80px; | |
| 32 | +} | |
| 33 | + | |
| 34 | +#signup-form #signup-lattes-id | |
| 35 | +{ | |
| 36 | + position: relative; | |
| 37 | +} | ... | ... |
plugins/lattes_curriculum/test/unit/academic_info_test.rb
0 → 100644
| ... | ... | @@ -0,0 +1,23 @@ |
| 1 | +require "test_helper" | |
| 2 | + | |
| 3 | +class AcademicInfoTest < ActiveSupport::TestCase | |
| 4 | + | |
| 5 | + def setup | |
| 6 | + @academic_info = AcademicInfo.new | |
| 7 | + end | |
| 8 | + | |
| 9 | + should 'not ve invalid lattes url' do | |
| 10 | + @academic_info.lattes_url = "http://softwarelivre.org/" | |
| 11 | + assert !@academic_info.save | |
| 12 | + end | |
| 13 | + | |
| 14 | + should 'accept blank lattes url' do | |
| 15 | + @academic_info.lattes_url = "" | |
| 16 | + assert @academic_info.save | |
| 17 | + end | |
| 18 | + | |
| 19 | + should 'save with correct lattes url' do | |
| 20 | + @academic_info.lattes_url = "http://lattes.cnpq.br/2193972715230641" | |
| 21 | + assert @academic_info.save | |
| 22 | + end | |
| 23 | +end | ... | ... |
| ... | ... | @@ -0,0 +1,24 @@ |
| 1 | +#!/bin/env ruby | |
| 2 | +# encoding: utf-8 | |
| 3 | + | |
| 4 | +require "test_helper" | |
| 5 | + | |
| 6 | +class HtmlParserTest < ActiveSupport::TestCase | |
| 7 | + | |
| 8 | + def setup | |
| 9 | + @parser = Html_parser.new | |
| 10 | + end | |
| 11 | + | |
| 12 | + should 'be not nil the instance' do | |
| 13 | + assert_not_nil @parser | |
| 14 | + end | |
| 15 | + | |
| 16 | + should 'be not nil the return get_html' do | |
| 17 | + result = @parser.get_html("http://lattes.cnpq.br/2193972715230641") | |
| 18 | + assert result.include?("Endereço para acessar este CV") | |
| 19 | + end | |
| 20 | + | |
| 21 | + should 'inform that lattes was not found' do | |
| 22 | + assert_equal "Lattes not found. Please, make sure the informed URL is correct.", @parser.get_html("http://lattes.cnpq.br/123") | |
| 23 | + end | |
| 24 | +end | ... | ... |
plugins/lattes_curriculum/test/unit/lattes_curriculum_test.rb
0 → 100644
| ... | ... | @@ -0,0 +1,24 @@ |
| 1 | +require "test_helper" | |
| 2 | + | |
| 3 | +class LattesCurriculumPluginTest < ActiveSupport::TestCase | |
| 4 | + | |
| 5 | + def setup | |
| 6 | + @plugin = LattesCurriculumPlugin.new | |
| 7 | + end | |
| 8 | + | |
| 9 | + should 'be a noosfero plugin' do | |
| 10 | + assert_kind_of Noosfero::Plugin, @plugin | |
| 11 | + end | |
| 12 | + | |
| 13 | + should 'have name' do | |
| 14 | + assert_equal 'Lattes Curriculum Plugin', LattesCurriculumPlugin.plugin_name | |
| 15 | + end | |
| 16 | + | |
| 17 | + should 'have description' do | |
| 18 | + assert_equal _('A plugin that imports the lattes curriculum into the users profiles'), LattesCurriculumPlugin.plugin_description | |
| 19 | + end | |
| 20 | + | |
| 21 | + should 'have stylesheet' do | |
| 22 | + assert @plugin.stylesheet? | |
| 23 | + end | |
| 24 | +end | ... | ... |
| ... | ... | @@ -0,0 +1,26 @@ |
| 1 | +require "test_helper" | |
| 2 | + | |
| 3 | +class PersonTest < ActiveSupport::TestCase | |
| 4 | + | |
| 5 | + def setup | |
| 6 | + @environment = Environment.default | |
| 7 | + @environment.enable_plugin(LattesCurriculumPlugin) | |
| 8 | + end | |
| 9 | + | |
| 10 | + attr_reader :environment | |
| 11 | + | |
| 12 | + should 'destroy academic info if person is removed' do | |
| 13 | + person = fast_create(Person) | |
| 14 | + academic_info = fast_create(AcademicInfo, :person_id => person.id, | |
| 15 | +:lattes_url => 'http://lattes.cnpq.br/2193972715230') | |
| 16 | + | |
| 17 | + assert_difference 'AcademicInfo.count', -1 do | |
| 18 | + person.destroy | |
| 19 | + end | |
| 20 | + end | |
| 21 | + | |
| 22 | + should 'add lattes_url field to Person' do | |
| 23 | + assert_includes Person.fields, 'lattes_url' | |
| 24 | + end | |
| 25 | + | |
| 26 | +end | ... | ... |
plugins/people_block/controllers/people_block_plugin_profile_controller.rb
| ... | ... | @@ -6,12 +6,13 @@ class PeopleBlockPluginProfileController < ProfileController |
| 6 | 6 | if is_cache_expired?(profile.members_cache_key(params)) |
| 7 | 7 | unless params[:role_key].blank? |
| 8 | 8 | role = Role.find_by_key_and_environment_id(params[:role_key], profile.environment) |
| 9 | - @members = profile.members.with_role(role.id).includes(relations_to_include).paginate(:per_page => members_per_page, :page => params[:npage]) | |
| 9 | + @members = profile.members.with_role(role.id) | |
| 10 | 10 | @members_title = role.name |
| 11 | 11 | else |
| 12 | - @members = profile.members.includes(relations_to_include).paginate(:per_page => members_per_page, :page => params[:npage]) | |
| 12 | + @members = profile.members | |
| 13 | 13 | @members_title = 'members' |
| 14 | 14 | end |
| 15 | + @members = @members.includes(relations_to_include).paginate(:per_page => members_per_page, :page => params[:npage], :total_entries => @members.count) | |
| 15 | 16 | end |
| 16 | 17 | render "profile/members" |
| 17 | 18 | end | ... | ... |
plugins/send_email/controllers/send_email_plugin_base_controller.rb
| ... | ... | @@ -11,7 +11,7 @@ module SendEmailPluginBaseController |
| 11 | 11 | ) |
| 12 | 12 | @mail.subject = params[:subject] unless params[:subject].blank? |
| 13 | 13 | if @mail.valid? |
| 14 | - SendEmailPlugin::Sender.message(request.referer, @context_url, @mail).deliver | |
| 14 | + SendEmailPlugin::Sender.send_message(request.referer, @context_url, @mail).deliver | |
| 15 | 15 | if request.xhr? |
| 16 | 16 | render :text => _('Message sent') |
| 17 | 17 | else | ... | ... |
plugins/send_email/lib/send_email_plugin.rb
plugins/send_email/lib/send_email_plugin/mail.rb
| 1 | -class SendEmailPlugin::Mail < ActiveRecord::Base #WithoutTable | |
| 1 | +class SendEmailPlugin::Mail | |
| 2 | + include ActiveModel::Validations | |
| 2 | 3 | |
| 3 | 4 | N_('Subject'); N_('Message'); N_('To'); N_('From') |
| 4 | - tableless :columns => [ | |
| 5 | - [:from, :string], | |
| 6 | - [:to, :string], | |
| 7 | - [:subject, :string, _('New mail')], | |
| 8 | - [:message, :string], | |
| 9 | - [:params, :hash, {}], | |
| 10 | - ] | |
| 11 | - attr_accessor :environment | |
| 5 | + | |
| 6 | + attr_accessor :environment, :from, :to, :subject, :message, :params | |
| 12 | 7 | |
| 13 | 8 | validates_presence_of :environment |
| 14 | 9 | validates_presence_of :to, :message |
| 10 | + validate :recipients_format | |
| 11 | + | |
| 12 | + def initialize(attributes = {:subject => 'New mail'}) | |
| 13 | + @environment = attributes[:environment] | |
| 14 | + @from = attributes[:from] | |
| 15 | + @to = attributes[:to] | |
| 16 | + @subject = attributes[:subject] | |
| 17 | + @message = attributes[:message] | |
| 18 | + @params = attributes[:params] | |
| 19 | + end | |
| 15 | 20 | |
| 16 | - def validate | |
| 21 | + def recipients_format | |
| 17 | 22 | if to_as_list.any? do |value| |
| 18 | 23 | if value !~ Noosfero::Constants::EMAIL_FORMAT |
| 19 | 24 | self.errors.add(:to, _("'%s' isn't a valid e-mail address") % value) |
| ... | ... | @@ -32,7 +37,7 @@ class SendEmailPlugin::Mail < ActiveRecord::Base #WithoutTable |
| 32 | 37 | |
| 33 | 38 | def params=(value = {}) |
| 34 | 39 | [:action, :controller, :to, :message, :subject, :from].each{|k| value.delete(k)} |
| 35 | - self[:params] = value | |
| 40 | + @params = value | |
| 36 | 41 | end |
| 37 | 42 | |
| 38 | 43 | def to_as_list | ... | ... |
plugins/send_email/lib/send_email_plugin/sender.rb
| 1 | 1 | class SendEmailPlugin::Sender < Noosfero::Plugin::MailerBase |
| 2 | 2 | |
| 3 | - def message(referer, url, mail) | |
| 3 | + def send_message(referer, url, mail) | |
| 4 | 4 | @message = mail.message |
| 5 | 5 | @referer = referer |
| 6 | 6 | @context_url = url |
| 7 | 7 | @params = mail.params |
| 8 | 8 | |
| 9 | 9 | mail( |
| 10 | - recipients: mail.to, | |
| 10 | + to: mail.to, | |
| 11 | 11 | from: mail.from, |
| 12 | + body: mail.params, | |
| 12 | 13 | subject: "[#{mail.environment.name}] #{mail.subject}" |
| 13 | 14 | ) |
| 14 | 15 | end | ... | ... |
plugins/send_email/test/functional/send_email_plugin_base_controller_test.rb
| 1 | 1 | require File.dirname(__FILE__) + '/../../../../test/test_helper' |
| 2 | 2 | |
| 3 | +def base_setup | |
| 4 | + ActionMailer::Base.delivery_method = :test | |
| 5 | + ActionMailer::Base.perform_deliveries = true | |
| 6 | + ActionMailer::Base.deliveries = [] | |
| 7 | + environment = Environment.default | |
| 8 | + environment.noreply_email = 'noreply@example.com' | |
| 9 | + environment.save! | |
| 10 | +end | |
| 11 | + | |
| 3 | 12 | def run_common_tests |
| 4 | 13 | should 'not deliver emails via GET requests' do |
| 5 | 14 | get :deliver, @extra_args |
| ... | ... | @@ -35,7 +44,7 @@ def run_common_tests |
| 35 | 44 | |
| 36 | 45 | should 'deliver mail' do |
| 37 | 46 | Environment.any_instance.stubs(:send_email_plugin_allow_to).returns('john@example.com') |
| 38 | - assert_difference ActionMailer::Base.deliveries, :size do | |
| 47 | + assert_difference 'ActionMailer::Base.deliveries.size', 1 do | |
| 39 | 48 | post :deliver, @extra_args.merge(:to => 'john@example.com', :message => 'Hi john') |
| 40 | 49 | end |
| 41 | 50 | end |
| ... | ... | @@ -49,23 +58,19 @@ end |
| 49 | 58 | |
| 50 | 59 | class SendEmailPluginProfileControllerTest < ActionController::TestCase |
| 51 | 60 | def setup |
| 52 | - ActionMailer::Base.delivery_method = :test | |
| 53 | - ActionMailer::Base.perform_deliveries = true | |
| 54 | - ActionMailer::Base.deliveries = [] | |
| 61 | + base_setup | |
| 55 | 62 | community = fast_create(Community) |
| 56 | 63 | @extra_args = {:profile => community.identifier} |
| 57 | 64 | end |
| 58 | 65 | |
| 59 | - run_common_tests() | |
| 66 | + run_common_tests | |
| 60 | 67 | end |
| 61 | 68 | |
| 62 | 69 | class SendEmailPluginControllerTest < ActionController::TestCase |
| 63 | 70 | def setup |
| 64 | - ActionMailer::Base.delivery_method = :test | |
| 65 | - ActionMailer::Base.perform_deliveries = true | |
| 66 | - ActionMailer::Base.deliveries = [] | |
| 71 | + base_setup | |
| 67 | 72 | @extra_args = {} |
| 68 | 73 | end |
| 69 | 74 | |
| 70 | - run_common_tests() | |
| 75 | + run_common_tests | |
| 71 | 76 | end | ... | ... |
plugins/send_email/test/unit/send_email_plugin_mail_test.rb
| ... | ... | @@ -44,7 +44,7 @@ class SendEmailPluginMailTest < ActiveSupport::TestCase |
| 44 | 44 | |
| 45 | 45 | should 'discard some keys on set params hash' do |
| 46 | 46 | mail = SendEmailPlugin::Mail.new(:params => {:action => 1, :controller => 2, :to => 3, :message => 4, :subject => 5, :age => 6}) |
| 47 | - [:action, :controller, :to, :message, :subject].each do |k| | |
| 47 | + [:params].each do |k| | |
| 48 | 48 | assert !mail.params.include?(k) |
| 49 | 49 | end |
| 50 | 50 | assert mail.params.include?(:age) | ... | ... |
plugins/send_email/test/unit/send_email_plugin_sender_test.rb
| ... | ... | @@ -15,21 +15,21 @@ class SendEmailPluginSenderTest < ActiveSupport::TestCase |
| 15 | 15 | end |
| 16 | 16 | |
| 17 | 17 | should 'be able to deliver mail' do |
| 18 | - response = SendEmailPlugin::Sender.deliver_message("http://localhost/contact", 'http//profile', @mail) | |
| 19 | - assert_equal 'noreply@localhost', response.from.to_s | |
| 18 | + response = SendEmailPlugin::Sender.send_message("http://localhost/contact", 'http//profile', @mail) | |
| 19 | + assert_equal 'noreply@localhost', response.from.join | |
| 20 | 20 | assert_equal "[Noosfero] #{@mail.subject}", response.subject |
| 21 | 21 | end |
| 22 | 22 | |
| 23 | 23 | should 'deliver mail to john@example.com' do |
| 24 | - response = SendEmailPlugin::Sender.deliver_message("http://localhost/contact", 'http//profile', @mail) | |
| 24 | + response = SendEmailPlugin::Sender.send_message("http://localhost/contact", 'http//profile', @mail) | |
| 25 | 25 | assert_equal ['john@example.com'], response.to |
| 26 | 26 | end |
| 27 | 27 | |
| 28 | 28 | should 'add each key value pair to message body' do |
| 29 | 29 | @mail.params = {:param1 => 'value1', :param2 => 'value2'} |
| 30 | - response = SendEmailPlugin::Sender.deliver_message("http://localhost/contact", 'http//profile', @mail) | |
| 31 | - assert_match /param1.+value1/m, response.body | |
| 32 | - assert_match /param2.+value2/m, response.body | |
| 30 | + response = SendEmailPlugin::Sender.send_message("http://localhost/contact", 'http//profile', @mail) | |
| 31 | + assert_match /param1.+value1/m, response.body.to_s | |
| 32 | + assert_match /param2.+value2/m, response.body.to_s | |
| 33 | 33 | end |
| 34 | 34 | |
| 35 | 35 | end | ... | ... |
plugins/send_email/views/send_email_plugin/fail.html.erb
0 → 100644
plugins/send_email/views/send_email_plugin/fail.rhtml
plugins/send_email/views/send_email_plugin/sender/message.html.erb
0 → 100644
plugins/send_email/views/send_email_plugin/sender/message.rhtml
plugins/send_email/views/send_email_plugin/success.html.erb
0 → 100644
| ... | ... | @@ -0,0 +1,8 @@ |
| 1 | +<h2><%= _('Message sent') %></h2> | |
| 2 | + | |
| 3 | +<table class='sendemail-plugin-message-sent'> | |
| 4 | + <tr><td class='label'><strong><%= _('Subject') %>:</strong></td><td class='value'><em><%=h @mail.subject %></em></td></tr> | |
| 5 | + <tr><td class='label'><strong><%= _('Message') %>:</strong></td><td class='value'><pre><%=h render :file => 'send_email_plugin/sender/message' %></pre></td></tr> | |
| 6 | +</table> | |
| 7 | + | |
| 8 | +<p><%= button :back, _('Back'), :back %></p> | ... | ... |
plugins/send_email/views/send_email_plugin/success.rhtml
| ... | ... | @@ -1,8 +0,0 @@ |
| 1 | -<h2><%= _('Message sent') %></h2> | |
| 2 | - | |
| 3 | -<table class='sendemail-plugin-message-sent'> | |
| 4 | - <tr><td class='label'><strong><%= _('Subject') %>:</strong></td><td class='value'><em><%=h @mail.subject %></em></td></tr> | |
| 5 | - <tr><td class='label'><strong><%= _('Message') %>:</strong></td><td class='value'><pre><%=h render :file => 'send_email_plugin/sender/message' %></pre></td></tr> | |
| 6 | -</table> | |
| 7 | - | |
| 8 | -<p><%= button :back, _('Back'), :back %></p> |
plugins/shopping_cart/test/functional/shopping_cart_plugin_controller_test.rb
| ... | ... | @@ -11,6 +11,7 @@ class ShoppingCartPluginControllerTest < ActionController::TestCase |
| 11 | 11 | @request = ActionController::TestRequest.new |
| 12 | 12 | @response = ActionController::TestResponse.new |
| 13 | 13 | @profile = fast_create(Enterprise) |
| 14 | + @profile.contact_email = 'enterprise@noosfero.org';@profile.save | |
| 14 | 15 | @product = fast_create(Product, :profile_id => @profile.id) |
| 15 | 16 | end |
| 16 | 17 | attr_reader :profile | ... | ... |
plugins/tolerance_time/db/migrate/20141119204010_add_timestamps_to_tolerance.rb
0 → 100644
plugins/tolerance_time/test/unit/comment_test.rb
| ... | ... | @@ -3,8 +3,8 @@ require File.dirname(__FILE__) + '/../../../../test/test_helper' |
| 3 | 3 | class CommentTest < ActiveSupport::TestCase |
| 4 | 4 | should 'create a publication after posting a comment' do |
| 5 | 5 | article = fast_create(Article, :profile_id => fast_create(Person).id) |
| 6 | - comment = Comment.new(:author_id => fast_create(Person).id, :body => 'Hello There!', :source_id => article.id) | |
| 7 | - assert_difference ToleranceTimePlugin::Publication, :count do | |
| 6 | + comment = Comment.new(:author => fast_create(Person), :body => 'Hello There!', :source => article) | |
| 7 | + assert_difference 'ToleranceTimePlugin::Publication.count', 1 do | |
| 8 | 8 | comment.save! |
| 9 | 9 | end |
| 10 | 10 | assert_not_nil ToleranceTimePlugin::Publication.find_by_target(comment) |
| ... | ... | @@ -13,7 +13,7 @@ class CommentTest < ActiveSupport::TestCase |
| 13 | 13 | should 'destroy publication if the comment is destroyed' do |
| 14 | 14 | profile = fast_create(Profile) |
| 15 | 15 | article = fast_create(Article, :profile_id => profile.id) |
| 16 | - comment = fast_create(Comment, :source_id => article.id) | |
| 16 | + comment = fast_create(Comment, :source_id => article) | |
| 17 | 17 | comment_publication = ToleranceTimePlugin::Publication.create!(:target => comment) |
| 18 | 18 | comment.destroy |
| 19 | 19 | assert_raise ActiveRecord::RecordNotFound do | ... | ... |
plugins/tolerance_time/test/unit/tolerance_time_plugin/publication_test.rb
| ... | ... | @@ -4,13 +4,14 @@ class ToleranceTimePlugin::PublicationTest < ActiveSupport::TestCase |
| 4 | 4 | should 'validate presence of target' do |
| 5 | 5 | publication = ToleranceTimePlugin::Publication.new |
| 6 | 6 | publication.valid? |
| 7 | - assert publication.errors.invalid?(:target_id) | |
| 8 | - assert publication.errors.invalid?(:target_type) | |
| 7 | + assert publication.errors[:target_id].present? | |
| 8 | + assert publication.errors[:target_type].present? | |
| 9 | 9 | |
| 10 | 10 | publication.target = fast_create(Article) |
| 11 | 11 | publication.valid? |
| 12 | - assert !publication.errors.invalid?(:target_id) | |
| 13 | - assert !publication.errors.invalid?(:target_type) | |
| 12 | + | |
| 13 | + assert !publication.errors[:target_id].present? | |
| 14 | + assert !publication.errors[:target_type].present? | |
| 14 | 15 | end |
| 15 | 16 | |
| 16 | 17 | should 'validate uniqueness of target' do |
| ... | ... | @@ -19,7 +20,7 @@ class ToleranceTimePlugin::PublicationTest < ActiveSupport::TestCase |
| 19 | 20 | p2 = ToleranceTimePlugin::Publication.new(:target => target) |
| 20 | 21 | p2.valid? |
| 21 | 22 | |
| 22 | - assert p2.errors.invalid?(:target_id) | |
| 23 | + assert p2.errors[:target_id].present? | |
| 23 | 24 | end |
| 24 | 25 | |
| 25 | 26 | should 'be able to find publication by target' do | ... | ... |
plugins/tolerance_time/test/unit/tolerance_time_plugin/tolerance_test.rb
| ... | ... | @@ -4,11 +4,11 @@ class ToleranceTimePlugin::ToleranceTest < ActiveSupport::TestCase |
| 4 | 4 | should 'validate presence of profile' do |
| 5 | 5 | tolerance = ToleranceTimePlugin::Tolerance.new |
| 6 | 6 | tolerance.valid? |
| 7 | - assert tolerance.errors.invalid?(:profile_id) | |
| 7 | + assert tolerance.errors[:profile_id].present? | |
| 8 | 8 | |
| 9 | 9 | tolerance.profile = fast_create(Profile) |
| 10 | 10 | tolerance.valid? |
| 11 | - assert !tolerance.errors.invalid?(:profile_id) | |
| 11 | + assert !tolerance.errors[:profile_id].present? | |
| 12 | 12 | end |
| 13 | 13 | |
| 14 | 14 | should 'validate uniqueness of profile' do |
| ... | ... | @@ -17,7 +17,7 @@ class ToleranceTimePlugin::ToleranceTest < ActiveSupport::TestCase |
| 17 | 17 | t2 = ToleranceTimePlugin::Tolerance.new(:profile => profile) |
| 18 | 18 | t2.valid? |
| 19 | 19 | |
| 20 | - assert t2.errors.invalid?(:profile_id) | |
| 20 | + assert t2.errors[:profile_id].present? | |
| 21 | 21 | end |
| 22 | 22 | |
| 23 | 23 | should 'validate integer format for comment and content tolerance' do |
| ... | ... | @@ -27,8 +27,8 @@ class ToleranceTimePlugin::ToleranceTest < ActiveSupport::TestCase |
| 27 | 27 | tolerance.comment_tolerance = 'sdfa' |
| 28 | 28 | tolerance.content_tolerance = 4.5 |
| 29 | 29 | tolerance.valid? |
| 30 | - assert tolerance.errors.invalid?(:comment_tolerance) | |
| 31 | - assert tolerance.errors.invalid?(:content_tolerance) | |
| 30 | + assert tolerance.errors[:comment_tolerance].present? | |
| 31 | + assert tolerance.errors[:content_tolerance].present? | |
| 32 | 32 | |
| 33 | 33 | tolerance.comment_tolerance = 3 |
| 34 | 34 | tolerance.content_tolerance = 6 | ... | ... |
po/de/noosfero.po
| ... | ... | @@ -6,16 +6,18 @@ |
| 6 | 6 | # |
| 7 | 7 | msgid "" |
| 8 | 8 | msgstr "" |
| 9 | -"Project-Id-Version: 1.0~rc3\n" | |
| 10 | -"POT-Creation-Date: 2014-10-30 09:24-0300\n" | |
| 11 | -"PO-Revision-Date: 2013-03-07 20:14+0100\n" | |
| 12 | -"Last-Translator: Josef Spillner <josef.spillner@tu-dresden.de>\n" | |
| 13 | -"Language-Team: German <de@li.org>\n" | |
| 9 | +"Project-Id-Version: 1.0~rc4\n" | |
| 10 | +"POT-Creation-Date: 2014-12-18 17:22-0300\n" | |
| 11 | +"PO-Revision-Date: 2014-12-12 14:23+0200\n" | |
| 12 | +"Last-Translator: Michal Čihař <michal@cihar.com>\n" | |
| 13 | +"Language-Team: German <https://hosted.weblate.org/projects/noosfero/noosfero/" | |
| 14 | +"de/>\n" | |
| 14 | 15 | "Language: de\n" |
| 15 | 16 | "MIME-Version: 1.0\n" |
| 16 | 17 | "Content-Type: text/plain; charset=UTF-8\n" |
| 17 | 18 | "Content-Transfer-Encoding: 8bit\n" |
| 18 | -"Plural-Forms: nplurals=2; plural=(n != 1);\n" | |
| 19 | +"Plural-Forms: nplurals=2; plural=n != 1;\n" | |
| 20 | +"X-Generator: Weblate 2.2-dev\n" | |
| 19 | 21 | |
| 20 | 22 | #: app/models/approve_comment.rb:17 |
| 21 | 23 | #, fuzzy |
| ... | ... | @@ -368,7 +370,7 @@ msgstr "Moderator" |
| 368 | 370 | |
| 369 | 371 | #: app/models/environment.rb:95 |
| 370 | 372 | msgid "Disable search for articles " |
| 371 | -msgstr "Suche nach Artikeln aus" | |
| 373 | +msgstr "Suche nach Artikeln aus " | |
| 372 | 374 | |
| 373 | 375 | #: app/models/environment.rb:96 |
| 374 | 376 | msgid "Disable search for enterprises" |
| ... | ... | @@ -575,7 +577,7 @@ msgid "have unsupported languages." |
| 575 | 577 | msgstr "haben nicht unterstützte Sprachen." |
| 576 | 578 | |
| 577 | 579 | #: app/models/communities_block.rb:6 app/helpers/application_helper.rb:549 |
| 578 | -#: app/helpers/application_helper.rb:1082 app/helpers/search_helper.rb:12 | |
| 580 | +#: app/helpers/application_helper.rb:1084 app/helpers/search_helper.rb:12 | |
| 579 | 581 | #: app/helpers/assets_helper.rb:11 |
| 580 | 582 | #: app/controllers/public/search_controller.rb:53 |
| 581 | 583 | msgid "Communities" |
| ... | ... | @@ -762,24 +764,24 @@ msgstr "geschäftliches Telefon" |
| 762 | 764 | msgid "Nationality" |
| 763 | 765 | msgstr "Nationalität" |
| 764 | 766 | |
| 765 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:32 | |
| 767 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:36 | |
| 766 | 768 | msgid "Schooling" |
| 767 | 769 | msgstr "Ausbildung" |
| 768 | 770 | |
| 769 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:58 | |
| 771 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:62 | |
| 770 | 772 | msgid "Area of study" |
| 771 | 773 | msgstr "Studienrichtung" |
| 772 | 774 | |
| 773 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:65 | |
| 775 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:69 | |
| 774 | 776 | msgid "Professional activity" |
| 775 | 777 | msgstr "Berufliche Aktivitäten" |
| 776 | 778 | |
| 777 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:66 | |
| 779 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:70 | |
| 778 | 780 | msgid "Organization" |
| 779 | 781 | msgstr "Organisation" |
| 780 | 782 | |
| 781 | 783 | #: app/models/person.rb:196 app/models/enterprise.rb:25 |
| 782 | -#: app/views/profile_editor/_person_form.html.erb:67 | |
| 784 | +#: app/views/profile_editor/_person_form.html.erb:71 | |
| 783 | 785 | msgid "Organization website" |
| 784 | 786 | msgstr "Webseite der Organisation" |
| 785 | 787 | |
| ... | ... | @@ -788,7 +790,7 @@ msgid "Schooling status" |
| 788 | 790 | msgstr "Schulabschluss" |
| 789 | 791 | |
| 790 | 792 | #: app/models/person.rb:202 app/helpers/profile_editor_helper.rb:26 |
| 791 | -#: app/views/profile_editor/_person_form.html.erb:51 | |
| 793 | +#: app/views/profile_editor/_person_form.html.erb:55 | |
| 792 | 794 | msgid "Education" |
| 793 | 795 | msgstr "Bildung" |
| 794 | 796 | |
| ... | ... | @@ -796,7 +798,7 @@ msgstr "Bildung" |
| 796 | 798 | msgid "Custom education" |
| 797 | 799 | msgstr "Spezielle Ausbildung" |
| 798 | 800 | |
| 799 | -#: app/models/person.rb:202 app/views/profile_editor/_person_form.html.erb:61 | |
| 801 | +#: app/models/person.rb:202 app/views/profile_editor/_person_form.html.erb:65 | |
| 800 | 802 | msgid "Custom area of study" |
| 801 | 803 | msgstr "Spezielles Ausbildungsgebiet" |
| 802 | 804 | |
| ... | ... | @@ -1038,7 +1040,7 @@ msgstr "E-Mail" |
| 1038 | 1040 | msgid "{fn} must be checked in order to signup." |
| 1039 | 1041 | msgstr "%{fn} muss überprüft werden damit die Anmeldung funktioniert." |
| 1040 | 1042 | |
| 1041 | -#: app/models/user.rb:251 | |
| 1043 | +#: app/models/user.rb:255 | |
| 1042 | 1044 | #, fuzzy |
| 1043 | 1045 | msgid "does not match." |
| 1044 | 1046 | msgstr "Die Passwörter stimmen nicht überein" |
| ... | ... | @@ -1566,7 +1568,7 @@ msgstr "Paket" |
| 1566 | 1568 | msgid "To do list" |
| 1567 | 1569 | msgstr "Aufgabenliste" |
| 1568 | 1570 | |
| 1569 | -#: app/models/link_list_block.rb:35 app/helpers/application_helper.rb:914 | |
| 1571 | +#: app/models/link_list_block.rb:35 app/helpers/application_helper.rb:915 | |
| 1570 | 1572 | msgid "Chat" |
| 1571 | 1573 | msgstr "Chat" |
| 1572 | 1574 | |
| ... | ... | @@ -1627,7 +1629,7 @@ msgstr "Titel" |
| 1627 | 1629 | msgid "description" |
| 1628 | 1630 | msgstr "Beschreibung" |
| 1629 | 1631 | |
| 1630 | -#: app/models/create_community.rb:38 app/helpers/application_helper.rb:1079 | |
| 1632 | +#: app/models/create_community.rb:38 app/helpers/application_helper.rb:1081 | |
| 1631 | 1633 | msgid "New community" |
| 1632 | 1634 | msgstr "Neue Community" |
| 1633 | 1635 | |
| ... | ... | @@ -2382,8 +2384,8 @@ msgstr "Zeigt Nachrichten für deaktivierte Unternehmen." |
| 2382 | 2384 | |
| 2383 | 2385 | #: app/models/disabled_enterprise_message_block.rb:12 |
| 2384 | 2386 | #: app/mailers/contact.rb:23 |
| 2385 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 2386 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:5 | |
| 2387 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 2388 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:5 | |
| 2387 | 2389 | msgid "Message" |
| 2388 | 2390 | msgstr "Nachricht" |
| 2389 | 2391 | |
| ... | ... | @@ -2613,103 +2615,103 @@ msgstr "Klicken Sie, schreiben Sie und bestätigen Sie mit Enter" |
| 2613 | 2615 | msgid "Public" |
| 2614 | 2616 | msgstr "Öffentlich" |
| 2615 | 2617 | |
| 2616 | -#: app/helpers/application_helper.rb:913 | |
| 2618 | +#: app/helpers/application_helper.rb:914 | |
| 2617 | 2619 | msgid "Online Manual" |
| 2618 | 2620 | msgstr "Online Anleitung" |
| 2619 | 2621 | |
| 2620 | -#: app/helpers/application_helper.rb:961 app/views/home/index.html.erb:12 | |
| 2622 | +#: app/helpers/application_helper.rb:963 app/views/home/index.html.erb:12 | |
| 2621 | 2623 | #: plugins/display_content/lib/display_content_block.rb:141 |
| 2622 | 2624 | #: plugins/recent_content/views/blocks/recent_content_block.html.erb:26 |
| 2623 | 2625 | #: plugins/recent_content/views/blocks/recent_content_block.html.erb:35 |
| 2624 | 2626 | msgid "Read more" |
| 2625 | 2627 | msgstr "mehr lesen" |
| 2626 | 2628 | |
| 2627 | -#: app/helpers/application_helper.rb:1042 | |
| 2629 | +#: app/helpers/application_helper.rb:1044 | |
| 2628 | 2630 | msgid "contents|More recent" |
| 2629 | 2631 | msgstr "contents|Neueste" |
| 2630 | 2632 | |
| 2631 | -#: app/helpers/application_helper.rb:1043 | |
| 2633 | +#: app/helpers/application_helper.rb:1045 | |
| 2632 | 2634 | msgid "contents|More viewed" |
| 2633 | 2635 | msgstr "contents|Meistgesehene" |
| 2634 | 2636 | |
| 2635 | -#: app/helpers/application_helper.rb:1044 | |
| 2637 | +#: app/helpers/application_helper.rb:1046 | |
| 2636 | 2638 | msgid "contents|Most commented" |
| 2637 | 2639 | msgstr "contents|Meistkommentierte" |
| 2638 | 2640 | |
| 2639 | -#: app/helpers/application_helper.rb:1047 app/views/cms/view.html.erb:20 | |
| 2641 | +#: app/helpers/application_helper.rb:1049 app/views/cms/view.html.erb:20 | |
| 2640 | 2642 | msgid "New content" |
| 2641 | 2643 | msgstr "Neue Inhalte" |
| 2642 | 2644 | |
| 2643 | -#: app/helpers/application_helper.rb:1050 app/helpers/search_helper.rb:9 | |
| 2645 | +#: app/helpers/application_helper.rb:1052 app/helpers/search_helper.rb:9 | |
| 2644 | 2646 | #: app/controllers/public/search_controller.rb:54 |
| 2645 | 2647 | msgid "Contents" |
| 2646 | 2648 | msgstr "Inhalte" |
| 2647 | 2649 | |
| 2648 | -#: app/helpers/application_helper.rb:1051 | |
| 2650 | +#: app/helpers/application_helper.rb:1053 | |
| 2649 | 2651 | #: app/views/comment/_comment_actions.html.erb:5 |
| 2650 | 2652 | msgid "Contents menu" |
| 2651 | 2653 | msgstr "Menü für Inhalte" |
| 2652 | 2654 | |
| 2653 | -#: app/helpers/application_helper.rb:1057 | |
| 2655 | +#: app/helpers/application_helper.rb:1059 | |
| 2654 | 2656 | msgid "people|More recent" |
| 2655 | 2657 | msgstr "people|Neueste" |
| 2656 | 2658 | |
| 2657 | -#: app/helpers/application_helper.rb:1058 | |
| 2659 | +#: app/helpers/application_helper.rb:1060 | |
| 2658 | 2660 | msgid "people|More active" |
| 2659 | 2661 | msgstr "people|Aktivste" |
| 2660 | 2662 | |
| 2661 | -#: app/helpers/application_helper.rb:1059 | |
| 2663 | +#: app/helpers/application_helper.rb:1061 | |
| 2662 | 2664 | msgid "people|More popular" |
| 2663 | 2665 | msgstr "people|Populärste" |
| 2664 | 2666 | |
| 2665 | -#: app/helpers/application_helper.rb:1062 | |
| 2667 | +#: app/helpers/application_helper.rb:1064 | |
| 2666 | 2668 | msgid "My friends" |
| 2667 | 2669 | msgstr "Meine Freunde" |
| 2668 | 2670 | |
| 2669 | -#: app/helpers/application_helper.rb:1063 plugins/stoa/lib/stoa_plugin.rb:110 | |
| 2671 | +#: app/helpers/application_helper.rb:1065 plugins/stoa/lib/stoa_plugin.rb:110 | |
| 2670 | 2672 | msgid "Invite friends" |
| 2671 | 2673 | msgstr "Freunde einladen" |
| 2672 | 2674 | |
| 2673 | -#: app/helpers/application_helper.rb:1066 app/helpers/search_helper.rb:11 | |
| 2675 | +#: app/helpers/application_helper.rb:1068 app/helpers/search_helper.rb:11 | |
| 2674 | 2676 | #: app/helpers/assets_helper.rb:8 |
| 2675 | 2677 | #: app/controllers/public/search_controller.rb:49 |
| 2676 | 2678 | #: plugins/people_block/lib/people_block.rb:4 |
| 2677 | 2679 | msgid "People" |
| 2678 | 2680 | msgstr "Nutzer" |
| 2679 | 2681 | |
| 2680 | -#: app/helpers/application_helper.rb:1067 | |
| 2682 | +#: app/helpers/application_helper.rb:1069 | |
| 2681 | 2683 | msgid "People menu" |
| 2682 | 2684 | msgstr "Menü für Leute" |
| 2683 | 2685 | |
| 2684 | -#: app/helpers/application_helper.rb:1073 | |
| 2686 | +#: app/helpers/application_helper.rb:1075 | |
| 2685 | 2687 | msgid "communities|More recent" |
| 2686 | 2688 | msgstr "communities|Neueste" |
| 2687 | 2689 | |
| 2688 | -#: app/helpers/application_helper.rb:1074 | |
| 2690 | +#: app/helpers/application_helper.rb:1076 | |
| 2689 | 2691 | msgid "communities|More active" |
| 2690 | 2692 | msgstr "communities|Aktivste" |
| 2691 | 2693 | |
| 2692 | -#: app/helpers/application_helper.rb:1075 | |
| 2694 | +#: app/helpers/application_helper.rb:1077 | |
| 2693 | 2695 | msgid "communities|More popular" |
| 2694 | 2696 | msgstr "communities|Populärste" |
| 2695 | 2697 | |
| 2696 | -#: app/helpers/application_helper.rb:1078 | |
| 2697 | -#: app/helpers/application_helper.rb:1128 | |
| 2698 | +#: app/helpers/application_helper.rb:1080 | |
| 2699 | +#: app/helpers/application_helper.rb:1130 | |
| 2698 | 2700 | msgid "My communities" |
| 2699 | 2701 | msgstr "Meine Communities" |
| 2700 | 2702 | |
| 2701 | -#: app/helpers/application_helper.rb:1083 | |
| 2703 | +#: app/helpers/application_helper.rb:1085 | |
| 2702 | 2704 | msgid "Communities menu" |
| 2703 | 2705 | msgstr "Menü für Communities" |
| 2704 | 2706 | |
| 2705 | -#: app/helpers/application_helper.rb:1088 | |
| 2707 | +#: app/helpers/application_helper.rb:1090 | |
| 2706 | 2708 | #: app/views/layouts/slideshow.html.erb:18 |
| 2707 | 2709 | #: app/views/blocks/slideshow.html.erb:17 |
| 2708 | 2710 | #: app/views/blocks/featured_products.html.erb:3 |
| 2709 | 2711 | msgid "Previous" |
| 2710 | 2712 | msgstr "Vorherige" |
| 2711 | 2713 | |
| 2712 | -#: app/helpers/application_helper.rb:1088 app/helpers/forms_helper.rb:169 | |
| 2714 | +#: app/helpers/application_helper.rb:1090 app/helpers/forms_helper.rb:169 | |
| 2713 | 2715 | #: app/views/layouts/slideshow.html.erb:18 |
| 2714 | 2716 | #: app/views/enterprise_registration/basic_information.html.erb:40 |
| 2715 | 2717 | #: app/views/blocks/slideshow.html.erb:21 |
| ... | ... | @@ -2718,46 +2720,46 @@ msgstr "Vorherige" |
| 2718 | 2720 | msgid "Next" |
| 2719 | 2721 | msgstr "Nächste" |
| 2720 | 2722 | |
| 2721 | -#: app/helpers/application_helper.rb:1108 | |
| 2723 | +#: app/helpers/application_helper.rb:1110 | |
| 2722 | 2724 | #, fuzzy |
| 2723 | 2725 | msgid "See all" |
| 2724 | 2726 | msgstr "zeige alle..." |
| 2725 | 2727 | |
| 2726 | -#: app/helpers/application_helper.rb:1111 | |
| 2728 | +#: app/helpers/application_helper.rb:1113 | |
| 2727 | 2729 | msgid "<span>Manage</span> %s" |
| 2728 | 2730 | msgstr "%s <span>verwalten</span>" |
| 2729 | 2731 | |
| 2730 | -#: app/helpers/application_helper.rb:1111 | |
| 2732 | +#: app/helpers/application_helper.rb:1113 | |
| 2731 | 2733 | #: app/views/shared/user_menu.html.erb:26 |
| 2732 | 2734 | #: app/views/shared/_manage_link.html.erb:2 |
| 2733 | 2735 | msgid "Manage %s" |
| 2734 | 2736 | msgstr "Verwalte %s" |
| 2735 | 2737 | |
| 2736 | -#: app/helpers/application_helper.rb:1122 | |
| 2738 | +#: app/helpers/application_helper.rb:1124 | |
| 2737 | 2739 | msgid "My enterprises" |
| 2738 | 2740 | msgstr "Meine Unternehmen" |
| 2739 | 2741 | |
| 2740 | -#: app/helpers/application_helper.rb:1132 | |
| 2742 | +#: app/helpers/application_helper.rb:1134 | |
| 2741 | 2743 | msgid "Administration" |
| 2742 | 2744 | msgstr "Administration" |
| 2743 | 2745 | |
| 2744 | -#: app/helpers/application_helper.rb:1132 | |
| 2746 | +#: app/helpers/application_helper.rb:1134 | |
| 2745 | 2747 | msgid "Configure the environment" |
| 2746 | 2748 | msgstr "Umgebung konfigurieren" |
| 2747 | 2749 | |
| 2748 | -#: app/helpers/application_helper.rb:1139 | |
| 2750 | +#: app/helpers/application_helper.rb:1141 | |
| 2749 | 2751 | msgid "Manage your pending tasks" |
| 2750 | 2752 | msgstr "Anstehende Aufgaben verwalten" |
| 2751 | 2753 | |
| 2752 | -#: app/helpers/application_helper.rb:1142 | |
| 2754 | +#: app/helpers/application_helper.rb:1144 | |
| 2753 | 2755 | msgid "<span class='welcome'>Welcome,</span> %s" |
| 2754 | 2756 | msgstr "<span class='welcome'>Willkommen,</span> %s" |
| 2755 | 2757 | |
| 2756 | -#: app/helpers/application_helper.rb:1142 | |
| 2758 | +#: app/helpers/application_helper.rb:1144 | |
| 2757 | 2759 | msgid "Go to your homepage" |
| 2758 | 2760 | msgstr "Zu Ihrer Homepage gehen" |
| 2759 | 2761 | |
| 2760 | -#: app/helpers/application_helper.rb:1147 | |
| 2762 | +#: app/helpers/application_helper.rb:1149 | |
| 2761 | 2763 | #: app/views/shared/user_menu.html.erb:37 |
| 2762 | 2764 | #: app/views/blocks/profile_info.html.erb:24 |
| 2763 | 2765 | #: app/views/blocks/profile_image.html.erb:21 |
| ... | ... | @@ -2766,92 +2768,92 @@ msgstr "Zu Ihrer Homepage gehen" |
| 2766 | 2768 | msgid "Control panel" |
| 2767 | 2769 | msgstr "Kontrollpanel" |
| 2768 | 2770 | |
| 2769 | -#: app/helpers/application_helper.rb:1147 | |
| 2771 | +#: app/helpers/application_helper.rb:1149 | |
| 2770 | 2772 | msgid "Configure your personal account and content" |
| 2771 | 2773 | msgstr "Persönliches Benutzerkonto und Inhalte konfigurieren" |
| 2772 | 2774 | |
| 2773 | -#: app/helpers/application_helper.rb:1149 | |
| 2775 | +#: app/helpers/application_helper.rb:1151 | |
| 2774 | 2776 | #: app/views/shared/user_menu.html.erb:45 |
| 2775 | 2777 | #: app/views/blocks/login_block.html.erb:9 |
| 2776 | 2778 | msgid "Logout" |
| 2777 | 2779 | msgstr "Abmelden" |
| 2778 | 2780 | |
| 2779 | -#: app/helpers/application_helper.rb:1149 | |
| 2781 | +#: app/helpers/application_helper.rb:1151 | |
| 2780 | 2782 | msgid "Leave the system" |
| 2781 | 2783 | msgstr "System verlassen" |
| 2782 | 2784 | |
| 2783 | -#: app/helpers/application_helper.rb:1155 | |
| 2785 | +#: app/helpers/application_helper.rb:1157 | |
| 2784 | 2786 | msgid " characters left" |
| 2785 | 2787 | msgstr " Zeichen noch verfügbar" |
| 2786 | 2788 | |
| 2787 | -#: app/helpers/application_helper.rb:1156 | |
| 2789 | +#: app/helpers/application_helper.rb:1158 | |
| 2788 | 2790 | msgid "Limit of characters reached" |
| 2789 | 2791 | msgstr "Zeichenobergrenze erreicht" |
| 2790 | 2792 | |
| 2791 | -#: app/helpers/application_helper.rb:1182 | |
| 2792 | -#: app/helpers/application_helper.rb:1188 | |
| 2793 | +#: app/helpers/application_helper.rb:1184 | |
| 2794 | +#: app/helpers/application_helper.rb:1190 | |
| 2793 | 2795 | msgid "less than a minute" |
| 2794 | 2796 | msgstr "weniger als eine Minute" |
| 2795 | 2797 | |
| 2796 | -#: app/helpers/application_helper.rb:1182 | |
| 2797 | -#: app/helpers/application_helper.rb:1189 | |
| 2798 | +#: app/helpers/application_helper.rb:1184 | |
| 2799 | +#: app/helpers/application_helper.rb:1191 | |
| 2798 | 2800 | msgid "1 minute" |
| 2799 | 2801 | msgstr "1 Minute" |
| 2800 | 2802 | |
| 2801 | -#: app/helpers/application_helper.rb:1184 | |
| 2803 | +#: app/helpers/application_helper.rb:1186 | |
| 2802 | 2804 | msgid "less than 5 seconds" |
| 2803 | 2805 | msgstr "weniger als 5 Sekunden" |
| 2804 | 2806 | |
| 2805 | -#: app/helpers/application_helper.rb:1185 | |
| 2807 | +#: app/helpers/application_helper.rb:1187 | |
| 2806 | 2808 | msgid "less than 10 seconds" |
| 2807 | 2809 | msgstr "weniger als 10 Sekunden" |
| 2808 | 2810 | |
| 2809 | -#: app/helpers/application_helper.rb:1186 | |
| 2811 | +#: app/helpers/application_helper.rb:1188 | |
| 2810 | 2812 | msgid "less than 20 seconds" |
| 2811 | 2813 | msgstr "weniger als 20 Sekunden" |
| 2812 | 2814 | |
| 2813 | -#: app/helpers/application_helper.rb:1187 | |
| 2815 | +#: app/helpers/application_helper.rb:1189 | |
| 2814 | 2816 | msgid "half a minute" |
| 2815 | 2817 | msgstr "eine halbe Minute" |
| 2816 | 2818 | |
| 2817 | -#: app/helpers/application_helper.rb:1192 | |
| 2819 | +#: app/helpers/application_helper.rb:1194 | |
| 2818 | 2820 | msgid "%{distance} minutes ago" |
| 2819 | 2821 | msgstr "%{distance} Minuten zuvor" |
| 2820 | 2822 | |
| 2821 | -#: app/helpers/application_helper.rb:1193 | |
| 2823 | +#: app/helpers/application_helper.rb:1195 | |
| 2822 | 2824 | msgid "about 1 hour ago" |
| 2823 | 2825 | msgstr "vor ungefähr einer Stunde" |
| 2824 | 2826 | |
| 2825 | -#: app/helpers/application_helper.rb:1194 | |
| 2827 | +#: app/helpers/application_helper.rb:1196 | |
| 2826 | 2828 | msgid "about %{distance} hours ago" |
| 2827 | 2829 | msgstr "vor ungefähr %{distance} Stunden" |
| 2828 | 2830 | |
| 2829 | -#: app/helpers/application_helper.rb:1195 | |
| 2831 | +#: app/helpers/application_helper.rb:1197 | |
| 2830 | 2832 | msgid "1 day ago" |
| 2831 | 2833 | msgstr "vor einem Tag" |
| 2832 | 2834 | |
| 2833 | -#: app/helpers/application_helper.rb:1196 | |
| 2835 | +#: app/helpers/application_helper.rb:1198 | |
| 2834 | 2836 | msgid "%{distance} days ago" |
| 2835 | 2837 | msgstr "vor %{distance} Tagen" |
| 2836 | 2838 | |
| 2837 | -#: app/helpers/application_helper.rb:1214 | |
| 2839 | +#: app/helpers/application_helper.rb:1216 | |
| 2838 | 2840 | msgid "Source: %s" |
| 2839 | 2841 | msgstr "Quelle: %s" |
| 2840 | 2842 | |
| 2841 | -#: app/helpers/application_helper.rb:1247 | |
| 2843 | +#: app/helpers/application_helper.rb:1249 | |
| 2842 | 2844 | #: plugins/community_block/views/community_block.html.erb:17 |
| 2843 | 2845 | msgid "Report abuse" |
| 2844 | 2846 | msgstr "Missbräuchliches Verhalten melden" |
| 2845 | 2847 | |
| 2846 | -#: app/helpers/application_helper.rb:1249 | |
| 2848 | +#: app/helpers/application_helper.rb:1251 | |
| 2847 | 2849 | msgid "You already reported this profile." |
| 2848 | 2850 | msgstr "Sie haben dieses Profil bereits gemeldet." |
| 2849 | 2851 | |
| 2850 | -#: app/helpers/application_helper.rb:1250 | |
| 2852 | +#: app/helpers/application_helper.rb:1252 | |
| 2851 | 2853 | msgid "Report this profile for abusive behaviour" |
| 2852 | 2854 | msgstr "Melden Sie dieses Profil für missbräuchliches Verhalten" |
| 2853 | 2855 | |
| 2854 | -#: app/helpers/application_helper.rb:1289 | |
| 2856 | +#: app/helpers/application_helper.rb:1292 | |
| 2855 | 2857 | #, fuzzy |
| 2856 | 2858 | msgid "" |
| 2857 | 2859 | "Are you sure that you want to remove the folder \"%s\"? Note that all the " |
| ... | ... | @@ -2860,16 +2862,16 @@ msgstr "" |
| 2860 | 2862 | "Sind Sie sicher, dass Sie diesen Ordner löschen wollen? Damit wird auch der " |
| 2861 | 2863 | "gesamte Inhalt des Ordners gelöscht!" |
| 2862 | 2864 | |
| 2863 | -#: app/helpers/application_helper.rb:1291 | |
| 2865 | +#: app/helpers/application_helper.rb:1294 | |
| 2864 | 2866 | #, fuzzy |
| 2865 | 2867 | msgid "Are you sure that you want to remove the item \"%s\"?" |
| 2866 | 2868 | msgstr "Sind Sie sicher, dass Sie diesen Eintrag entfernen möchten?" |
| 2867 | 2869 | |
| 2868 | -#: app/helpers/application_helper.rb:1319 | |
| 2870 | +#: app/helpers/application_helper.rb:1323 | |
| 2869 | 2871 | msgid "Profile organization" |
| 2870 | 2872 | msgstr "Organisationsprofil" |
| 2871 | 2873 | |
| 2872 | -#: app/helpers/application_helper.rb:1320 | |
| 2874 | +#: app/helpers/application_helper.rb:1324 | |
| 2873 | 2875 | msgid "" |
| 2874 | 2876 | "Your profile will be created according to the selected template. Click on " |
| 2875 | 2877 | "the options to view them." |
| ... | ... | @@ -2877,16 +2879,16 @@ msgstr "" |
| 2877 | 2879 | "Ihr Profil wird in Übereinstimmung mit der ausgewählten Vorlage angelegt " |
| 2878 | 2880 | "werden.Klicken Sie auf die Optionen, um sie zu sehen." |
| 2879 | 2881 | |
| 2880 | -#: app/helpers/application_helper.rb:1355 | |
| 2882 | +#: app/helpers/application_helper.rb:1359 | |
| 2881 | 2883 | #, fuzzy |
| 2882 | 2884 | msgid "Errors while saving" |
| 2883 | 2885 | msgstr "Fehlernachricht" |
| 2884 | 2886 | |
| 2885 | -#: app/helpers/application_helper.rb:1365 | |
| 2887 | +#: app/helpers/application_helper.rb:1369 | |
| 2886 | 2888 | msgid "The content here is available to %s's friends only." |
| 2887 | 2889 | msgstr "Dieser Inhalt ist nur für %s's Freunde verfügbar." |
| 2888 | 2890 | |
| 2889 | -#: app/helpers/application_helper.rb:1368 | |
| 2891 | +#: app/helpers/application_helper.rb:1372 | |
| 2890 | 2892 | #, fuzzy |
| 2891 | 2893 | msgid "The contents in this profile is available to members only." |
| 2892 | 2894 | msgstr "Der Inhalt dieser Communitiy ist nur für Mitglieder verfügbar." |
| ... | ... | @@ -3670,7 +3672,7 @@ msgid "Wk" |
| 3670 | 3672 | msgstr "Wk" |
| 3671 | 3673 | |
| 3672 | 3674 | #: app/helpers/forms_helper.rb:248 |
| 3673 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 3675 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 3674 | 3676 | #: plugins/shopping_cart/views/shopping_cart_plugin_myprofile/reports.html.erb:11 |
| 3675 | 3677 | msgid "From" |
| 3676 | 3678 | msgstr "Von" |
| ... | ... | @@ -4315,7 +4317,7 @@ msgid "Failed to edit role" |
| 4315 | 4317 | msgstr "Änderung der Aufgabe fehlgeschlagen" |
| 4316 | 4318 | |
| 4317 | 4319 | #: app/controllers/admin/users_controller.rb:53 |
| 4318 | -#: app/controllers/my_profile/profile_editor_controller.rb:74 | |
| 4320 | +#: app/controllers/my_profile/profile_editor_controller.rb:76 | |
| 4319 | 4321 | msgid "The profile was deleted." |
| 4320 | 4322 | msgstr "Das Profil wurde gelöscht." |
| 4321 | 4323 | |
| ... | ... | @@ -4325,12 +4327,12 @@ msgid "Could not remove profile" |
| 4325 | 4327 | msgstr "Kann Profil nicht löschen" |
| 4326 | 4328 | |
| 4327 | 4329 | #: app/controllers/admin/users_controller.rb:95 |
| 4328 | -#: app/controllers/public/profile_controller.rb:363 | |
| 4330 | +#: app/controllers/public/profile_controller.rb:366 | |
| 4329 | 4331 | msgid "The e-mails are being sent" |
| 4330 | 4332 | msgstr "Die E-Mail werden versandt" |
| 4331 | 4333 | |
| 4332 | 4334 | #: app/controllers/admin/users_controller.rb:98 |
| 4333 | -#: app/controllers/public/profile_controller.rb:366 | |
| 4335 | +#: app/controllers/public/profile_controller.rb:369 | |
| 4334 | 4336 | msgid "Could not create the e-mail" |
| 4335 | 4337 | msgstr "Kann E-Mail nicht erstellen" |
| 4336 | 4338 | |
| ... | ... | @@ -4497,73 +4499,73 @@ msgstr "Der Artikel wurde gelöscht." |
| 4497 | 4499 | msgid "You couldn't mark this comment as spam." |
| 4498 | 4500 | msgstr "Sind Sie sicher, dass Sie diesen Kommentar als Spam markieren möchten?" |
| 4499 | 4501 | |
| 4500 | -#: app/controllers/public/profile_controller.rb:46 | |
| 4501 | -#: app/controllers/public/profile_controller.rb:47 | |
| 4502 | +#: app/controllers/public/profile_controller.rb:49 | |
| 4503 | +#: app/controllers/public/profile_controller.rb:50 | |
| 4502 | 4504 | #: app/views/profile/content_tagged.html.erb:3 |
| 4503 | 4505 | msgid "%s's contents tagged with \"%s\"" |
| 4504 | 4506 | msgstr "%ss Inhalte gekennzeichnet mit \"%s\"" |
| 4505 | 4507 | |
| 4506 | -#: app/controllers/public/profile_controller.rb:91 | |
| 4508 | +#: app/controllers/public/profile_controller.rb:94 | |
| 4507 | 4509 | msgid "%s administrator still needs to accept you as member." |
| 4508 | 4510 | msgstr "%s' Administrator muss Sie noch als Mitglied akzeptieren." |
| 4509 | 4511 | |
| 4510 | -#: app/controllers/public/profile_controller.rb:93 | |
| 4512 | +#: app/controllers/public/profile_controller.rb:96 | |
| 4511 | 4513 | msgid "You just became a member of %s." |
| 4512 | 4514 | msgstr "Sie sind Mitglied von %s geworden." |
| 4513 | 4515 | |
| 4514 | -#: app/controllers/public/profile_controller.rb:96 | |
| 4516 | +#: app/controllers/public/profile_controller.rb:99 | |
| 4515 | 4517 | msgid "You are already a member of %s." |
| 4516 | 4518 | msgstr "Sie sind bereits Mitglied von %s." |
| 4517 | 4519 | |
| 4518 | -#: app/controllers/public/profile_controller.rb:118 | |
| 4520 | +#: app/controllers/public/profile_controller.rb:121 | |
| 4519 | 4521 | msgid "You are not a member of %s." |
| 4520 | 4522 | msgstr "Sie sind kein Mitglied von %s." |
| 4521 | 4523 | |
| 4522 | -#: app/controllers/public/profile_controller.rb:138 | |
| 4524 | +#: app/controllers/public/profile_controller.rb:141 | |
| 4523 | 4525 | msgid "%s still needs to accept being your friend." |
| 4524 | 4526 | msgstr "%s muss die Freundschaft noch akzeptieren." |
| 4525 | 4527 | |
| 4526 | -#: app/controllers/public/profile_controller.rb:140 | |
| 4528 | +#: app/controllers/public/profile_controller.rb:143 | |
| 4527 | 4529 | msgid "You are already a friend of %s." |
| 4528 | 4530 | msgstr "Sie sind bereits ein Freund von %s." |
| 4529 | 4531 | |
| 4530 | -#: app/controllers/public/profile_controller.rb:159 | |
| 4532 | +#: app/controllers/public/profile_controller.rb:162 | |
| 4531 | 4533 | msgid "You have unblocked %s successfully. " |
| 4532 | -msgstr "Sie haben %s erfolgreich freigegeben." | |
| 4534 | +msgstr "Sie haben %s erfolgreich freigegeben. " | |
| 4533 | 4535 | |
| 4534 | -#: app/controllers/public/profile_controller.rb:162 | |
| 4536 | +#: app/controllers/public/profile_controller.rb:165 | |
| 4535 | 4537 | msgid "You are not allowed to unblock enterprises in this environment." |
| 4536 | 4538 | msgstr "Es ist Ihnen leider nicht erlaubt, Unternehmen zu entsperren." |
| 4537 | 4539 | |
| 4538 | -#: app/controllers/public/profile_controller.rb:174 | |
| 4540 | +#: app/controllers/public/profile_controller.rb:177 | |
| 4539 | 4541 | msgid "Message successfully sent." |
| 4540 | 4542 | msgstr "Nachricht erfolgreich versandt." |
| 4541 | 4543 | |
| 4542 | -#: app/controllers/public/profile_controller.rb:174 | |
| 4544 | +#: app/controllers/public/profile_controller.rb:177 | |
| 4543 | 4545 | msgid "You can't leave an empty message." |
| 4544 | 4546 | msgstr "Sie können keine leere Nachricht hinterlassen." |
| 4545 | 4547 | |
| 4546 | -#: app/controllers/public/profile_controller.rb:185 | |
| 4548 | +#: app/controllers/public/profile_controller.rb:188 | |
| 4547 | 4549 | msgid "Comment successfully added." |
| 4548 | 4550 | msgstr "Kommentar erfolgreich hinzugefügt." |
| 4549 | 4551 | |
| 4550 | -#: app/controllers/public/profile_controller.rb:185 | |
| 4552 | +#: app/controllers/public/profile_controller.rb:188 | |
| 4551 | 4553 | msgid "You can't leave an empty comment." |
| 4552 | 4554 | msgstr "Sie können keinen leeren Kommentar hinterlassen." |
| 4553 | 4555 | |
| 4554 | -#: app/controllers/public/profile_controller.rb:276 | |
| 4556 | +#: app/controllers/public/profile_controller.rb:279 | |
| 4555 | 4557 | msgid "Notification successfully removed." |
| 4556 | 4558 | msgstr "Benachrichtigung erfolgreich entfernt." |
| 4557 | 4559 | |
| 4558 | -#: app/controllers/public/profile_controller.rb:278 | |
| 4560 | +#: app/controllers/public/profile_controller.rb:281 | |
| 4559 | 4561 | msgid "You could not remove this notification." |
| 4560 | 4562 | msgstr "Sie können diese Benachrichtigung nicht entfernen." |
| 4561 | 4563 | |
| 4562 | -#: app/controllers/public/profile_controller.rb:311 | |
| 4564 | +#: app/controllers/public/profile_controller.rb:314 | |
| 4563 | 4565 | msgid "You could not answer the captcha." |
| 4564 | 4566 | msgstr "Sie konnten das Captcha nicht beantworten." |
| 4565 | 4567 | |
| 4566 | -#: app/controllers/public/profile_controller.rb:331 | |
| 4568 | +#: app/controllers/public/profile_controller.rb:334 | |
| 4567 | 4569 | msgid "" |
| 4568 | 4570 | "Your abuse report was registered. The administrators are reviewing your " |
| 4569 | 4571 | "report." |
| ... | ... | @@ -4571,7 +4573,7 @@ msgstr "" |
| 4571 | 4573 | "Ihre Meldung zum missbräuchlichen Verhalten wurde registriert. Die " |
| 4572 | 4574 | "Administratoren werden sich Ihre Meldung ansehen." |
| 4573 | 4575 | |
| 4574 | -#: app/controllers/public/profile_controller.rb:339 | |
| 4576 | +#: app/controllers/public/profile_controller.rb:342 | |
| 4575 | 4577 | msgid "" |
| 4576 | 4578 | "Your report couldn't be saved due to some problem. Please contact the " |
| 4577 | 4579 | "administrator." |
| ... | ... | @@ -4579,7 +4581,7 @@ msgstr "" |
| 4579 | 4581 | "Aufgrund eines Problems konnte Ihre Meldung nicht gespeichert werden. Bitte " |
| 4580 | 4582 | "wenden Sie sich an den Administrator." |
| 4581 | 4583 | |
| 4582 | -#: app/controllers/public/profile_controller.rb:402 | |
| 4584 | +#: app/controllers/public/profile_controller.rb:406 | |
| 4583 | 4585 | msgid "" |
| 4584 | 4586 | "This profile is inaccessible. You don't have the permission to view the " |
| 4585 | 4587 | "content here." |
| ... | ... | @@ -4587,7 +4589,7 @@ msgstr "" |
| 4587 | 4589 | "Dieses Profil ist nicht aufrufbar. Sie haben keine Berechtigungen, um es " |
| 4588 | 4590 | "sich ansehen zu können." |
| 4589 | 4591 | |
| 4590 | -#: app/controllers/public/profile_controller.rb:402 | |
| 4592 | +#: app/controllers/public/profile_controller.rb:406 | |
| 4591 | 4593 | msgid "Oops ... you cannot go ahead here" |
| 4592 | 4594 | msgstr "Oops.. Sie können hier leider nicht weitergehen" |
| 4593 | 4595 | |
| ... | ... | @@ -4667,15 +4669,15 @@ msgstr "Das Vorprodukt wurde nicht gefunden" |
| 4667 | 4669 | msgid "Address was updated successfully!" |
| 4668 | 4670 | msgstr "Die Adresse wurde erfolgreich aktualisiert!" |
| 4669 | 4671 | |
| 4670 | -#: app/controllers/my_profile/profile_editor_controller.rb:34 | |
| 4672 | +#: app/controllers/my_profile/profile_editor_controller.rb:36 | |
| 4671 | 4673 | msgid "%s was not enabled." |
| 4672 | 4674 | msgstr "%s war nicht aktiviert." |
| 4673 | 4675 | |
| 4674 | -#: app/controllers/my_profile/profile_editor_controller.rb:44 | |
| 4676 | +#: app/controllers/my_profile/profile_editor_controller.rb:46 | |
| 4675 | 4677 | msgid "%s was not disabled." |
| 4676 | 4678 | msgstr "%s ist nicht deaktiviert." |
| 4677 | 4679 | |
| 4678 | -#: app/controllers/my_profile/profile_editor_controller.rb:77 | |
| 4680 | +#: app/controllers/my_profile/profile_editor_controller.rb:79 | |
| 4679 | 4681 | msgid "Could not delete profile" |
| 4680 | 4682 | msgstr "Kann Profil nicht löschen" |
| 4681 | 4683 | |
| ... | ... | @@ -4766,8 +4768,8 @@ msgstr "Gesendet von %s." |
| 4766 | 4768 | |
| 4767 | 4769 | #: app/mailers/contact.rb:23 |
| 4768 | 4770 | #: app/views/admin_panel/_signup_welcome_text.html.erb:6 |
| 4769 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 4770 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:4 | |
| 4771 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 4772 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:4 | |
| 4771 | 4773 | msgid "Subject" |
| 4772 | 4774 | msgstr "Betreff" |
| 4773 | 4775 | |
| ... | ... | @@ -4795,7 +4797,7 @@ msgstr "Motiv \"%s\" ändern" |
| 4795 | 4797 | #: app/views/features/_manage_enterprise_fields.html.erb:59 |
| 4796 | 4798 | #: app/views/features/_manage_community_fields.html.erb:59 |
| 4797 | 4799 | #: app/views/features/_manage_person_fields.html.erb:59 |
| 4798 | -#: app/views/features/index.html.erb:54 app/views/role/_form.html.erb:16 | |
| 4800 | +#: app/views/features/index.html.erb:54 app/views/role/_form.html.erb:20 | |
| 4799 | 4801 | #: app/views/profile_members/change_role.html.erb:17 |
| 4800 | 4802 | #: app/views/environment_role_manager/change_role.html.erb:11 |
| 4801 | 4803 | #: app/views/plugins/index.html.erb:30 |
| ... | ... | @@ -5297,8 +5299,8 @@ msgstr "Vorschau auf dieses Motiv" |
| 5297 | 5299 | #: app/views/enterprise_validation/list_processed.html.erb:3 |
| 5298 | 5300 | #: app/views/enterprise_validation/view_processed.html.erb:3 |
| 5299 | 5301 | #: app/views/manage_products/index.html.erb:29 |
| 5300 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:8 | |
| 5301 | -#: plugins/send_email/views/send_email_plugin/fail.rhtml:3 | |
| 5302 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:8 | |
| 5303 | +#: plugins/send_email/views/send_email_plugin/fail.html.erb:3 | |
| 5302 | 5304 | #: plugins/spaminator/views/spaminator_plugin_admin/reports.html.erb:33 |
| 5303 | 5305 | #: plugins/tolerance_time/views/tolerance_time_plugin_myprofile/index.html.erb:22 |
| 5304 | 5306 | msgid "Back" |
| ... | ... | @@ -5365,10 +5367,7 @@ msgstr "%s hat %d offene Aufgabe(n)." |
| 5365 | 5367 | #: app/views/pending_task_notifier/notification.text.erb:21 |
| 5366 | 5368 | #: app/views/scrap/notifier/notification.text.erb:12 |
| 5367 | 5369 | #: app/views/person_notifier/mailer/content_summary.html.erb:12 |
| 5368 | -#: app/views/task_mailer/task_activated.text.erb:5 | |
| 5369 | -#: app/views/task_mailer/task_created.text.erb:5 | |
| 5370 | -#: app/views/task_mailer/task_finished.text.erb:5 | |
| 5371 | -#: app/views/task_mailer/task_cancelled.text.erb:5 | |
| 5370 | +#: app/views/task_mailer/generic_message.text.erb:5 | |
| 5372 | 5371 | #: app/views/comment/notifier/mail_to_followers.html.erb:18 |
| 5373 | 5372 | #: app/views/comment/notifier/notification.text.erb:15 |
| 5374 | 5373 | #: app/views/user_mailer/activation_code.text.erb:5 |
| ... | ... | @@ -5381,11 +5380,8 @@ msgstr "Grüße," |
| 5381 | 5380 | #: app/views/pending_task_notifier/notification.text.erb:24 |
| 5382 | 5381 | #: app/views/scrap/notifier/notification.text.erb:15 |
| 5383 | 5382 | #: app/views/person_notifier/mailer/content_summary.html.erb:15 |
| 5384 | -#: app/views/task_mailer/task_activated.text.erb:8 | |
| 5385 | -#: app/views/task_mailer/task_created.text.erb:8 | |
| 5386 | -#: app/views/task_mailer/task_finished.text.erb:8 | |
| 5383 | +#: app/views/task_mailer/generic_message.text.erb:8 | |
| 5387 | 5384 | #: app/views/task_mailer/target_notification.text.erb:9 |
| 5388 | -#: app/views/task_mailer/task_cancelled.text.erb:8 | |
| 5389 | 5385 | #: app/views/comment/notifier/mail_to_followers.html.erb:21 |
| 5390 | 5386 | #: app/views/comment/notifier/notification.text.erb:18 |
| 5391 | 5387 | #: app/views/user_mailer/activation_code.text.erb:8 |
| ... | ... | @@ -6090,7 +6086,7 @@ msgstr "Geburtstag" |
| 6090 | 6086 | msgid "Address (street and number)" |
| 6091 | 6087 | msgstr "Adresse (Straße und Nummer)" |
| 6092 | 6088 | |
| 6093 | -#: app/views/profile_editor/_person_form.html.erb:54 | |
| 6089 | +#: app/views/profile_editor/_person_form.html.erb:58 | |
| 6094 | 6090 | msgid "Custom formation" |
| 6095 | 6091 | msgstr "Angepasste Formatierung" |
| 6096 | 6092 | |
| ... | ... | @@ -6128,7 +6124,7 @@ msgstr "Beispiele ansehen:" |
| 6128 | 6124 | |
| 6129 | 6125 | #: app/views/profile_editor/header_footer.html.erb:23 |
| 6130 | 6126 | msgid "Content for header " |
| 6131 | -msgstr "Inhalt für den Kopfbereich (header)" | |
| 6127 | +msgstr "Inhalt für den Kopfbereich (header) " | |
| 6132 | 6128 | |
| 6133 | 6129 | #: app/views/profile_editor/header_footer.html.erb:25 |
| 6134 | 6130 | msgid "Content for footer" |
| ... | ... | @@ -6699,10 +6695,6 @@ msgstr "News" |
| 6699 | 6695 | msgid "View more" |
| 6700 | 6696 | msgstr "zeige mehr" |
| 6701 | 6697 | |
| 6702 | -#: app/views/home/index.html.erb:65 | |
| 6703 | -msgid "More options" | |
| 6704 | -msgstr "Mehr Optionen" | |
| 6705 | - | |
| 6706 | 6698 | #: app/views/features/_manage_enterprise_fields.html.erb:5 |
| 6707 | 6699 | #: app/views/features/_manage_community_fields.html.erb:5 |
| 6708 | 6700 | #: app/views/features/_manage_person_fields.html.erb:5 |
| ... | ... | @@ -6859,11 +6851,12 @@ msgstr "" |
| 6859 | 6851 | msgid "Create a new role" |
| 6860 | 6852 | msgstr "Eine neue Rolle erzeugen" |
| 6861 | 6853 | |
| 6862 | -#: app/views/role/_form.html.erb:9 | |
| 6863 | -msgid "Permissions:" | |
| 6854 | +#: app/views/role/_form.html.erb:11 | |
| 6855 | +#, fuzzy | |
| 6856 | +msgid "%s Permissions:" | |
| 6864 | 6857 | msgstr "Rechte:" |
| 6865 | 6858 | |
| 6866 | -#: app/views/role/_form.html.erb:16 | |
| 6859 | +#: app/views/role/_form.html.erb:20 | |
| 6867 | 6860 | msgid "Create role" |
| 6868 | 6861 | msgstr "Funktion erstellen" |
| 6869 | 6862 | |
| ... | ... | @@ -7166,7 +7159,7 @@ msgid "" |
| 7166 | 7159 | msgstr "" |
| 7167 | 7160 | "Bitte suchen Sie Organisationen zuerst anhand ihres Namens und nutzen Sie " |
| 7168 | 7161 | "dann die Buttons im Suchresultat, um diese als Validatoren für diese Region " |
| 7169 | -"hinzuzufügen." | |
| 7162 | +"hinzuzufügen. " | |
| 7170 | 7163 | |
| 7171 | 7164 | #: app/views/region_validators/_region.html.erb:5 |
| 7172 | 7165 | msgid "1 validator" |
| ... | ... | @@ -7824,10 +7817,7 @@ msgstr "Bitte ändern Sie diesen Block und wählen Sie einige Produkte aus" |
| 7824 | 7817 | msgid "Unblock" |
| 7825 | 7818 | msgstr "freigeben" |
| 7826 | 7819 | |
| 7827 | -#: app/views/task_mailer/task_activated.text.erb:1 | |
| 7828 | -#: app/views/task_mailer/task_created.text.erb:1 | |
| 7829 | -#: app/views/task_mailer/task_finished.text.erb:1 | |
| 7830 | -#: app/views/task_mailer/task_cancelled.text.erb:1 | |
| 7820 | +#: app/views/task_mailer/generic_message.text.erb:1 | |
| 7831 | 7821 | msgid "Dear %s," |
| 7832 | 7822 | msgstr "Sehr geehrte(r) %s," |
| 7833 | 7823 | |
| ... | ... | @@ -8109,7 +8099,7 @@ msgstr "Teil 2 von 2" |
| 8109 | 8099 | |
| 8110 | 8100 | #: app/views/account/accept_terms.html.erb:14 |
| 8111 | 8101 | msgid " part 2 of 3" |
| 8112 | -msgstr "Teil 2 von 3" | |
| 8102 | +msgstr " Teil 2 von 3" | |
| 8113 | 8103 | |
| 8114 | 8104 | #: app/views/account/accept_terms.html.erb:22 |
| 8115 | 8105 | msgid "I read the terms of use and accepted them" |
| ... | ... | @@ -8685,7 +8675,7 @@ msgstr "Details ansehen" |
| 8685 | 8675 | |
| 8686 | 8676 | #: app/views/enterprise_validation/view_processed.html.erb:1 |
| 8687 | 8677 | msgid "Processed validation request for %s " |
| 8688 | -msgstr "Durchgeführte Validierungsanfragen für %s" | |
| 8678 | +msgstr "Durchgeführte Validierungsanfragen für %s " | |
| 8689 | 8679 | |
| 8690 | 8680 | #: app/views/enterprise_validation/_details.html.erb:27 |
| 8691 | 8681 | msgid "Foundation Year" |
| ... | ... | @@ -10042,7 +10032,7 @@ msgid "Configurations could not be saved" |
| 10042 | 10032 | msgstr "Die Konfiguration konnte nicht gespeichert werden" |
| 10043 | 10033 | |
| 10044 | 10034 | #: plugins/send_email/controllers/send_email_plugin_base_controller.rb:16 |
| 10045 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:1 | |
| 10035 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:1 | |
| 10046 | 10036 | msgid "Message sent" |
| 10047 | 10037 | msgstr "Nachricht gesendet" |
| 10048 | 10038 | |
| ... | ... | @@ -10283,12 +10273,12 @@ msgstr "Die Unterorganisationen konnte nicht aktualisiert werden" |
| 10283 | 10273 | |
| 10284 | 10274 | #: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:26 |
| 10285 | 10275 | #, fuzzy |
| 10286 | -msgid "\"Custom form #{@form.name} was successfully created.\"" | |
| 10276 | +msgid "Custom form %s was successfully created." | |
| 10287 | 10277 | msgstr "Kommentar erfolgreich hinzugefügt." |
| 10288 | 10278 | |
| 10289 | 10279 | #: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:46 |
| 10290 | 10280 | #, fuzzy |
| 10291 | -msgid "\"Custom form #{@form.name} was successfully updated.\"" | |
| 10281 | +msgid "Custom form %s was successfully updated." | |
| 10292 | 10282 | msgstr "Kommentar erfolgreich aktualisiert" |
| 10293 | 10283 | |
| 10294 | 10284 | #: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:49 |
| ... | ... | @@ -10311,19 +10301,15 @@ msgstr "Beitrag gespeichert" |
| 10311 | 10301 | msgid "Submission could not be saved" |
| 10312 | 10302 | msgstr "Der Beitrag konnte nicht gespeichert werden" |
| 10313 | 10303 | |
| 10314 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 10304 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 10315 | 10305 | msgid "To" |
| 10316 | 10306 | msgstr "An" |
| 10317 | 10307 | |
| 10318 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:7 | |
| 10319 | -msgid "New mail" | |
| 10320 | -msgstr "Neue E-Mail" | |
| 10321 | - | |
| 10322 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:19 | |
| 10308 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:24 | |
| 10323 | 10309 | msgid "'%s' isn't a valid e-mail address" |
| 10324 | 10310 | msgstr "%s ist keine gültige E-Mail-Adresse" |
| 10325 | 10311 | |
| 10326 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:26 | |
| 10312 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:31 | |
| 10327 | 10313 | msgid "'%s' address is not allowed (see SendEmailPlugin config)" |
| 10328 | 10314 | msgstr "" |
| 10329 | 10315 | "Die Adresse von %s ist nicht erlaubt (siehe Einstellungen zu SendEmailPlugin)" |
| ... | ... | @@ -10537,6 +10523,33 @@ msgstr "Preis (%s)" |
| 10537 | 10523 | msgid "A plugin to enable the video suport, with auto conversion for the web." |
| 10538 | 10524 | msgstr "" |
| 10539 | 10525 | |
| 10526 | +#: plugins/lattes_curriculum/lib/html_parser.rb:19 | |
| 10527 | +msgid "Lattes not found. Please, make sure the informed URL is correct." | |
| 10528 | +msgstr "" | |
| 10529 | + | |
| 10530 | +#: plugins/lattes_curriculum/lib/html_parser.rb:21 | |
| 10531 | +msgid "Lattes Platform is unreachable. Please, try it later." | |
| 10532 | +msgstr "" | |
| 10533 | + | |
| 10534 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:8 | |
| 10535 | +msgid "A plugin that imports the lattes curriculum into the users profiles" | |
| 10536 | +msgstr "" | |
| 10537 | + | |
| 10538 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:40 | |
| 10539 | +msgid "Lattes" | |
| 10540 | +msgstr "" | |
| 10541 | + | |
| 10542 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:73 | |
| 10543 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:106 | |
| 10544 | +#, fuzzy | |
| 10545 | +msgid " Invalid lattes url" | |
| 10546 | +msgstr "Ungültige Adresse" | |
| 10547 | + | |
| 10548 | +#: plugins/lattes_curriculum/lib/academic_info.rb:10 | |
| 10549 | +#, fuzzy | |
| 10550 | +msgid " is invalid." | |
| 10551 | +msgstr "%{fn} ist nicht gültig" | |
| 10552 | + | |
| 10540 | 10553 | #: plugins/bsc/lib/bsc_plugin.rb:10 |
| 10541 | 10554 | msgid "Adds the Bsc feature" |
| 10542 | 10555 | msgstr "Fügt Unterstützung für Bsc hinzu" |
| ... | ... | @@ -11039,7 +11052,7 @@ msgstr "" |
| 11039 | 11052 | msgid "A plugin that add remote user support." |
| 11040 | 11053 | msgstr "Ein Plugin, welches dies und jenes tut." |
| 11041 | 11054 | |
| 11042 | -#: plugins/remote_user/lib/remote_user_plugin.rb:45 | |
| 11055 | +#: plugins/remote_user/lib/remote_user_plugin.rb:55 | |
| 11043 | 11056 | #, fuzzy |
| 11044 | 11057 | msgid "Could not create the remote_user." |
| 11045 | 11058 | msgstr "Kann E-Mail nicht erstellen" |
| ... | ... | @@ -11292,14 +11305,6 @@ msgstr "Ermöglicht die Erstellung von Formularen." |
| 11292 | 11305 | msgid "Manage Forms" |
| 11293 | 11306 | msgstr "Formulare verwalten" |
| 11294 | 11307 | |
| 11295 | -#: plugins/send_email/views/send_email_plugin/fail.rhtml:1 | |
| 11296 | -msgid "The message could not be sent" | |
| 11297 | -msgstr "Die Nachricht konnte nicht abgeschickt werden" | |
| 11298 | - | |
| 11299 | -#: plugins/send_email/views/send_email_plugin/sender/message.rhtml:1 | |
| 11300 | -msgid "Contact from %s" | |
| 11301 | -msgstr "Kontakt von %s" | |
| 11302 | - | |
| 11303 | 11308 | #: plugins/google_analytics/views/profile-editor-extras.rhtml:4 |
| 11304 | 11309 | msgid "Google Analytics Profile ID" |
| 11305 | 11310 | msgstr "Profil-ID von Google Analytics" |
| ... | ... | @@ -11313,6 +11318,14 @@ msgstr "" |
| 11313 | 11318 | msgid "Applied filters" |
| 11314 | 11319 | msgstr "Angewandte Filter" |
| 11315 | 11320 | |
| 11321 | +#: plugins/send_email/views/send_email_plugin/sender/message.html.erb:1 | |
| 11322 | +msgid "Contact from %s" | |
| 11323 | +msgstr "Kontakt von %s" | |
| 11324 | + | |
| 11325 | +#: plugins/send_email/views/send_email_plugin/fail.html.erb:1 | |
| 11326 | +msgid "The message could not be sent" | |
| 11327 | +msgstr "Die Nachricht konnte nicht abgeschickt werden" | |
| 11328 | + | |
| 11316 | 11329 | #: plugins/send_email/views/send_email_plugin_admin/index.html.erb:1 |
| 11317 | 11330 | msgid "SendEmailPlugin's config" |
| 11318 | 11331 | msgstr "Konfiguration des SendEmailPlugins" |
| ... | ... | @@ -12725,6 +12738,12 @@ msgstr "Sind Sie sicher, dass Sie dieses Formular entfernen möchten?" |
| 12725 | 12738 | msgid "Add a new form" |
| 12726 | 12739 | msgstr "Neues Formular hinzufügen" |
| 12727 | 12740 | |
| 12741 | +#~ msgid "More options" | |
| 12742 | +#~ msgstr "Mehr Optionen" | |
| 12743 | + | |
| 12744 | +#~ msgid "New mail" | |
| 12745 | +#~ msgstr "Neue E-Mail" | |
| 12746 | + | |
| 12728 | 12747 | #~ msgid "ZIP code:" |
| 12729 | 12748 | #~ msgstr "Postleitzahl:" |
| 12730 | 12749 | |
| ... | ... | @@ -14015,9 +14034,6 @@ msgstr "Neues Formular hinzufügen" |
| 14015 | 14034 | #~ msgid "Disable CMS" |
| 14016 | 14035 | #~ msgstr "CMS aus" |
| 14017 | 14036 | |
| 14018 | -#~ msgid "%{fn} is invalid." | |
| 14019 | -#~ msgstr "%{fn} ist nicht gültig" | |
| 14020 | - | |
| 14021 | 14037 | #~ msgid "%{fn} can't be blank" |
| 14022 | 14038 | #~ msgstr "%{fn} kann nicht leer bleiben" |
| 14023 | 14039 | ... | ... |
po/eo/noosfero.po
| ... | ... | @@ -5,49 +5,51 @@ |
| 5 | 5 | # |
| 6 | 6 | msgid "" |
| 7 | 7 | msgstr "" |
| 8 | -"Project-Id-Version: 1.0~rc3\n" | |
| 9 | -"POT-Creation-Date: 2014-10-30 09:24-0300\n" | |
| 10 | -"PO-Revision-Date: 2011-03-30 20:52-0300\n" | |
| 11 | -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | |
| 12 | -"Language-Team: LANGUAGE <LL@li.org>\n" | |
| 8 | +"Project-Id-Version: 1.0~rc4\n" | |
| 9 | +"POT-Creation-Date: 2014-12-18 17:22-0300\n" | |
| 10 | +"PO-Revision-Date: 2014-11-05 13:05+0200\n" | |
| 11 | +"Last-Translator: Aurélio A. Heckert <aurelio@colivre.coop.br>\n" | |
| 12 | +"Language-Team: Esperanto <https://hosted.weblate.org/projects/noosfero/" | |
| 13 | +"noosfero/eo/>\n" | |
| 13 | 14 | "Language: eo\n" |
| 14 | 15 | "MIME-Version: 1.0\n" |
| 15 | 16 | "Content-Type: text/plain; charset=UTF-8\n" |
| 16 | 17 | "Content-Transfer-Encoding: 8bit\n" |
| 17 | -"Plural-Forms: nplurals=2; plural=(n != 1);\n" | |
| 18 | +"Plural-Forms: nplurals=2; plural=n != 1;\n" | |
| 19 | +"X-Generator: Weblate 2.0-dev\n" | |
| 18 | 20 | |
| 19 | 21 | #: app/models/approve_comment.rb:17 |
| 20 | 22 | msgid "Anonymous" |
| 21 | -msgstr "" | |
| 23 | +msgstr "Anonima" | |
| 22 | 24 | |
| 23 | 25 | #: app/models/approve_comment.rb:25 app/models/approve_article.rb:17 |
| 24 | 26 | msgid "Article removed." |
| 25 | -msgstr "" | |
| 27 | +msgstr "Artikolo forigita." | |
| 26 | 28 | |
| 27 | 29 | #: app/models/approve_comment.rb:33 |
| 28 | 30 | msgid "New comment to article" |
| 29 | -msgstr "" | |
| 31 | +msgstr "Novaj komentoj al la artikolo" | |
| 30 | 32 | |
| 31 | 33 | #: app/models/approve_comment.rb:49 app/models/approve_comment.rb:51 |
| 32 | 34 | msgid "%{requestor} commented on the article: %{linked_subject}." |
| 33 | -msgstr "" | |
| 35 | +msgstr "%{requestor} komentarii artikolo: %{linked_subject}." | |
| 34 | 36 | |
| 35 | 37 | #: app/models/approve_comment.rb:55 app/models/approve_article.rb:72 |
| 36 | 38 | msgid "The article was removed." |
| 37 | -msgstr "" | |
| 39 | +msgstr "La artikolo estis forigita." | |
| 38 | 40 | |
| 39 | 41 | #: app/models/approve_comment.rb:81 |
| 40 | 42 | msgid "%{requestor} wants to comment the article: %{article}." |
| 41 | -msgstr "" | |
| 43 | +msgstr "%{requestor} volas komenti la artikolon: %{article}." | |
| 42 | 44 | |
| 43 | 45 | #: app/models/approve_comment.rb:83 |
| 44 | 46 | msgid "%{requestor} wanted to comment the article but it was removed." |
| 45 | -msgstr "" | |
| 47 | +msgstr "%{requestor} volis komenti la artikolon sed estis forigita." | |
| 46 | 48 | |
| 47 | 49 | #: app/models/approve_comment.rb:89 |
| 48 | 50 | msgid "" |
| 49 | 51 | "You need to login on %{system} in order to approve or reject this comment." |
| 50 | -msgstr "" | |
| 52 | +msgstr "Vi devas eniri sur %{system} por aprobi aŭ malakcepti tiun komenton." | |
| 51 | 53 | |
| 52 | 54 | #: app/models/approve_comment.rb:94 |
| 53 | 55 | msgid "" |
| ... | ... | @@ -56,10 +58,14 @@ msgid "" |
| 56 | 58 | "\n" |
| 57 | 59 | "%{comment} " |
| 58 | 60 | msgstr "" |
| 61 | +"Via komento al la artikolo \"%{article}\" estis aprobita. Jen la komento " | |
| 62 | +"lasita de la administristo, kiu aprobis vian komenton:\n" | |
| 63 | +"\n" | |
| 64 | +"%{comment} " | |
| 59 | 65 | |
| 60 | 66 | #: app/models/approve_comment.rb:96 |
| 61 | 67 | msgid "Your request for comment the article \"%{article}\" was approved." |
| 62 | -msgstr "" | |
| 68 | +msgstr "Via peto por komento la artikolo \"%{article}\" estis aprobita." | |
| 63 | 69 | |
| 64 | 70 | #: app/models/approve_comment.rb:101 |
| 65 | 71 | msgid "Your request for commenting the article \"%{article}\" was rejected." |
| ... | ... | @@ -79,40 +85,40 @@ msgstr "" |
| 79 | 85 | |
| 80 | 86 | #: app/models/comment.rb:71 |
| 81 | 87 | msgid "(removed user)" |
| 82 | -msgstr "" | |
| 88 | +msgstr "(forigita uzanto)" | |
| 83 | 89 | |
| 84 | 90 | #: app/models/comment.rb:71 |
| 85 | 91 | msgid "(unauthenticated user)" |
| 86 | -msgstr "" | |
| 92 | +msgstr "(malverigis uzanto)" | |
| 87 | 93 | |
| 88 | 94 | #: app/models/product.rb:104 app/helpers/display_helper.rb:42 |
| 89 | 95 | #: app/helpers/display_helper.rb:51 |
| 90 | 96 | msgid "Uncategorized product" |
| 91 | -msgstr "" | |
| 97 | +msgstr "Neenkategoriitaj produkto" | |
| 92 | 98 | |
| 93 | 99 | #: app/models/product.rb:244 |
| 94 | 100 | msgid "0%" |
| 95 | -msgstr "" | |
| 101 | +msgstr "0%" | |
| 96 | 102 | |
| 97 | 103 | #: app/models/product.rb:245 |
| 98 | 104 | msgid "25%" |
| 99 | -msgstr "" | |
| 105 | +msgstr "25%" | |
| 100 | 106 | |
| 101 | 107 | #: app/models/product.rb:246 |
| 102 | 108 | msgid "50%" |
| 103 | -msgstr "" | |
| 109 | +msgstr "50%" | |
| 104 | 110 | |
| 105 | 111 | #: app/models/product.rb:247 |
| 106 | 112 | msgid "75%" |
| 107 | -msgstr "" | |
| 113 | +msgstr "75%" | |
| 108 | 114 | |
| 109 | 115 | #: app/models/product.rb:248 |
| 110 | 116 | msgid "100%" |
| 111 | -msgstr "" | |
| 117 | +msgstr "100%" | |
| 112 | 118 | |
| 113 | 119 | #: app/models/invite_member.rb:19 |
| 114 | 120 | msgid "Community invitation" |
| 115 | -msgstr "" | |
| 121 | +msgstr "komunumo invito" | |
| 116 | 122 | |
| 117 | 123 | #: app/models/invite_member.rb:27 |
| 118 | 124 | msgid "%{requestor} invited you to join %{linked_subject}." |
| ... | ... | @@ -136,7 +142,7 @@ msgstr "" |
| 136 | 142 | |
| 137 | 143 | #: app/models/my_network_block.rb:6 app/models/my_network_block.rb:10 |
| 138 | 144 | msgid "My network" |
| 139 | -msgstr "" | |
| 145 | +msgstr "Mia reto" | |
| 140 | 146 | |
| 141 | 147 | #: app/models/my_network_block.rb:14 |
| 142 | 148 | msgid "This block displays some info about your networking." |
| ... | ... | @@ -144,11 +150,11 @@ msgstr "" |
| 144 | 150 | |
| 145 | 151 | #: app/models/sellers_search_block.rb:6 |
| 146 | 152 | msgid "Search for enterprises and products" |
| 147 | -msgstr "" | |
| 153 | +msgstr "Serĉu entreprenoj kaj produktoj" | |
| 148 | 154 | |
| 149 | 155 | #: app/models/sellers_search_block.rb:10 |
| 150 | 156 | msgid "Products/Enterprises search" |
| 151 | -msgstr "" | |
| 157 | +msgstr "Produktoj/Entreprenoj serĉo" | |
| 152 | 158 | |
| 153 | 159 | #: app/models/sellers_search_block.rb:14 |
| 154 | 160 | msgid "Search for sellers" |
| ... | ... | @@ -530,7 +536,7 @@ msgid "have unsupported languages." |
| 530 | 536 | msgstr "" |
| 531 | 537 | |
| 532 | 538 | #: app/models/communities_block.rb:6 app/helpers/application_helper.rb:549 |
| 533 | -#: app/helpers/application_helper.rb:1082 app/helpers/search_helper.rb:12 | |
| 539 | +#: app/helpers/application_helper.rb:1084 app/helpers/search_helper.rb:12 | |
| 534 | 540 | #: app/helpers/assets_helper.rb:11 |
| 535 | 541 | #: app/controllers/public/search_controller.rb:53 |
| 536 | 542 | msgid "Communities" |
| ... | ... | @@ -699,24 +705,24 @@ msgstr "" |
| 699 | 705 | msgid "Nationality" |
| 700 | 706 | msgstr "" |
| 701 | 707 | |
| 702 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:32 | |
| 708 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:36 | |
| 703 | 709 | msgid "Schooling" |
| 704 | 710 | msgstr "" |
| 705 | 711 | |
| 706 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:58 | |
| 712 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:62 | |
| 707 | 713 | msgid "Area of study" |
| 708 | 714 | msgstr "" |
| 709 | 715 | |
| 710 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:65 | |
| 716 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:69 | |
| 711 | 717 | msgid "Professional activity" |
| 712 | 718 | msgstr "" |
| 713 | 719 | |
| 714 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:66 | |
| 720 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:70 | |
| 715 | 721 | msgid "Organization" |
| 716 | 722 | msgstr "" |
| 717 | 723 | |
| 718 | 724 | #: app/models/person.rb:196 app/models/enterprise.rb:25 |
| 719 | -#: app/views/profile_editor/_person_form.html.erb:67 | |
| 725 | +#: app/views/profile_editor/_person_form.html.erb:71 | |
| 720 | 726 | msgid "Organization website" |
| 721 | 727 | msgstr "" |
| 722 | 728 | |
| ... | ... | @@ -725,7 +731,7 @@ msgid "Schooling status" |
| 725 | 731 | msgstr "" |
| 726 | 732 | |
| 727 | 733 | #: app/models/person.rb:202 app/helpers/profile_editor_helper.rb:26 |
| 728 | -#: app/views/profile_editor/_person_form.html.erb:51 | |
| 734 | +#: app/views/profile_editor/_person_form.html.erb:55 | |
| 729 | 735 | msgid "Education" |
| 730 | 736 | msgstr "" |
| 731 | 737 | |
| ... | ... | @@ -733,7 +739,7 @@ msgstr "" |
| 733 | 739 | msgid "Custom education" |
| 734 | 740 | msgstr "" |
| 735 | 741 | |
| 736 | -#: app/models/person.rb:202 app/views/profile_editor/_person_form.html.erb:61 | |
| 742 | +#: app/models/person.rb:202 app/views/profile_editor/_person_form.html.erb:65 | |
| 737 | 743 | msgid "Custom area of study" |
| 738 | 744 | msgstr "" |
| 739 | 745 | |
| ... | ... | @@ -961,7 +967,7 @@ msgstr "" |
| 961 | 967 | msgid "{fn} must be checked in order to signup." |
| 962 | 968 | msgstr "" |
| 963 | 969 | |
| 964 | -#: app/models/user.rb:251 | |
| 970 | +#: app/models/user.rb:255 | |
| 965 | 971 | msgid "does not match." |
| 966 | 972 | msgstr "" |
| 967 | 973 | |
| ... | ... | @@ -1468,7 +1474,7 @@ msgstr "" |
| 1468 | 1474 | msgid "To do list" |
| 1469 | 1475 | msgstr "" |
| 1470 | 1476 | |
| 1471 | -#: app/models/link_list_block.rb:35 app/helpers/application_helper.rb:914 | |
| 1477 | +#: app/models/link_list_block.rb:35 app/helpers/application_helper.rb:915 | |
| 1472 | 1478 | msgid "Chat" |
| 1473 | 1479 | msgstr "" |
| 1474 | 1480 | |
| ... | ... | @@ -1523,7 +1529,7 @@ msgstr "" |
| 1523 | 1529 | msgid "description" |
| 1524 | 1530 | msgstr "" |
| 1525 | 1531 | |
| 1526 | -#: app/models/create_community.rb:38 app/helpers/application_helper.rb:1079 | |
| 1532 | +#: app/models/create_community.rb:38 app/helpers/application_helper.rb:1081 | |
| 1527 | 1533 | msgid "New community" |
| 1528 | 1534 | msgstr "" |
| 1529 | 1535 | |
| ... | ... | @@ -2217,8 +2223,8 @@ msgstr "" |
| 2217 | 2223 | |
| 2218 | 2224 | #: app/models/disabled_enterprise_message_block.rb:12 |
| 2219 | 2225 | #: app/mailers/contact.rb:23 |
| 2220 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 2221 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:5 | |
| 2226 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 2227 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:5 | |
| 2222 | 2228 | msgid "Message" |
| 2223 | 2229 | msgstr "" |
| 2224 | 2230 | |
| ... | ... | @@ -2443,107 +2449,107 @@ msgstr "" |
| 2443 | 2449 | msgid "Public" |
| 2444 | 2450 | msgstr "" |
| 2445 | 2451 | |
| 2446 | -#: app/helpers/application_helper.rb:913 | |
| 2452 | +#: app/helpers/application_helper.rb:914 | |
| 2447 | 2453 | msgid "Online Manual" |
| 2448 | 2454 | msgstr "" |
| 2449 | 2455 | |
| 2450 | -#: app/helpers/application_helper.rb:961 app/views/home/index.html.erb:12 | |
| 2456 | +#: app/helpers/application_helper.rb:963 app/views/home/index.html.erb:12 | |
| 2451 | 2457 | #: plugins/display_content/lib/display_content_block.rb:141 |
| 2452 | 2458 | #: plugins/recent_content/views/blocks/recent_content_block.html.erb:26 |
| 2453 | 2459 | #: plugins/recent_content/views/blocks/recent_content_block.html.erb:35 |
| 2454 | 2460 | msgid "Read more" |
| 2455 | 2461 | msgstr "Legi pli" |
| 2456 | 2462 | |
| 2457 | -#: app/helpers/application_helper.rb:1042 | |
| 2463 | +#: app/helpers/application_helper.rb:1044 | |
| 2458 | 2464 | msgid "contents|More recent" |
| 2459 | 2465 | msgstr "" |
| 2460 | 2466 | |
| 2461 | -#: app/helpers/application_helper.rb:1043 | |
| 2467 | +#: app/helpers/application_helper.rb:1045 | |
| 2462 | 2468 | msgid "contents|More viewed" |
| 2463 | 2469 | msgstr "" |
| 2464 | 2470 | |
| 2465 | -#: app/helpers/application_helper.rb:1044 | |
| 2471 | +#: app/helpers/application_helper.rb:1046 | |
| 2466 | 2472 | #, fuzzy |
| 2467 | 2473 | msgid "contents|Most commented" |
| 2468 | 2474 | msgstr "Unu komento" |
| 2469 | 2475 | |
| 2470 | -#: app/helpers/application_helper.rb:1047 app/views/cms/view.html.erb:20 | |
| 2476 | +#: app/helpers/application_helper.rb:1049 app/views/cms/view.html.erb:20 | |
| 2471 | 2477 | msgid "New content" |
| 2472 | 2478 | msgstr "" |
| 2473 | 2479 | |
| 2474 | -#: app/helpers/application_helper.rb:1050 app/helpers/search_helper.rb:9 | |
| 2480 | +#: app/helpers/application_helper.rb:1052 app/helpers/search_helper.rb:9 | |
| 2475 | 2481 | #: app/controllers/public/search_controller.rb:54 |
| 2476 | 2482 | msgid "Contents" |
| 2477 | 2483 | msgstr "" |
| 2478 | 2484 | |
| 2479 | -#: app/helpers/application_helper.rb:1051 | |
| 2485 | +#: app/helpers/application_helper.rb:1053 | |
| 2480 | 2486 | #: app/views/comment/_comment_actions.html.erb:5 |
| 2481 | 2487 | msgid "Contents menu" |
| 2482 | 2488 | msgstr "" |
| 2483 | 2489 | |
| 2484 | -#: app/helpers/application_helper.rb:1057 | |
| 2490 | +#: app/helpers/application_helper.rb:1059 | |
| 2485 | 2491 | msgid "people|More recent" |
| 2486 | 2492 | msgstr "" |
| 2487 | 2493 | |
| 2488 | -#: app/helpers/application_helper.rb:1058 | |
| 2494 | +#: app/helpers/application_helper.rb:1060 | |
| 2489 | 2495 | msgid "people|More active" |
| 2490 | 2496 | msgstr "" |
| 2491 | 2497 | |
| 2492 | -#: app/helpers/application_helper.rb:1059 | |
| 2498 | +#: app/helpers/application_helper.rb:1061 | |
| 2493 | 2499 | msgid "people|More popular" |
| 2494 | 2500 | msgstr "" |
| 2495 | 2501 | |
| 2496 | -#: app/helpers/application_helper.rb:1062 | |
| 2502 | +#: app/helpers/application_helper.rb:1064 | |
| 2497 | 2503 | msgid "My friends" |
| 2498 | 2504 | msgstr "" |
| 2499 | 2505 | |
| 2500 | -#: app/helpers/application_helper.rb:1063 plugins/stoa/lib/stoa_plugin.rb:110 | |
| 2506 | +#: app/helpers/application_helper.rb:1065 plugins/stoa/lib/stoa_plugin.rb:110 | |
| 2501 | 2507 | msgid "Invite friends" |
| 2502 | 2508 | msgstr "" |
| 2503 | 2509 | |
| 2504 | -#: app/helpers/application_helper.rb:1066 app/helpers/search_helper.rb:11 | |
| 2510 | +#: app/helpers/application_helper.rb:1068 app/helpers/search_helper.rb:11 | |
| 2505 | 2511 | #: app/helpers/assets_helper.rb:8 |
| 2506 | 2512 | #: app/controllers/public/search_controller.rb:49 |
| 2507 | 2513 | #: plugins/people_block/lib/people_block.rb:4 |
| 2508 | 2514 | msgid "People" |
| 2509 | 2515 | msgstr "" |
| 2510 | 2516 | |
| 2511 | -#: app/helpers/application_helper.rb:1067 | |
| 2517 | +#: app/helpers/application_helper.rb:1069 | |
| 2512 | 2518 | msgid "People menu" |
| 2513 | 2519 | msgstr "" |
| 2514 | 2520 | |
| 2515 | -#: app/helpers/application_helper.rb:1073 | |
| 2521 | +#: app/helpers/application_helper.rb:1075 | |
| 2516 | 2522 | #, fuzzy |
| 2517 | 2523 | msgid "communities|More recent" |
| 2518 | 2524 | msgstr "Unu komento" |
| 2519 | 2525 | |
| 2520 | -#: app/helpers/application_helper.rb:1074 | |
| 2526 | +#: app/helpers/application_helper.rb:1076 | |
| 2521 | 2527 | msgid "communities|More active" |
| 2522 | 2528 | msgstr "" |
| 2523 | 2529 | |
| 2524 | -#: app/helpers/application_helper.rb:1075 | |
| 2530 | +#: app/helpers/application_helper.rb:1077 | |
| 2525 | 2531 | #, fuzzy |
| 2526 | 2532 | msgid "communities|More popular" |
| 2527 | 2533 | msgstr "Unu komento" |
| 2528 | 2534 | |
| 2529 | -#: app/helpers/application_helper.rb:1078 | |
| 2530 | -#: app/helpers/application_helper.rb:1128 | |
| 2535 | +#: app/helpers/application_helper.rb:1080 | |
| 2536 | +#: app/helpers/application_helper.rb:1130 | |
| 2531 | 2537 | msgid "My communities" |
| 2532 | 2538 | msgstr "" |
| 2533 | 2539 | |
| 2534 | -#: app/helpers/application_helper.rb:1083 | |
| 2540 | +#: app/helpers/application_helper.rb:1085 | |
| 2535 | 2541 | #, fuzzy |
| 2536 | 2542 | msgid "Communities menu" |
| 2537 | 2543 | msgstr "Unu komento" |
| 2538 | 2544 | |
| 2539 | -#: app/helpers/application_helper.rb:1088 | |
| 2545 | +#: app/helpers/application_helper.rb:1090 | |
| 2540 | 2546 | #: app/views/layouts/slideshow.html.erb:18 |
| 2541 | 2547 | #: app/views/blocks/slideshow.html.erb:17 |
| 2542 | 2548 | #: app/views/blocks/featured_products.html.erb:3 |
| 2543 | 2549 | msgid "Previous" |
| 2544 | 2550 | msgstr "" |
| 2545 | 2551 | |
| 2546 | -#: app/helpers/application_helper.rb:1088 app/helpers/forms_helper.rb:169 | |
| 2552 | +#: app/helpers/application_helper.rb:1090 app/helpers/forms_helper.rb:169 | |
| 2547 | 2553 | #: app/views/layouts/slideshow.html.erb:18 |
| 2548 | 2554 | #: app/views/enterprise_registration/basic_information.html.erb:40 |
| 2549 | 2555 | #: app/views/blocks/slideshow.html.erb:21 |
| ... | ... | @@ -2552,45 +2558,45 @@ msgstr "" |
| 2552 | 2558 | msgid "Next" |
| 2553 | 2559 | msgstr "" |
| 2554 | 2560 | |
| 2555 | -#: app/helpers/application_helper.rb:1108 | |
| 2561 | +#: app/helpers/application_helper.rb:1110 | |
| 2556 | 2562 | msgid "See all" |
| 2557 | 2563 | msgstr "Vidi ĉiujn" |
| 2558 | 2564 | |
| 2559 | -#: app/helpers/application_helper.rb:1111 | |
| 2565 | +#: app/helpers/application_helper.rb:1113 | |
| 2560 | 2566 | msgid "<span>Manage</span> %s" |
| 2561 | 2567 | msgstr "" |
| 2562 | 2568 | |
| 2563 | -#: app/helpers/application_helper.rb:1111 | |
| 2569 | +#: app/helpers/application_helper.rb:1113 | |
| 2564 | 2570 | #: app/views/shared/user_menu.html.erb:26 |
| 2565 | 2571 | #: app/views/shared/_manage_link.html.erb:2 |
| 2566 | 2572 | msgid "Manage %s" |
| 2567 | 2573 | msgstr "" |
| 2568 | 2574 | |
| 2569 | -#: app/helpers/application_helper.rb:1122 | |
| 2575 | +#: app/helpers/application_helper.rb:1124 | |
| 2570 | 2576 | msgid "My enterprises" |
| 2571 | 2577 | msgstr "" |
| 2572 | 2578 | |
| 2573 | -#: app/helpers/application_helper.rb:1132 | |
| 2579 | +#: app/helpers/application_helper.rb:1134 | |
| 2574 | 2580 | msgid "Administration" |
| 2575 | 2581 | msgstr "" |
| 2576 | 2582 | |
| 2577 | -#: app/helpers/application_helper.rb:1132 | |
| 2583 | +#: app/helpers/application_helper.rb:1134 | |
| 2578 | 2584 | msgid "Configure the environment" |
| 2579 | 2585 | msgstr "" |
| 2580 | 2586 | |
| 2581 | -#: app/helpers/application_helper.rb:1139 | |
| 2587 | +#: app/helpers/application_helper.rb:1141 | |
| 2582 | 2588 | msgid "Manage your pending tasks" |
| 2583 | 2589 | msgstr "" |
| 2584 | 2590 | |
| 2585 | -#: app/helpers/application_helper.rb:1142 | |
| 2591 | +#: app/helpers/application_helper.rb:1144 | |
| 2586 | 2592 | msgid "<span class='welcome'>Welcome,</span> %s" |
| 2587 | 2593 | msgstr "" |
| 2588 | 2594 | |
| 2589 | -#: app/helpers/application_helper.rb:1142 | |
| 2595 | +#: app/helpers/application_helper.rb:1144 | |
| 2590 | 2596 | msgid "Go to your homepage" |
| 2591 | 2597 | msgstr "" |
| 2592 | 2598 | |
| 2593 | -#: app/helpers/application_helper.rb:1147 | |
| 2599 | +#: app/helpers/application_helper.rb:1149 | |
| 2594 | 2600 | #: app/views/shared/user_menu.html.erb:37 |
| 2595 | 2601 | #: app/views/blocks/profile_info.html.erb:24 |
| 2596 | 2602 | #: app/views/blocks/profile_image.html.erb:21 |
| ... | ... | @@ -2599,120 +2605,120 @@ msgstr "" |
| 2599 | 2605 | msgid "Control panel" |
| 2600 | 2606 | msgstr "" |
| 2601 | 2607 | |
| 2602 | -#: app/helpers/application_helper.rb:1147 | |
| 2608 | +#: app/helpers/application_helper.rb:1149 | |
| 2603 | 2609 | msgid "Configure your personal account and content" |
| 2604 | 2610 | msgstr "" |
| 2605 | 2611 | |
| 2606 | -#: app/helpers/application_helper.rb:1149 | |
| 2612 | +#: app/helpers/application_helper.rb:1151 | |
| 2607 | 2613 | #: app/views/shared/user_menu.html.erb:45 |
| 2608 | 2614 | #: app/views/blocks/login_block.html.erb:9 |
| 2609 | 2615 | msgid "Logout" |
| 2610 | 2616 | msgstr "" |
| 2611 | 2617 | |
| 2612 | -#: app/helpers/application_helper.rb:1149 | |
| 2618 | +#: app/helpers/application_helper.rb:1151 | |
| 2613 | 2619 | msgid "Leave the system" |
| 2614 | 2620 | msgstr "" |
| 2615 | 2621 | |
| 2616 | -#: app/helpers/application_helper.rb:1155 | |
| 2622 | +#: app/helpers/application_helper.rb:1157 | |
| 2617 | 2623 | msgid " characters left" |
| 2618 | 2624 | msgstr "" |
| 2619 | 2625 | |
| 2620 | -#: app/helpers/application_helper.rb:1156 | |
| 2626 | +#: app/helpers/application_helper.rb:1158 | |
| 2621 | 2627 | msgid "Limit of characters reached" |
| 2622 | 2628 | msgstr "" |
| 2623 | 2629 | |
| 2624 | -#: app/helpers/application_helper.rb:1182 | |
| 2625 | -#: app/helpers/application_helper.rb:1188 | |
| 2630 | +#: app/helpers/application_helper.rb:1184 | |
| 2631 | +#: app/helpers/application_helper.rb:1190 | |
| 2626 | 2632 | msgid "less than a minute" |
| 2627 | 2633 | msgstr "" |
| 2628 | 2634 | |
| 2629 | -#: app/helpers/application_helper.rb:1182 | |
| 2630 | -#: app/helpers/application_helper.rb:1189 | |
| 2635 | +#: app/helpers/application_helper.rb:1184 | |
| 2636 | +#: app/helpers/application_helper.rb:1191 | |
| 2631 | 2637 | msgid "1 minute" |
| 2632 | 2638 | msgstr "" |
| 2633 | 2639 | |
| 2634 | -#: app/helpers/application_helper.rb:1184 | |
| 2640 | +#: app/helpers/application_helper.rb:1186 | |
| 2635 | 2641 | msgid "less than 5 seconds" |
| 2636 | 2642 | msgstr "" |
| 2637 | 2643 | |
| 2638 | -#: app/helpers/application_helper.rb:1185 | |
| 2644 | +#: app/helpers/application_helper.rb:1187 | |
| 2639 | 2645 | msgid "less than 10 seconds" |
| 2640 | 2646 | msgstr "" |
| 2641 | 2647 | |
| 2642 | -#: app/helpers/application_helper.rb:1186 | |
| 2648 | +#: app/helpers/application_helper.rb:1188 | |
| 2643 | 2649 | msgid "less than 20 seconds" |
| 2644 | 2650 | msgstr "" |
| 2645 | 2651 | |
| 2646 | -#: app/helpers/application_helper.rb:1187 | |
| 2652 | +#: app/helpers/application_helper.rb:1189 | |
| 2647 | 2653 | msgid "half a minute" |
| 2648 | 2654 | msgstr "" |
| 2649 | 2655 | |
| 2650 | -#: app/helpers/application_helper.rb:1192 | |
| 2656 | +#: app/helpers/application_helper.rb:1194 | |
| 2651 | 2657 | msgid "%{distance} minutes ago" |
| 2652 | 2658 | msgstr "" |
| 2653 | 2659 | |
| 2654 | -#: app/helpers/application_helper.rb:1193 | |
| 2660 | +#: app/helpers/application_helper.rb:1195 | |
| 2655 | 2661 | msgid "about 1 hour ago" |
| 2656 | 2662 | msgstr "" |
| 2657 | 2663 | |
| 2658 | -#: app/helpers/application_helper.rb:1194 | |
| 2664 | +#: app/helpers/application_helper.rb:1196 | |
| 2659 | 2665 | msgid "about %{distance} hours ago" |
| 2660 | 2666 | msgstr "" |
| 2661 | 2667 | |
| 2662 | -#: app/helpers/application_helper.rb:1195 | |
| 2668 | +#: app/helpers/application_helper.rb:1197 | |
| 2663 | 2669 | msgid "1 day ago" |
| 2664 | 2670 | msgstr "" |
| 2665 | 2671 | |
| 2666 | -#: app/helpers/application_helper.rb:1196 | |
| 2672 | +#: app/helpers/application_helper.rb:1198 | |
| 2667 | 2673 | msgid "%{distance} days ago" |
| 2668 | 2674 | msgstr "" |
| 2669 | 2675 | |
| 2670 | -#: app/helpers/application_helper.rb:1214 | |
| 2676 | +#: app/helpers/application_helper.rb:1216 | |
| 2671 | 2677 | msgid "Source: %s" |
| 2672 | 2678 | msgstr "" |
| 2673 | 2679 | |
| 2674 | -#: app/helpers/application_helper.rb:1247 | |
| 2680 | +#: app/helpers/application_helper.rb:1249 | |
| 2675 | 2681 | #: plugins/community_block/views/community_block.html.erb:17 |
| 2676 | 2682 | msgid "Report abuse" |
| 2677 | 2683 | msgstr "" |
| 2678 | 2684 | |
| 2679 | -#: app/helpers/application_helper.rb:1249 | |
| 2685 | +#: app/helpers/application_helper.rb:1251 | |
| 2680 | 2686 | msgid "You already reported this profile." |
| 2681 | 2687 | msgstr "" |
| 2682 | 2688 | |
| 2683 | -#: app/helpers/application_helper.rb:1250 | |
| 2689 | +#: app/helpers/application_helper.rb:1252 | |
| 2684 | 2690 | msgid "Report this profile for abusive behaviour" |
| 2685 | 2691 | msgstr "" |
| 2686 | 2692 | |
| 2687 | -#: app/helpers/application_helper.rb:1289 | |
| 2693 | +#: app/helpers/application_helper.rb:1292 | |
| 2688 | 2694 | msgid "" |
| 2689 | 2695 | "Are you sure that you want to remove the folder \"%s\"? Note that all the " |
| 2690 | 2696 | "items inside it will also be removed!" |
| 2691 | 2697 | msgstr "" |
| 2692 | 2698 | |
| 2693 | -#: app/helpers/application_helper.rb:1291 | |
| 2699 | +#: app/helpers/application_helper.rb:1294 | |
| 2694 | 2700 | msgid "Are you sure that you want to remove the item \"%s\"?" |
| 2695 | 2701 | msgstr "" |
| 2696 | 2702 | |
| 2697 | -#: app/helpers/application_helper.rb:1319 | |
| 2703 | +#: app/helpers/application_helper.rb:1323 | |
| 2698 | 2704 | msgid "Profile organization" |
| 2699 | 2705 | msgstr "" |
| 2700 | 2706 | |
| 2701 | -#: app/helpers/application_helper.rb:1320 | |
| 2707 | +#: app/helpers/application_helper.rb:1324 | |
| 2702 | 2708 | msgid "" |
| 2703 | 2709 | "Your profile will be created according to the selected template. Click on " |
| 2704 | 2710 | "the options to view them." |
| 2705 | 2711 | msgstr "" |
| 2706 | 2712 | |
| 2707 | -#: app/helpers/application_helper.rb:1355 | |
| 2713 | +#: app/helpers/application_helper.rb:1359 | |
| 2708 | 2714 | msgid "Errors while saving" |
| 2709 | 2715 | msgstr "" |
| 2710 | 2716 | |
| 2711 | -#: app/helpers/application_helper.rb:1365 | |
| 2717 | +#: app/helpers/application_helper.rb:1369 | |
| 2712 | 2718 | msgid "The content here is available to %s's friends only." |
| 2713 | 2719 | msgstr "" |
| 2714 | 2720 | |
| 2715 | -#: app/helpers/application_helper.rb:1368 | |
| 2721 | +#: app/helpers/application_helper.rb:1372 | |
| 2716 | 2722 | msgid "The contents in this profile is available to members only." |
| 2717 | 2723 | msgstr "" |
| 2718 | 2724 | |
| ... | ... | @@ -3463,7 +3469,7 @@ msgid "Wk" |
| 3463 | 3469 | msgstr "" |
| 3464 | 3470 | |
| 3465 | 3471 | #: app/helpers/forms_helper.rb:248 |
| 3466 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 3472 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 3467 | 3473 | #: plugins/shopping_cart/views/shopping_cart_plugin_myprofile/reports.html.erb:11 |
| 3468 | 3474 | msgid "From" |
| 3469 | 3475 | msgstr "" |
| ... | ... | @@ -4100,7 +4106,7 @@ msgid "Failed to edit role" |
| 4100 | 4106 | msgstr "" |
| 4101 | 4107 | |
| 4102 | 4108 | #: app/controllers/admin/users_controller.rb:53 |
| 4103 | -#: app/controllers/my_profile/profile_editor_controller.rb:74 | |
| 4109 | +#: app/controllers/my_profile/profile_editor_controller.rb:76 | |
| 4104 | 4110 | msgid "The profile was deleted." |
| 4105 | 4111 | msgstr "" |
| 4106 | 4112 | |
| ... | ... | @@ -4109,12 +4115,12 @@ msgid "Could not remove profile" |
| 4109 | 4115 | msgstr "" |
| 4110 | 4116 | |
| 4111 | 4117 | #: app/controllers/admin/users_controller.rb:95 |
| 4112 | -#: app/controllers/public/profile_controller.rb:363 | |
| 4118 | +#: app/controllers/public/profile_controller.rb:366 | |
| 4113 | 4119 | msgid "The e-mails are being sent" |
| 4114 | 4120 | msgstr "" |
| 4115 | 4121 | |
| 4116 | 4122 | #: app/controllers/admin/users_controller.rb:98 |
| 4117 | -#: app/controllers/public/profile_controller.rb:366 | |
| 4123 | +#: app/controllers/public/profile_controller.rb:369 | |
| 4118 | 4124 | msgid "Could not create the e-mail" |
| 4119 | 4125 | msgstr "" |
| 4120 | 4126 | |
| ... | ... | @@ -4264,91 +4270,91 @@ msgstr "Unu komento" |
| 4264 | 4270 | msgid "You couldn't mark this comment as spam." |
| 4265 | 4271 | msgstr "" |
| 4266 | 4272 | |
| 4267 | -#: app/controllers/public/profile_controller.rb:46 | |
| 4268 | -#: app/controllers/public/profile_controller.rb:47 | |
| 4273 | +#: app/controllers/public/profile_controller.rb:49 | |
| 4274 | +#: app/controllers/public/profile_controller.rb:50 | |
| 4269 | 4275 | #: app/views/profile/content_tagged.html.erb:3 |
| 4270 | 4276 | msgid "%s's contents tagged with \"%s\"" |
| 4271 | 4277 | msgstr "" |
| 4272 | 4278 | |
| 4273 | -#: app/controllers/public/profile_controller.rb:91 | |
| 4279 | +#: app/controllers/public/profile_controller.rb:94 | |
| 4274 | 4280 | msgid "%s administrator still needs to accept you as member." |
| 4275 | 4281 | msgstr "" |
| 4276 | 4282 | |
| 4277 | -#: app/controllers/public/profile_controller.rb:93 | |
| 4283 | +#: app/controllers/public/profile_controller.rb:96 | |
| 4278 | 4284 | msgid "You just became a member of %s." |
| 4279 | 4285 | msgstr "" |
| 4280 | 4286 | |
| 4281 | -#: app/controllers/public/profile_controller.rb:96 | |
| 4287 | +#: app/controllers/public/profile_controller.rb:99 | |
| 4282 | 4288 | msgid "You are already a member of %s." |
| 4283 | 4289 | msgstr "" |
| 4284 | 4290 | |
| 4285 | -#: app/controllers/public/profile_controller.rb:118 | |
| 4291 | +#: app/controllers/public/profile_controller.rb:121 | |
| 4286 | 4292 | msgid "You are not a member of %s." |
| 4287 | 4293 | msgstr "" |
| 4288 | 4294 | |
| 4289 | -#: app/controllers/public/profile_controller.rb:138 | |
| 4295 | +#: app/controllers/public/profile_controller.rb:141 | |
| 4290 | 4296 | msgid "%s still needs to accept being your friend." |
| 4291 | 4297 | msgstr "" |
| 4292 | 4298 | |
| 4293 | -#: app/controllers/public/profile_controller.rb:140 | |
| 4299 | +#: app/controllers/public/profile_controller.rb:143 | |
| 4294 | 4300 | msgid "You are already a friend of %s." |
| 4295 | 4301 | msgstr "" |
| 4296 | 4302 | |
| 4297 | -#: app/controllers/public/profile_controller.rb:159 | |
| 4303 | +#: app/controllers/public/profile_controller.rb:162 | |
| 4298 | 4304 | msgid "You have unblocked %s successfully. " |
| 4299 | 4305 | msgstr "" |
| 4300 | 4306 | |
| 4301 | -#: app/controllers/public/profile_controller.rb:162 | |
| 4307 | +#: app/controllers/public/profile_controller.rb:165 | |
| 4302 | 4308 | msgid "You are not allowed to unblock enterprises in this environment." |
| 4303 | 4309 | msgstr "" |
| 4304 | 4310 | |
| 4305 | -#: app/controllers/public/profile_controller.rb:174 | |
| 4311 | +#: app/controllers/public/profile_controller.rb:177 | |
| 4306 | 4312 | msgid "Message successfully sent." |
| 4307 | 4313 | msgstr "" |
| 4308 | 4314 | |
| 4309 | -#: app/controllers/public/profile_controller.rb:174 | |
| 4315 | +#: app/controllers/public/profile_controller.rb:177 | |
| 4310 | 4316 | msgid "You can't leave an empty message." |
| 4311 | 4317 | msgstr "" |
| 4312 | 4318 | |
| 4313 | -#: app/controllers/public/profile_controller.rb:185 | |
| 4319 | +#: app/controllers/public/profile_controller.rb:188 | |
| 4314 | 4320 | msgid "Comment successfully added." |
| 4315 | 4321 | msgstr "" |
| 4316 | 4322 | |
| 4317 | -#: app/controllers/public/profile_controller.rb:185 | |
| 4323 | +#: app/controllers/public/profile_controller.rb:188 | |
| 4318 | 4324 | msgid "You can't leave an empty comment." |
| 4319 | 4325 | msgstr "" |
| 4320 | 4326 | |
| 4321 | -#: app/controllers/public/profile_controller.rb:276 | |
| 4327 | +#: app/controllers/public/profile_controller.rb:279 | |
| 4322 | 4328 | msgid "Notification successfully removed." |
| 4323 | 4329 | msgstr "" |
| 4324 | 4330 | |
| 4325 | -#: app/controllers/public/profile_controller.rb:278 | |
| 4331 | +#: app/controllers/public/profile_controller.rb:281 | |
| 4326 | 4332 | msgid "You could not remove this notification." |
| 4327 | 4333 | msgstr "" |
| 4328 | 4334 | |
| 4329 | -#: app/controllers/public/profile_controller.rb:311 | |
| 4335 | +#: app/controllers/public/profile_controller.rb:314 | |
| 4330 | 4336 | msgid "You could not answer the captcha." |
| 4331 | 4337 | msgstr "" |
| 4332 | 4338 | |
| 4333 | -#: app/controllers/public/profile_controller.rb:331 | |
| 4339 | +#: app/controllers/public/profile_controller.rb:334 | |
| 4334 | 4340 | msgid "" |
| 4335 | 4341 | "Your abuse report was registered. The administrators are reviewing your " |
| 4336 | 4342 | "report." |
| 4337 | 4343 | msgstr "" |
| 4338 | 4344 | |
| 4339 | -#: app/controllers/public/profile_controller.rb:339 | |
| 4345 | +#: app/controllers/public/profile_controller.rb:342 | |
| 4340 | 4346 | msgid "" |
| 4341 | 4347 | "Your report couldn't be saved due to some problem. Please contact the " |
| 4342 | 4348 | "administrator." |
| 4343 | 4349 | msgstr "" |
| 4344 | 4350 | |
| 4345 | -#: app/controllers/public/profile_controller.rb:402 | |
| 4351 | +#: app/controllers/public/profile_controller.rb:406 | |
| 4346 | 4352 | msgid "" |
| 4347 | 4353 | "This profile is inaccessible. You don't have the permission to view the " |
| 4348 | 4354 | "content here." |
| 4349 | 4355 | msgstr "" |
| 4350 | 4356 | |
| 4351 | -#: app/controllers/public/profile_controller.rb:402 | |
| 4357 | +#: app/controllers/public/profile_controller.rb:406 | |
| 4352 | 4358 | msgid "Oops ... you cannot go ahead here" |
| 4353 | 4359 | msgstr "" |
| 4354 | 4360 | |
| ... | ... | @@ -4421,15 +4427,15 @@ msgstr "" |
| 4421 | 4427 | msgid "Address was updated successfully!" |
| 4422 | 4428 | msgstr "" |
| 4423 | 4429 | |
| 4424 | -#: app/controllers/my_profile/profile_editor_controller.rb:34 | |
| 4430 | +#: app/controllers/my_profile/profile_editor_controller.rb:36 | |
| 4425 | 4431 | msgid "%s was not enabled." |
| 4426 | 4432 | msgstr "" |
| 4427 | 4433 | |
| 4428 | -#: app/controllers/my_profile/profile_editor_controller.rb:44 | |
| 4434 | +#: app/controllers/my_profile/profile_editor_controller.rb:46 | |
| 4429 | 4435 | msgid "%s was not disabled." |
| 4430 | 4436 | msgstr "" |
| 4431 | 4437 | |
| 4432 | -#: app/controllers/my_profile/profile_editor_controller.rb:77 | |
| 4438 | +#: app/controllers/my_profile/profile_editor_controller.rb:79 | |
| 4433 | 4439 | msgid "Could not delete profile" |
| 4434 | 4440 | msgstr "" |
| 4435 | 4441 | |
| ... | ... | @@ -4517,8 +4523,8 @@ msgstr "" |
| 4517 | 4523 | |
| 4518 | 4524 | #: app/mailers/contact.rb:23 |
| 4519 | 4525 | #: app/views/admin_panel/_signup_welcome_text.html.erb:6 |
| 4520 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 4521 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:4 | |
| 4526 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 4527 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:4 | |
| 4522 | 4528 | msgid "Subject" |
| 4523 | 4529 | msgstr "" |
| 4524 | 4530 | |
| ... | ... | @@ -4543,7 +4549,7 @@ msgstr "" |
| 4543 | 4549 | #: app/views/features/_manage_enterprise_fields.html.erb:59 |
| 4544 | 4550 | #: app/views/features/_manage_community_fields.html.erb:59 |
| 4545 | 4551 | #: app/views/features/_manage_person_fields.html.erb:59 |
| 4546 | -#: app/views/features/index.html.erb:54 app/views/role/_form.html.erb:16 | |
| 4552 | +#: app/views/features/index.html.erb:54 app/views/role/_form.html.erb:20 | |
| 4547 | 4553 | #: app/views/profile_members/change_role.html.erb:17 |
| 4548 | 4554 | #: app/views/environment_role_manager/change_role.html.erb:11 |
| 4549 | 4555 | #: app/views/plugins/index.html.erb:30 |
| ... | ... | @@ -5023,8 +5029,8 @@ msgstr "" |
| 5023 | 5029 | #: app/views/enterprise_validation/list_processed.html.erb:3 |
| 5024 | 5030 | #: app/views/enterprise_validation/view_processed.html.erb:3 |
| 5025 | 5031 | #: app/views/manage_products/index.html.erb:29 |
| 5026 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:8 | |
| 5027 | -#: plugins/send_email/views/send_email_plugin/fail.rhtml:3 | |
| 5032 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:8 | |
| 5033 | +#: plugins/send_email/views/send_email_plugin/fail.html.erb:3 | |
| 5028 | 5034 | #: plugins/spaminator/views/spaminator_plugin_admin/reports.html.erb:33 |
| 5029 | 5035 | #: plugins/tolerance_time/views/tolerance_time_plugin_myprofile/index.html.erb:22 |
| 5030 | 5036 | msgid "Back" |
| ... | ... | @@ -5091,10 +5097,7 @@ msgstr "" |
| 5091 | 5097 | #: app/views/pending_task_notifier/notification.text.erb:21 |
| 5092 | 5098 | #: app/views/scrap/notifier/notification.text.erb:12 |
| 5093 | 5099 | #: app/views/person_notifier/mailer/content_summary.html.erb:12 |
| 5094 | -#: app/views/task_mailer/task_activated.text.erb:5 | |
| 5095 | -#: app/views/task_mailer/task_created.text.erb:5 | |
| 5096 | -#: app/views/task_mailer/task_finished.text.erb:5 | |
| 5097 | -#: app/views/task_mailer/task_cancelled.text.erb:5 | |
| 5100 | +#: app/views/task_mailer/generic_message.text.erb:5 | |
| 5098 | 5101 | #: app/views/comment/notifier/mail_to_followers.html.erb:18 |
| 5099 | 5102 | #: app/views/comment/notifier/notification.text.erb:15 |
| 5100 | 5103 | #: app/views/user_mailer/activation_code.text.erb:5 |
| ... | ... | @@ -5107,11 +5110,8 @@ msgstr "" |
| 5107 | 5110 | #: app/views/pending_task_notifier/notification.text.erb:24 |
| 5108 | 5111 | #: app/views/scrap/notifier/notification.text.erb:15 |
| 5109 | 5112 | #: app/views/person_notifier/mailer/content_summary.html.erb:15 |
| 5110 | -#: app/views/task_mailer/task_activated.text.erb:8 | |
| 5111 | -#: app/views/task_mailer/task_created.text.erb:8 | |
| 5112 | -#: app/views/task_mailer/task_finished.text.erb:8 | |
| 5113 | +#: app/views/task_mailer/generic_message.text.erb:8 | |
| 5113 | 5114 | #: app/views/task_mailer/target_notification.text.erb:9 |
| 5114 | -#: app/views/task_mailer/task_cancelled.text.erb:8 | |
| 5115 | 5115 | #: app/views/comment/notifier/mail_to_followers.html.erb:21 |
| 5116 | 5116 | #: app/views/comment/notifier/notification.text.erb:18 |
| 5117 | 5117 | #: app/views/user_mailer/activation_code.text.erb:8 |
| ... | ... | @@ -5799,7 +5799,7 @@ msgstr "" |
| 5799 | 5799 | msgid "Address (street and number)" |
| 5800 | 5800 | msgstr "" |
| 5801 | 5801 | |
| 5802 | -#: app/views/profile_editor/_person_form.html.erb:54 | |
| 5802 | +#: app/views/profile_editor/_person_form.html.erb:58 | |
| 5803 | 5803 | msgid "Custom formation" |
| 5804 | 5804 | msgstr "" |
| 5805 | 5805 | |
| ... | ... | @@ -6366,10 +6366,6 @@ msgstr "" |
| 6366 | 6366 | msgid "View more" |
| 6367 | 6367 | msgstr "" |
| 6368 | 6368 | |
| 6369 | -#: app/views/home/index.html.erb:65 | |
| 6370 | -msgid "More options" | |
| 6371 | -msgstr "" | |
| 6372 | - | |
| 6373 | 6369 | #: app/views/features/_manage_enterprise_fields.html.erb:5 |
| 6374 | 6370 | #: app/views/features/_manage_community_fields.html.erb:5 |
| 6375 | 6371 | #: app/views/features/_manage_person_fields.html.erb:5 |
| ... | ... | @@ -6509,11 +6505,11 @@ msgstr "" |
| 6509 | 6505 | msgid "Create a new role" |
| 6510 | 6506 | msgstr "" |
| 6511 | 6507 | |
| 6512 | -#: app/views/role/_form.html.erb:9 | |
| 6513 | -msgid "Permissions:" | |
| 6508 | +#: app/views/role/_form.html.erb:11 | |
| 6509 | +msgid "%s Permissions:" | |
| 6514 | 6510 | msgstr "" |
| 6515 | 6511 | |
| 6516 | -#: app/views/role/_form.html.erb:16 | |
| 6512 | +#: app/views/role/_form.html.erb:20 | |
| 6517 | 6513 | msgid "Create role" |
| 6518 | 6514 | msgstr "" |
| 6519 | 6515 | |
| ... | ... | @@ -7414,10 +7410,7 @@ msgstr "" |
| 7414 | 7410 | msgid "Unblock" |
| 7415 | 7411 | msgstr "" |
| 7416 | 7412 | |
| 7417 | -#: app/views/task_mailer/task_activated.text.erb:1 | |
| 7418 | -#: app/views/task_mailer/task_created.text.erb:1 | |
| 7419 | -#: app/views/task_mailer/task_finished.text.erb:1 | |
| 7420 | -#: app/views/task_mailer/task_cancelled.text.erb:1 | |
| 7413 | +#: app/views/task_mailer/generic_message.text.erb:1 | |
| 7421 | 7414 | msgid "Dear %s," |
| 7422 | 7415 | msgstr "" |
| 7423 | 7416 | |
| ... | ... | @@ -9452,7 +9445,7 @@ msgid "Configurations could not be saved" |
| 9452 | 9445 | msgstr "" |
| 9453 | 9446 | |
| 9454 | 9447 | #: plugins/send_email/controllers/send_email_plugin_base_controller.rb:16 |
| 9455 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:1 | |
| 9448 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:1 | |
| 9456 | 9449 | msgid "Message sent" |
| 9457 | 9450 | msgstr "" |
| 9458 | 9451 | |
| ... | ... | @@ -9673,11 +9666,11 @@ msgid "Sub-organizations could not be updated" |
| 9673 | 9666 | msgstr "" |
| 9674 | 9667 | |
| 9675 | 9668 | #: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:26 |
| 9676 | -msgid "\"Custom form #{@form.name} was successfully created.\"" | |
| 9669 | +msgid "Custom form %s was successfully created." | |
| 9677 | 9670 | msgstr "" |
| 9678 | 9671 | |
| 9679 | 9672 | #: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:46 |
| 9680 | -msgid "\"Custom form #{@form.name} was successfully updated.\"" | |
| 9673 | +msgid "Custom form %s was successfully updated." | |
| 9681 | 9674 | msgstr "" |
| 9682 | 9675 | |
| 9683 | 9676 | #: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:49 |
| ... | ... | @@ -9700,19 +9693,15 @@ msgstr "" |
| 9700 | 9693 | msgid "Submission could not be saved" |
| 9701 | 9694 | msgstr "" |
| 9702 | 9695 | |
| 9703 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 9696 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 9704 | 9697 | msgid "To" |
| 9705 | 9698 | msgstr "" |
| 9706 | 9699 | |
| 9707 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:7 | |
| 9708 | -msgid "New mail" | |
| 9709 | -msgstr "" | |
| 9710 | - | |
| 9711 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:19 | |
| 9700 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:24 | |
| 9712 | 9701 | msgid "'%s' isn't a valid e-mail address" |
| 9713 | 9702 | msgstr "" |
| 9714 | 9703 | |
| 9715 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:26 | |
| 9704 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:31 | |
| 9716 | 9705 | msgid "'%s' address is not allowed (see SendEmailPlugin config)" |
| 9717 | 9706 | msgstr "" |
| 9718 | 9707 | |
| ... | ... | @@ -9909,6 +9898,31 @@ msgstr "" |
| 9909 | 9898 | msgid "A plugin to enable the video suport, with auto conversion for the web." |
| 9910 | 9899 | msgstr "" |
| 9911 | 9900 | |
| 9901 | +#: plugins/lattes_curriculum/lib/html_parser.rb:19 | |
| 9902 | +msgid "Lattes not found. Please, make sure the informed URL is correct." | |
| 9903 | +msgstr "" | |
| 9904 | + | |
| 9905 | +#: plugins/lattes_curriculum/lib/html_parser.rb:21 | |
| 9906 | +msgid "Lattes Platform is unreachable. Please, try it later." | |
| 9907 | +msgstr "" | |
| 9908 | + | |
| 9909 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:8 | |
| 9910 | +msgid "A plugin that imports the lattes curriculum into the users profiles" | |
| 9911 | +msgstr "" | |
| 9912 | + | |
| 9913 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:40 | |
| 9914 | +msgid "Lattes" | |
| 9915 | +msgstr "" | |
| 9916 | + | |
| 9917 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:73 | |
| 9918 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:106 | |
| 9919 | +msgid " Invalid lattes url" | |
| 9920 | +msgstr "" | |
| 9921 | + | |
| 9922 | +#: plugins/lattes_curriculum/lib/academic_info.rb:10 | |
| 9923 | +msgid " is invalid." | |
| 9924 | +msgstr "" | |
| 9925 | + | |
| 9912 | 9926 | #: plugins/bsc/lib/bsc_plugin.rb:10 |
| 9913 | 9927 | msgid "Adds the Bsc feature" |
| 9914 | 9928 | msgstr "" |
| ... | ... | @@ -10359,7 +10373,7 @@ msgstr "" |
| 10359 | 10373 | msgid "A plugin that add remote user support." |
| 10360 | 10374 | msgstr "" |
| 10361 | 10375 | |
| 10362 | -#: plugins/remote_user/lib/remote_user_plugin.rb:45 | |
| 10376 | +#: plugins/remote_user/lib/remote_user_plugin.rb:55 | |
| 10363 | 10377 | #, fuzzy |
| 10364 | 10378 | msgid "Could not create the remote_user." |
| 10365 | 10379 | msgstr "Unu komento" |
| ... | ... | @@ -10597,14 +10611,6 @@ msgstr "" |
| 10597 | 10611 | msgid "Manage Forms" |
| 10598 | 10612 | msgstr "" |
| 10599 | 10613 | |
| 10600 | -#: plugins/send_email/views/send_email_plugin/fail.rhtml:1 | |
| 10601 | -msgid "The message could not be sent" | |
| 10602 | -msgstr "" | |
| 10603 | - | |
| 10604 | -#: plugins/send_email/views/send_email_plugin/sender/message.rhtml:1 | |
| 10605 | -msgid "Contact from %s" | |
| 10606 | -msgstr "" | |
| 10607 | - | |
| 10608 | 10614 | #: plugins/google_analytics/views/profile-editor-extras.rhtml:4 |
| 10609 | 10615 | msgid "Google Analytics Profile ID" |
| 10610 | 10616 | msgstr "" |
| ... | ... | @@ -10617,6 +10623,14 @@ msgstr "" |
| 10617 | 10623 | msgid "Applied filters" |
| 10618 | 10624 | msgstr "" |
| 10619 | 10625 | |
| 10626 | +#: plugins/send_email/views/send_email_plugin/sender/message.html.erb:1 | |
| 10627 | +msgid "Contact from %s" | |
| 10628 | +msgstr "" | |
| 10629 | + | |
| 10630 | +#: plugins/send_email/views/send_email_plugin/fail.html.erb:1 | |
| 10631 | +msgid "The message could not be sent" | |
| 10632 | +msgstr "" | |
| 10633 | + | |
| 10620 | 10634 | #: plugins/send_email/views/send_email_plugin_admin/index.html.erb:1 |
| 10621 | 10635 | msgid "SendEmailPlugin's config" |
| 10622 | 10636 | msgstr "" |
| ... | ... | @@ -11921,7 +11935,7 @@ msgstr "" |
| 11921 | 11935 | |
| 11922 | 11936 | #: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:20 |
| 11923 | 11937 | msgid "Pending" |
| 11924 | -msgstr "" | |
| 11938 | +msgstr "Pritraktata" | |
| 11925 | 11939 | |
| 11926 | 11940 | #: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:21 |
| 11927 | 11941 | msgid "Are you sure you want to remove this form?" | ... | ... |
po/es/noosfero.po
| ... | ... | @@ -5,19 +5,18 @@ |
| 5 | 5 | # |
| 6 | 6 | msgid "" |
| 7 | 7 | msgstr "" |
| 8 | -"Project-Id-Version: 1.0~rc3\n" | |
| 9 | -"POT-Creation-Date: 2014-10-30 09:24-0300\n" | |
| 10 | -"PO-Revision-Date: 2013-01-03 18:39-0300\n" | |
| 11 | -"Last-Translator: Luis David Aguilar Carlos <ludwig9003@gmail.com>,Freddy " | |
| 12 | -"Martín Hernández Facio <fmhf14@gmail.com>, Pedro Alonzo Ramírez Tovar <pedro." | |
| 13 | -"alonzo709@gmail.com>\n" | |
| 14 | -"Language-Team: Spanish <LL@li.org>\n" | |
| 8 | +"Project-Id-Version: 1.0~rc4\n" | |
| 9 | +"POT-Creation-Date: 2014-12-18 17:22-0300\n" | |
| 10 | +"PO-Revision-Date: 2014-11-03 15:52+0200\n" | |
| 11 | +"Last-Translator: Michal Čihař <michal@cihar.com>\n" | |
| 12 | +"Language-Team: Spanish <https://hosted.weblate.org/projects/noosfero/" | |
| 13 | +"noosfero/es/>\n" | |
| 15 | 14 | "Language: es\n" |
| 16 | 15 | "MIME-Version: 1.0\n" |
| 17 | 16 | "Content-Type: text/plain; charset=UTF-8\n" |
| 18 | 17 | "Content-Transfer-Encoding: 8bit\n" |
| 19 | -"Plural-Forms: nplurals=2; plural=(n != 1);\n" | |
| 20 | -"X-Generator: Pootle 1.1.0\n" | |
| 18 | +"Plural-Forms: nplurals=2; plural=n != 1;\n" | |
| 19 | +"X-Generator: Weblate 2.0-dev\n" | |
| 21 | 20 | |
| 22 | 21 | #: app/models/approve_comment.rb:17 |
| 23 | 22 | #, fuzzy |
| ... | ... | @@ -572,7 +571,7 @@ msgid "have unsupported languages." |
| 572 | 571 | msgstr "" |
| 573 | 572 | |
| 574 | 573 | #: app/models/communities_block.rb:6 app/helpers/application_helper.rb:549 |
| 575 | -#: app/helpers/application_helper.rb:1082 app/helpers/search_helper.rb:12 | |
| 574 | +#: app/helpers/application_helper.rb:1084 app/helpers/search_helper.rb:12 | |
| 576 | 575 | #: app/helpers/assets_helper.rb:11 |
| 577 | 576 | #: app/controllers/public/search_controller.rb:53 |
| 578 | 577 | msgid "Communities" |
| ... | ... | @@ -756,24 +755,24 @@ msgstr "Teléfono comercial" |
| 756 | 755 | msgid "Nationality" |
| 757 | 756 | msgstr "Nacionalidad" |
| 758 | 757 | |
| 759 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:32 | |
| 758 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:36 | |
| 760 | 759 | msgid "Schooling" |
| 761 | 760 | msgstr "Enseñanza" |
| 762 | 761 | |
| 763 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:58 | |
| 762 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:62 | |
| 764 | 763 | msgid "Area of study" |
| 765 | 764 | msgstr "Área de estudio" |
| 766 | 765 | |
| 767 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:65 | |
| 766 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:69 | |
| 768 | 767 | msgid "Professional activity" |
| 769 | 768 | msgstr "Actividad profesional" |
| 770 | 769 | |
| 771 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:66 | |
| 770 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:70 | |
| 772 | 771 | msgid "Organization" |
| 773 | 772 | msgstr "Organización" |
| 774 | 773 | |
| 775 | 774 | #: app/models/person.rb:196 app/models/enterprise.rb:25 |
| 776 | -#: app/views/profile_editor/_person_form.html.erb:67 | |
| 775 | +#: app/views/profile_editor/_person_form.html.erb:71 | |
| 777 | 776 | msgid "Organization website" |
| 778 | 777 | msgstr "Sitio web de la organización" |
| 779 | 778 | |
| ... | ... | @@ -782,7 +781,7 @@ msgid "Schooling status" |
| 782 | 781 | msgstr "Nivel educativo" |
| 783 | 782 | |
| 784 | 783 | #: app/models/person.rb:202 app/helpers/profile_editor_helper.rb:26 |
| 785 | -#: app/views/profile_editor/_person_form.html.erb:51 | |
| 784 | +#: app/views/profile_editor/_person_form.html.erb:55 | |
| 786 | 785 | msgid "Education" |
| 787 | 786 | msgstr "Educación" |
| 788 | 787 | |
| ... | ... | @@ -790,7 +789,7 @@ msgstr "Educación" |
| 790 | 789 | msgid "Custom education" |
| 791 | 790 | msgstr "Educación personalizada" |
| 792 | 791 | |
| 793 | -#: app/models/person.rb:202 app/views/profile_editor/_person_form.html.erb:61 | |
| 792 | +#: app/models/person.rb:202 app/views/profile_editor/_person_form.html.erb:65 | |
| 794 | 793 | msgid "Custom area of study" |
| 795 | 794 | msgstr "Área de estudio personalizada" |
| 796 | 795 | |
| ... | ... | @@ -1033,7 +1032,7 @@ msgstr "correo electrónico" |
| 1033 | 1032 | msgid "{fn} must be checked in order to signup." |
| 1034 | 1033 | msgstr "%{fn} debe estar seleccionado para registrarse." |
| 1035 | 1034 | |
| 1036 | -#: app/models/user.rb:251 | |
| 1035 | +#: app/models/user.rb:255 | |
| 1037 | 1036 | #, fuzzy |
| 1038 | 1037 | msgid "does not match." |
| 1039 | 1038 | msgstr "Las contraseñas no coinciden" |
| ... | ... | @@ -1556,7 +1555,7 @@ msgstr "Paquete" |
| 1556 | 1555 | msgid "To do list" |
| 1557 | 1556 | msgstr "Lista de quehaceres" |
| 1558 | 1557 | |
| 1559 | -#: app/models/link_list_block.rb:35 app/helpers/application_helper.rb:914 | |
| 1558 | +#: app/models/link_list_block.rb:35 app/helpers/application_helper.rb:915 | |
| 1560 | 1559 | msgid "Chat" |
| 1561 | 1560 | msgstr "Chat" |
| 1562 | 1561 | |
| ... | ... | @@ -1618,7 +1617,7 @@ msgstr "Título" |
| 1618 | 1617 | msgid "description" |
| 1619 | 1618 | msgstr "descripción" |
| 1620 | 1619 | |
| 1621 | -#: app/models/create_community.rb:38 app/helpers/application_helper.rb:1079 | |
| 1620 | +#: app/models/create_community.rb:38 app/helpers/application_helper.rb:1081 | |
| 1622 | 1621 | msgid "New community" |
| 1623 | 1622 | msgstr "Nueva comunidad" |
| 1624 | 1623 | |
| ... | ... | @@ -2377,8 +2376,8 @@ msgstr "Muestra un mensaje para empresas deshabilitadas" |
| 2377 | 2376 | |
| 2378 | 2377 | #: app/models/disabled_enterprise_message_block.rb:12 |
| 2379 | 2378 | #: app/mailers/contact.rb:23 |
| 2380 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 2381 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:5 | |
| 2379 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 2380 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:5 | |
| 2382 | 2381 | msgid "Message" |
| 2383 | 2382 | msgstr "Mensaje" |
| 2384 | 2383 | |
| ... | ... | @@ -2612,103 +2611,103 @@ msgstr "Seleccione aquí, escriba y presione enter para buscar" |
| 2612 | 2611 | msgid "Public" |
| 2613 | 2612 | msgstr "Público" |
| 2614 | 2613 | |
| 2615 | -#: app/helpers/application_helper.rb:913 | |
| 2614 | +#: app/helpers/application_helper.rb:914 | |
| 2616 | 2615 | msgid "Online Manual" |
| 2617 | 2616 | msgstr "Manual en línea" |
| 2618 | 2617 | |
| 2619 | -#: app/helpers/application_helper.rb:961 app/views/home/index.html.erb:12 | |
| 2618 | +#: app/helpers/application_helper.rb:963 app/views/home/index.html.erb:12 | |
| 2620 | 2619 | #: plugins/display_content/lib/display_content_block.rb:141 |
| 2621 | 2620 | #: plugins/recent_content/views/blocks/recent_content_block.html.erb:26 |
| 2622 | 2621 | #: plugins/recent_content/views/blocks/recent_content_block.html.erb:35 |
| 2623 | 2622 | msgid "Read more" |
| 2624 | 2623 | msgstr "Leer más" |
| 2625 | 2624 | |
| 2626 | -#: app/helpers/application_helper.rb:1042 | |
| 2625 | +#: app/helpers/application_helper.rb:1044 | |
| 2627 | 2626 | msgid "contents|More recent" |
| 2628 | 2627 | msgstr "Más recientes" |
| 2629 | 2628 | |
| 2630 | -#: app/helpers/application_helper.rb:1043 | |
| 2629 | +#: app/helpers/application_helper.rb:1045 | |
| 2631 | 2630 | msgid "contents|More viewed" |
| 2632 | 2631 | msgstr "Más vistos" |
| 2633 | 2632 | |
| 2634 | -#: app/helpers/application_helper.rb:1044 | |
| 2633 | +#: app/helpers/application_helper.rb:1046 | |
| 2635 | 2634 | msgid "contents|Most commented" |
| 2636 | 2635 | msgstr "Más comentados" |
| 2637 | 2636 | |
| 2638 | -#: app/helpers/application_helper.rb:1047 app/views/cms/view.html.erb:20 | |
| 2637 | +#: app/helpers/application_helper.rb:1049 app/views/cms/view.html.erb:20 | |
| 2639 | 2638 | msgid "New content" |
| 2640 | 2639 | msgstr "Nuevo contenido" |
| 2641 | 2640 | |
| 2642 | -#: app/helpers/application_helper.rb:1050 app/helpers/search_helper.rb:9 | |
| 2641 | +#: app/helpers/application_helper.rb:1052 app/helpers/search_helper.rb:9 | |
| 2643 | 2642 | #: app/controllers/public/search_controller.rb:54 |
| 2644 | 2643 | msgid "Contents" |
| 2645 | 2644 | msgstr "Contenido" |
| 2646 | 2645 | |
| 2647 | -#: app/helpers/application_helper.rb:1051 | |
| 2646 | +#: app/helpers/application_helper.rb:1053 | |
| 2648 | 2647 | #: app/views/comment/_comment_actions.html.erb:5 |
| 2649 | 2648 | msgid "Contents menu" |
| 2650 | 2649 | msgstr "Menú de contenido" |
| 2651 | 2650 | |
| 2652 | -#: app/helpers/application_helper.rb:1057 | |
| 2651 | +#: app/helpers/application_helper.rb:1059 | |
| 2653 | 2652 | msgid "people|More recent" |
| 2654 | 2653 | msgstr "Más recientes" |
| 2655 | 2654 | |
| 2656 | -#: app/helpers/application_helper.rb:1058 | |
| 2655 | +#: app/helpers/application_helper.rb:1060 | |
| 2657 | 2656 | msgid "people|More active" |
| 2658 | 2657 | msgstr "Más activas" |
| 2659 | 2658 | |
| 2660 | -#: app/helpers/application_helper.rb:1059 | |
| 2659 | +#: app/helpers/application_helper.rb:1061 | |
| 2661 | 2660 | msgid "people|More popular" |
| 2662 | 2661 | msgstr "Más populares" |
| 2663 | 2662 | |
| 2664 | -#: app/helpers/application_helper.rb:1062 | |
| 2663 | +#: app/helpers/application_helper.rb:1064 | |
| 2665 | 2664 | msgid "My friends" |
| 2666 | 2665 | msgstr "Mis amigos" |
| 2667 | 2666 | |
| 2668 | -#: app/helpers/application_helper.rb:1063 plugins/stoa/lib/stoa_plugin.rb:110 | |
| 2667 | +#: app/helpers/application_helper.rb:1065 plugins/stoa/lib/stoa_plugin.rb:110 | |
| 2669 | 2668 | msgid "Invite friends" |
| 2670 | 2669 | msgstr "Invitar amigos" |
| 2671 | 2670 | |
| 2672 | -#: app/helpers/application_helper.rb:1066 app/helpers/search_helper.rb:11 | |
| 2671 | +#: app/helpers/application_helper.rb:1068 app/helpers/search_helper.rb:11 | |
| 2673 | 2672 | #: app/helpers/assets_helper.rb:8 |
| 2674 | 2673 | #: app/controllers/public/search_controller.rb:49 |
| 2675 | 2674 | #: plugins/people_block/lib/people_block.rb:4 |
| 2676 | 2675 | msgid "People" |
| 2677 | 2676 | msgstr "Personas" |
| 2678 | 2677 | |
| 2679 | -#: app/helpers/application_helper.rb:1067 | |
| 2678 | +#: app/helpers/application_helper.rb:1069 | |
| 2680 | 2679 | msgid "People menu" |
| 2681 | 2680 | msgstr "Menú de personas" |
| 2682 | 2681 | |
| 2683 | -#: app/helpers/application_helper.rb:1073 | |
| 2682 | +#: app/helpers/application_helper.rb:1075 | |
| 2684 | 2683 | msgid "communities|More recent" |
| 2685 | 2684 | msgstr "Más recientes" |
| 2686 | 2685 | |
| 2687 | -#: app/helpers/application_helper.rb:1074 | |
| 2686 | +#: app/helpers/application_helper.rb:1076 | |
| 2688 | 2687 | msgid "communities|More active" |
| 2689 | 2688 | msgstr "Más activas" |
| 2690 | 2689 | |
| 2691 | -#: app/helpers/application_helper.rb:1075 | |
| 2690 | +#: app/helpers/application_helper.rb:1077 | |
| 2692 | 2691 | msgid "communities|More popular" |
| 2693 | 2692 | msgstr "Más populares" |
| 2694 | 2693 | |
| 2695 | -#: app/helpers/application_helper.rb:1078 | |
| 2696 | -#: app/helpers/application_helper.rb:1128 | |
| 2694 | +#: app/helpers/application_helper.rb:1080 | |
| 2695 | +#: app/helpers/application_helper.rb:1130 | |
| 2697 | 2696 | msgid "My communities" |
| 2698 | 2697 | msgstr "Mis comunidades" |
| 2699 | 2698 | |
| 2700 | -#: app/helpers/application_helper.rb:1083 | |
| 2699 | +#: app/helpers/application_helper.rb:1085 | |
| 2701 | 2700 | msgid "Communities menu" |
| 2702 | 2701 | msgstr "Menú comunidades" |
| 2703 | 2702 | |
| 2704 | -#: app/helpers/application_helper.rb:1088 | |
| 2703 | +#: app/helpers/application_helper.rb:1090 | |
| 2705 | 2704 | #: app/views/layouts/slideshow.html.erb:18 |
| 2706 | 2705 | #: app/views/blocks/slideshow.html.erb:17 |
| 2707 | 2706 | #: app/views/blocks/featured_products.html.erb:3 |
| 2708 | 2707 | msgid "Previous" |
| 2709 | 2708 | msgstr "Anterior" |
| 2710 | 2709 | |
| 2711 | -#: app/helpers/application_helper.rb:1088 app/helpers/forms_helper.rb:169 | |
| 2710 | +#: app/helpers/application_helper.rb:1090 app/helpers/forms_helper.rb:169 | |
| 2712 | 2711 | #: app/views/layouts/slideshow.html.erb:18 |
| 2713 | 2712 | #: app/views/enterprise_registration/basic_information.html.erb:40 |
| 2714 | 2713 | #: app/views/blocks/slideshow.html.erb:21 |
| ... | ... | @@ -2717,45 +2716,45 @@ msgstr "Anterior" |
| 2717 | 2716 | msgid "Next" |
| 2718 | 2717 | msgstr "Siguiente" |
| 2719 | 2718 | |
| 2720 | -#: app/helpers/application_helper.rb:1108 | |
| 2719 | +#: app/helpers/application_helper.rb:1110 | |
| 2721 | 2720 | msgid "See all" |
| 2722 | 2721 | msgstr "Ver todos" |
| 2723 | 2722 | |
| 2724 | -#: app/helpers/application_helper.rb:1111 | |
| 2723 | +#: app/helpers/application_helper.rb:1113 | |
| 2725 | 2724 | msgid "<span>Manage</span> %s" |
| 2726 | 2725 | msgstr "<span>Administrar</span> %s" |
| 2727 | 2726 | |
| 2728 | -#: app/helpers/application_helper.rb:1111 | |
| 2727 | +#: app/helpers/application_helper.rb:1113 | |
| 2729 | 2728 | #: app/views/shared/user_menu.html.erb:26 |
| 2730 | 2729 | #: app/views/shared/_manage_link.html.erb:2 |
| 2731 | 2730 | msgid "Manage %s" |
| 2732 | 2731 | msgstr "Administrar %s" |
| 2733 | 2732 | |
| 2734 | -#: app/helpers/application_helper.rb:1122 | |
| 2733 | +#: app/helpers/application_helper.rb:1124 | |
| 2735 | 2734 | msgid "My enterprises" |
| 2736 | 2735 | msgstr "Mis empresas" |
| 2737 | 2736 | |
| 2738 | -#: app/helpers/application_helper.rb:1132 | |
| 2737 | +#: app/helpers/application_helper.rb:1134 | |
| 2739 | 2738 | msgid "Administration" |
| 2740 | 2739 | msgstr "Administación" |
| 2741 | 2740 | |
| 2742 | -#: app/helpers/application_helper.rb:1132 | |
| 2741 | +#: app/helpers/application_helper.rb:1134 | |
| 2743 | 2742 | msgid "Configure the environment" |
| 2744 | 2743 | msgstr "Configurar entorno de trabajo" |
| 2745 | 2744 | |
| 2746 | -#: app/helpers/application_helper.rb:1139 | |
| 2745 | +#: app/helpers/application_helper.rb:1141 | |
| 2747 | 2746 | msgid "Manage your pending tasks" |
| 2748 | 2747 | msgstr "Administrar tus tareas pendientes" |
| 2749 | 2748 | |
| 2750 | -#: app/helpers/application_helper.rb:1142 | |
| 2749 | +#: app/helpers/application_helper.rb:1144 | |
| 2751 | 2750 | msgid "<span class='welcome'>Welcome,</span> %s" |
| 2752 | 2751 | msgstr "<span class='welcome'>Bienvenido,</span> %s" |
| 2753 | 2752 | |
| 2754 | -#: app/helpers/application_helper.rb:1142 | |
| 2753 | +#: app/helpers/application_helper.rb:1144 | |
| 2755 | 2754 | msgid "Go to your homepage" |
| 2756 | 2755 | msgstr "Ir a tu página de inicio" |
| 2757 | 2756 | |
| 2758 | -#: app/helpers/application_helper.rb:1147 | |
| 2757 | +#: app/helpers/application_helper.rb:1149 | |
| 2759 | 2758 | #: app/views/shared/user_menu.html.erb:37 |
| 2760 | 2759 | #: app/views/blocks/profile_info.html.erb:24 |
| 2761 | 2760 | #: app/views/blocks/profile_image.html.erb:21 |
| ... | ... | @@ -2764,92 +2763,92 @@ msgstr "Ir a tu página de inicio" |
| 2764 | 2763 | msgid "Control panel" |
| 2765 | 2764 | msgstr "Panel de control" |
| 2766 | 2765 | |
| 2767 | -#: app/helpers/application_helper.rb:1147 | |
| 2766 | +#: app/helpers/application_helper.rb:1149 | |
| 2768 | 2767 | msgid "Configure your personal account and content" |
| 2769 | 2768 | msgstr "Configurar cuenta personal y contenido" |
| 2770 | 2769 | |
| 2771 | -#: app/helpers/application_helper.rb:1149 | |
| 2770 | +#: app/helpers/application_helper.rb:1151 | |
| 2772 | 2771 | #: app/views/shared/user_menu.html.erb:45 |
| 2773 | 2772 | #: app/views/blocks/login_block.html.erb:9 |
| 2774 | 2773 | msgid "Logout" |
| 2775 | 2774 | msgstr "Cerrar sesión" |
| 2776 | 2775 | |
| 2777 | -#: app/helpers/application_helper.rb:1149 | |
| 2776 | +#: app/helpers/application_helper.rb:1151 | |
| 2778 | 2777 | msgid "Leave the system" |
| 2779 | 2778 | msgstr "Abandonar el sistema" |
| 2780 | 2779 | |
| 2781 | -#: app/helpers/application_helper.rb:1155 | |
| 2780 | +#: app/helpers/application_helper.rb:1157 | |
| 2782 | 2781 | msgid " characters left" |
| 2783 | -msgstr "caracteres restantes" | |
| 2782 | +msgstr " caracteres restantes" | |
| 2784 | 2783 | |
| 2785 | -#: app/helpers/application_helper.rb:1156 | |
| 2784 | +#: app/helpers/application_helper.rb:1158 | |
| 2786 | 2785 | msgid "Limit of characters reached" |
| 2787 | 2786 | msgstr "Limite de caracteres alcanzado" |
| 2788 | 2787 | |
| 2789 | -#: app/helpers/application_helper.rb:1182 | |
| 2790 | -#: app/helpers/application_helper.rb:1188 | |
| 2788 | +#: app/helpers/application_helper.rb:1184 | |
| 2789 | +#: app/helpers/application_helper.rb:1190 | |
| 2791 | 2790 | msgid "less than a minute" |
| 2792 | 2791 | msgstr "menos de un minuto" |
| 2793 | 2792 | |
| 2794 | -#: app/helpers/application_helper.rb:1182 | |
| 2795 | -#: app/helpers/application_helper.rb:1189 | |
| 2793 | +#: app/helpers/application_helper.rb:1184 | |
| 2794 | +#: app/helpers/application_helper.rb:1191 | |
| 2796 | 2795 | msgid "1 minute" |
| 2797 | 2796 | msgstr "1 minuto" |
| 2798 | 2797 | |
| 2799 | -#: app/helpers/application_helper.rb:1184 | |
| 2798 | +#: app/helpers/application_helper.rb:1186 | |
| 2800 | 2799 | msgid "less than 5 seconds" |
| 2801 | 2800 | msgstr "menos de 5 segundos" |
| 2802 | 2801 | |
| 2803 | -#: app/helpers/application_helper.rb:1185 | |
| 2802 | +#: app/helpers/application_helper.rb:1187 | |
| 2804 | 2803 | msgid "less than 10 seconds" |
| 2805 | 2804 | msgstr "menos de 10 segundos" |
| 2806 | 2805 | |
| 2807 | -#: app/helpers/application_helper.rb:1186 | |
| 2806 | +#: app/helpers/application_helper.rb:1188 | |
| 2808 | 2807 | msgid "less than 20 seconds" |
| 2809 | 2808 | msgstr "menos de 20 segundos" |
| 2810 | 2809 | |
| 2811 | -#: app/helpers/application_helper.rb:1187 | |
| 2810 | +#: app/helpers/application_helper.rb:1189 | |
| 2812 | 2811 | msgid "half a minute" |
| 2813 | 2812 | msgstr "medio minuto" |
| 2814 | 2813 | |
| 2815 | -#: app/helpers/application_helper.rb:1192 | |
| 2814 | +#: app/helpers/application_helper.rb:1194 | |
| 2816 | 2815 | msgid "%{distance} minutes ago" |
| 2817 | 2816 | msgstr "hace %{distance} minutos" |
| 2818 | 2817 | |
| 2819 | -#: app/helpers/application_helper.rb:1193 | |
| 2818 | +#: app/helpers/application_helper.rb:1195 | |
| 2820 | 2819 | msgid "about 1 hour ago" |
| 2821 | 2820 | msgstr "cerca de 1 hora" |
| 2822 | 2821 | |
| 2823 | -#: app/helpers/application_helper.rb:1194 | |
| 2822 | +#: app/helpers/application_helper.rb:1196 | |
| 2824 | 2823 | msgid "about %{distance} hours ago" |
| 2825 | 2824 | msgstr "hace %{distance} horas" |
| 2826 | 2825 | |
| 2827 | -#: app/helpers/application_helper.rb:1195 | |
| 2826 | +#: app/helpers/application_helper.rb:1197 | |
| 2828 | 2827 | msgid "1 day ago" |
| 2829 | 2828 | msgstr "hace 1 día" |
| 2830 | 2829 | |
| 2831 | -#: app/helpers/application_helper.rb:1196 | |
| 2830 | +#: app/helpers/application_helper.rb:1198 | |
| 2832 | 2831 | msgid "%{distance} days ago" |
| 2833 | 2832 | msgstr "hace %{distance} días" |
| 2834 | 2833 | |
| 2835 | -#: app/helpers/application_helper.rb:1214 | |
| 2834 | +#: app/helpers/application_helper.rb:1216 | |
| 2836 | 2835 | msgid "Source: %s" |
| 2837 | 2836 | msgstr "Origen: %s" |
| 2838 | 2837 | |
| 2839 | -#: app/helpers/application_helper.rb:1247 | |
| 2838 | +#: app/helpers/application_helper.rb:1249 | |
| 2840 | 2839 | #: plugins/community_block/views/community_block.html.erb:17 |
| 2841 | 2840 | msgid "Report abuse" |
| 2842 | 2841 | msgstr "Reportar abuso" |
| 2843 | 2842 | |
| 2844 | -#: app/helpers/application_helper.rb:1249 | |
| 2843 | +#: app/helpers/application_helper.rb:1251 | |
| 2845 | 2844 | msgid "You already reported this profile." |
| 2846 | 2845 | msgstr "Tú ya has reportado este perfil" |
| 2847 | 2846 | |
| 2848 | -#: app/helpers/application_helper.rb:1250 | |
| 2847 | +#: app/helpers/application_helper.rb:1252 | |
| 2849 | 2848 | msgid "Report this profile for abusive behaviour" |
| 2850 | 2849 | msgstr "Reportar este perfil por comportamiento abusivo" |
| 2851 | 2850 | |
| 2852 | -#: app/helpers/application_helper.rb:1289 | |
| 2851 | +#: app/helpers/application_helper.rb:1292 | |
| 2853 | 2852 | #, fuzzy |
| 2854 | 2853 | msgid "" |
| 2855 | 2854 | "Are you sure that you want to remove the folder \"%s\"? Note that all the " |
| ... | ... | @@ -2858,32 +2857,32 @@ msgstr "" |
| 2858 | 2857 | "¿Estás seguro que quieres eliminar esta carpeta? ¡Ten en cuenta que todos " |
| 2859 | 2858 | "los elementos dentro serán también borrados!" |
| 2860 | 2859 | |
| 2861 | -#: app/helpers/application_helper.rb:1291 | |
| 2860 | +#: app/helpers/application_helper.rb:1294 | |
| 2862 | 2861 | #, fuzzy |
| 2863 | 2862 | msgid "Are you sure that you want to remove the item \"%s\"?" |
| 2864 | 2863 | msgstr "¿Estás seguro que quieres eliminar estos elementos?" |
| 2865 | 2864 | |
| 2866 | -#: app/helpers/application_helper.rb:1319 | |
| 2865 | +#: app/helpers/application_helper.rb:1323 | |
| 2867 | 2866 | #, fuzzy |
| 2868 | 2867 | msgid "Profile organization" |
| 2869 | 2868 | msgstr "Una organización" |
| 2870 | 2869 | |
| 2871 | -#: app/helpers/application_helper.rb:1320 | |
| 2870 | +#: app/helpers/application_helper.rb:1324 | |
| 2872 | 2871 | msgid "" |
| 2873 | 2872 | "Your profile will be created according to the selected template. Click on " |
| 2874 | 2873 | "the options to view them." |
| 2875 | 2874 | msgstr "" |
| 2876 | 2875 | |
| 2877 | -#: app/helpers/application_helper.rb:1355 | |
| 2876 | +#: app/helpers/application_helper.rb:1359 | |
| 2878 | 2877 | #, fuzzy |
| 2879 | 2878 | msgid "Errors while saving" |
| 2880 | 2879 | msgstr "Mensaje de error" |
| 2881 | 2880 | |
| 2882 | -#: app/helpers/application_helper.rb:1365 | |
| 2881 | +#: app/helpers/application_helper.rb:1369 | |
| 2883 | 2882 | msgid "The content here is available to %s's friends only." |
| 2884 | 2883 | msgstr "Este contenido está disponible solamente para amigos de %s." |
| 2885 | 2884 | |
| 2886 | -#: app/helpers/application_helper.rb:1368 | |
| 2885 | +#: app/helpers/application_helper.rb:1372 | |
| 2887 | 2886 | #, fuzzy |
| 2888 | 2887 | msgid "The contents in this profile is available to members only." |
| 2889 | 2888 | msgstr "" |
| ... | ... | @@ -3690,7 +3689,7 @@ msgid "Wk" |
| 3690 | 3689 | msgstr "Trabajo" |
| 3691 | 3690 | |
| 3692 | 3691 | #: app/helpers/forms_helper.rb:248 |
| 3693 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 3692 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 3694 | 3693 | #: plugins/shopping_cart/views/shopping_cart_plugin_myprofile/reports.html.erb:11 |
| 3695 | 3694 | msgid "From" |
| 3696 | 3695 | msgstr "De" |
| ... | ... | @@ -4348,7 +4347,7 @@ msgid "Failed to edit role" |
| 4348 | 4347 | msgstr "No se pudo editar el rol" |
| 4349 | 4348 | |
| 4350 | 4349 | #: app/controllers/admin/users_controller.rb:53 |
| 4351 | -#: app/controllers/my_profile/profile_editor_controller.rb:74 | |
| 4350 | +#: app/controllers/my_profile/profile_editor_controller.rb:76 | |
| 4352 | 4351 | msgid "The profile was deleted." |
| 4353 | 4352 | msgstr "El perfil fue eliminado." |
| 4354 | 4353 | |
| ... | ... | @@ -4358,12 +4357,12 @@ msgid "Could not remove profile" |
| 4358 | 4357 | msgstr "El perfil no puede ser eliminado" |
| 4359 | 4358 | |
| 4360 | 4359 | #: app/controllers/admin/users_controller.rb:95 |
| 4361 | -#: app/controllers/public/profile_controller.rb:363 | |
| 4360 | +#: app/controllers/public/profile_controller.rb:366 | |
| 4362 | 4361 | msgid "The e-mails are being sent" |
| 4363 | 4362 | msgstr "El correo electrónico está siendo enviado" |
| 4364 | 4363 | |
| 4365 | 4364 | #: app/controllers/admin/users_controller.rb:98 |
| 4366 | -#: app/controllers/public/profile_controller.rb:366 | |
| 4365 | +#: app/controllers/public/profile_controller.rb:369 | |
| 4367 | 4366 | msgid "Could not create the e-mail" |
| 4368 | 4367 | msgstr "No se ha podido crear el correo electrónico" |
| 4369 | 4368 | |
| ... | ... | @@ -4528,80 +4527,80 @@ msgid "You couldn't mark this comment as spam." |
| 4528 | 4527 | msgstr "" |
| 4529 | 4528 | "¿Estás seguro de que quieres eliminar este comentario y todas sus respuestas?" |
| 4530 | 4529 | |
| 4531 | -#: app/controllers/public/profile_controller.rb:46 | |
| 4532 | -#: app/controllers/public/profile_controller.rb:47 | |
| 4530 | +#: app/controllers/public/profile_controller.rb:49 | |
| 4531 | +#: app/controllers/public/profile_controller.rb:50 | |
| 4533 | 4532 | #: app/views/profile/content_tagged.html.erb:3 |
| 4534 | 4533 | msgid "%s's contents tagged with \"%s\"" |
| 4535 | 4534 | msgstr "%ss contenidos etiquetados con \"%s\"" |
| 4536 | 4535 | |
| 4537 | -#: app/controllers/public/profile_controller.rb:91 | |
| 4536 | +#: app/controllers/public/profile_controller.rb:94 | |
| 4538 | 4537 | msgid "%s administrator still needs to accept you as member." |
| 4539 | 4538 | msgstr "El administrador de %s aun debe aceptarte como miembro." |
| 4540 | 4539 | |
| 4541 | -#: app/controllers/public/profile_controller.rb:93 | |
| 4540 | +#: app/controllers/public/profile_controller.rb:96 | |
| 4542 | 4541 | msgid "You just became a member of %s." |
| 4543 | 4542 | msgstr "Acabas de convertirte en miembro de %s." |
| 4544 | 4543 | |
| 4545 | -#: app/controllers/public/profile_controller.rb:96 | |
| 4544 | +#: app/controllers/public/profile_controller.rb:99 | |
| 4546 | 4545 | msgid "You are already a member of %s." |
| 4547 | 4546 | msgstr "Ya eres miembro de %s." |
| 4548 | 4547 | |
| 4549 | -#: app/controllers/public/profile_controller.rb:118 | |
| 4548 | +#: app/controllers/public/profile_controller.rb:121 | |
| 4550 | 4549 | msgid "You are not a member of %s." |
| 4551 | 4550 | msgstr "Tú no eres miembro de %s." |
| 4552 | 4551 | |
| 4553 | -#: app/controllers/public/profile_controller.rb:138 | |
| 4552 | +#: app/controllers/public/profile_controller.rb:141 | |
| 4554 | 4553 | msgid "%s still needs to accept being your friend." |
| 4555 | 4554 | msgstr "%s aun necesita aceptarte como amigo." |
| 4556 | 4555 | |
| 4557 | -#: app/controllers/public/profile_controller.rb:140 | |
| 4556 | +#: app/controllers/public/profile_controller.rb:143 | |
| 4558 | 4557 | msgid "You are already a friend of %s." |
| 4559 | 4558 | msgstr "Ya eres amigo de %s." |
| 4560 | 4559 | |
| 4561 | -#: app/controllers/public/profile_controller.rb:159 | |
| 4560 | +#: app/controllers/public/profile_controller.rb:162 | |
| 4562 | 4561 | msgid "You have unblocked %s successfully. " |
| 4563 | 4562 | msgstr "Has desbloqueado %s correctamente." |
| 4564 | 4563 | |
| 4565 | -#: app/controllers/public/profile_controller.rb:162 | |
| 4564 | +#: app/controllers/public/profile_controller.rb:165 | |
| 4566 | 4565 | msgid "You are not allowed to unblock enterprises in this environment." |
| 4567 | 4566 | msgstr "No tienes permisos para desbloquear empresas en este entorno." |
| 4568 | 4567 | |
| 4569 | -#: app/controllers/public/profile_controller.rb:174 | |
| 4568 | +#: app/controllers/public/profile_controller.rb:177 | |
| 4570 | 4569 | msgid "Message successfully sent." |
| 4571 | 4570 | msgstr "Mensaje enviado correctamente." |
| 4572 | 4571 | |
| 4573 | -#: app/controllers/public/profile_controller.rb:174 | |
| 4572 | +#: app/controllers/public/profile_controller.rb:177 | |
| 4574 | 4573 | msgid "You can't leave an empty message." |
| 4575 | 4574 | msgstr "No puedes dejar un mensaje en blanco." |
| 4576 | 4575 | |
| 4577 | -#: app/controllers/public/profile_controller.rb:185 | |
| 4576 | +#: app/controllers/public/profile_controller.rb:188 | |
| 4578 | 4577 | msgid "Comment successfully added." |
| 4579 | 4578 | msgstr "Comentario añadido correctamente." |
| 4580 | 4579 | |
| 4581 | -#: app/controllers/public/profile_controller.rb:185 | |
| 4580 | +#: app/controllers/public/profile_controller.rb:188 | |
| 4582 | 4581 | msgid "You can't leave an empty comment." |
| 4583 | 4582 | msgstr "No puedes dejar un comentario vacio." |
| 4584 | 4583 | |
| 4585 | -#: app/controllers/public/profile_controller.rb:276 | |
| 4584 | +#: app/controllers/public/profile_controller.rb:279 | |
| 4586 | 4585 | msgid "Notification successfully removed." |
| 4587 | 4586 | msgstr "Notificación eliminada correctamente." |
| 4588 | 4587 | |
| 4589 | -#: app/controllers/public/profile_controller.rb:278 | |
| 4588 | +#: app/controllers/public/profile_controller.rb:281 | |
| 4590 | 4589 | msgid "You could not remove this notification." |
| 4591 | 4590 | msgstr "No se ha podido eliminar esta notificación." |
| 4592 | 4591 | |
| 4593 | -#: app/controllers/public/profile_controller.rb:311 | |
| 4592 | +#: app/controllers/public/profile_controller.rb:314 | |
| 4594 | 4593 | msgid "You could not answer the captcha." |
| 4595 | 4594 | msgstr "No has podido responder el captcha." |
| 4596 | 4595 | |
| 4597 | -#: app/controllers/public/profile_controller.rb:331 | |
| 4596 | +#: app/controllers/public/profile_controller.rb:334 | |
| 4598 | 4597 | msgid "" |
| 4599 | 4598 | "Your abuse report was registered. The administrators are reviewing your " |
| 4600 | 4599 | "report." |
| 4601 | 4600 | msgstr "" |
| 4602 | 4601 | "Tu reporte de abuso fue registrado. Los administradores lo están revisando." |
| 4603 | 4602 | |
| 4604 | -#: app/controllers/public/profile_controller.rb:339 | |
| 4603 | +#: app/controllers/public/profile_controller.rb:342 | |
| 4605 | 4604 | msgid "" |
| 4606 | 4605 | "Your report couldn't be saved due to some problem. Please contact the " |
| 4607 | 4606 | "administrator." |
| ... | ... | @@ -4609,13 +4608,13 @@ msgstr "" |
| 4609 | 4608 | "Tu reporte no pudo ser guardado debido a algún problema. Por favor, contacta " |
| 4610 | 4609 | "al administrador." |
| 4611 | 4610 | |
| 4612 | -#: app/controllers/public/profile_controller.rb:402 | |
| 4611 | +#: app/controllers/public/profile_controller.rb:406 | |
| 4613 | 4612 | msgid "" |
| 4614 | 4613 | "This profile is inaccessible. You don't have the permission to view the " |
| 4615 | 4614 | "content here." |
| 4616 | 4615 | msgstr "Este perfil es inaccesible. No tienes permiso para ver el contenido." |
| 4617 | 4616 | |
| 4618 | -#: app/controllers/public/profile_controller.rb:402 | |
| 4617 | +#: app/controllers/public/profile_controller.rb:406 | |
| 4619 | 4618 | msgid "Oops ... you cannot go ahead here" |
| 4620 | 4619 | msgstr "Oops ... No puedes ir más allá" |
| 4621 | 4620 | |
| ... | ... | @@ -4695,16 +4694,16 @@ msgid "Address was updated successfully!" |
| 4695 | 4694 | msgstr "¡La dirección fue actualizada satisfactoriamente!" |
| 4696 | 4695 | |
| 4697 | 4696 | # habilitado o permitido? estaba o está? |
| 4698 | -#: app/controllers/my_profile/profile_editor_controller.rb:34 | |
| 4697 | +#: app/controllers/my_profile/profile_editor_controller.rb:36 | |
| 4699 | 4698 | msgid "%s was not enabled." |
| 4700 | 4699 | msgstr "%s no estaba habilitado." |
| 4701 | 4700 | |
| 4702 | 4701 | # estaba o está? |
| 4703 | -#: app/controllers/my_profile/profile_editor_controller.rb:44 | |
| 4702 | +#: app/controllers/my_profile/profile_editor_controller.rb:46 | |
| 4704 | 4703 | msgid "%s was not disabled." |
| 4705 | 4704 | msgstr "%s no estaba deshabilitado." |
| 4706 | 4705 | |
| 4707 | -#: app/controllers/my_profile/profile_editor_controller.rb:77 | |
| 4706 | +#: app/controllers/my_profile/profile_editor_controller.rb:79 | |
| 4708 | 4707 | msgid "Could not delete profile" |
| 4709 | 4708 | msgstr "El perfil no puede ser eliminado" |
| 4710 | 4709 | |
| ... | ... | @@ -4798,8 +4797,8 @@ msgstr "Enviado por %s." |
| 4798 | 4797 | |
| 4799 | 4798 | #: app/mailers/contact.rb:23 |
| 4800 | 4799 | #: app/views/admin_panel/_signup_welcome_text.html.erb:6 |
| 4801 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 4802 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:4 | |
| 4800 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 4801 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:4 | |
| 4803 | 4802 | msgid "Subject" |
| 4804 | 4803 | msgstr "Asunto" |
| 4805 | 4804 | |
| ... | ... | @@ -4827,7 +4826,7 @@ msgstr "Editando tema \"%s\"" |
| 4827 | 4826 | #: app/views/features/_manage_enterprise_fields.html.erb:59 |
| 4828 | 4827 | #: app/views/features/_manage_community_fields.html.erb:59 |
| 4829 | 4828 | #: app/views/features/_manage_person_fields.html.erb:59 |
| 4830 | -#: app/views/features/index.html.erb:54 app/views/role/_form.html.erb:16 | |
| 4829 | +#: app/views/features/index.html.erb:54 app/views/role/_form.html.erb:20 | |
| 4831 | 4830 | #: app/views/profile_members/change_role.html.erb:17 |
| 4832 | 4831 | #: app/views/environment_role_manager/change_role.html.erb:11 |
| 4833 | 4832 | #: app/views/plugins/index.html.erb:30 |
| ... | ... | @@ -5331,8 +5330,8 @@ msgstr "Previsualizar este tema" |
| 5331 | 5330 | #: app/views/enterprise_validation/list_processed.html.erb:3 |
| 5332 | 5331 | #: app/views/enterprise_validation/view_processed.html.erb:3 |
| 5333 | 5332 | #: app/views/manage_products/index.html.erb:29 |
| 5334 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:8 | |
| 5335 | -#: plugins/send_email/views/send_email_plugin/fail.rhtml:3 | |
| 5333 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:8 | |
| 5334 | +#: plugins/send_email/views/send_email_plugin/fail.html.erb:3 | |
| 5336 | 5335 | #: plugins/spaminator/views/spaminator_plugin_admin/reports.html.erb:33 |
| 5337 | 5336 | #: plugins/tolerance_time/views/tolerance_time_plugin_myprofile/index.html.erb:22 |
| 5338 | 5337 | msgid "Back" |
| ... | ... | @@ -5399,10 +5398,7 @@ msgstr "%s tiene %d tarea(s) pendientes." |
| 5399 | 5398 | #: app/views/pending_task_notifier/notification.text.erb:21 |
| 5400 | 5399 | #: app/views/scrap/notifier/notification.text.erb:12 |
| 5401 | 5400 | #: app/views/person_notifier/mailer/content_summary.html.erb:12 |
| 5402 | -#: app/views/task_mailer/task_activated.text.erb:5 | |
| 5403 | -#: app/views/task_mailer/task_created.text.erb:5 | |
| 5404 | -#: app/views/task_mailer/task_finished.text.erb:5 | |
| 5405 | -#: app/views/task_mailer/task_cancelled.text.erb:5 | |
| 5401 | +#: app/views/task_mailer/generic_message.text.erb:5 | |
| 5406 | 5402 | #: app/views/comment/notifier/mail_to_followers.html.erb:18 |
| 5407 | 5403 | #: app/views/comment/notifier/notification.text.erb:15 |
| 5408 | 5404 | #: app/views/user_mailer/activation_code.text.erb:5 |
| ... | ... | @@ -5415,11 +5411,8 @@ msgstr "Felicitaciones," |
| 5415 | 5411 | #: app/views/pending_task_notifier/notification.text.erb:24 |
| 5416 | 5412 | #: app/views/scrap/notifier/notification.text.erb:15 |
| 5417 | 5413 | #: app/views/person_notifier/mailer/content_summary.html.erb:15 |
| 5418 | -#: app/views/task_mailer/task_activated.text.erb:8 | |
| 5419 | -#: app/views/task_mailer/task_created.text.erb:8 | |
| 5420 | -#: app/views/task_mailer/task_finished.text.erb:8 | |
| 5414 | +#: app/views/task_mailer/generic_message.text.erb:8 | |
| 5421 | 5415 | #: app/views/task_mailer/target_notification.text.erb:9 |
| 5422 | -#: app/views/task_mailer/task_cancelled.text.erb:8 | |
| 5423 | 5416 | #: app/views/comment/notifier/mail_to_followers.html.erb:21 |
| 5424 | 5417 | #: app/views/comment/notifier/notification.text.erb:18 |
| 5425 | 5418 | #: app/views/user_mailer/activation_code.text.erb:8 |
| ... | ... | @@ -6126,7 +6119,7 @@ msgstr "Fecha de nacimiento" |
| 6126 | 6119 | msgid "Address (street and number)" |
| 6127 | 6120 | msgstr "Dirección (calle y número)" |
| 6128 | 6121 | |
| 6129 | -#: app/views/profile_editor/_person_form.html.erb:54 | |
| 6122 | +#: app/views/profile_editor/_person_form.html.erb:58 | |
| 6130 | 6123 | msgid "Custom formation" |
| 6131 | 6124 | msgstr "Formación perzonalizada" |
| 6132 | 6125 | |
| ... | ... | @@ -6741,10 +6734,6 @@ msgstr "Noticias" |
| 6741 | 6734 | msgid "View more" |
| 6742 | 6735 | msgstr "Ver más" |
| 6743 | 6736 | |
| 6744 | -#: app/views/home/index.html.erb:65 | |
| 6745 | -msgid "More options" | |
| 6746 | -msgstr "Más opciones" | |
| 6747 | - | |
| 6748 | 6737 | #: app/views/features/_manage_enterprise_fields.html.erb:5 |
| 6749 | 6738 | #: app/views/features/_manage_community_fields.html.erb:5 |
| 6750 | 6739 | #: app/views/features/_manage_person_fields.html.erb:5 |
| ... | ... | @@ -6899,11 +6888,12 @@ msgstr "¿Estás seguro de que quieres usar el tema predeterminado del entorno?" |
| 6899 | 6888 | msgid "Create a new role" |
| 6900 | 6889 | msgstr "Crear nuevo rol" |
| 6901 | 6890 | |
| 6902 | -#: app/views/role/_form.html.erb:9 | |
| 6903 | -msgid "Permissions:" | |
| 6891 | +#: app/views/role/_form.html.erb:11 | |
| 6892 | +#, fuzzy | |
| 6893 | +msgid "%s Permissions:" | |
| 6904 | 6894 | msgstr "Permisos:" |
| 6905 | 6895 | |
| 6906 | -#: app/views/role/_form.html.erb:16 | |
| 6896 | +#: app/views/role/_form.html.erb:20 | |
| 6907 | 6897 | msgid "Create role" |
| 6908 | 6898 | msgstr "Crear rol" |
| 6909 | 6899 | |
| ... | ... | @@ -7871,10 +7861,7 @@ msgstr "Por favor, edita este bloque y selecciona algunos productos" |
| 7871 | 7861 | msgid "Unblock" |
| 7872 | 7862 | msgstr "Desbloquear" |
| 7873 | 7863 | |
| 7874 | -#: app/views/task_mailer/task_activated.text.erb:1 | |
| 7875 | -#: app/views/task_mailer/task_created.text.erb:1 | |
| 7876 | -#: app/views/task_mailer/task_finished.text.erb:1 | |
| 7877 | -#: app/views/task_mailer/task_cancelled.text.erb:1 | |
| 7864 | +#: app/views/task_mailer/generic_message.text.erb:1 | |
| 7878 | 7865 | msgid "Dear %s," |
| 7879 | 7866 | msgstr "Querido(a) %s," |
| 7880 | 7867 | |
| ... | ... | @@ -8152,7 +8139,7 @@ msgstr "parte 2 de 2" |
| 8152 | 8139 | |
| 8153 | 8140 | #: app/views/account/accept_terms.html.erb:14 |
| 8154 | 8141 | msgid " part 2 of 3" |
| 8155 | -msgstr "parte 2 de 3" | |
| 8142 | +msgstr " parte 2 de 3" | |
| 8156 | 8143 | |
| 8157 | 8144 | #: app/views/account/accept_terms.html.erb:22 |
| 8158 | 8145 | msgid "I read the terms of use and accepted them" |
| ... | ... | @@ -10078,7 +10065,7 @@ msgid "Configurations could not be saved" |
| 10078 | 10065 | msgstr "La configuración no pudo guardarse" |
| 10079 | 10066 | |
| 10080 | 10067 | #: plugins/send_email/controllers/send_email_plugin_base_controller.rb:16 |
| 10081 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:1 | |
| 10068 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:1 | |
| 10082 | 10069 | msgid "Message sent" |
| 10083 | 10070 | msgstr "Mensaje enviado" |
| 10084 | 10071 | |
| ... | ... | @@ -10319,12 +10306,12 @@ msgstr "La configuración no pudo guardarse" |
| 10319 | 10306 | |
| 10320 | 10307 | #: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:26 |
| 10321 | 10308 | #, fuzzy |
| 10322 | -msgid "\"Custom form #{@form.name} was successfully created.\"" | |
| 10309 | +msgid "Custom form %s was successfully created." | |
| 10323 | 10310 | msgstr "Comentario añadido correctamente." |
| 10324 | 10311 | |
| 10325 | 10312 | #: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:46 |
| 10326 | 10313 | #, fuzzy |
| 10327 | -msgid "\"Custom form #{@form.name} was successfully updated.\"" | |
| 10314 | +msgid "Custom form %s was successfully updated." | |
| 10328 | 10315 | msgstr "El comentario fue eliminado correctamente" |
| 10329 | 10316 | |
| 10330 | 10317 | #: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:49 |
| ... | ... | @@ -10351,19 +10338,15 @@ msgstr "" |
| 10351 | 10338 | msgid "Submission could not be saved" |
| 10352 | 10339 | msgstr "La configuración no pudo guardarse" |
| 10353 | 10340 | |
| 10354 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 10341 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 10355 | 10342 | msgid "To" |
| 10356 | 10343 | msgstr "Para" |
| 10357 | 10344 | |
| 10358 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:7 | |
| 10359 | -msgid "New mail" | |
| 10360 | -msgstr "Nuevo correo electrónico" | |
| 10361 | - | |
| 10362 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:19 | |
| 10345 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:24 | |
| 10363 | 10346 | msgid "'%s' isn't a valid e-mail address" |
| 10364 | 10347 | msgstr "'%s' no es una dirección de correo electrónico válida." |
| 10365 | 10348 | |
| 10366 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:26 | |
| 10349 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:31 | |
| 10367 | 10350 | msgid "'%s' address is not allowed (see SendEmailPlugin config)" |
| 10368 | 10351 | msgstr "" |
| 10369 | 10352 | "La dirección '%s' no es permitida (ver configuración de SendEmailPlugin) " |
| ... | ... | @@ -10579,6 +10562,32 @@ msgstr "Precio (%s)" |
| 10579 | 10562 | msgid "A plugin to enable the video suport, with auto conversion for the web." |
| 10580 | 10563 | msgstr "" |
| 10581 | 10564 | |
| 10565 | +#: plugins/lattes_curriculum/lib/html_parser.rb:19 | |
| 10566 | +msgid "Lattes not found. Please, make sure the informed URL is correct." | |
| 10567 | +msgstr "" | |
| 10568 | + | |
| 10569 | +#: plugins/lattes_curriculum/lib/html_parser.rb:21 | |
| 10570 | +msgid "Lattes Platform is unreachable. Please, try it later." | |
| 10571 | +msgstr "" | |
| 10572 | + | |
| 10573 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:8 | |
| 10574 | +msgid "A plugin that imports the lattes curriculum into the users profiles" | |
| 10575 | +msgstr "" | |
| 10576 | + | |
| 10577 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:40 | |
| 10578 | +msgid "Lattes" | |
| 10579 | +msgstr "" | |
| 10580 | + | |
| 10581 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:73 | |
| 10582 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:106 | |
| 10583 | +#, fuzzy | |
| 10584 | +msgid " Invalid lattes url" | |
| 10585 | +msgstr "Dirección inválida" | |
| 10586 | + | |
| 10587 | +#: plugins/lattes_curriculum/lib/academic_info.rb:10 | |
| 10588 | +msgid " is invalid." | |
| 10589 | +msgstr "" | |
| 10590 | + | |
| 10582 | 10591 | #: plugins/bsc/lib/bsc_plugin.rb:10 |
| 10583 | 10592 | msgid "Adds the Bsc feature" |
| 10584 | 10593 | msgstr "Añade la característica Bsc" |
| ... | ... | @@ -11082,7 +11091,7 @@ msgstr "" |
| 11082 | 11091 | msgid "A plugin that add remote user support." |
| 11083 | 11092 | msgstr "Un plugin que hace ésto y aquello." |
| 11084 | 11093 | |
| 11085 | -#: plugins/remote_user/lib/remote_user_plugin.rb:45 | |
| 11094 | +#: plugins/remote_user/lib/remote_user_plugin.rb:55 | |
| 11086 | 11095 | #, fuzzy |
| 11087 | 11096 | msgid "Could not create the remote_user." |
| 11088 | 11097 | msgstr "No se ha podido crear el correo electrónico" |
| ... | ... | @@ -11345,14 +11354,6 @@ msgstr "Permitir activación de empresas" |
| 11345 | 11354 | msgid "Manage Forms" |
| 11346 | 11355 | msgstr "Administrar %s" |
| 11347 | 11356 | |
| 11348 | -#: plugins/send_email/views/send_email_plugin/fail.rhtml:1 | |
| 11349 | -msgid "The message could not be sent" | |
| 11350 | -msgstr "El mensaje no pudo ser enviado" | |
| 11351 | - | |
| 11352 | -#: plugins/send_email/views/send_email_plugin/sender/message.rhtml:1 | |
| 11353 | -msgid "Contact from %s" | |
| 11354 | -msgstr "Contactar desde %s" | |
| 11355 | - | |
| 11356 | 11357 | #: plugins/google_analytics/views/profile-editor-extras.rhtml:4 |
| 11357 | 11358 | msgid "Google Analytics Profile ID" |
| 11358 | 11359 | msgstr "ID Perfil Análisis Google" |
| ... | ... | @@ -11365,6 +11366,14 @@ msgstr "Ve cómo configurar las estadísticas para tu perfil" |
| 11365 | 11366 | msgid "Applied filters" |
| 11366 | 11367 | msgstr "Filtros aplicados" |
| 11367 | 11368 | |
| 11369 | +#: plugins/send_email/views/send_email_plugin/sender/message.html.erb:1 | |
| 11370 | +msgid "Contact from %s" | |
| 11371 | +msgstr "Contactar desde %s" | |
| 11372 | + | |
| 11373 | +#: plugins/send_email/views/send_email_plugin/fail.html.erb:1 | |
| 11374 | +msgid "The message could not be sent" | |
| 11375 | +msgstr "El mensaje no pudo ser enviado" | |
| 11376 | + | |
| 11368 | 11377 | #: plugins/send_email/views/send_email_plugin_admin/index.html.erb:1 |
| 11369 | 11378 | msgid "SendEmailPlugin's config" |
| 11370 | 11379 | msgstr "Configuración de SendEmailPlugin" |
| ... | ... | @@ -12804,6 +12813,12 @@ msgstr "¿Estás seguro de que deseas eliminar este elemento?" |
| 12804 | 12813 | msgid "Add a new form" |
| 12805 | 12814 | msgstr "Añadir un nuevo calificador" |
| 12806 | 12815 | |
| 12816 | +#~ msgid "More options" | |
| 12817 | +#~ msgstr "Más opciones" | |
| 12818 | + | |
| 12819 | +#~ msgid "New mail" | |
| 12820 | +#~ msgstr "Nuevo correo electrónico" | |
| 12821 | + | |
| 12807 | 12822 | #~ msgid "ZIP code:" |
| 12808 | 12823 | #~ msgstr "Código ZIP:" |
| 12809 | 12824 | ... | ... |
po/fr/noosfero.po
| ... | ... | @@ -4,18 +4,19 @@ |
| 4 | 4 | # , 2009. |
| 5 | 5 | msgid "" |
| 6 | 6 | msgstr "" |
| 7 | -"Project-Id-Version: 1.0~rc3\n" | |
| 7 | +"Project-Id-Version: 1.0~rc4\n" | |
| 8 | 8 | "Report-Msgid-Bugs-To: \n" |
| 9 | -"POT-Creation-Date: 2014-10-30 09:24-0300\n" | |
| 10 | -"PO-Revision-Date: 2009-12-04 18:46-0300\n" | |
| 11 | -"Last-Translator: Jean-Claude Bulliard <jcb@bulliard-consulting.com>\n" | |
| 12 | -"Language-Team: American English <kde-i18n-doc@kde.org>\n" | |
| 9 | +"POT-Creation-Date: 2014-12-18 17:22-0300\n" | |
| 10 | +"PO-Revision-Date: 2014-12-12 14:22+0200\n" | |
| 11 | +"Last-Translator: Michal Čihař <michal@cihar.com>\n" | |
| 12 | +"Language-Team: French <https://hosted.weblate.org/projects/noosfero/noosfero/" | |
| 13 | +"fr/>\n" | |
| 13 | 14 | "Language: fr\n" |
| 14 | 15 | "MIME-Version: 1.0\n" |
| 15 | 16 | "Content-Type: text/plain; charset=UTF-8\n" |
| 16 | 17 | "Content-Transfer-Encoding: 8bit\n" |
| 17 | -"Plural-Forms: nplurals=2; plural=(n > 1);\n" | |
| 18 | -"X-Generator: Pootle 1.1.0\n" | |
| 18 | +"Plural-Forms: nplurals=2; plural=n > 1;\n" | |
| 19 | +"X-Generator: Weblate 2.2-dev\n" | |
| 19 | 20 | |
| 20 | 21 | #: app/models/approve_comment.rb:17 |
| 21 | 22 | #, fuzzy |
| ... | ... | @@ -604,7 +605,7 @@ msgid "have unsupported languages." |
| 604 | 605 | msgstr "" |
| 605 | 606 | |
| 606 | 607 | #: app/models/communities_block.rb:6 app/helpers/application_helper.rb:549 |
| 607 | -#: app/helpers/application_helper.rb:1082 app/helpers/search_helper.rb:12 | |
| 608 | +#: app/helpers/application_helper.rb:1084 app/helpers/search_helper.rb:12 | |
| 608 | 609 | #: app/helpers/assets_helper.rb:11 |
| 609 | 610 | #: app/controllers/public/search_controller.rb:53 |
| 610 | 611 | msgid "Communities" |
| ... | ... | @@ -784,24 +785,24 @@ msgstr "Téléphone professionnel" |
| 784 | 785 | msgid "Nationality" |
| 785 | 786 | msgstr "Nationalité" |
| 786 | 787 | |
| 787 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:32 | |
| 788 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:36 | |
| 788 | 789 | msgid "Schooling" |
| 789 | 790 | msgstr "Éducation" |
| 790 | 791 | |
| 791 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:58 | |
| 792 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:62 | |
| 792 | 793 | msgid "Area of study" |
| 793 | 794 | msgstr "Domaine d'étude" |
| 794 | 795 | |
| 795 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:65 | |
| 796 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:69 | |
| 796 | 797 | msgid "Professional activity" |
| 797 | 798 | msgstr "Activité professionnelle" |
| 798 | 799 | |
| 799 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:66 | |
| 800 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:70 | |
| 800 | 801 | msgid "Organization" |
| 801 | 802 | msgstr "Organisation" |
| 802 | 803 | |
| 803 | 804 | #: app/models/person.rb:196 app/models/enterprise.rb:25 |
| 804 | -#: app/views/profile_editor/_person_form.html.erb:67 | |
| 805 | +#: app/views/profile_editor/_person_form.html.erb:71 | |
| 805 | 806 | msgid "Organization website" |
| 806 | 807 | msgstr "Site d'organisation" |
| 807 | 808 | |
| ... | ... | @@ -810,7 +811,7 @@ msgid "Schooling status" |
| 810 | 811 | msgstr "Statut de formation" |
| 811 | 812 | |
| 812 | 813 | #: app/models/person.rb:202 app/helpers/profile_editor_helper.rb:26 |
| 813 | -#: app/views/profile_editor/_person_form.html.erb:51 | |
| 814 | +#: app/views/profile_editor/_person_form.html.erb:55 | |
| 814 | 815 | msgid "Education" |
| 815 | 816 | msgstr "Éducation" |
| 816 | 817 | |
| ... | ... | @@ -819,7 +820,7 @@ msgstr "Éducation" |
| 819 | 820 | msgid "Custom education" |
| 820 | 821 | msgstr "Formation (autre)" |
| 821 | 822 | |
| 822 | -#: app/models/person.rb:202 app/views/profile_editor/_person_form.html.erb:61 | |
| 823 | +#: app/models/person.rb:202 app/views/profile_editor/_person_form.html.erb:65 | |
| 823 | 824 | msgid "Custom area of study" |
| 824 | 825 | msgstr "Domaine d'étude (autre)" |
| 825 | 826 | |
| ... | ... | @@ -1070,7 +1071,7 @@ msgstr "Courrier électronique" |
| 1070 | 1071 | msgid "{fn} must be checked in order to signup." |
| 1071 | 1072 | msgstr "%{fn} doit être validé avant de pouvoir s'inscrire." |
| 1072 | 1073 | |
| 1073 | -#: app/models/user.rb:251 | |
| 1074 | +#: app/models/user.rb:255 | |
| 1074 | 1075 | #, fuzzy |
| 1075 | 1076 | msgid "does not match." |
| 1076 | 1077 | msgstr "Mot de passe (confirmation)" |
| ... | ... | @@ -1618,7 +1619,7 @@ msgstr "Gérer" |
| 1618 | 1619 | msgid "To do list" |
| 1619 | 1620 | msgstr "Liste de tags" |
| 1620 | 1621 | |
| 1621 | -#: app/models/link_list_block.rb:35 app/helpers/application_helper.rb:914 | |
| 1622 | +#: app/models/link_list_block.rb:35 app/helpers/application_helper.rb:915 | |
| 1622 | 1623 | #, fuzzy |
| 1623 | 1624 | msgid "Chat" |
| 1624 | 1625 | msgstr "Créer" |
| ... | ... | @@ -1684,7 +1685,7 @@ msgstr "Titre" |
| 1684 | 1685 | msgid "description" |
| 1685 | 1686 | msgstr "Description" |
| 1686 | 1687 | |
| 1687 | -#: app/models/create_community.rb:38 app/helpers/application_helper.rb:1079 | |
| 1688 | +#: app/models/create_community.rb:38 app/helpers/application_helper.rb:1081 | |
| 1688 | 1689 | msgid "New community" |
| 1689 | 1690 | msgstr "Nouveau groupe" |
| 1690 | 1691 | |
| ... | ... | @@ -2493,8 +2494,8 @@ msgstr "Montre un message pour une entreprise désactivée" |
| 2493 | 2494 | |
| 2494 | 2495 | #: app/models/disabled_enterprise_message_block.rb:12 |
| 2495 | 2496 | #: app/mailers/contact.rb:23 |
| 2496 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 2497 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:5 | |
| 2497 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 2498 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:5 | |
| 2498 | 2499 | msgid "Message" |
| 2499 | 2500 | msgstr "Message" |
| 2500 | 2501 | |
| ... | ... | @@ -2734,11 +2735,11 @@ msgstr "Cliquez, écrivez et appuyez sur Entrée pour trouver." |
| 2734 | 2735 | msgid "Public" |
| 2735 | 2736 | msgstr "Public" |
| 2736 | 2737 | |
| 2737 | -#: app/helpers/application_helper.rb:913 | |
| 2738 | +#: app/helpers/application_helper.rb:914 | |
| 2738 | 2739 | msgid "Online Manual" |
| 2739 | 2740 | msgstr "" |
| 2740 | 2741 | |
| 2741 | -#: app/helpers/application_helper.rb:961 app/views/home/index.html.erb:12 | |
| 2742 | +#: app/helpers/application_helper.rb:963 app/views/home/index.html.erb:12 | |
| 2742 | 2743 | #: plugins/display_content/lib/display_content_block.rb:141 |
| 2743 | 2744 | #: plugins/recent_content/views/blocks/recent_content_block.html.erb:26 |
| 2744 | 2745 | #: plugins/recent_content/views/blocks/recent_content_block.html.erb:35 |
| ... | ... | @@ -2746,109 +2747,109 @@ msgstr "" |
| 2746 | 2747 | msgid "Read more" |
| 2747 | 2748 | msgstr "Ôter/effacer" |
| 2748 | 2749 | |
| 2749 | -#: app/helpers/application_helper.rb:1042 | |
| 2750 | +#: app/helpers/application_helper.rb:1044 | |
| 2750 | 2751 | #, fuzzy |
| 2751 | 2752 | msgid "contents|More recent" |
| 2752 | 2753 | msgstr "Groupes" |
| 2753 | 2754 | |
| 2754 | -#: app/helpers/application_helper.rb:1043 | |
| 2755 | +#: app/helpers/application_helper.rb:1045 | |
| 2755 | 2756 | #, fuzzy |
| 2756 | 2757 | msgid "contents|More viewed" |
| 2757 | 2758 | msgstr "Groupes" |
| 2758 | 2759 | |
| 2759 | -#: app/helpers/application_helper.rb:1044 | |
| 2760 | +#: app/helpers/application_helper.rb:1046 | |
| 2760 | 2761 | #, fuzzy |
| 2761 | 2762 | msgid "contents|Most commented" |
| 2762 | 2763 | msgstr "Commentaires récents" |
| 2763 | 2764 | |
| 2764 | -#: app/helpers/application_helper.rb:1047 app/views/cms/view.html.erb:20 | |
| 2765 | +#: app/helpers/application_helper.rb:1049 app/views/cms/view.html.erb:20 | |
| 2765 | 2766 | #, fuzzy |
| 2766 | 2767 | msgid "New content" |
| 2767 | 2768 | msgstr "Tout le contenu" |
| 2768 | 2769 | |
| 2769 | -#: app/helpers/application_helper.rb:1050 app/helpers/search_helper.rb:9 | |
| 2770 | +#: app/helpers/application_helper.rb:1052 app/helpers/search_helper.rb:9 | |
| 2770 | 2771 | #: app/controllers/public/search_controller.rb:54 |
| 2771 | 2772 | #, fuzzy |
| 2772 | 2773 | msgid "Contents" |
| 2773 | 2774 | msgstr "Type de contenu" |
| 2774 | 2775 | |
| 2775 | -#: app/helpers/application_helper.rb:1051 | |
| 2776 | +#: app/helpers/application_helper.rb:1053 | |
| 2776 | 2777 | #: app/views/comment/_comment_actions.html.erb:5 |
| 2777 | 2778 | #, fuzzy |
| 2778 | 2779 | msgid "Contents menu" |
| 2779 | 2780 | msgstr "Groupes" |
| 2780 | 2781 | |
| 2781 | -#: app/helpers/application_helper.rb:1057 | |
| 2782 | +#: app/helpers/application_helper.rb:1059 | |
| 2782 | 2783 | #, fuzzy |
| 2783 | 2784 | msgid "people|More recent" |
| 2784 | 2785 | msgstr "Récents" |
| 2785 | 2786 | |
| 2786 | -#: app/helpers/application_helper.rb:1058 | |
| 2787 | +#: app/helpers/application_helper.rb:1060 | |
| 2787 | 2788 | #, fuzzy |
| 2788 | 2789 | msgid "people|More active" |
| 2789 | 2790 | msgstr "Actif" |
| 2790 | 2791 | |
| 2791 | -#: app/helpers/application_helper.rb:1059 | |
| 2792 | +#: app/helpers/application_helper.rb:1061 | |
| 2792 | 2793 | #, fuzzy |
| 2793 | 2794 | msgid "people|More popular" |
| 2794 | 2795 | msgstr "Personnes et groupes" |
| 2795 | 2796 | |
| 2796 | -#: app/helpers/application_helper.rb:1062 | |
| 2797 | +#: app/helpers/application_helper.rb:1064 | |
| 2797 | 2798 | #, fuzzy |
| 2798 | 2799 | msgid "My friends" |
| 2799 | 2800 | msgstr "contacts" |
| 2800 | 2801 | |
| 2801 | -#: app/helpers/application_helper.rb:1063 plugins/stoa/lib/stoa_plugin.rb:110 | |
| 2802 | +#: app/helpers/application_helper.rb:1065 plugins/stoa/lib/stoa_plugin.rb:110 | |
| 2802 | 2803 | #, fuzzy |
| 2803 | 2804 | msgid "Invite friends" |
| 2804 | 2805 | msgstr "Inviter mes contacts !" |
| 2805 | 2806 | |
| 2806 | -#: app/helpers/application_helper.rb:1066 app/helpers/search_helper.rb:11 | |
| 2807 | +#: app/helpers/application_helper.rb:1068 app/helpers/search_helper.rb:11 | |
| 2807 | 2808 | #: app/helpers/assets_helper.rb:8 |
| 2808 | 2809 | #: app/controllers/public/search_controller.rb:49 |
| 2809 | 2810 | #: plugins/people_block/lib/people_block.rb:4 |
| 2810 | 2811 | msgid "People" |
| 2811 | 2812 | msgstr "Personnes" |
| 2812 | 2813 | |
| 2813 | -#: app/helpers/application_helper.rb:1067 | |
| 2814 | +#: app/helpers/application_helper.rb:1069 | |
| 2814 | 2815 | #, fuzzy |
| 2815 | 2816 | msgid "People menu" |
| 2816 | 2817 | msgstr "Personnes" |
| 2817 | 2818 | |
| 2818 | -#: app/helpers/application_helper.rb:1073 | |
| 2819 | +#: app/helpers/application_helper.rb:1075 | |
| 2819 | 2820 | #, fuzzy |
| 2820 | 2821 | msgid "communities|More recent" |
| 2821 | 2822 | msgstr "Groupes" |
| 2822 | 2823 | |
| 2823 | -#: app/helpers/application_helper.rb:1074 | |
| 2824 | +#: app/helpers/application_helper.rb:1076 | |
| 2824 | 2825 | #, fuzzy |
| 2825 | 2826 | msgid "communities|More active" |
| 2826 | 2827 | msgstr "Groupes" |
| 2827 | 2828 | |
| 2828 | -#: app/helpers/application_helper.rb:1075 | |
| 2829 | +#: app/helpers/application_helper.rb:1077 | |
| 2829 | 2830 | #, fuzzy |
| 2830 | 2831 | msgid "communities|More popular" |
| 2831 | 2832 | msgstr "Groupes" |
| 2832 | 2833 | |
| 2833 | -#: app/helpers/application_helper.rb:1078 | |
| 2834 | -#: app/helpers/application_helper.rb:1128 | |
| 2834 | +#: app/helpers/application_helper.rb:1080 | |
| 2835 | +#: app/helpers/application_helper.rb:1130 | |
| 2835 | 2836 | #, fuzzy |
| 2836 | 2837 | msgid "My communities" |
| 2837 | 2838 | msgstr "groupes" |
| 2838 | 2839 | |
| 2839 | -#: app/helpers/application_helper.rb:1083 | |
| 2840 | +#: app/helpers/application_helper.rb:1085 | |
| 2840 | 2841 | #, fuzzy |
| 2841 | 2842 | msgid "Communities menu" |
| 2842 | 2843 | msgstr "Groupes" |
| 2843 | 2844 | |
| 2844 | -#: app/helpers/application_helper.rb:1088 | |
| 2845 | +#: app/helpers/application_helper.rb:1090 | |
| 2845 | 2846 | #: app/views/layouts/slideshow.html.erb:18 |
| 2846 | 2847 | #: app/views/blocks/slideshow.html.erb:17 |
| 2847 | 2848 | #: app/views/blocks/featured_products.html.erb:3 |
| 2848 | 2849 | msgid "Previous" |
| 2849 | 2850 | msgstr "Précédent" |
| 2850 | 2851 | |
| 2851 | -#: app/helpers/application_helper.rb:1088 app/helpers/forms_helper.rb:169 | |
| 2852 | +#: app/helpers/application_helper.rb:1090 app/helpers/forms_helper.rb:169 | |
| 2852 | 2853 | #: app/views/layouts/slideshow.html.erb:18 |
| 2853 | 2854 | #: app/views/enterprise_registration/basic_information.html.erb:40 |
| 2854 | 2855 | #: app/views/blocks/slideshow.html.erb:21 |
| ... | ... | @@ -2857,52 +2858,52 @@ msgstr "Précédent" |
| 2857 | 2858 | msgid "Next" |
| 2858 | 2859 | msgstr "Suivant" |
| 2859 | 2860 | |
| 2860 | -#: app/helpers/application_helper.rb:1108 | |
| 2861 | +#: app/helpers/application_helper.rb:1110 | |
| 2861 | 2862 | #, fuzzy |
| 2862 | 2863 | msgid "See all" |
| 2863 | 2864 | msgstr "voir tou(te)s les..." |
| 2864 | 2865 | |
| 2865 | -#: app/helpers/application_helper.rb:1111 | |
| 2866 | +#: app/helpers/application_helper.rb:1113 | |
| 2866 | 2867 | msgid "<span>Manage</span> %s" |
| 2867 | 2868 | msgstr "" |
| 2868 | 2869 | |
| 2869 | -#: app/helpers/application_helper.rb:1111 | |
| 2870 | +#: app/helpers/application_helper.rb:1113 | |
| 2870 | 2871 | #: app/views/shared/user_menu.html.erb:26 |
| 2871 | 2872 | #: app/views/shared/_manage_link.html.erb:2 |
| 2872 | 2873 | #, fuzzy |
| 2873 | 2874 | msgid "Manage %s" |
| 2874 | 2875 | msgstr "Gérer" |
| 2875 | 2876 | |
| 2876 | -#: app/helpers/application_helper.rb:1122 | |
| 2877 | +#: app/helpers/application_helper.rb:1124 | |
| 2877 | 2878 | #, fuzzy |
| 2878 | 2879 | msgid "My enterprises" |
| 2879 | 2880 | msgstr "entreprises" |
| 2880 | 2881 | |
| 2881 | -#: app/helpers/application_helper.rb:1132 | |
| 2882 | +#: app/helpers/application_helper.rb:1134 | |
| 2882 | 2883 | #, fuzzy |
| 2883 | 2884 | msgid "Administration" |
| 2884 | 2885 | msgstr "Interface d'administration" |
| 2885 | 2886 | |
| 2886 | -#: app/helpers/application_helper.rb:1132 | |
| 2887 | +#: app/helpers/application_helper.rb:1134 | |
| 2887 | 2888 | #, fuzzy |
| 2888 | 2889 | msgid "Configure the environment" |
| 2889 | 2890 | msgstr "Profil|Environnement" |
| 2890 | 2891 | |
| 2891 | -#: app/helpers/application_helper.rb:1139 | |
| 2892 | +#: app/helpers/application_helper.rb:1141 | |
| 2892 | 2893 | #, fuzzy |
| 2893 | 2894 | msgid "Manage your pending tasks" |
| 2894 | 2895 | msgstr "Gérer votre contenu." |
| 2895 | 2896 | |
| 2896 | -#: app/helpers/application_helper.rb:1142 | |
| 2897 | +#: app/helpers/application_helper.rb:1144 | |
| 2897 | 2898 | msgid "<span class='welcome'>Welcome,</span> %s" |
| 2898 | 2899 | msgstr "" |
| 2899 | 2900 | |
| 2900 | -#: app/helpers/application_helper.rb:1142 | |
| 2901 | +#: app/helpers/application_helper.rb:1144 | |
| 2901 | 2902 | #, fuzzy |
| 2902 | 2903 | msgid "Go to your homepage" |
| 2903 | 2904 | msgstr "Aller à votre page d'accueil." |
| 2904 | 2905 | |
| 2905 | -#: app/helpers/application_helper.rb:1147 | |
| 2906 | +#: app/helpers/application_helper.rb:1149 | |
| 2906 | 2907 | #: app/views/shared/user_menu.html.erb:37 |
| 2907 | 2908 | #: app/views/blocks/profile_info.html.erb:24 |
| 2908 | 2909 | #: app/views/blocks/profile_image.html.erb:21 |
| ... | ... | @@ -2911,98 +2912,98 @@ msgstr "Aller à votre page d'accueil." |
| 2911 | 2912 | msgid "Control panel" |
| 2912 | 2913 | msgstr "Panneau de contrôle" |
| 2913 | 2914 | |
| 2914 | -#: app/helpers/application_helper.rb:1147 | |
| 2915 | +#: app/helpers/application_helper.rb:1149 | |
| 2915 | 2916 | #, fuzzy |
| 2916 | 2917 | msgid "Configure your personal account and content" |
| 2917 | 2918 | msgstr "Avez-vous un compte personnel sur le système ?" |
| 2918 | 2919 | |
| 2919 | -#: app/helpers/application_helper.rb:1149 | |
| 2920 | +#: app/helpers/application_helper.rb:1151 | |
| 2920 | 2921 | #: app/views/shared/user_menu.html.erb:45 |
| 2921 | 2922 | #: app/views/blocks/login_block.html.erb:9 |
| 2922 | 2923 | msgid "Logout" |
| 2923 | 2924 | msgstr "Déconnexion" |
| 2924 | 2925 | |
| 2925 | -#: app/helpers/application_helper.rb:1149 | |
| 2926 | +#: app/helpers/application_helper.rb:1151 | |
| 2926 | 2927 | msgid "Leave the system" |
| 2927 | 2928 | msgstr "Quitter le système" |
| 2928 | 2929 | |
| 2929 | -#: app/helpers/application_helper.rb:1155 | |
| 2930 | +#: app/helpers/application_helper.rb:1157 | |
| 2930 | 2931 | msgid " characters left" |
| 2931 | 2932 | msgstr "" |
| 2932 | 2933 | |
| 2933 | -#: app/helpers/application_helper.rb:1156 | |
| 2934 | +#: app/helpers/application_helper.rb:1158 | |
| 2934 | 2935 | #, fuzzy |
| 2935 | 2936 | msgid "Limit of characters reached" |
| 2936 | 2937 | msgstr "Limite d'articles" |
| 2937 | 2938 | |
| 2938 | -#: app/helpers/application_helper.rb:1182 | |
| 2939 | -#: app/helpers/application_helper.rb:1188 | |
| 2939 | +#: app/helpers/application_helper.rb:1184 | |
| 2940 | +#: app/helpers/application_helper.rb:1190 | |
| 2940 | 2941 | msgid "less than a minute" |
| 2941 | 2942 | msgstr "" |
| 2942 | 2943 | |
| 2943 | -#: app/helpers/application_helper.rb:1182 | |
| 2944 | -#: app/helpers/application_helper.rb:1189 | |
| 2944 | +#: app/helpers/application_helper.rb:1184 | |
| 2945 | +#: app/helpers/application_helper.rb:1191 | |
| 2945 | 2946 | msgid "1 minute" |
| 2946 | 2947 | msgstr "" |
| 2947 | 2948 | |
| 2948 | -#: app/helpers/application_helper.rb:1184 | |
| 2949 | +#: app/helpers/application_helper.rb:1186 | |
| 2949 | 2950 | msgid "less than 5 seconds" |
| 2950 | 2951 | msgstr "" |
| 2951 | 2952 | |
| 2952 | -#: app/helpers/application_helper.rb:1185 | |
| 2953 | +#: app/helpers/application_helper.rb:1187 | |
| 2953 | 2954 | msgid "less than 10 seconds" |
| 2954 | 2955 | msgstr "" |
| 2955 | 2956 | |
| 2956 | -#: app/helpers/application_helper.rb:1186 | |
| 2957 | +#: app/helpers/application_helper.rb:1188 | |
| 2957 | 2958 | msgid "less than 20 seconds" |
| 2958 | 2959 | msgstr "" |
| 2959 | 2960 | |
| 2960 | -#: app/helpers/application_helper.rb:1187 | |
| 2961 | +#: app/helpers/application_helper.rb:1189 | |
| 2961 | 2962 | msgid "half a minute" |
| 2962 | 2963 | msgstr "" |
| 2963 | 2964 | |
| 2964 | -#: app/helpers/application_helper.rb:1192 | |
| 2965 | +#: app/helpers/application_helper.rb:1194 | |
| 2965 | 2966 | #, fuzzy |
| 2966 | 2967 | msgid "%{distance} minutes ago" |
| 2967 | 2968 | msgstr "Distance :" |
| 2968 | 2969 | |
| 2969 | -#: app/helpers/application_helper.rb:1193 | |
| 2970 | +#: app/helpers/application_helper.rb:1195 | |
| 2970 | 2971 | msgid "about 1 hour ago" |
| 2971 | 2972 | msgstr "" |
| 2972 | 2973 | |
| 2973 | -#: app/helpers/application_helper.rb:1194 | |
| 2974 | +#: app/helpers/application_helper.rb:1196 | |
| 2974 | 2975 | #, fuzzy |
| 2975 | 2976 | msgid "about %{distance} hours ago" |
| 2976 | 2977 | msgstr "Distance :" |
| 2977 | 2978 | |
| 2978 | -#: app/helpers/application_helper.rb:1195 | |
| 2979 | +#: app/helpers/application_helper.rb:1197 | |
| 2979 | 2980 | msgid "1 day ago" |
| 2980 | 2981 | msgstr "" |
| 2981 | 2982 | |
| 2982 | -#: app/helpers/application_helper.rb:1196 | |
| 2983 | +#: app/helpers/application_helper.rb:1198 | |
| 2983 | 2984 | #, fuzzy |
| 2984 | 2985 | msgid "%{distance} days ago" |
| 2985 | 2986 | msgstr "Distance :" |
| 2986 | 2987 | |
| 2987 | -#: app/helpers/application_helper.rb:1214 | |
| 2988 | +#: app/helpers/application_helper.rb:1216 | |
| 2988 | 2989 | #, fuzzy |
| 2989 | 2990 | msgid "Source: %s" |
| 2990 | 2991 | msgstr "Prix : %s" |
| 2991 | 2992 | |
| 2992 | -#: app/helpers/application_helper.rb:1247 | |
| 2993 | +#: app/helpers/application_helper.rb:1249 | |
| 2993 | 2994 | #: plugins/community_block/views/community_block.html.erb:17 |
| 2994 | 2995 | msgid "Report abuse" |
| 2995 | 2996 | msgstr "" |
| 2996 | 2997 | |
| 2997 | -#: app/helpers/application_helper.rb:1249 | |
| 2998 | +#: app/helpers/application_helper.rb:1251 | |
| 2998 | 2999 | msgid "You already reported this profile." |
| 2999 | 3000 | msgstr "" |
| 3000 | 3001 | |
| 3001 | -#: app/helpers/application_helper.rb:1250 | |
| 3002 | +#: app/helpers/application_helper.rb:1252 | |
| 3002 | 3003 | msgid "Report this profile for abusive behaviour" |
| 3003 | 3004 | msgstr "" |
| 3004 | 3005 | |
| 3005 | -#: app/helpers/application_helper.rb:1289 | |
| 3006 | +#: app/helpers/application_helper.rb:1292 | |
| 3006 | 3007 | #, fuzzy |
| 3007 | 3008 | msgid "" |
| 3008 | 3009 | "Are you sure that you want to remove the folder \"%s\"? Note that all the " |
| ... | ... | @@ -3011,32 +3012,32 @@ msgstr "" |
| 3011 | 3012 | "Êtes-vous sûr de vouloir détruire ce dossier ? Faîtes attention que les " |
| 3012 | 3013 | "éléments qu'il contient seront aussi détruits !" |
| 3013 | 3014 | |
| 3014 | -#: app/helpers/application_helper.rb:1291 | |
| 3015 | +#: app/helpers/application_helper.rb:1294 | |
| 3015 | 3016 | #, fuzzy |
| 3016 | 3017 | msgid "Are you sure that you want to remove the item \"%s\"?" |
| 3017 | 3018 | msgstr "Êtes-vous sûr(e) de vouloir ôter cet élément ?" |
| 3018 | 3019 | |
| 3019 | -#: app/helpers/application_helper.rb:1319 | |
| 3020 | +#: app/helpers/application_helper.rb:1323 | |
| 3020 | 3021 | #, fuzzy |
| 3021 | 3022 | msgid "Profile organization" |
| 3022 | 3023 | msgstr "Une organisation" |
| 3023 | 3024 | |
| 3024 | -#: app/helpers/application_helper.rb:1320 | |
| 3025 | +#: app/helpers/application_helper.rb:1324 | |
| 3025 | 3026 | msgid "" |
| 3026 | 3027 | "Your profile will be created according to the selected template. Click on " |
| 3027 | 3028 | "the options to view them." |
| 3028 | 3029 | msgstr "" |
| 3029 | 3030 | |
| 3030 | -#: app/helpers/application_helper.rb:1355 | |
| 3031 | +#: app/helpers/application_helper.rb:1359 | |
| 3031 | 3032 | #, fuzzy |
| 3032 | 3033 | msgid "Errors while saving" |
| 3033 | 3034 | msgstr "Message" |
| 3034 | 3035 | |
| 3035 | -#: app/helpers/application_helper.rb:1365 | |
| 3036 | +#: app/helpers/application_helper.rb:1369 | |
| 3036 | 3037 | msgid "The content here is available to %s's friends only." |
| 3037 | 3038 | msgstr "" |
| 3038 | 3039 | |
| 3039 | -#: app/helpers/application_helper.rb:1368 | |
| 3040 | +#: app/helpers/application_helper.rb:1372 | |
| 3040 | 3041 | msgid "The contents in this profile is available to members only." |
| 3041 | 3042 | msgstr "" |
| 3042 | 3043 | |
| ... | ... | @@ -3880,7 +3881,7 @@ msgid "Wk" |
| 3880 | 3881 | msgstr "travail" |
| 3881 | 3882 | |
| 3882 | 3883 | #: app/helpers/forms_helper.rb:248 |
| 3883 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 3884 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 3884 | 3885 | #: plugins/shopping_cart/views/shopping_cart_plugin_myprofile/reports.html.erb:11 |
| 3885 | 3886 | #, fuzzy |
| 3886 | 3887 | msgid "From" |
| ... | ... | @@ -4544,7 +4545,7 @@ msgid "Failed to edit role" |
| 4544 | 4545 | msgstr "Échec dans l'édition du rôle" |
| 4545 | 4546 | |
| 4546 | 4547 | #: app/controllers/admin/users_controller.rb:53 |
| 4547 | -#: app/controllers/my_profile/profile_editor_controller.rb:74 | |
| 4548 | +#: app/controllers/my_profile/profile_editor_controller.rb:76 | |
| 4548 | 4549 | #, fuzzy |
| 4549 | 4550 | msgid "The profile was deleted." |
| 4550 | 4551 | msgstr "Le texte original a été retiré." |
| ... | ... | @@ -4555,13 +4556,13 @@ msgid "Could not remove profile" |
| 4555 | 4556 | msgstr "Impossible de mettre à jour le modèle" |
| 4556 | 4557 | |
| 4557 | 4558 | #: app/controllers/admin/users_controller.rb:95 |
| 4558 | -#: app/controllers/public/profile_controller.rb:363 | |
| 4559 | +#: app/controllers/public/profile_controller.rb:366 | |
| 4559 | 4560 | #, fuzzy |
| 4560 | 4561 | msgid "The e-mails are being sent" |
| 4561 | 4562 | msgstr "Votre invitation a été envoyée." |
| 4562 | 4563 | |
| 4563 | 4564 | #: app/controllers/admin/users_controller.rb:98 |
| 4564 | -#: app/controllers/public/profile_controller.rb:366 | |
| 4565 | +#: app/controllers/public/profile_controller.rb:369 | |
| 4565 | 4566 | #, fuzzy |
| 4566 | 4567 | msgid "Could not create the e-mail" |
| 4567 | 4568 | msgstr "Impossible de créer le matériau brut" |
| ... | ... | @@ -4725,103 +4726,103 @@ msgstr "Le texte original a été retiré." |
| 4725 | 4726 | msgid "You couldn't mark this comment as spam." |
| 4726 | 4727 | msgstr "Êtes-vous sûr(e) de vouloir ôter cet élément ?" |
| 4727 | 4728 | |
| 4728 | -#: app/controllers/public/profile_controller.rb:46 | |
| 4729 | -#: app/controllers/public/profile_controller.rb:47 | |
| 4729 | +#: app/controllers/public/profile_controller.rb:49 | |
| 4730 | +#: app/controllers/public/profile_controller.rb:50 | |
| 4730 | 4731 | #: app/views/profile/content_tagged.html.erb:3 |
| 4731 | 4732 | #, fuzzy |
| 4732 | 4733 | msgid "%s's contents tagged with \"%s\"" |
| 4733 | 4734 | msgstr "Contenu associé aux tags «%s»" |
| 4734 | 4735 | |
| 4735 | -#: app/controllers/public/profile_controller.rb:91 | |
| 4736 | +#: app/controllers/public/profile_controller.rb:94 | |
| 4736 | 4737 | msgid "%s administrator still needs to accept you as member." |
| 4737 | 4738 | msgstr "L'administrateur %s doit encore vous accepter comme membre." |
| 4738 | 4739 | |
| 4739 | -#: app/controllers/public/profile_controller.rb:93 | |
| 4740 | +#: app/controllers/public/profile_controller.rb:96 | |
| 4740 | 4741 | #, fuzzy |
| 4741 | 4742 | msgid "You just became a member of %s." |
| 4742 | 4743 | msgstr "%s veut être membre de %s." |
| 4743 | 4744 | |
| 4744 | -#: app/controllers/public/profile_controller.rb:96 | |
| 4745 | +#: app/controllers/public/profile_controller.rb:99 | |
| 4745 | 4746 | #, fuzzy |
| 4746 | 4747 | msgid "You are already a member of %s." |
| 4747 | 4748 | msgstr "%s veut devenir membre de «%s»" |
| 4748 | 4749 | |
| 4749 | -#: app/controllers/public/profile_controller.rb:118 | |
| 4750 | +#: app/controllers/public/profile_controller.rb:121 | |
| 4750 | 4751 | #, fuzzy |
| 4751 | 4752 | msgid "You are not a member of %s." |
| 4752 | 4753 | msgstr "%s veut devenir membre de «%s»" |
| 4753 | 4754 | |
| 4754 | -#: app/controllers/public/profile_controller.rb:138 | |
| 4755 | +#: app/controllers/public/profile_controller.rb:141 | |
| 4755 | 4756 | msgid "%s still needs to accept being your friend." |
| 4756 | 4757 | msgstr "Il faut encore que %s accepte d'être votre contact." |
| 4757 | 4758 | |
| 4758 | -#: app/controllers/public/profile_controller.rb:140 | |
| 4759 | +#: app/controllers/public/profile_controller.rb:143 | |
| 4759 | 4760 | #, fuzzy |
| 4760 | 4761 | msgid "You are already a friend of %s." |
| 4761 | 4762 | msgstr "%s veut devenir membre de «%s»" |
| 4762 | 4763 | |
| 4763 | -#: app/controllers/public/profile_controller.rb:159 | |
| 4764 | +#: app/controllers/public/profile_controller.rb:162 | |
| 4764 | 4765 | #, fuzzy |
| 4765 | 4766 | msgid "You have unblocked %s successfully. " |
| 4766 | 4767 | msgstr "L'e-mail a bien été désactivé." |
| 4767 | 4768 | |
| 4768 | -#: app/controllers/public/profile_controller.rb:162 | |
| 4769 | +#: app/controllers/public/profile_controller.rb:165 | |
| 4769 | 4770 | #, fuzzy |
| 4770 | 4771 | msgid "You are not allowed to unblock enterprises in this environment." |
| 4771 | 4772 | msgstr "Vous n'êtes pas autorisé(e) à voir ce contenu." |
| 4772 | 4773 | |
| 4773 | -#: app/controllers/public/profile_controller.rb:174 | |
| 4774 | +#: app/controllers/public/profile_controller.rb:177 | |
| 4774 | 4775 | #, fuzzy |
| 4775 | 4776 | msgid "Message successfully sent." |
| 4776 | 4777 | msgstr "Le contact a bien été envoyé" |
| 4777 | 4778 | |
| 4778 | -#: app/controllers/public/profile_controller.rb:174 | |
| 4779 | +#: app/controllers/public/profile_controller.rb:177 | |
| 4779 | 4780 | msgid "You can't leave an empty message." |
| 4780 | 4781 | msgstr "" |
| 4781 | 4782 | |
| 4782 | -#: app/controllers/public/profile_controller.rb:185 | |
| 4783 | +#: app/controllers/public/profile_controller.rb:188 | |
| 4783 | 4784 | #, fuzzy |
| 4784 | 4785 | msgid "Comment successfully added." |
| 4785 | 4786 | msgstr "Le commentaire a bien été effacé" |
| 4786 | 4787 | |
| 4787 | -#: app/controllers/public/profile_controller.rb:185 | |
| 4788 | +#: app/controllers/public/profile_controller.rb:188 | |
| 4788 | 4789 | msgid "You can't leave an empty comment." |
| 4789 | 4790 | msgstr "" |
| 4790 | 4791 | |
| 4791 | -#: app/controllers/public/profile_controller.rb:276 | |
| 4792 | +#: app/controllers/public/profile_controller.rb:279 | |
| 4792 | 4793 | #, fuzzy |
| 4793 | 4794 | msgid "Notification successfully removed." |
| 4794 | 4795 | msgstr "Le produit a bien été ôté" |
| 4795 | 4796 | |
| 4796 | -#: app/controllers/public/profile_controller.rb:278 | |
| 4797 | +#: app/controllers/public/profile_controller.rb:281 | |
| 4797 | 4798 | #, fuzzy |
| 4798 | 4799 | msgid "You could not remove this notification." |
| 4799 | 4800 | msgstr "Impossible d'ôter le produit" |
| 4800 | 4801 | |
| 4801 | -#: app/controllers/public/profile_controller.rb:311 | |
| 4802 | +#: app/controllers/public/profile_controller.rb:314 | |
| 4802 | 4803 | #, fuzzy |
| 4803 | 4804 | msgid "You could not answer the captcha." |
| 4804 | 4805 | msgstr "Impossible d'ôter le produit" |
| 4805 | 4806 | |
| 4806 | -#: app/controllers/public/profile_controller.rb:331 | |
| 4807 | +#: app/controllers/public/profile_controller.rb:334 | |
| 4807 | 4808 | msgid "" |
| 4808 | 4809 | "Your abuse report was registered. The administrators are reviewing your " |
| 4809 | 4810 | "report." |
| 4810 | 4811 | msgstr "" |
| 4811 | 4812 | |
| 4812 | -#: app/controllers/public/profile_controller.rb:339 | |
| 4813 | +#: app/controllers/public/profile_controller.rb:342 | |
| 4813 | 4814 | msgid "" |
| 4814 | 4815 | "Your report couldn't be saved due to some problem. Please contact the " |
| 4815 | 4816 | "administrator." |
| 4816 | 4817 | msgstr "" |
| 4817 | 4818 | |
| 4818 | -#: app/controllers/public/profile_controller.rb:402 | |
| 4819 | +#: app/controllers/public/profile_controller.rb:406 | |
| 4819 | 4820 | msgid "" |
| 4820 | 4821 | "This profile is inaccessible. You don't have the permission to view the " |
| 4821 | 4822 | "content here." |
| 4822 | 4823 | msgstr "" |
| 4823 | 4824 | |
| 4824 | -#: app/controllers/public/profile_controller.rb:402 | |
| 4825 | +#: app/controllers/public/profile_controller.rb:406 | |
| 4825 | 4826 | msgid "Oops ... you cannot go ahead here" |
| 4826 | 4827 | msgstr "" |
| 4827 | 4828 | |
| ... | ... | @@ -4906,15 +4907,15 @@ msgstr "Page non trouvée" |
| 4906 | 4907 | msgid "Address was updated successfully!" |
| 4907 | 4908 | msgstr "Fonctionnalités mises à jour avec succès." |
| 4908 | 4909 | |
| 4909 | -#: app/controllers/my_profile/profile_editor_controller.rb:34 | |
| 4910 | +#: app/controllers/my_profile/profile_editor_controller.rb:36 | |
| 4910 | 4911 | msgid "%s was not enabled." |
| 4911 | 4912 | msgstr "%s n'était pas activé(e)" |
| 4912 | 4913 | |
| 4913 | -#: app/controllers/my_profile/profile_editor_controller.rb:44 | |
| 4914 | +#: app/controllers/my_profile/profile_editor_controller.rb:46 | |
| 4914 | 4915 | msgid "%s was not disabled." |
| 4915 | 4916 | msgstr "%s n'était pas désactivé(e)." |
| 4916 | 4917 | |
| 4917 | -#: app/controllers/my_profile/profile_editor_controller.rb:77 | |
| 4918 | +#: app/controllers/my_profile/profile_editor_controller.rb:79 | |
| 4918 | 4919 | #, fuzzy |
| 4919 | 4920 | msgid "Could not delete profile" |
| 4920 | 4921 | msgstr "Impossible de mettre à jour le modèle" |
| ... | ... | @@ -5012,8 +5013,8 @@ msgstr "Nouveau groupe" |
| 5012 | 5013 | |
| 5013 | 5014 | #: app/mailers/contact.rb:23 |
| 5014 | 5015 | #: app/views/admin_panel/_signup_welcome_text.html.erb:6 |
| 5015 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 5016 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:4 | |
| 5016 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 5017 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:4 | |
| 5017 | 5018 | msgid "Subject" |
| 5018 | 5019 | msgstr "Sujet" |
| 5019 | 5020 | |
| ... | ... | @@ -5042,7 +5043,7 @@ msgstr "Édition du thème «%s»" |
| 5042 | 5043 | #: app/views/features/_manage_enterprise_fields.html.erb:59 |
| 5043 | 5044 | #: app/views/features/_manage_community_fields.html.erb:59 |
| 5044 | 5045 | #: app/views/features/_manage_person_fields.html.erb:59 |
| 5045 | -#: app/views/features/index.html.erb:54 app/views/role/_form.html.erb:16 | |
| 5046 | +#: app/views/features/index.html.erb:54 app/views/role/_form.html.erb:20 | |
| 5046 | 5047 | #: app/views/profile_members/change_role.html.erb:17 |
| 5047 | 5048 | #: app/views/environment_role_manager/change_role.html.erb:11 |
| 5048 | 5049 | #: app/views/plugins/index.html.erb:30 |
| ... | ... | @@ -5556,8 +5557,8 @@ msgstr "Prévisualiser ce thème" |
| 5556 | 5557 | #: app/views/enterprise_validation/list_processed.html.erb:3 |
| 5557 | 5558 | #: app/views/enterprise_validation/view_processed.html.erb:3 |
| 5558 | 5559 | #: app/views/manage_products/index.html.erb:29 |
| 5559 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:8 | |
| 5560 | -#: plugins/send_email/views/send_email_plugin/fail.rhtml:3 | |
| 5560 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:8 | |
| 5561 | +#: plugins/send_email/views/send_email_plugin/fail.html.erb:3 | |
| 5561 | 5562 | #: plugins/spaminator/views/spaminator_plugin_admin/reports.html.erb:33 |
| 5562 | 5563 | #: plugins/tolerance_time/views/tolerance_time_plugin_myprofile/index.html.erb:22 |
| 5563 | 5564 | msgid "Back" |
| ... | ... | @@ -5624,10 +5625,7 @@ msgstr "%s a %d tâche(s) en attente." |
| 5624 | 5625 | #: app/views/pending_task_notifier/notification.text.erb:21 |
| 5625 | 5626 | #: app/views/scrap/notifier/notification.text.erb:12 |
| 5626 | 5627 | #: app/views/person_notifier/mailer/content_summary.html.erb:12 |
| 5627 | -#: app/views/task_mailer/task_activated.text.erb:5 | |
| 5628 | -#: app/views/task_mailer/task_created.text.erb:5 | |
| 5629 | -#: app/views/task_mailer/task_finished.text.erb:5 | |
| 5630 | -#: app/views/task_mailer/task_cancelled.text.erb:5 | |
| 5628 | +#: app/views/task_mailer/generic_message.text.erb:5 | |
| 5631 | 5629 | #: app/views/comment/notifier/mail_to_followers.html.erb:18 |
| 5632 | 5630 | #: app/views/comment/notifier/notification.text.erb:15 |
| 5633 | 5631 | #: app/views/user_mailer/activation_code.text.erb:5 |
| ... | ... | @@ -5641,11 +5639,8 @@ msgstr "Vert" |
| 5641 | 5639 | #: app/views/pending_task_notifier/notification.text.erb:24 |
| 5642 | 5640 | #: app/views/scrap/notifier/notification.text.erb:15 |
| 5643 | 5641 | #: app/views/person_notifier/mailer/content_summary.html.erb:15 |
| 5644 | -#: app/views/task_mailer/task_activated.text.erb:8 | |
| 5645 | -#: app/views/task_mailer/task_created.text.erb:8 | |
| 5646 | -#: app/views/task_mailer/task_finished.text.erb:8 | |
| 5642 | +#: app/views/task_mailer/generic_message.text.erb:8 | |
| 5647 | 5643 | #: app/views/task_mailer/target_notification.text.erb:9 |
| 5648 | -#: app/views/task_mailer/task_cancelled.text.erb:8 | |
| 5649 | 5644 | #: app/views/comment/notifier/mail_to_followers.html.erb:21 |
| 5650 | 5645 | #: app/views/comment/notifier/notification.text.erb:18 |
| 5651 | 5646 | #: app/views/user_mailer/activation_code.text.erb:8 |
| ... | ... | @@ -6159,7 +6154,7 @@ msgstr "Vous n'avez pas encore de contact." |
| 6159 | 6154 | |
| 6160 | 6155 | #: app/views/friends/index.html.erb:10 |
| 6161 | 6156 | msgid "Do you want to see other people in this environment?" |
| 6162 | -msgstr "Voulez -vous voir d'autres personnes de cet environnement" | |
| 6157 | +msgstr "Voulez -vous voir d'autres personnes de cet environnement?" | |
| 6163 | 6158 | |
| 6164 | 6159 | #: app/views/friends/index.html.erb:16 app/views/friends/index.html.erb:47 |
| 6165 | 6160 | msgid "Find people" |
| ... | ... | @@ -6392,7 +6387,7 @@ msgstr "Date de naissance" |
| 6392 | 6387 | msgid "Address (street and number)" |
| 6393 | 6388 | msgstr "Adresse (n° et rue)" |
| 6394 | 6389 | |
| 6395 | -#: app/views/profile_editor/_person_form.html.erb:54 | |
| 6390 | +#: app/views/profile_editor/_person_form.html.erb:58 | |
| 6396 | 6391 | #, fuzzy |
| 6397 | 6392 | msgid "Custom formation" |
| 6398 | 6393 | msgstr "Formation (autre)" |
| ... | ... | @@ -7028,10 +7023,6 @@ msgstr "Nouveau %s" |
| 7028 | 7023 | msgid "View more" |
| 7029 | 7024 | msgstr "Voir le profil" |
| 7030 | 7025 | |
| 7031 | -#: app/views/home/index.html.erb:65 | |
| 7032 | -msgid "More options" | |
| 7033 | -msgstr "Plus d'options" | |
| 7034 | - | |
| 7035 | 7026 | #: app/views/features/_manage_enterprise_fields.html.erb:5 |
| 7036 | 7027 | #: app/views/features/_manage_community_fields.html.erb:5 |
| 7037 | 7028 | #: app/views/features/_manage_person_fields.html.erb:5 |
| ... | ... | @@ -7196,11 +7187,12 @@ msgstr "Êtes-vous sûr(e) de vouloir sortir ?" |
| 7196 | 7187 | msgid "Create a new role" |
| 7197 | 7188 | msgstr "Créer un nouveau groupe" |
| 7198 | 7189 | |
| 7199 | -#: app/views/role/_form.html.erb:9 | |
| 7200 | -msgid "Permissions:" | |
| 7190 | +#: app/views/role/_form.html.erb:11 | |
| 7191 | +#, fuzzy | |
| 7192 | +msgid "%s Permissions:" | |
| 7201 | 7193 | msgstr "Permissions :" |
| 7202 | 7194 | |
| 7203 | -#: app/views/role/_form.html.erb:16 | |
| 7195 | +#: app/views/role/_form.html.erb:20 | |
| 7204 | 7196 | msgid "Create role" |
| 7205 | 7197 | msgstr "Créer un rôle" |
| 7206 | 7198 | |
| ... | ... | @@ -8210,10 +8202,7 @@ msgstr "" |
| 8210 | 8202 | msgid "Unblock" |
| 8211 | 8203 | msgstr "bloc" |
| 8212 | 8204 | |
| 8213 | -#: app/views/task_mailer/task_activated.text.erb:1 | |
| 8214 | -#: app/views/task_mailer/task_created.text.erb:1 | |
| 8215 | -#: app/views/task_mailer/task_finished.text.erb:1 | |
| 8216 | -#: app/views/task_mailer/task_cancelled.text.erb:1 | |
| 8205 | +#: app/views/task_mailer/generic_message.text.erb:1 | |
| 8217 | 8206 | msgid "Dear %s," |
| 8218 | 8207 | msgstr "Cher/chère %s," |
| 8219 | 8208 | |
| ... | ... | @@ -8499,7 +8488,7 @@ msgstr "partie 2 sur 2" |
| 8499 | 8488 | |
| 8500 | 8489 | #: app/views/account/accept_terms.html.erb:14 |
| 8501 | 8490 | msgid " part 2 of 3" |
| 8502 | -msgstr "partie 2 sur 3" | |
| 8491 | +msgstr " partie 2 sur 3" | |
| 8503 | 8492 | |
| 8504 | 8493 | #: app/views/account/accept_terms.html.erb:22 |
| 8505 | 8494 | msgid "I read the terms of use and accepted them" |
| ... | ... | @@ -10501,7 +10490,7 @@ msgid "Configurations could not be saved" |
| 10501 | 10490 | msgstr "Bloc d'information de profil" |
| 10502 | 10491 | |
| 10503 | 10492 | #: plugins/send_email/controllers/send_email_plugin_base_controller.rb:16 |
| 10504 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:1 | |
| 10493 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:1 | |
| 10505 | 10494 | #, fuzzy |
| 10506 | 10495 | msgid "Message sent" |
| 10507 | 10496 | msgstr "Message" |
| ... | ... | @@ -10763,12 +10752,12 @@ msgstr "Bloc d'information de profil" |
| 10763 | 10752 | |
| 10764 | 10753 | #: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:26 |
| 10765 | 10754 | #, fuzzy |
| 10766 | -msgid "\"Custom form #{@form.name} was successfully created.\"" | |
| 10755 | +msgid "Custom form %s was successfully created." | |
| 10767 | 10756 | msgstr "Le commentaire a bien été effacé" |
| 10768 | 10757 | |
| 10769 | 10758 | #: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:46 |
| 10770 | 10759 | #, fuzzy |
| 10771 | -msgid "\"Custom form #{@form.name} was successfully updated.\"" | |
| 10760 | +msgid "Custom form %s was successfully updated." | |
| 10772 | 10761 | msgstr "Le commentaire a bien été effacé" |
| 10773 | 10762 | |
| 10774 | 10763 | #: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:49 |
| ... | ... | @@ -10795,22 +10784,17 @@ msgstr "" |
| 10795 | 10784 | msgid "Submission could not be saved" |
| 10796 | 10785 | msgstr "Bloc d'information de profil" |
| 10797 | 10786 | |
| 10798 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 10787 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 10799 | 10788 | #, fuzzy |
| 10800 | 10789 | msgid "To" |
| 10801 | 10790 | msgstr "Pour : " |
| 10802 | 10791 | |
| 10803 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:7 | |
| 10804 | -#, fuzzy | |
| 10805 | -msgid "New mail" | |
| 10806 | -msgstr "courrier électronique" | |
| 10807 | - | |
| 10808 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:19 | |
| 10792 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:24 | |
| 10809 | 10793 | #, fuzzy |
| 10810 | 10794 | msgid "'%s' isn't a valid e-mail address" |
| 10811 | 10795 | msgstr "Entrez une adresse e-mail valide SVP." |
| 10812 | 10796 | |
| 10813 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:26 | |
| 10797 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:31 | |
| 10814 | 10798 | msgid "'%s' address is not allowed (see SendEmailPlugin config)" |
| 10815 | 10799 | msgstr "" |
| 10816 | 10800 | |
| ... | ... | @@ -11035,6 +11019,33 @@ msgstr "Prix : %s" |
| 11035 | 11019 | msgid "A plugin to enable the video suport, with auto conversion for the web." |
| 11036 | 11020 | msgstr "" |
| 11037 | 11021 | |
| 11022 | +#: plugins/lattes_curriculum/lib/html_parser.rb:19 | |
| 11023 | +msgid "Lattes not found. Please, make sure the informed URL is correct." | |
| 11024 | +msgstr "" | |
| 11025 | + | |
| 11026 | +#: plugins/lattes_curriculum/lib/html_parser.rb:21 | |
| 11027 | +msgid "Lattes Platform is unreachable. Please, try it later." | |
| 11028 | +msgstr "" | |
| 11029 | + | |
| 11030 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:8 | |
| 11031 | +msgid "A plugin that imports the lattes curriculum into the users profiles" | |
| 11032 | +msgstr "" | |
| 11033 | + | |
| 11034 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:40 | |
| 11035 | +msgid "Lattes" | |
| 11036 | +msgstr "" | |
| 11037 | + | |
| 11038 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:73 | |
| 11039 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:106 | |
| 11040 | +#, fuzzy | |
| 11041 | +msgid " Invalid lattes url" | |
| 11042 | +msgstr "Adresse" | |
| 11043 | + | |
| 11044 | +#: plugins/lattes_curriculum/lib/academic_info.rb:10 | |
| 11045 | +#, fuzzy | |
| 11046 | +msgid " is invalid." | |
| 11047 | +msgstr "%{fn} est invalide." | |
| 11048 | + | |
| 11038 | 11049 | #: plugins/bsc/lib/bsc_plugin.rb:10 |
| 11039 | 11050 | #, fuzzy |
| 11040 | 11051 | msgid "Adds the Bsc feature" |
| ... | ... | @@ -11543,7 +11554,7 @@ msgstr "" |
| 11543 | 11554 | msgid "A plugin that add remote user support." |
| 11544 | 11555 | msgstr "Un bloc qui affiche vos groupes" |
| 11545 | 11556 | |
| 11546 | -#: plugins/remote_user/lib/remote_user_plugin.rb:45 | |
| 11557 | +#: plugins/remote_user/lib/remote_user_plugin.rb:55 | |
| 11547 | 11558 | #, fuzzy |
| 11548 | 11559 | msgid "Could not create the remote_user." |
| 11549 | 11560 | msgstr "Impossible de créer le matériau brut" |
| ... | ... | @@ -11817,16 +11828,6 @@ msgstr "Activation de l'entreprise «%s»" |
| 11817 | 11828 | msgid "Manage Forms" |
| 11818 | 11829 | msgstr "Gérer" |
| 11819 | 11830 | |
| 11820 | -#: plugins/send_email/views/send_email_plugin/fail.rhtml:1 | |
| 11821 | -#, fuzzy | |
| 11822 | -msgid "The message could not be sent" | |
| 11823 | -msgstr "Ce fichier n'a pas pu être sauvegardé" | |
| 11824 | - | |
| 11825 | -#: plugins/send_email/views/send_email_plugin/sender/message.rhtml:1 | |
| 11826 | -#, fuzzy | |
| 11827 | -msgid "Contact from %s" | |
| 11828 | -msgstr "Contactez %s" | |
| 11829 | - | |
| 11830 | 11831 | #: plugins/google_analytics/views/profile-editor-extras.rhtml:4 |
| 11831 | 11832 | msgid "Google Analytics Profile ID" |
| 11832 | 11833 | msgstr "" |
| ... | ... | @@ -11840,6 +11841,16 @@ msgstr "" |
| 11840 | 11841 | msgid "Applied filters" |
| 11841 | 11842 | msgstr "Téléverser (upload) des fichiers" |
| 11842 | 11843 | |
| 11844 | +#: plugins/send_email/views/send_email_plugin/sender/message.html.erb:1 | |
| 11845 | +#, fuzzy | |
| 11846 | +msgid "Contact from %s" | |
| 11847 | +msgstr "Contactez %s" | |
| 11848 | + | |
| 11849 | +#: plugins/send_email/views/send_email_plugin/fail.html.erb:1 | |
| 11850 | +#, fuzzy | |
| 11851 | +msgid "The message could not be sent" | |
| 11852 | +msgstr "Ce fichier n'a pas pu être sauvegardé" | |
| 11853 | + | |
| 11843 | 11854 | #: plugins/send_email/views/send_email_plugin_admin/index.html.erb:1 |
| 11844 | 11855 | msgid "SendEmailPlugin's config" |
| 11845 | 11856 | msgstr "" |
| ... | ... | @@ -13321,6 +13332,13 @@ msgstr "Êtes-vous sûr(e) de vouloir ôter cet élément ?" |
| 13321 | 13332 | msgid "Add a new form" |
| 13322 | 13333 | msgstr "Une entreprise" |
| 13323 | 13334 | |
| 13335 | +#~ msgid "More options" | |
| 13336 | +#~ msgstr "Plus d'options" | |
| 13337 | + | |
| 13338 | +#, fuzzy | |
| 13339 | +#~ msgid "New mail" | |
| 13340 | +#~ msgstr "courrier électronique" | |
| 13341 | + | |
| 13324 | 13342 | #, fuzzy |
| 13325 | 13343 | #~ msgid "ZIP code:" |
| 13326 | 13344 | #~ msgstr "Code postal" |
| ... | ... | @@ -14475,9 +14493,6 @@ msgstr "Une entreprise" |
| 14475 | 14493 | #~ msgid "Disable CMS" |
| 14476 | 14494 | #~ msgstr "Désactiver le système de gestion de contenu" |
| 14477 | 14495 | |
| 14478 | -#~ msgid "%{fn} is invalid." | |
| 14479 | -#~ msgstr "%{fn} est invalide." | |
| 14480 | - | |
| 14481 | 14496 | #, fuzzy |
| 14482 | 14497 | #~ msgid "Project successfully registered" |
| 14483 | 14498 | #~ msgstr "Le produit a bien été créé" | ... | ... |
po/hy/noosfero.po
| ... | ... | @@ -5,8 +5,8 @@ |
| 5 | 5 | # |
| 6 | 6 | msgid "" |
| 7 | 7 | msgstr "" |
| 8 | -"Project-Id-Version: 1.0~rc3\n" | |
| 9 | -"POT-Creation-Date: 2014-10-30 09:24-0300\n" | |
| 8 | +"Project-Id-Version: 1.0~rc4\n" | |
| 9 | +"POT-Creation-Date: 2014-12-18 17:22-0300\n" | |
| 10 | 10 | "PO-Revision-Date: 2009-10-26 16:20-0300\n" |
| 11 | 11 | "Last-Translator: Anahit Minassian <anahit.minassian@cooperation.net>\n" |
| 12 | 12 | "Language-Team: LANGUAGE <LL@li.org>\n" |
| ... | ... | @@ -583,7 +583,7 @@ msgid "have unsupported languages." |
| 583 | 583 | msgstr "" |
| 584 | 584 | |
| 585 | 585 | #: app/models/communities_block.rb:6 app/helpers/application_helper.rb:549 |
| 586 | -#: app/helpers/application_helper.rb:1082 app/helpers/search_helper.rb:12 | |
| 586 | +#: app/helpers/application_helper.rb:1084 app/helpers/search_helper.rb:12 | |
| 587 | 587 | #: app/helpers/assets_helper.rb:11 |
| 588 | 588 | #: app/controllers/public/search_controller.rb:53 |
| 589 | 589 | msgid "Communities" |
| ... | ... | @@ -760,24 +760,24 @@ msgstr "" |
| 760 | 760 | msgid "Nationality" |
| 761 | 761 | msgstr "" |
| 762 | 762 | |
| 763 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:32 | |
| 763 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:36 | |
| 764 | 764 | msgid "Schooling" |
| 765 | 765 | msgstr "" |
| 766 | 766 | |
| 767 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:58 | |
| 767 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:62 | |
| 768 | 768 | msgid "Area of study" |
| 769 | 769 | msgstr "" |
| 770 | 770 | |
| 771 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:65 | |
| 771 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:69 | |
| 772 | 772 | msgid "Professional activity" |
| 773 | 773 | msgstr "" |
| 774 | 774 | |
| 775 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:66 | |
| 775 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:70 | |
| 776 | 776 | msgid "Organization" |
| 777 | 777 | msgstr "Կազմակերպություն" |
| 778 | 778 | |
| 779 | 779 | #: app/models/person.rb:196 app/models/enterprise.rb:25 |
| 780 | -#: app/views/profile_editor/_person_form.html.erb:67 | |
| 780 | +#: app/views/profile_editor/_person_form.html.erb:71 | |
| 781 | 781 | msgid "Organization website" |
| 782 | 782 | msgstr "" |
| 783 | 783 | |
| ... | ... | @@ -786,7 +786,7 @@ msgid "Schooling status" |
| 786 | 786 | msgstr "" |
| 787 | 787 | |
| 788 | 788 | #: app/models/person.rb:202 app/helpers/profile_editor_helper.rb:26 |
| 789 | -#: app/views/profile_editor/_person_form.html.erb:51 | |
| 789 | +#: app/views/profile_editor/_person_form.html.erb:55 | |
| 790 | 790 | msgid "Education" |
| 791 | 791 | msgstr "Կրթություն" |
| 792 | 792 | |
| ... | ... | @@ -795,7 +795,7 @@ msgstr "Կրթություն" |
| 795 | 795 | msgid "Custom education" |
| 796 | 796 | msgstr "Կրթություն" |
| 797 | 797 | |
| 798 | -#: app/models/person.rb:202 app/views/profile_editor/_person_form.html.erb:61 | |
| 798 | +#: app/models/person.rb:202 app/views/profile_editor/_person_form.html.erb:65 | |
| 799 | 799 | msgid "Custom area of study" |
| 800 | 800 | msgstr "" |
| 801 | 801 | |
| ... | ... | @@ -1044,7 +1044,7 @@ msgstr "Էլ. հասցե" |
| 1044 | 1044 | msgid "{fn} must be checked in order to signup." |
| 1045 | 1045 | msgstr "%{fn} պետք է ստուգվի մուտք գործելու համար:" |
| 1046 | 1046 | |
| 1047 | -#: app/models/user.rb:251 | |
| 1047 | +#: app/models/user.rb:255 | |
| 1048 | 1048 | #, fuzzy |
| 1049 | 1049 | msgid "does not match." |
| 1050 | 1050 | msgstr "Մասնակից|Գաղտնաբառի հաստատում" |
| ... | ... | @@ -1578,7 +1578,7 @@ msgstr "Կառավարել" |
| 1578 | 1578 | msgid "To do list" |
| 1579 | 1579 | msgstr "Պիտակների ցուցակ" |
| 1580 | 1580 | |
| 1581 | -#: app/models/link_list_block.rb:35 app/helpers/application_helper.rb:914 | |
| 1581 | +#: app/models/link_list_block.rb:35 app/helpers/application_helper.rb:915 | |
| 1582 | 1582 | #, fuzzy |
| 1583 | 1583 | msgid "Chat" |
| 1584 | 1584 | msgstr "Ստեղծել" |
| ... | ... | @@ -1642,7 +1642,7 @@ msgstr "Վերնագիր" |
| 1642 | 1642 | msgid "description" |
| 1643 | 1643 | msgstr "Նկարագրություն" |
| 1644 | 1644 | |
| 1645 | -#: app/models/create_community.rb:38 app/helpers/application_helper.rb:1079 | |
| 1645 | +#: app/models/create_community.rb:38 app/helpers/application_helper.rb:1081 | |
| 1646 | 1646 | msgid "New community" |
| 1647 | 1647 | msgstr "" |
| 1648 | 1648 | |
| ... | ... | @@ -2427,8 +2427,8 @@ msgstr "" |
| 2427 | 2427 | |
| 2428 | 2428 | #: app/models/disabled_enterprise_message_block.rb:12 |
| 2429 | 2429 | #: app/mailers/contact.rb:23 |
| 2430 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 2431 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:5 | |
| 2430 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 2431 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:5 | |
| 2432 | 2432 | msgid "Message" |
| 2433 | 2433 | msgstr "" |
| 2434 | 2434 | |
| ... | ... | @@ -2665,11 +2665,11 @@ msgstr "Մուտքագրեք և սեղմեք «Enter» կոճակը" |
| 2665 | 2665 | msgid "Public" |
| 2666 | 2666 | msgstr "Հրապարակային" |
| 2667 | 2667 | |
| 2668 | -#: app/helpers/application_helper.rb:913 | |
| 2668 | +#: app/helpers/application_helper.rb:914 | |
| 2669 | 2669 | msgid "Online Manual" |
| 2670 | 2670 | msgstr "" |
| 2671 | 2671 | |
| 2672 | -#: app/helpers/application_helper.rb:961 app/views/home/index.html.erb:12 | |
| 2672 | +#: app/helpers/application_helper.rb:963 app/views/home/index.html.erb:12 | |
| 2673 | 2673 | #: plugins/display_content/lib/display_content_block.rb:141 |
| 2674 | 2674 | #: plugins/recent_content/views/blocks/recent_content_block.html.erb:26 |
| 2675 | 2675 | #: plugins/recent_content/views/blocks/recent_content_block.html.erb:35 |
| ... | ... | @@ -2677,109 +2677,109 @@ msgstr "" |
| 2677 | 2677 | msgid "Read more" |
| 2678 | 2678 | msgstr "Հեռացնել" |
| 2679 | 2679 | |
| 2680 | -#: app/helpers/application_helper.rb:1042 | |
| 2680 | +#: app/helpers/application_helper.rb:1044 | |
| 2681 | 2681 | #, fuzzy |
| 2682 | 2682 | msgid "contents|More recent" |
| 2683 | 2683 | msgstr "Համայնքներ" |
| 2684 | 2684 | |
| 2685 | -#: app/helpers/application_helper.rb:1043 | |
| 2685 | +#: app/helpers/application_helper.rb:1045 | |
| 2686 | 2686 | #, fuzzy |
| 2687 | 2687 | msgid "contents|More viewed" |
| 2688 | 2688 | msgstr "Համայնքներ" |
| 2689 | 2689 | |
| 2690 | -#: app/helpers/application_helper.rb:1044 | |
| 2690 | +#: app/helpers/application_helper.rb:1046 | |
| 2691 | 2691 | #, fuzzy |
| 2692 | 2692 | msgid "contents|Most commented" |
| 2693 | 2693 | msgstr "Համայնքներ" |
| 2694 | 2694 | |
| 2695 | -#: app/helpers/application_helper.rb:1047 app/views/cms/view.html.erb:20 | |
| 2695 | +#: app/helpers/application_helper.rb:1049 app/views/cms/view.html.erb:20 | |
| 2696 | 2696 | #, fuzzy |
| 2697 | 2697 | msgid "New content" |
| 2698 | 2698 | msgstr "Ամբողջ բովանդակությունը" |
| 2699 | 2699 | |
| 2700 | -#: app/helpers/application_helper.rb:1050 app/helpers/search_helper.rb:9 | |
| 2700 | +#: app/helpers/application_helper.rb:1052 app/helpers/search_helper.rb:9 | |
| 2701 | 2701 | #: app/controllers/public/search_controller.rb:54 |
| 2702 | 2702 | #, fuzzy |
| 2703 | 2703 | msgid "Contents" |
| 2704 | 2704 | msgstr "Բովանդակության տեսակ" |
| 2705 | 2705 | |
| 2706 | -#: app/helpers/application_helper.rb:1051 | |
| 2706 | +#: app/helpers/application_helper.rb:1053 | |
| 2707 | 2707 | #: app/views/comment/_comment_actions.html.erb:5 |
| 2708 | 2708 | #, fuzzy |
| 2709 | 2709 | msgid "Contents menu" |
| 2710 | 2710 | msgstr "Համայնքներ" |
| 2711 | 2711 | |
| 2712 | -#: app/helpers/application_helper.rb:1057 | |
| 2712 | +#: app/helpers/application_helper.rb:1059 | |
| 2713 | 2713 | #, fuzzy |
| 2714 | 2714 | msgid "people|More recent" |
| 2715 | 2715 | msgstr "Վերջին" |
| 2716 | 2716 | |
| 2717 | -#: app/helpers/application_helper.rb:1058 | |
| 2717 | +#: app/helpers/application_helper.rb:1060 | |
| 2718 | 2718 | #, fuzzy |
| 2719 | 2719 | msgid "people|More active" |
| 2720 | 2720 | msgstr "Ակտիվ" |
| 2721 | 2721 | |
| 2722 | -#: app/helpers/application_helper.rb:1059 | |
| 2722 | +#: app/helpers/application_helper.rb:1061 | |
| 2723 | 2723 | #, fuzzy |
| 2724 | 2724 | msgid "people|More popular" |
| 2725 | 2725 | msgstr "Մարդիկ և խմբեր" |
| 2726 | 2726 | |
| 2727 | -#: app/helpers/application_helper.rb:1062 | |
| 2727 | +#: app/helpers/application_helper.rb:1064 | |
| 2728 | 2728 | #, fuzzy |
| 2729 | 2729 | msgid "My friends" |
| 2730 | 2730 | msgstr "ընկերներ" |
| 2731 | 2731 | |
| 2732 | -#: app/helpers/application_helper.rb:1063 plugins/stoa/lib/stoa_plugin.rb:110 | |
| 2732 | +#: app/helpers/application_helper.rb:1065 plugins/stoa/lib/stoa_plugin.rb:110 | |
| 2733 | 2733 | #, fuzzy |
| 2734 | 2734 | msgid "Invite friends" |
| 2735 | 2735 | msgstr "Կառավարել ընկերներին" |
| 2736 | 2736 | |
| 2737 | -#: app/helpers/application_helper.rb:1066 app/helpers/search_helper.rb:11 | |
| 2737 | +#: app/helpers/application_helper.rb:1068 app/helpers/search_helper.rb:11 | |
| 2738 | 2738 | #: app/helpers/assets_helper.rb:8 |
| 2739 | 2739 | #: app/controllers/public/search_controller.rb:49 |
| 2740 | 2740 | #: plugins/people_block/lib/people_block.rb:4 |
| 2741 | 2741 | msgid "People" |
| 2742 | 2742 | msgstr "Մարդիկ" |
| 2743 | 2743 | |
| 2744 | -#: app/helpers/application_helper.rb:1067 | |
| 2744 | +#: app/helpers/application_helper.rb:1069 | |
| 2745 | 2745 | #, fuzzy |
| 2746 | 2746 | msgid "People menu" |
| 2747 | 2747 | msgstr "Մարդիկ" |
| 2748 | 2748 | |
| 2749 | -#: app/helpers/application_helper.rb:1073 | |
| 2749 | +#: app/helpers/application_helper.rb:1075 | |
| 2750 | 2750 | #, fuzzy |
| 2751 | 2751 | msgid "communities|More recent" |
| 2752 | 2752 | msgstr "Համայնքներ" |
| 2753 | 2753 | |
| 2754 | -#: app/helpers/application_helper.rb:1074 | |
| 2754 | +#: app/helpers/application_helper.rb:1076 | |
| 2755 | 2755 | #, fuzzy |
| 2756 | 2756 | msgid "communities|More active" |
| 2757 | 2757 | msgstr "Համայնքներ" |
| 2758 | 2758 | |
| 2759 | -#: app/helpers/application_helper.rb:1075 | |
| 2759 | +#: app/helpers/application_helper.rb:1077 | |
| 2760 | 2760 | #, fuzzy |
| 2761 | 2761 | msgid "communities|More popular" |
| 2762 | 2762 | msgstr "Համայնքներ" |
| 2763 | 2763 | |
| 2764 | -#: app/helpers/application_helper.rb:1078 | |
| 2765 | -#: app/helpers/application_helper.rb:1128 | |
| 2764 | +#: app/helpers/application_helper.rb:1080 | |
| 2765 | +#: app/helpers/application_helper.rb:1130 | |
| 2766 | 2766 | #, fuzzy |
| 2767 | 2767 | msgid "My communities" |
| 2768 | 2768 | msgstr "Համայնքներ" |
| 2769 | 2769 | |
| 2770 | -#: app/helpers/application_helper.rb:1083 | |
| 2770 | +#: app/helpers/application_helper.rb:1085 | |
| 2771 | 2771 | #, fuzzy |
| 2772 | 2772 | msgid "Communities menu" |
| 2773 | 2773 | msgstr "Համայնքներ" |
| 2774 | 2774 | |
| 2775 | -#: app/helpers/application_helper.rb:1088 | |
| 2775 | +#: app/helpers/application_helper.rb:1090 | |
| 2776 | 2776 | #: app/views/layouts/slideshow.html.erb:18 |
| 2777 | 2777 | #: app/views/blocks/slideshow.html.erb:17 |
| 2778 | 2778 | #: app/views/blocks/featured_products.html.erb:3 |
| 2779 | 2779 | msgid "Previous" |
| 2780 | 2780 | msgstr "Նախորդ" |
| 2781 | 2781 | |
| 2782 | -#: app/helpers/application_helper.rb:1088 app/helpers/forms_helper.rb:169 | |
| 2782 | +#: app/helpers/application_helper.rb:1090 app/helpers/forms_helper.rb:169 | |
| 2783 | 2783 | #: app/views/layouts/slideshow.html.erb:18 |
| 2784 | 2784 | #: app/views/enterprise_registration/basic_information.html.erb:40 |
| 2785 | 2785 | #: app/views/blocks/slideshow.html.erb:21 |
| ... | ... | @@ -2788,52 +2788,52 @@ msgstr "Նախորդ" |
| 2788 | 2788 | msgid "Next" |
| 2789 | 2789 | msgstr "Հաջորդ" |
| 2790 | 2790 | |
| 2791 | -#: app/helpers/application_helper.rb:1108 | |
| 2791 | +#: app/helpers/application_helper.rb:1110 | |
| 2792 | 2792 | #, fuzzy |
| 2793 | 2793 | msgid "See all" |
| 2794 | 2794 | msgstr "տեսնել բոլոր ..." |
| 2795 | 2795 | |
| 2796 | -#: app/helpers/application_helper.rb:1111 | |
| 2796 | +#: app/helpers/application_helper.rb:1113 | |
| 2797 | 2797 | msgid "<span>Manage</span> %s" |
| 2798 | 2798 | msgstr "" |
| 2799 | 2799 | |
| 2800 | -#: app/helpers/application_helper.rb:1111 | |
| 2800 | +#: app/helpers/application_helper.rb:1113 | |
| 2801 | 2801 | #: app/views/shared/user_menu.html.erb:26 |
| 2802 | 2802 | #: app/views/shared/_manage_link.html.erb:2 |
| 2803 | 2803 | #, fuzzy |
| 2804 | 2804 | msgid "Manage %s" |
| 2805 | 2805 | msgstr "Կառավարել" |
| 2806 | 2806 | |
| 2807 | -#: app/helpers/application_helper.rb:1122 | |
| 2807 | +#: app/helpers/application_helper.rb:1124 | |
| 2808 | 2808 | #, fuzzy |
| 2809 | 2809 | msgid "My enterprises" |
| 2810 | 2810 | msgstr "Բոլոր ձեռնարկությունները" |
| 2811 | 2811 | |
| 2812 | -#: app/helpers/application_helper.rb:1132 | |
| 2812 | +#: app/helpers/application_helper.rb:1134 | |
| 2813 | 2813 | #, fuzzy |
| 2814 | 2814 | msgid "Administration" |
| 2815 | 2815 | msgstr "Կառավարման վահանակ" |
| 2816 | 2816 | |
| 2817 | -#: app/helpers/application_helper.rb:1132 | |
| 2817 | +#: app/helpers/application_helper.rb:1134 | |
| 2818 | 2818 | #, fuzzy |
| 2819 | 2819 | msgid "Configure the environment" |
| 2820 | 2820 | msgstr "Անհատական էջ|Միջավայր" |
| 2821 | 2821 | |
| 2822 | -#: app/helpers/application_helper.rb:1139 | |
| 2822 | +#: app/helpers/application_helper.rb:1141 | |
| 2823 | 2823 | #, fuzzy |
| 2824 | 2824 | msgid "Manage your pending tasks" |
| 2825 | 2825 | msgstr "Կառավարել Ձեր բովանդակությունը:" |
| 2826 | 2826 | |
| 2827 | -#: app/helpers/application_helper.rb:1142 | |
| 2827 | +#: app/helpers/application_helper.rb:1144 | |
| 2828 | 2828 | msgid "<span class='welcome'>Welcome,</span> %s" |
| 2829 | 2829 | msgstr "" |
| 2830 | 2830 | |
| 2831 | -#: app/helpers/application_helper.rb:1142 | |
| 2831 | +#: app/helpers/application_helper.rb:1144 | |
| 2832 | 2832 | #, fuzzy |
| 2833 | 2833 | msgid "Go to your homepage" |
| 2834 | 2834 | msgstr "Գնալ Ձեր գլխավոր էջ" |
| 2835 | 2835 | |
| 2836 | -#: app/helpers/application_helper.rb:1147 | |
| 2836 | +#: app/helpers/application_helper.rb:1149 | |
| 2837 | 2837 | #: app/views/shared/user_menu.html.erb:37 |
| 2838 | 2838 | #: app/views/blocks/profile_info.html.erb:24 |
| 2839 | 2839 | #: app/views/blocks/profile_image.html.erb:21 |
| ... | ... | @@ -2842,97 +2842,97 @@ msgstr "Գնալ Ձեր գլխավոր էջ" |
| 2842 | 2842 | msgid "Control panel" |
| 2843 | 2843 | msgstr "Կառավարման վահանակ" |
| 2844 | 2844 | |
| 2845 | -#: app/helpers/application_helper.rb:1147 | |
| 2845 | +#: app/helpers/application_helper.rb:1149 | |
| 2846 | 2846 | msgid "Configure your personal account and content" |
| 2847 | 2847 | msgstr "" |
| 2848 | 2848 | |
| 2849 | -#: app/helpers/application_helper.rb:1149 | |
| 2849 | +#: app/helpers/application_helper.rb:1151 | |
| 2850 | 2850 | #: app/views/shared/user_menu.html.erb:45 |
| 2851 | 2851 | #: app/views/blocks/login_block.html.erb:9 |
| 2852 | 2852 | msgid "Logout" |
| 2853 | 2853 | msgstr "Դուրս գալ:" |
| 2854 | 2854 | |
| 2855 | -#: app/helpers/application_helper.rb:1149 | |
| 2855 | +#: app/helpers/application_helper.rb:1151 | |
| 2856 | 2856 | msgid "Leave the system" |
| 2857 | 2857 | msgstr "" |
| 2858 | 2858 | |
| 2859 | -#: app/helpers/application_helper.rb:1155 | |
| 2859 | +#: app/helpers/application_helper.rb:1157 | |
| 2860 | 2860 | msgid " characters left" |
| 2861 | 2861 | msgstr "" |
| 2862 | 2862 | |
| 2863 | -#: app/helpers/application_helper.rb:1156 | |
| 2863 | +#: app/helpers/application_helper.rb:1158 | |
| 2864 | 2864 | #, fuzzy |
| 2865 | 2865 | msgid "Limit of characters reached" |
| 2866 | 2866 | msgstr "Հոդվածների քանակի սահմանափակում" |
| 2867 | 2867 | |
| 2868 | -#: app/helpers/application_helper.rb:1182 | |
| 2869 | -#: app/helpers/application_helper.rb:1188 | |
| 2868 | +#: app/helpers/application_helper.rb:1184 | |
| 2869 | +#: app/helpers/application_helper.rb:1190 | |
| 2870 | 2870 | msgid "less than a minute" |
| 2871 | 2871 | msgstr "" |
| 2872 | 2872 | |
| 2873 | -#: app/helpers/application_helper.rb:1182 | |
| 2874 | -#: app/helpers/application_helper.rb:1189 | |
| 2873 | +#: app/helpers/application_helper.rb:1184 | |
| 2874 | +#: app/helpers/application_helper.rb:1191 | |
| 2875 | 2875 | msgid "1 minute" |
| 2876 | 2876 | msgstr "" |
| 2877 | 2877 | |
| 2878 | -#: app/helpers/application_helper.rb:1184 | |
| 2878 | +#: app/helpers/application_helper.rb:1186 | |
| 2879 | 2879 | msgid "less than 5 seconds" |
| 2880 | 2880 | msgstr "" |
| 2881 | 2881 | |
| 2882 | -#: app/helpers/application_helper.rb:1185 | |
| 2882 | +#: app/helpers/application_helper.rb:1187 | |
| 2883 | 2883 | msgid "less than 10 seconds" |
| 2884 | 2884 | msgstr "" |
| 2885 | 2885 | |
| 2886 | -#: app/helpers/application_helper.rb:1186 | |
| 2886 | +#: app/helpers/application_helper.rb:1188 | |
| 2887 | 2887 | msgid "less than 20 seconds" |
| 2888 | 2888 | msgstr "" |
| 2889 | 2889 | |
| 2890 | -#: app/helpers/application_helper.rb:1187 | |
| 2890 | +#: app/helpers/application_helper.rb:1189 | |
| 2891 | 2891 | msgid "half a minute" |
| 2892 | 2892 | msgstr "" |
| 2893 | 2893 | |
| 2894 | -#: app/helpers/application_helper.rb:1192 | |
| 2894 | +#: app/helpers/application_helper.rb:1194 | |
| 2895 | 2895 | #, fuzzy |
| 2896 | 2896 | msgid "%{distance} minutes ago" |
| 2897 | 2897 | msgstr "Հեռավորություն" |
| 2898 | 2898 | |
| 2899 | -#: app/helpers/application_helper.rb:1193 | |
| 2899 | +#: app/helpers/application_helper.rb:1195 | |
| 2900 | 2900 | msgid "about 1 hour ago" |
| 2901 | 2901 | msgstr "" |
| 2902 | 2902 | |
| 2903 | -#: app/helpers/application_helper.rb:1194 | |
| 2903 | +#: app/helpers/application_helper.rb:1196 | |
| 2904 | 2904 | #, fuzzy |
| 2905 | 2905 | msgid "about %{distance} hours ago" |
| 2906 | 2906 | msgstr "Հեռավորություն" |
| 2907 | 2907 | |
| 2908 | -#: app/helpers/application_helper.rb:1195 | |
| 2908 | +#: app/helpers/application_helper.rb:1197 | |
| 2909 | 2909 | msgid "1 day ago" |
| 2910 | 2910 | msgstr "" |
| 2911 | 2911 | |
| 2912 | -#: app/helpers/application_helper.rb:1196 | |
| 2912 | +#: app/helpers/application_helper.rb:1198 | |
| 2913 | 2913 | #, fuzzy |
| 2914 | 2914 | msgid "%{distance} days ago" |
| 2915 | 2915 | msgstr "Հեռավորություն" |
| 2916 | 2916 | |
| 2917 | -#: app/helpers/application_helper.rb:1214 | |
| 2917 | +#: app/helpers/application_helper.rb:1216 | |
| 2918 | 2918 | #, fuzzy |
| 2919 | 2919 | msgid "Source: %s" |
| 2920 | 2920 | msgstr "Գին %s" |
| 2921 | 2921 | |
| 2922 | -#: app/helpers/application_helper.rb:1247 | |
| 2922 | +#: app/helpers/application_helper.rb:1249 | |
| 2923 | 2923 | #: plugins/community_block/views/community_block.html.erb:17 |
| 2924 | 2924 | msgid "Report abuse" |
| 2925 | 2925 | msgstr "" |
| 2926 | 2926 | |
| 2927 | -#: app/helpers/application_helper.rb:1249 | |
| 2927 | +#: app/helpers/application_helper.rb:1251 | |
| 2928 | 2928 | msgid "You already reported this profile." |
| 2929 | 2929 | msgstr "" |
| 2930 | 2930 | |
| 2931 | -#: app/helpers/application_helper.rb:1250 | |
| 2931 | +#: app/helpers/application_helper.rb:1252 | |
| 2932 | 2932 | msgid "Report this profile for abusive behaviour" |
| 2933 | 2933 | msgstr "" |
| 2934 | 2934 | |
| 2935 | -#: app/helpers/application_helper.rb:1289 | |
| 2935 | +#: app/helpers/application_helper.rb:1292 | |
| 2936 | 2936 | #, fuzzy |
| 2937 | 2937 | msgid "" |
| 2938 | 2938 | "Are you sure that you want to remove the folder \"%s\"? Note that all the " |
| ... | ... | @@ -2941,31 +2941,31 @@ msgstr "" |
| 2941 | 2941 | "Վստա՞հ եք, որ ցանկանում եք հեռացնել այս թղթապանակը, այն հեռացնելով, կհեռացվի " |
| 2942 | 2942 | "նաև նրա ամբողջ պարունակությունը:" |
| 2943 | 2943 | |
| 2944 | -#: app/helpers/application_helper.rb:1291 | |
| 2944 | +#: app/helpers/application_helper.rb:1294 | |
| 2945 | 2945 | #, fuzzy |
| 2946 | 2946 | msgid "Are you sure that you want to remove the item \"%s\"?" |
| 2947 | 2947 | msgstr "Վստա՞ք եք, որ ցականում եք այն հեռացնել:" |
| 2948 | 2948 | |
| 2949 | -#: app/helpers/application_helper.rb:1319 | |
| 2949 | +#: app/helpers/application_helper.rb:1323 | |
| 2950 | 2950 | #, fuzzy |
| 2951 | 2951 | msgid "Profile organization" |
| 2952 | 2952 | msgstr "Մեկ կազմակերպություն" |
| 2953 | 2953 | |
| 2954 | -#: app/helpers/application_helper.rb:1320 | |
| 2954 | +#: app/helpers/application_helper.rb:1324 | |
| 2955 | 2955 | msgid "" |
| 2956 | 2956 | "Your profile will be created according to the selected template. Click on " |
| 2957 | 2957 | "the options to view them." |
| 2958 | 2958 | msgstr "" |
| 2959 | 2959 | |
| 2960 | -#: app/helpers/application_helper.rb:1355 | |
| 2960 | +#: app/helpers/application_helper.rb:1359 | |
| 2961 | 2961 | msgid "Errors while saving" |
| 2962 | 2962 | msgstr "" |
| 2963 | 2963 | |
| 2964 | -#: app/helpers/application_helper.rb:1365 | |
| 2964 | +#: app/helpers/application_helper.rb:1369 | |
| 2965 | 2965 | msgid "The content here is available to %s's friends only." |
| 2966 | 2966 | msgstr "" |
| 2967 | 2967 | |
| 2968 | -#: app/helpers/application_helper.rb:1368 | |
| 2968 | +#: app/helpers/application_helper.rb:1372 | |
| 2969 | 2969 | msgid "The contents in this profile is available to members only." |
| 2970 | 2970 | msgstr "" |
| 2971 | 2971 | |
| ... | ... | @@ -3792,7 +3792,7 @@ msgid "Wk" |
| 3792 | 3792 | msgstr "աշխատավայր" |
| 3793 | 3793 | |
| 3794 | 3794 | #: app/helpers/forms_helper.rb:248 |
| 3795 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 3795 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 3796 | 3796 | #: plugins/shopping_cart/views/shopping_cart_plugin_myprofile/reports.html.erb:11 |
| 3797 | 3797 | #, fuzzy |
| 3798 | 3798 | msgid "From" |
| ... | ... | @@ -4453,7 +4453,7 @@ msgid "Failed to edit role" |
| 4453 | 4453 | msgstr "Դերի փոփոխումը ձախողված է" |
| 4454 | 4454 | |
| 4455 | 4455 | #: app/controllers/admin/users_controller.rb:53 |
| 4456 | -#: app/controllers/my_profile/profile_editor_controller.rb:74 | |
| 4456 | +#: app/controllers/my_profile/profile_editor_controller.rb:76 | |
| 4457 | 4457 | #, fuzzy |
| 4458 | 4458 | msgid "The profile was deleted." |
| 4459 | 4459 | msgstr "Այս անհատական էջը" |
| ... | ... | @@ -4464,12 +4464,12 @@ msgid "Could not remove profile" |
| 4464 | 4464 | msgstr "Ձեռնարկության թարմացումն անհնար է:" |
| 4465 | 4465 | |
| 4466 | 4466 | #: app/controllers/admin/users_controller.rb:95 |
| 4467 | -#: app/controllers/public/profile_controller.rb:363 | |
| 4467 | +#: app/controllers/public/profile_controller.rb:366 | |
| 4468 | 4468 | msgid "The e-mails are being sent" |
| 4469 | 4469 | msgstr "" |
| 4470 | 4470 | |
| 4471 | 4471 | #: app/controllers/admin/users_controller.rb:98 |
| 4472 | -#: app/controllers/public/profile_controller.rb:366 | |
| 4472 | +#: app/controllers/public/profile_controller.rb:369 | |
| 4473 | 4473 | #, fuzzy |
| 4474 | 4474 | msgid "Could not create the e-mail" |
| 4475 | 4475 | msgstr "Սկզբնական նյութի ստեղծումը ձախողված է" |
| ... | ... | @@ -4630,103 +4630,103 @@ msgstr "Այս անհատական էջը" |
| 4630 | 4630 | msgid "You couldn't mark this comment as spam." |
| 4631 | 4631 | msgstr "Վստա՞ք եք, որ ցականում եք այն հեռացնել:" |
| 4632 | 4632 | |
| 4633 | -#: app/controllers/public/profile_controller.rb:46 | |
| 4634 | -#: app/controllers/public/profile_controller.rb:47 | |
| 4633 | +#: app/controllers/public/profile_controller.rb:49 | |
| 4634 | +#: app/controllers/public/profile_controller.rb:50 | |
| 4635 | 4635 | #: app/views/profile/content_tagged.html.erb:3 |
| 4636 | 4636 | #, fuzzy |
| 4637 | 4637 | msgid "%s's contents tagged with \"%s\"" |
| 4638 | 4638 | msgstr "Հոդվածներում «%s» պիտակները" |
| 4639 | 4639 | |
| 4640 | -#: app/controllers/public/profile_controller.rb:91 | |
| 4640 | +#: app/controllers/public/profile_controller.rb:94 | |
| 4641 | 4641 | msgid "%s administrator still needs to accept you as member." |
| 4642 | 4642 | msgstr "%s դուք դեռևս ադմինիստրատորի կողմից հաստատման կարիք ունեք:" |
| 4643 | 4643 | |
| 4644 | -#: app/controllers/public/profile_controller.rb:93 | |
| 4644 | +#: app/controllers/public/profile_controller.rb:96 | |
| 4645 | 4645 | #, fuzzy |
| 4646 | 4646 | msgid "You just became a member of %s." |
| 4647 | 4647 | msgstr "%s-ը ցանկանում է %s-ի անդամ դառնալ:" |
| 4648 | 4648 | |
| 4649 | -#: app/controllers/public/profile_controller.rb:96 | |
| 4649 | +#: app/controllers/public/profile_controller.rb:99 | |
| 4650 | 4650 | #, fuzzy |
| 4651 | 4651 | msgid "You are already a member of %s." |
| 4652 | 4652 | msgstr "%s-ը ցանկանում է %s-ի անդամ դառնալ:" |
| 4653 | 4653 | |
| 4654 | -#: app/controllers/public/profile_controller.rb:118 | |
| 4654 | +#: app/controllers/public/profile_controller.rb:121 | |
| 4655 | 4655 | #, fuzzy |
| 4656 | 4656 | msgid "You are not a member of %s." |
| 4657 | 4657 | msgstr "%s-ը ցանկանում է %s-ի անդամ դառնալ:" |
| 4658 | 4658 | |
| 4659 | -#: app/controllers/public/profile_controller.rb:138 | |
| 4659 | +#: app/controllers/public/profile_controller.rb:141 | |
| 4660 | 4660 | msgid "%s still needs to accept being your friend." |
| 4661 | 4661 | msgstr "%s դեռ պետք է Ձեզ որպես իր ընկեր ընդունի:" |
| 4662 | 4662 | |
| 4663 | -#: app/controllers/public/profile_controller.rb:140 | |
| 4663 | +#: app/controllers/public/profile_controller.rb:143 | |
| 4664 | 4664 | #, fuzzy |
| 4665 | 4665 | msgid "You are already a friend of %s." |
| 4666 | 4666 | msgstr "%s-ը ցանկանում է %s-ի անդամ դառնալ:" |
| 4667 | 4667 | |
| 4668 | -#: app/controllers/public/profile_controller.rb:159 | |
| 4668 | +#: app/controllers/public/profile_controller.rb:162 | |
| 4669 | 4669 | #, fuzzy |
| 4670 | 4670 | msgid "You have unblocked %s successfully. " |
| 4671 | 4671 | msgstr "Ձեր գաղտնաբառը բարեհաջող փոխվել է:" |
| 4672 | 4672 | |
| 4673 | -#: app/controllers/public/profile_controller.rb:162 | |
| 4673 | +#: app/controllers/public/profile_controller.rb:165 | |
| 4674 | 4674 | #, fuzzy |
| 4675 | 4675 | msgid "You are not allowed to unblock enterprises in this environment." |
| 4676 | 4676 | msgstr "Դուք չեք կարող տեսնել տվյալ բովանդակությունը:" |
| 4677 | 4677 | |
| 4678 | -#: app/controllers/public/profile_controller.rb:174 | |
| 4678 | +#: app/controllers/public/profile_controller.rb:177 | |
| 4679 | 4679 | #, fuzzy |
| 4680 | 4680 | msgid "Message successfully sent." |
| 4681 | 4681 | msgstr "Էլ.փոստի պարամետրերը հաջողությամբ պահպանված են:" |
| 4682 | 4682 | |
| 4683 | -#: app/controllers/public/profile_controller.rb:174 | |
| 4683 | +#: app/controllers/public/profile_controller.rb:177 | |
| 4684 | 4684 | msgid "You can't leave an empty message." |
| 4685 | 4685 | msgstr "" |
| 4686 | 4686 | |
| 4687 | -#: app/controllers/public/profile_controller.rb:185 | |
| 4687 | +#: app/controllers/public/profile_controller.rb:188 | |
| 4688 | 4688 | #, fuzzy |
| 4689 | 4689 | msgid "Comment successfully added." |
| 4690 | 4690 | msgstr "Մեկնաբանությունը հաջողությամբ հեռացված է:" |
| 4691 | 4691 | |
| 4692 | -#: app/controllers/public/profile_controller.rb:185 | |
| 4692 | +#: app/controllers/public/profile_controller.rb:188 | |
| 4693 | 4693 | msgid "You can't leave an empty comment." |
| 4694 | 4694 | msgstr "" |
| 4695 | 4695 | |
| 4696 | -#: app/controllers/public/profile_controller.rb:276 | |
| 4696 | +#: app/controllers/public/profile_controller.rb:279 | |
| 4697 | 4697 | #, fuzzy |
| 4698 | 4698 | msgid "Notification successfully removed." |
| 4699 | 4699 | msgstr "Արտադրանքը հաջողությամբ հեռացված է" |
| 4700 | 4700 | |
| 4701 | -#: app/controllers/public/profile_controller.rb:278 | |
| 4701 | +#: app/controllers/public/profile_controller.rb:281 | |
| 4702 | 4702 | #, fuzzy |
| 4703 | 4703 | msgid "You could not remove this notification." |
| 4704 | 4704 | msgstr "Արտադրանքի հեռացումը ձախողված է" |
| 4705 | 4705 | |
| 4706 | -#: app/controllers/public/profile_controller.rb:311 | |
| 4706 | +#: app/controllers/public/profile_controller.rb:314 | |
| 4707 | 4707 | #, fuzzy |
| 4708 | 4708 | msgid "You could not answer the captcha." |
| 4709 | 4709 | msgstr "Արտադրանքի հեռացումը ձախողված է" |
| 4710 | 4710 | |
| 4711 | -#: app/controllers/public/profile_controller.rb:331 | |
| 4711 | +#: app/controllers/public/profile_controller.rb:334 | |
| 4712 | 4712 | msgid "" |
| 4713 | 4713 | "Your abuse report was registered. The administrators are reviewing your " |
| 4714 | 4714 | "report." |
| 4715 | 4715 | msgstr "" |
| 4716 | 4716 | |
| 4717 | -#: app/controllers/public/profile_controller.rb:339 | |
| 4717 | +#: app/controllers/public/profile_controller.rb:342 | |
| 4718 | 4718 | msgid "" |
| 4719 | 4719 | "Your report couldn't be saved due to some problem. Please contact the " |
| 4720 | 4720 | "administrator." |
| 4721 | 4721 | msgstr "" |
| 4722 | 4722 | |
| 4723 | -#: app/controllers/public/profile_controller.rb:402 | |
| 4723 | +#: app/controllers/public/profile_controller.rb:406 | |
| 4724 | 4724 | msgid "" |
| 4725 | 4725 | "This profile is inaccessible. You don't have the permission to view the " |
| 4726 | 4726 | "content here." |
| 4727 | 4727 | msgstr "" |
| 4728 | 4728 | |
| 4729 | -#: app/controllers/public/profile_controller.rb:402 | |
| 4729 | +#: app/controllers/public/profile_controller.rb:406 | |
| 4730 | 4730 | msgid "Oops ... you cannot go ahead here" |
| 4731 | 4731 | msgstr "" |
| 4732 | 4732 | |
| ... | ... | @@ -4808,15 +4808,15 @@ msgstr "Էջը չի գտնվել" |
| 4808 | 4808 | msgid "Address was updated successfully!" |
| 4809 | 4809 | msgstr "Առանձնահատկությունները հաջողությամբ թարմացված են:" |
| 4810 | 4810 | |
| 4811 | -#: app/controllers/my_profile/profile_editor_controller.rb:34 | |
| 4811 | +#: app/controllers/my_profile/profile_editor_controller.rb:36 | |
| 4812 | 4812 | msgid "%s was not enabled." |
| 4813 | 4813 | msgstr "%s ակտիվացված չէ:" |
| 4814 | 4814 | |
| 4815 | -#: app/controllers/my_profile/profile_editor_controller.rb:44 | |
| 4815 | +#: app/controllers/my_profile/profile_editor_controller.rb:46 | |
| 4816 | 4816 | msgid "%s was not disabled." |
| 4817 | 4817 | msgstr "%s դիզակտիվացված չէ:" |
| 4818 | 4818 | |
| 4819 | -#: app/controllers/my_profile/profile_editor_controller.rb:77 | |
| 4819 | +#: app/controllers/my_profile/profile_editor_controller.rb:79 | |
| 4820 | 4820 | #, fuzzy |
| 4821 | 4821 | msgid "Could not delete profile" |
| 4822 | 4822 | msgstr "Ձեռնարկության թարմացումն անհնար է:" |
| ... | ... | @@ -4912,8 +4912,8 @@ msgstr "Մեկ համայնք" |
| 4912 | 4912 | |
| 4913 | 4913 | #: app/mailers/contact.rb:23 |
| 4914 | 4914 | #: app/views/admin_panel/_signup_welcome_text.html.erb:6 |
| 4915 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 4916 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:4 | |
| 4915 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 4916 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:4 | |
| 4917 | 4917 | msgid "Subject" |
| 4918 | 4918 | msgstr "" |
| 4919 | 4919 | |
| ... | ... | @@ -4941,7 +4941,7 @@ msgstr "Փոփոխում %s" |
| 4941 | 4941 | #: app/views/features/_manage_enterprise_fields.html.erb:59 |
| 4942 | 4942 | #: app/views/features/_manage_community_fields.html.erb:59 |
| 4943 | 4943 | #: app/views/features/_manage_person_fields.html.erb:59 |
| 4944 | -#: app/views/features/index.html.erb:54 app/views/role/_form.html.erb:16 | |
| 4944 | +#: app/views/features/index.html.erb:54 app/views/role/_form.html.erb:20 | |
| 4945 | 4945 | #: app/views/profile_members/change_role.html.erb:17 |
| 4946 | 4946 | #: app/views/environment_role_manager/change_role.html.erb:11 |
| 4947 | 4947 | #: app/views/plugins/index.html.erb:30 |
| ... | ... | @@ -5449,8 +5449,8 @@ msgstr "" |
| 5449 | 5449 | #: app/views/enterprise_validation/list_processed.html.erb:3 |
| 5450 | 5450 | #: app/views/enterprise_validation/view_processed.html.erb:3 |
| 5451 | 5451 | #: app/views/manage_products/index.html.erb:29 |
| 5452 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:8 | |
| 5453 | -#: plugins/send_email/views/send_email_plugin/fail.rhtml:3 | |
| 5452 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:8 | |
| 5453 | +#: plugins/send_email/views/send_email_plugin/fail.html.erb:3 | |
| 5454 | 5454 | #: plugins/spaminator/views/spaminator_plugin_admin/reports.html.erb:33 |
| 5455 | 5455 | #: plugins/tolerance_time/views/tolerance_time_plugin_myprofile/index.html.erb:22 |
| 5456 | 5456 | msgid "Back" |
| ... | ... | @@ -5517,10 +5517,7 @@ msgstr "" |
| 5517 | 5517 | #: app/views/pending_task_notifier/notification.text.erb:21 |
| 5518 | 5518 | #: app/views/scrap/notifier/notification.text.erb:12 |
| 5519 | 5519 | #: app/views/person_notifier/mailer/content_summary.html.erb:12 |
| 5520 | -#: app/views/task_mailer/task_activated.text.erb:5 | |
| 5521 | -#: app/views/task_mailer/task_created.text.erb:5 | |
| 5522 | -#: app/views/task_mailer/task_finished.text.erb:5 | |
| 5523 | -#: app/views/task_mailer/task_cancelled.text.erb:5 | |
| 5520 | +#: app/views/task_mailer/generic_message.text.erb:5 | |
| 5524 | 5521 | #: app/views/comment/notifier/mail_to_followers.html.erb:18 |
| 5525 | 5522 | #: app/views/comment/notifier/notification.text.erb:15 |
| 5526 | 5523 | #: app/views/user_mailer/activation_code.text.erb:5 |
| ... | ... | @@ -5534,11 +5531,8 @@ msgstr "Կանաչ" |
| 5534 | 5531 | #: app/views/pending_task_notifier/notification.text.erb:24 |
| 5535 | 5532 | #: app/views/scrap/notifier/notification.text.erb:15 |
| 5536 | 5533 | #: app/views/person_notifier/mailer/content_summary.html.erb:15 |
| 5537 | -#: app/views/task_mailer/task_activated.text.erb:8 | |
| 5538 | -#: app/views/task_mailer/task_created.text.erb:8 | |
| 5539 | -#: app/views/task_mailer/task_finished.text.erb:8 | |
| 5534 | +#: app/views/task_mailer/generic_message.text.erb:8 | |
| 5540 | 5535 | #: app/views/task_mailer/target_notification.text.erb:9 |
| 5541 | -#: app/views/task_mailer/task_cancelled.text.erb:8 | |
| 5542 | 5536 | #: app/views/comment/notifier/mail_to_followers.html.erb:21 |
| 5543 | 5537 | #: app/views/comment/notifier/notification.text.erb:18 |
| 5544 | 5538 | #: app/views/user_mailer/activation_code.text.erb:8 |
| ... | ... | @@ -6269,7 +6263,7 @@ msgstr "Ծննդյան օր" |
| 6269 | 6263 | msgid "Address (street and number)" |
| 6270 | 6264 | msgstr "" |
| 6271 | 6265 | |
| 6272 | -#: app/views/profile_editor/_person_form.html.erb:54 | |
| 6266 | +#: app/views/profile_editor/_person_form.html.erb:58 | |
| 6273 | 6267 | #, fuzzy |
| 6274 | 6268 | msgid "Custom formation" |
| 6275 | 6269 | msgstr "Կրթություն" |
| ... | ... | @@ -6869,10 +6863,6 @@ msgstr "Նորություններ" |
| 6869 | 6863 | msgid "View more" |
| 6870 | 6864 | msgstr "Նայել անհատական էջը" |
| 6871 | 6865 | |
| 6872 | -#: app/views/home/index.html.erb:65 | |
| 6873 | -msgid "More options" | |
| 6874 | -msgstr "" | |
| 6875 | - | |
| 6876 | 6866 | #: app/views/features/_manage_enterprise_fields.html.erb:5 |
| 6877 | 6867 | #: app/views/features/_manage_community_fields.html.erb:5 |
| 6878 | 6868 | #: app/views/features/_manage_person_fields.html.erb:5 |
| ... | ... | @@ -7033,11 +7023,12 @@ msgstr "Վստա՞հ եք, որ ցանկանում եք դուրս գալ:" |
| 7033 | 7023 | msgid "Create a new role" |
| 7034 | 7024 | msgstr "Ստեղծել նոր համայնք" |
| 7035 | 7025 | |
| 7036 | -#: app/views/role/_form.html.erb:9 | |
| 7037 | -msgid "Permissions:" | |
| 7026 | +#: app/views/role/_form.html.erb:11 | |
| 7027 | +#, fuzzy | |
| 7028 | +msgid "%s Permissions:" | |
| 7038 | 7029 | msgstr "Թույլտվություններ" |
| 7039 | 7030 | |
| 7040 | -#: app/views/role/_form.html.erb:16 | |
| 7031 | +#: app/views/role/_form.html.erb:20 | |
| 7041 | 7032 | msgid "Create role" |
| 7042 | 7033 | msgstr "Դեր ստեղծել" |
| 7043 | 7034 | |
| ... | ... | @@ -8027,10 +8018,7 @@ msgstr "" |
| 8027 | 8018 | msgid "Unblock" |
| 8028 | 8019 | msgstr "բաժին" |
| 8029 | 8020 | |
| 8030 | -#: app/views/task_mailer/task_activated.text.erb:1 | |
| 8031 | -#: app/views/task_mailer/task_created.text.erb:1 | |
| 8032 | -#: app/views/task_mailer/task_finished.text.erb:1 | |
| 8033 | -#: app/views/task_mailer/task_cancelled.text.erb:1 | |
| 8021 | +#: app/views/task_mailer/generic_message.text.erb:1 | |
| 8034 | 8022 | msgid "Dear %s," |
| 8035 | 8023 | msgstr "Սիրելի %s," |
| 8036 | 8024 | |
| ... | ... | @@ -10221,7 +10209,7 @@ msgid "Configurations could not be saved" |
| 10221 | 10209 | msgstr "Անհանատական էջի տվյալների բաժին" |
| 10222 | 10210 | |
| 10223 | 10211 | #: plugins/send_email/controllers/send_email_plugin_base_controller.rb:16 |
| 10224 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:1 | |
| 10212 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:1 | |
| 10225 | 10213 | #, fuzzy |
| 10226 | 10214 | msgid "Message sent" |
| 10227 | 10215 | msgstr "Էլ.փոստի պարամետրերը հաջողությամբ պահպանված են:" |
| ... | ... | @@ -10483,12 +10471,12 @@ msgstr "Անհանատական էջի տվյալների բաժին" |
| 10483 | 10471 | |
| 10484 | 10472 | #: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:26 |
| 10485 | 10473 | #, fuzzy |
| 10486 | -msgid "\"Custom form #{@form.name} was successfully created.\"" | |
| 10474 | +msgid "Custom form %s was successfully created." | |
| 10487 | 10475 | msgstr "Մեկնաբանությունը հաջողությամբ հեռացված է:" |
| 10488 | 10476 | |
| 10489 | 10477 | #: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:46 |
| 10490 | 10478 | #, fuzzy |
| 10491 | -msgid "\"Custom form #{@form.name} was successfully updated.\"" | |
| 10479 | +msgid "Custom form %s was successfully updated." | |
| 10492 | 10480 | msgstr "Մեկնաբանությունը հաջողությամբ հեռացված է:" |
| 10493 | 10481 | |
| 10494 | 10482 | #: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:49 |
| ... | ... | @@ -10515,21 +10503,16 @@ msgstr "" |
| 10515 | 10503 | msgid "Submission could not be saved" |
| 10516 | 10504 | msgstr "Անհանատական էջի տվյալների բաժին" |
| 10517 | 10505 | |
| 10518 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 10506 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 10519 | 10507 | msgid "To" |
| 10520 | 10508 | msgstr "" |
| 10521 | 10509 | |
| 10522 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:7 | |
| 10523 | -#, fuzzy | |
| 10524 | -msgid "New mail" | |
| 10525 | -msgstr "էլ. հասցե" | |
| 10526 | - | |
| 10527 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:19 | |
| 10510 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:24 | |
| 10528 | 10511 | #, fuzzy |
| 10529 | 10512 | msgid "'%s' isn't a valid e-mail address" |
| 10530 | 10513 | msgstr "%{fn} մասնակցի անունը սխալ է:" |
| 10531 | 10514 | |
| 10532 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:26 | |
| 10515 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:31 | |
| 10533 | 10516 | msgid "'%s' address is not allowed (see SendEmailPlugin config)" |
| 10534 | 10517 | msgstr "" |
| 10535 | 10518 | |
| ... | ... | @@ -10747,6 +10730,33 @@ msgstr "Գին %s" |
| 10747 | 10730 | msgid "A plugin to enable the video suport, with auto conversion for the web." |
| 10748 | 10731 | msgstr "" |
| 10749 | 10732 | |
| 10733 | +#: plugins/lattes_curriculum/lib/html_parser.rb:19 | |
| 10734 | +msgid "Lattes not found. Please, make sure the informed URL is correct." | |
| 10735 | +msgstr "" | |
| 10736 | + | |
| 10737 | +#: plugins/lattes_curriculum/lib/html_parser.rb:21 | |
| 10738 | +msgid "Lattes Platform is unreachable. Please, try it later." | |
| 10739 | +msgstr "" | |
| 10740 | + | |
| 10741 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:8 | |
| 10742 | +msgid "A plugin that imports the lattes curriculum into the users profiles" | |
| 10743 | +msgstr "" | |
| 10744 | + | |
| 10745 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:40 | |
| 10746 | +msgid "Lattes" | |
| 10747 | +msgstr "" | |
| 10748 | + | |
| 10749 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:73 | |
| 10750 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:106 | |
| 10751 | +#, fuzzy | |
| 10752 | +msgid " Invalid lattes url" | |
| 10753 | +msgstr "Հասցե" | |
| 10754 | + | |
| 10755 | +#: plugins/lattes_curriculum/lib/academic_info.rb:10 | |
| 10756 | +#, fuzzy | |
| 10757 | +msgid " is invalid." | |
| 10758 | +msgstr "%{fn} սխալ է:" | |
| 10759 | + | |
| 10750 | 10760 | #: plugins/bsc/lib/bsc_plugin.rb:10 |
| 10751 | 10761 | #, fuzzy |
| 10752 | 10762 | msgid "Adds the Bsc feature" |
| ... | ... | @@ -11247,7 +11257,7 @@ msgstr "" |
| 11247 | 11257 | msgid "A plugin that add remote user support." |
| 11248 | 11258 | msgstr "Ձեր խմբերը ցուցադրող բաժին" |
| 11249 | 11259 | |
| 11250 | -#: plugins/remote_user/lib/remote_user_plugin.rb:45 | |
| 11260 | +#: plugins/remote_user/lib/remote_user_plugin.rb:55 | |
| 11251 | 11261 | #, fuzzy |
| 11252 | 11262 | msgid "Could not create the remote_user." |
| 11253 | 11263 | msgstr "Սկզբնական նյութի ստեղծումը ձախողված է" |
| ... | ... | @@ -11519,15 +11529,6 @@ msgstr "Ակտիվացնել «%s» ձեռնարկությունը" |
| 11519 | 11529 | msgid "Manage Forms" |
| 11520 | 11530 | msgstr "Կառավարել" |
| 11521 | 11531 | |
| 11522 | -#: plugins/send_email/views/send_email_plugin/fail.rhtml:1 | |
| 11523 | -msgid "The message could not be sent" | |
| 11524 | -msgstr "" | |
| 11525 | - | |
| 11526 | -#: plugins/send_email/views/send_email_plugin/sender/message.rhtml:1 | |
| 11527 | -#, fuzzy | |
| 11528 | -msgid "Contact from %s" | |
| 11529 | -msgstr "Կապ պահպանող անձ %s" | |
| 11530 | - | |
| 11531 | 11532 | #: plugins/google_analytics/views/profile-editor-extras.rhtml:4 |
| 11532 | 11533 | msgid "Google Analytics Profile ID" |
| 11533 | 11534 | msgstr "" |
| ... | ... | @@ -11541,6 +11542,15 @@ msgstr "" |
| 11541 | 11542 | msgid "Applied filters" |
| 11542 | 11543 | msgstr "Վերբեռնած ֆայլ" |
| 11543 | 11544 | |
| 11545 | +#: plugins/send_email/views/send_email_plugin/sender/message.html.erb:1 | |
| 11546 | +#, fuzzy | |
| 11547 | +msgid "Contact from %s" | |
| 11548 | +msgstr "Կապ պահպանող անձ %s" | |
| 11549 | + | |
| 11550 | +#: plugins/send_email/views/send_email_plugin/fail.html.erb:1 | |
| 11551 | +msgid "The message could not be sent" | |
| 11552 | +msgstr "" | |
| 11553 | + | |
| 11544 | 11554 | #: plugins/send_email/views/send_email_plugin_admin/index.html.erb:1 |
| 11545 | 11555 | msgid "SendEmailPlugin's config" |
| 11546 | 11556 | msgstr "" |
| ... | ... | @@ -12997,6 +13007,10 @@ msgstr "Վստա՞ք եք, որ ցականում եք այն հեռացնել:" |
| 12997 | 13007 | msgid "Add a new form" |
| 12998 | 13008 | msgstr "Մեկ ձեռնարկություն" |
| 12999 | 13009 | |
| 13010 | +#, fuzzy | |
| 13011 | +#~ msgid "New mail" | |
| 13012 | +#~ msgstr "էլ. հասցե" | |
| 13013 | + | |
| 13000 | 13014 | #~ msgid "Contact phone:" |
| 13001 | 13015 | #~ msgstr "Հեռախոս" |
| 13002 | 13016 | |
| ... | ... | @@ -13995,9 +14009,6 @@ msgstr "Մեկ ձեռնարկություն" |
| 13995 | 14009 | #~ msgid "read" |
| 13996 | 14010 | #~ msgstr "Տարածաշրջան %d" |
| 13997 | 14011 | |
| 13998 | -#~ msgid "%{fn} is invalid." | |
| 13999 | -#~ msgstr "%{fn} սխալ է:" | |
| 14000 | - | |
| 14001 | 14012 | #, fuzzy |
| 14002 | 14013 | #~ msgid "Project successfully registered" |
| 14003 | 14014 | #~ msgstr "Արտադրանքը հաջողությամբ ստեղծված է" | ... | ... |
po/it/noosfero.po
| ... | ... | @@ -3,20 +3,20 @@ |
| 3 | 3 | # This file is distributed under the same license as noosfero itself. |
| 4 | 4 | # Daniela Feitosa <danielafeitos@colivre.coop.br>, 2012. |
| 5 | 5 | # |
| 6 | -#, fuzzy | |
| 7 | 6 | msgid "" |
| 8 | 7 | msgstr "" |
| 9 | -"Project-Id-Version: 1.0~rc3\n" | |
| 10 | -"POT-Creation-Date: 2014-10-30 09:24-0300\n" | |
| 11 | -"PO-Revision-Date: 2012-06-05 10:27-0300\n" | |
| 12 | -"Last-Translator: Daniela Feitosa <danielafeitosa@colivre.coop.br>\n" | |
| 13 | -"Language-Team: LANGUAGE TEAM <LL@li.org>\n" | |
| 8 | +"Project-Id-Version: 1.0~rc4\n" | |
| 9 | +"POT-Creation-Date: 2014-12-18 17:22-0300\n" | |
| 10 | +"PO-Revision-Date: 2014-10-30 14:14+0200\n" | |
| 11 | +"Last-Translator: Michal Čihař <michal@cihar.com>\n" | |
| 12 | +"Language-Team: Italian <https://hosted.weblate.org/projects/noosfero/" | |
| 13 | +"noosfero/it/>\n" | |
| 14 | 14 | "Language: it\n" |
| 15 | 15 | "MIME-Version: 1.0\n" |
| 16 | 16 | "Content-Type: text/plain; charset=UTF-8\n" |
| 17 | 17 | "Content-Transfer-Encoding: 8bit\n" |
| 18 | -"Plural-Forms: nplurals=2; plural=(n != 1);\n" | |
| 19 | -"Plural-Forms: nplurals=2; plural=(n != 1);\n" | |
| 18 | +"Plural-Forms: nplurals=2; plural=n != 1;\n" | |
| 19 | +"X-Generator: Weblate 2.0-dev\n" | |
| 20 | 20 | |
| 21 | 21 | #: app/models/approve_comment.rb:17 |
| 22 | 22 | msgid "Anonymous" |
| ... | ... | @@ -531,7 +531,7 @@ msgid "have unsupported languages." |
| 531 | 531 | msgstr "" |
| 532 | 532 | |
| 533 | 533 | #: app/models/communities_block.rb:6 app/helpers/application_helper.rb:549 |
| 534 | -#: app/helpers/application_helper.rb:1082 app/helpers/search_helper.rb:12 | |
| 534 | +#: app/helpers/application_helper.rb:1084 app/helpers/search_helper.rb:12 | |
| 535 | 535 | #: app/helpers/assets_helper.rb:11 |
| 536 | 536 | #: app/controllers/public/search_controller.rb:53 |
| 537 | 537 | msgid "Communities" |
| ... | ... | @@ -700,24 +700,24 @@ msgstr "" |
| 700 | 700 | msgid "Nationality" |
| 701 | 701 | msgstr "" |
| 702 | 702 | |
| 703 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:32 | |
| 703 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:36 | |
| 704 | 704 | msgid "Schooling" |
| 705 | 705 | msgstr "" |
| 706 | 706 | |
| 707 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:58 | |
| 707 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:62 | |
| 708 | 708 | msgid "Area of study" |
| 709 | 709 | msgstr "" |
| 710 | 710 | |
| 711 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:65 | |
| 711 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:69 | |
| 712 | 712 | msgid "Professional activity" |
| 713 | 713 | msgstr "" |
| 714 | 714 | |
| 715 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:66 | |
| 715 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:70 | |
| 716 | 716 | msgid "Organization" |
| 717 | 717 | msgstr "" |
| 718 | 718 | |
| 719 | 719 | #: app/models/person.rb:196 app/models/enterprise.rb:25 |
| 720 | -#: app/views/profile_editor/_person_form.html.erb:67 | |
| 720 | +#: app/views/profile_editor/_person_form.html.erb:71 | |
| 721 | 721 | msgid "Organization website" |
| 722 | 722 | msgstr "" |
| 723 | 723 | |
| ... | ... | @@ -726,7 +726,7 @@ msgid "Schooling status" |
| 726 | 726 | msgstr "" |
| 727 | 727 | |
| 728 | 728 | #: app/models/person.rb:202 app/helpers/profile_editor_helper.rb:26 |
| 729 | -#: app/views/profile_editor/_person_form.html.erb:51 | |
| 729 | +#: app/views/profile_editor/_person_form.html.erb:55 | |
| 730 | 730 | msgid "Education" |
| 731 | 731 | msgstr "" |
| 732 | 732 | |
| ... | ... | @@ -734,7 +734,7 @@ msgstr "" |
| 734 | 734 | msgid "Custom education" |
| 735 | 735 | msgstr "" |
| 736 | 736 | |
| 737 | -#: app/models/person.rb:202 app/views/profile_editor/_person_form.html.erb:61 | |
| 737 | +#: app/models/person.rb:202 app/views/profile_editor/_person_form.html.erb:65 | |
| 738 | 738 | msgid "Custom area of study" |
| 739 | 739 | msgstr "" |
| 740 | 740 | |
| ... | ... | @@ -962,7 +962,7 @@ msgstr "" |
| 962 | 962 | msgid "{fn} must be checked in order to signup." |
| 963 | 963 | msgstr "" |
| 964 | 964 | |
| 965 | -#: app/models/user.rb:251 | |
| 965 | +#: app/models/user.rb:255 | |
| 966 | 966 | msgid "does not match." |
| 967 | 967 | msgstr "" |
| 968 | 968 | |
| ... | ... | @@ -1466,7 +1466,7 @@ msgstr "" |
| 1466 | 1466 | msgid "To do list" |
| 1467 | 1467 | msgstr "" |
| 1468 | 1468 | |
| 1469 | -#: app/models/link_list_block.rb:35 app/helpers/application_helper.rb:914 | |
| 1469 | +#: app/models/link_list_block.rb:35 app/helpers/application_helper.rb:915 | |
| 1470 | 1470 | msgid "Chat" |
| 1471 | 1471 | msgstr "" |
| 1472 | 1472 | |
| ... | ... | @@ -1521,7 +1521,7 @@ msgstr "" |
| 1521 | 1521 | msgid "description" |
| 1522 | 1522 | msgstr "" |
| 1523 | 1523 | |
| 1524 | -#: app/models/create_community.rb:38 app/helpers/application_helper.rb:1079 | |
| 1524 | +#: app/models/create_community.rb:38 app/helpers/application_helper.rb:1081 | |
| 1525 | 1525 | msgid "New community" |
| 1526 | 1526 | msgstr "" |
| 1527 | 1527 | |
| ... | ... | @@ -2215,8 +2215,8 @@ msgstr "" |
| 2215 | 2215 | |
| 2216 | 2216 | #: app/models/disabled_enterprise_message_block.rb:12 |
| 2217 | 2217 | #: app/mailers/contact.rb:23 |
| 2218 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 2219 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:5 | |
| 2218 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 2219 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:5 | |
| 2220 | 2220 | msgid "Message" |
| 2221 | 2221 | msgstr "" |
| 2222 | 2222 | |
| ... | ... | @@ -2441,103 +2441,103 @@ msgstr "" |
| 2441 | 2441 | msgid "Public" |
| 2442 | 2442 | msgstr "" |
| 2443 | 2443 | |
| 2444 | -#: app/helpers/application_helper.rb:913 | |
| 2444 | +#: app/helpers/application_helper.rb:914 | |
| 2445 | 2445 | msgid "Online Manual" |
| 2446 | 2446 | msgstr "" |
| 2447 | 2447 | |
| 2448 | -#: app/helpers/application_helper.rb:961 app/views/home/index.html.erb:12 | |
| 2448 | +#: app/helpers/application_helper.rb:963 app/views/home/index.html.erb:12 | |
| 2449 | 2449 | #: plugins/display_content/lib/display_content_block.rb:141 |
| 2450 | 2450 | #: plugins/recent_content/views/blocks/recent_content_block.html.erb:26 |
| 2451 | 2451 | #: plugins/recent_content/views/blocks/recent_content_block.html.erb:35 |
| 2452 | 2452 | msgid "Read more" |
| 2453 | 2453 | msgstr "" |
| 2454 | 2454 | |
| 2455 | -#: app/helpers/application_helper.rb:1042 | |
| 2455 | +#: app/helpers/application_helper.rb:1044 | |
| 2456 | 2456 | msgid "contents|More recent" |
| 2457 | 2457 | msgstr "" |
| 2458 | 2458 | |
| 2459 | -#: app/helpers/application_helper.rb:1043 | |
| 2459 | +#: app/helpers/application_helper.rb:1045 | |
| 2460 | 2460 | msgid "contents|More viewed" |
| 2461 | 2461 | msgstr "" |
| 2462 | 2462 | |
| 2463 | -#: app/helpers/application_helper.rb:1044 | |
| 2463 | +#: app/helpers/application_helper.rb:1046 | |
| 2464 | 2464 | msgid "contents|Most commented" |
| 2465 | 2465 | msgstr "" |
| 2466 | 2466 | |
| 2467 | -#: app/helpers/application_helper.rb:1047 app/views/cms/view.html.erb:20 | |
| 2467 | +#: app/helpers/application_helper.rb:1049 app/views/cms/view.html.erb:20 | |
| 2468 | 2468 | msgid "New content" |
| 2469 | 2469 | msgstr "" |
| 2470 | 2470 | |
| 2471 | -#: app/helpers/application_helper.rb:1050 app/helpers/search_helper.rb:9 | |
| 2471 | +#: app/helpers/application_helper.rb:1052 app/helpers/search_helper.rb:9 | |
| 2472 | 2472 | #: app/controllers/public/search_controller.rb:54 |
| 2473 | 2473 | msgid "Contents" |
| 2474 | 2474 | msgstr "" |
| 2475 | 2475 | |
| 2476 | -#: app/helpers/application_helper.rb:1051 | |
| 2476 | +#: app/helpers/application_helper.rb:1053 | |
| 2477 | 2477 | #: app/views/comment/_comment_actions.html.erb:5 |
| 2478 | 2478 | msgid "Contents menu" |
| 2479 | 2479 | msgstr "" |
| 2480 | 2480 | |
| 2481 | -#: app/helpers/application_helper.rb:1057 | |
| 2481 | +#: app/helpers/application_helper.rb:1059 | |
| 2482 | 2482 | msgid "people|More recent" |
| 2483 | 2483 | msgstr "" |
| 2484 | 2484 | |
| 2485 | -#: app/helpers/application_helper.rb:1058 | |
| 2485 | +#: app/helpers/application_helper.rb:1060 | |
| 2486 | 2486 | msgid "people|More active" |
| 2487 | 2487 | msgstr "" |
| 2488 | 2488 | |
| 2489 | -#: app/helpers/application_helper.rb:1059 | |
| 2489 | +#: app/helpers/application_helper.rb:1061 | |
| 2490 | 2490 | msgid "people|More popular" |
| 2491 | 2491 | msgstr "" |
| 2492 | 2492 | |
| 2493 | -#: app/helpers/application_helper.rb:1062 | |
| 2493 | +#: app/helpers/application_helper.rb:1064 | |
| 2494 | 2494 | msgid "My friends" |
| 2495 | 2495 | msgstr "" |
| 2496 | 2496 | |
| 2497 | -#: app/helpers/application_helper.rb:1063 plugins/stoa/lib/stoa_plugin.rb:110 | |
| 2497 | +#: app/helpers/application_helper.rb:1065 plugins/stoa/lib/stoa_plugin.rb:110 | |
| 2498 | 2498 | msgid "Invite friends" |
| 2499 | 2499 | msgstr "" |
| 2500 | 2500 | |
| 2501 | -#: app/helpers/application_helper.rb:1066 app/helpers/search_helper.rb:11 | |
| 2501 | +#: app/helpers/application_helper.rb:1068 app/helpers/search_helper.rb:11 | |
| 2502 | 2502 | #: app/helpers/assets_helper.rb:8 |
| 2503 | 2503 | #: app/controllers/public/search_controller.rb:49 |
| 2504 | 2504 | #: plugins/people_block/lib/people_block.rb:4 |
| 2505 | 2505 | msgid "People" |
| 2506 | 2506 | msgstr "" |
| 2507 | 2507 | |
| 2508 | -#: app/helpers/application_helper.rb:1067 | |
| 2508 | +#: app/helpers/application_helper.rb:1069 | |
| 2509 | 2509 | msgid "People menu" |
| 2510 | 2510 | msgstr "" |
| 2511 | 2511 | |
| 2512 | -#: app/helpers/application_helper.rb:1073 | |
| 2512 | +#: app/helpers/application_helper.rb:1075 | |
| 2513 | 2513 | msgid "communities|More recent" |
| 2514 | 2514 | msgstr "" |
| 2515 | 2515 | |
| 2516 | -#: app/helpers/application_helper.rb:1074 | |
| 2516 | +#: app/helpers/application_helper.rb:1076 | |
| 2517 | 2517 | msgid "communities|More active" |
| 2518 | 2518 | msgstr "" |
| 2519 | 2519 | |
| 2520 | -#: app/helpers/application_helper.rb:1075 | |
| 2520 | +#: app/helpers/application_helper.rb:1077 | |
| 2521 | 2521 | msgid "communities|More popular" |
| 2522 | 2522 | msgstr "" |
| 2523 | 2523 | |
| 2524 | -#: app/helpers/application_helper.rb:1078 | |
| 2525 | -#: app/helpers/application_helper.rb:1128 | |
| 2524 | +#: app/helpers/application_helper.rb:1080 | |
| 2525 | +#: app/helpers/application_helper.rb:1130 | |
| 2526 | 2526 | msgid "My communities" |
| 2527 | 2527 | msgstr "" |
| 2528 | 2528 | |
| 2529 | -#: app/helpers/application_helper.rb:1083 | |
| 2529 | +#: app/helpers/application_helper.rb:1085 | |
| 2530 | 2530 | msgid "Communities menu" |
| 2531 | 2531 | msgstr "" |
| 2532 | 2532 | |
| 2533 | -#: app/helpers/application_helper.rb:1088 | |
| 2533 | +#: app/helpers/application_helper.rb:1090 | |
| 2534 | 2534 | #: app/views/layouts/slideshow.html.erb:18 |
| 2535 | 2535 | #: app/views/blocks/slideshow.html.erb:17 |
| 2536 | 2536 | #: app/views/blocks/featured_products.html.erb:3 |
| 2537 | 2537 | msgid "Previous" |
| 2538 | 2538 | msgstr "" |
| 2539 | 2539 | |
| 2540 | -#: app/helpers/application_helper.rb:1088 app/helpers/forms_helper.rb:169 | |
| 2540 | +#: app/helpers/application_helper.rb:1090 app/helpers/forms_helper.rb:169 | |
| 2541 | 2541 | #: app/views/layouts/slideshow.html.erb:18 |
| 2542 | 2542 | #: app/views/enterprise_registration/basic_information.html.erb:40 |
| 2543 | 2543 | #: app/views/blocks/slideshow.html.erb:21 |
| ... | ... | @@ -2546,45 +2546,45 @@ msgstr "" |
| 2546 | 2546 | msgid "Next" |
| 2547 | 2547 | msgstr "" |
| 2548 | 2548 | |
| 2549 | -#: app/helpers/application_helper.rb:1108 | |
| 2549 | +#: app/helpers/application_helper.rb:1110 | |
| 2550 | 2550 | msgid "See all" |
| 2551 | 2551 | msgstr "" |
| 2552 | 2552 | |
| 2553 | -#: app/helpers/application_helper.rb:1111 | |
| 2553 | +#: app/helpers/application_helper.rb:1113 | |
| 2554 | 2554 | msgid "<span>Manage</span> %s" |
| 2555 | 2555 | msgstr "" |
| 2556 | 2556 | |
| 2557 | -#: app/helpers/application_helper.rb:1111 | |
| 2557 | +#: app/helpers/application_helper.rb:1113 | |
| 2558 | 2558 | #: app/views/shared/user_menu.html.erb:26 |
| 2559 | 2559 | #: app/views/shared/_manage_link.html.erb:2 |
| 2560 | 2560 | msgid "Manage %s" |
| 2561 | 2561 | msgstr "" |
| 2562 | 2562 | |
| 2563 | -#: app/helpers/application_helper.rb:1122 | |
| 2563 | +#: app/helpers/application_helper.rb:1124 | |
| 2564 | 2564 | msgid "My enterprises" |
| 2565 | 2565 | msgstr "" |
| 2566 | 2566 | |
| 2567 | -#: app/helpers/application_helper.rb:1132 | |
| 2567 | +#: app/helpers/application_helper.rb:1134 | |
| 2568 | 2568 | msgid "Administration" |
| 2569 | 2569 | msgstr "" |
| 2570 | 2570 | |
| 2571 | -#: app/helpers/application_helper.rb:1132 | |
| 2571 | +#: app/helpers/application_helper.rb:1134 | |
| 2572 | 2572 | msgid "Configure the environment" |
| 2573 | 2573 | msgstr "" |
| 2574 | 2574 | |
| 2575 | -#: app/helpers/application_helper.rb:1139 | |
| 2575 | +#: app/helpers/application_helper.rb:1141 | |
| 2576 | 2576 | msgid "Manage your pending tasks" |
| 2577 | 2577 | msgstr "" |
| 2578 | 2578 | |
| 2579 | -#: app/helpers/application_helper.rb:1142 | |
| 2579 | +#: app/helpers/application_helper.rb:1144 | |
| 2580 | 2580 | msgid "<span class='welcome'>Welcome,</span> %s" |
| 2581 | 2581 | msgstr "" |
| 2582 | 2582 | |
| 2583 | -#: app/helpers/application_helper.rb:1142 | |
| 2583 | +#: app/helpers/application_helper.rb:1144 | |
| 2584 | 2584 | msgid "Go to your homepage" |
| 2585 | 2585 | msgstr "" |
| 2586 | 2586 | |
| 2587 | -#: app/helpers/application_helper.rb:1147 | |
| 2587 | +#: app/helpers/application_helper.rb:1149 | |
| 2588 | 2588 | #: app/views/shared/user_menu.html.erb:37 |
| 2589 | 2589 | #: app/views/blocks/profile_info.html.erb:24 |
| 2590 | 2590 | #: app/views/blocks/profile_image.html.erb:21 |
| ... | ... | @@ -2593,120 +2593,120 @@ msgstr "" |
| 2593 | 2593 | msgid "Control panel" |
| 2594 | 2594 | msgstr "" |
| 2595 | 2595 | |
| 2596 | -#: app/helpers/application_helper.rb:1147 | |
| 2596 | +#: app/helpers/application_helper.rb:1149 | |
| 2597 | 2597 | msgid "Configure your personal account and content" |
| 2598 | 2598 | msgstr "" |
| 2599 | 2599 | |
| 2600 | -#: app/helpers/application_helper.rb:1149 | |
| 2600 | +#: app/helpers/application_helper.rb:1151 | |
| 2601 | 2601 | #: app/views/shared/user_menu.html.erb:45 |
| 2602 | 2602 | #: app/views/blocks/login_block.html.erb:9 |
| 2603 | 2603 | msgid "Logout" |
| 2604 | 2604 | msgstr "" |
| 2605 | 2605 | |
| 2606 | -#: app/helpers/application_helper.rb:1149 | |
| 2606 | +#: app/helpers/application_helper.rb:1151 | |
| 2607 | 2607 | msgid "Leave the system" |
| 2608 | 2608 | msgstr "" |
| 2609 | 2609 | |
| 2610 | -#: app/helpers/application_helper.rb:1155 | |
| 2610 | +#: app/helpers/application_helper.rb:1157 | |
| 2611 | 2611 | msgid " characters left" |
| 2612 | 2612 | msgstr "" |
| 2613 | 2613 | |
| 2614 | -#: app/helpers/application_helper.rb:1156 | |
| 2614 | +#: app/helpers/application_helper.rb:1158 | |
| 2615 | 2615 | msgid "Limit of characters reached" |
| 2616 | 2616 | msgstr "" |
| 2617 | 2617 | |
| 2618 | -#: app/helpers/application_helper.rb:1182 | |
| 2619 | -#: app/helpers/application_helper.rb:1188 | |
| 2618 | +#: app/helpers/application_helper.rb:1184 | |
| 2619 | +#: app/helpers/application_helper.rb:1190 | |
| 2620 | 2620 | msgid "less than a minute" |
| 2621 | 2621 | msgstr "" |
| 2622 | 2622 | |
| 2623 | -#: app/helpers/application_helper.rb:1182 | |
| 2624 | -#: app/helpers/application_helper.rb:1189 | |
| 2623 | +#: app/helpers/application_helper.rb:1184 | |
| 2624 | +#: app/helpers/application_helper.rb:1191 | |
| 2625 | 2625 | msgid "1 minute" |
| 2626 | 2626 | msgstr "" |
| 2627 | 2627 | |
| 2628 | -#: app/helpers/application_helper.rb:1184 | |
| 2628 | +#: app/helpers/application_helper.rb:1186 | |
| 2629 | 2629 | msgid "less than 5 seconds" |
| 2630 | 2630 | msgstr "" |
| 2631 | 2631 | |
| 2632 | -#: app/helpers/application_helper.rb:1185 | |
| 2632 | +#: app/helpers/application_helper.rb:1187 | |
| 2633 | 2633 | msgid "less than 10 seconds" |
| 2634 | 2634 | msgstr "" |
| 2635 | 2635 | |
| 2636 | -#: app/helpers/application_helper.rb:1186 | |
| 2636 | +#: app/helpers/application_helper.rb:1188 | |
| 2637 | 2637 | msgid "less than 20 seconds" |
| 2638 | 2638 | msgstr "" |
| 2639 | 2639 | |
| 2640 | -#: app/helpers/application_helper.rb:1187 | |
| 2640 | +#: app/helpers/application_helper.rb:1189 | |
| 2641 | 2641 | msgid "half a minute" |
| 2642 | 2642 | msgstr "" |
| 2643 | 2643 | |
| 2644 | -#: app/helpers/application_helper.rb:1192 | |
| 2644 | +#: app/helpers/application_helper.rb:1194 | |
| 2645 | 2645 | msgid "%{distance} minutes ago" |
| 2646 | 2646 | msgstr "" |
| 2647 | 2647 | |
| 2648 | -#: app/helpers/application_helper.rb:1193 | |
| 2648 | +#: app/helpers/application_helper.rb:1195 | |
| 2649 | 2649 | msgid "about 1 hour ago" |
| 2650 | 2650 | msgstr "" |
| 2651 | 2651 | |
| 2652 | -#: app/helpers/application_helper.rb:1194 | |
| 2652 | +#: app/helpers/application_helper.rb:1196 | |
| 2653 | 2653 | msgid "about %{distance} hours ago" |
| 2654 | 2654 | msgstr "" |
| 2655 | 2655 | |
| 2656 | -#: app/helpers/application_helper.rb:1195 | |
| 2656 | +#: app/helpers/application_helper.rb:1197 | |
| 2657 | 2657 | msgid "1 day ago" |
| 2658 | 2658 | msgstr "" |
| 2659 | 2659 | |
| 2660 | -#: app/helpers/application_helper.rb:1196 | |
| 2660 | +#: app/helpers/application_helper.rb:1198 | |
| 2661 | 2661 | msgid "%{distance} days ago" |
| 2662 | 2662 | msgstr "" |
| 2663 | 2663 | |
| 2664 | -#: app/helpers/application_helper.rb:1214 | |
| 2664 | +#: app/helpers/application_helper.rb:1216 | |
| 2665 | 2665 | msgid "Source: %s" |
| 2666 | 2666 | msgstr "" |
| 2667 | 2667 | |
| 2668 | -#: app/helpers/application_helper.rb:1247 | |
| 2668 | +#: app/helpers/application_helper.rb:1249 | |
| 2669 | 2669 | #: plugins/community_block/views/community_block.html.erb:17 |
| 2670 | 2670 | msgid "Report abuse" |
| 2671 | 2671 | msgstr "" |
| 2672 | 2672 | |
| 2673 | -#: app/helpers/application_helper.rb:1249 | |
| 2673 | +#: app/helpers/application_helper.rb:1251 | |
| 2674 | 2674 | msgid "You already reported this profile." |
| 2675 | 2675 | msgstr "" |
| 2676 | 2676 | |
| 2677 | -#: app/helpers/application_helper.rb:1250 | |
| 2677 | +#: app/helpers/application_helper.rb:1252 | |
| 2678 | 2678 | msgid "Report this profile for abusive behaviour" |
| 2679 | 2679 | msgstr "" |
| 2680 | 2680 | |
| 2681 | -#: app/helpers/application_helper.rb:1289 | |
| 2681 | +#: app/helpers/application_helper.rb:1292 | |
| 2682 | 2682 | msgid "" |
| 2683 | 2683 | "Are you sure that you want to remove the folder \"%s\"? Note that all the " |
| 2684 | 2684 | "items inside it will also be removed!" |
| 2685 | 2685 | msgstr "" |
| 2686 | 2686 | |
| 2687 | -#: app/helpers/application_helper.rb:1291 | |
| 2687 | +#: app/helpers/application_helper.rb:1294 | |
| 2688 | 2688 | msgid "Are you sure that you want to remove the item \"%s\"?" |
| 2689 | 2689 | msgstr "" |
| 2690 | 2690 | |
| 2691 | -#: app/helpers/application_helper.rb:1319 | |
| 2691 | +#: app/helpers/application_helper.rb:1323 | |
| 2692 | 2692 | msgid "Profile organization" |
| 2693 | 2693 | msgstr "" |
| 2694 | 2694 | |
| 2695 | -#: app/helpers/application_helper.rb:1320 | |
| 2695 | +#: app/helpers/application_helper.rb:1324 | |
| 2696 | 2696 | msgid "" |
| 2697 | 2697 | "Your profile will be created according to the selected template. Click on " |
| 2698 | 2698 | "the options to view them." |
| 2699 | 2699 | msgstr "" |
| 2700 | 2700 | |
| 2701 | -#: app/helpers/application_helper.rb:1355 | |
| 2701 | +#: app/helpers/application_helper.rb:1359 | |
| 2702 | 2702 | msgid "Errors while saving" |
| 2703 | 2703 | msgstr "" |
| 2704 | 2704 | |
| 2705 | -#: app/helpers/application_helper.rb:1365 | |
| 2705 | +#: app/helpers/application_helper.rb:1369 | |
| 2706 | 2706 | msgid "The content here is available to %s's friends only." |
| 2707 | 2707 | msgstr "" |
| 2708 | 2708 | |
| 2709 | -#: app/helpers/application_helper.rb:1368 | |
| 2709 | +#: app/helpers/application_helper.rb:1372 | |
| 2710 | 2710 | msgid "The contents in this profile is available to members only." |
| 2711 | 2711 | msgstr "" |
| 2712 | 2712 | |
| ... | ... | @@ -3451,7 +3451,7 @@ msgid "Wk" |
| 3451 | 3451 | msgstr "" |
| 3452 | 3452 | |
| 3453 | 3453 | #: app/helpers/forms_helper.rb:248 |
| 3454 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 3454 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 3455 | 3455 | #: plugins/shopping_cart/views/shopping_cart_plugin_myprofile/reports.html.erb:11 |
| 3456 | 3456 | msgid "From" |
| 3457 | 3457 | msgstr "" |
| ... | ... | @@ -4084,7 +4084,7 @@ msgid "Failed to edit role" |
| 4084 | 4084 | msgstr "" |
| 4085 | 4085 | |
| 4086 | 4086 | #: app/controllers/admin/users_controller.rb:53 |
| 4087 | -#: app/controllers/my_profile/profile_editor_controller.rb:74 | |
| 4087 | +#: app/controllers/my_profile/profile_editor_controller.rb:76 | |
| 4088 | 4088 | msgid "The profile was deleted." |
| 4089 | 4089 | msgstr "" |
| 4090 | 4090 | |
| ... | ... | @@ -4093,12 +4093,12 @@ msgid "Could not remove profile" |
| 4093 | 4093 | msgstr "" |
| 4094 | 4094 | |
| 4095 | 4095 | #: app/controllers/admin/users_controller.rb:95 |
| 4096 | -#: app/controllers/public/profile_controller.rb:363 | |
| 4096 | +#: app/controllers/public/profile_controller.rb:366 | |
| 4097 | 4097 | msgid "The e-mails are being sent" |
| 4098 | 4098 | msgstr "" |
| 4099 | 4099 | |
| 4100 | 4100 | #: app/controllers/admin/users_controller.rb:98 |
| 4101 | -#: app/controllers/public/profile_controller.rb:366 | |
| 4101 | +#: app/controllers/public/profile_controller.rb:369 | |
| 4102 | 4102 | msgid "Could not create the e-mail" |
| 4103 | 4103 | msgstr "" |
| 4104 | 4104 | |
| ... | ... | @@ -4246,91 +4246,91 @@ msgstr "" |
| 4246 | 4246 | msgid "You couldn't mark this comment as spam." |
| 4247 | 4247 | msgstr "" |
| 4248 | 4248 | |
| 4249 | -#: app/controllers/public/profile_controller.rb:46 | |
| 4250 | -#: app/controllers/public/profile_controller.rb:47 | |
| 4249 | +#: app/controllers/public/profile_controller.rb:49 | |
| 4250 | +#: app/controllers/public/profile_controller.rb:50 | |
| 4251 | 4251 | #: app/views/profile/content_tagged.html.erb:3 |
| 4252 | 4252 | msgid "%s's contents tagged with \"%s\"" |
| 4253 | 4253 | msgstr "" |
| 4254 | 4254 | |
| 4255 | -#: app/controllers/public/profile_controller.rb:91 | |
| 4255 | +#: app/controllers/public/profile_controller.rb:94 | |
| 4256 | 4256 | msgid "%s administrator still needs to accept you as member." |
| 4257 | 4257 | msgstr "" |
| 4258 | 4258 | |
| 4259 | -#: app/controllers/public/profile_controller.rb:93 | |
| 4259 | +#: app/controllers/public/profile_controller.rb:96 | |
| 4260 | 4260 | msgid "You just became a member of %s." |
| 4261 | 4261 | msgstr "" |
| 4262 | 4262 | |
| 4263 | -#: app/controllers/public/profile_controller.rb:96 | |
| 4263 | +#: app/controllers/public/profile_controller.rb:99 | |
| 4264 | 4264 | msgid "You are already a member of %s." |
| 4265 | 4265 | msgstr "" |
| 4266 | 4266 | |
| 4267 | -#: app/controllers/public/profile_controller.rb:118 | |
| 4267 | +#: app/controllers/public/profile_controller.rb:121 | |
| 4268 | 4268 | msgid "You are not a member of %s." |
| 4269 | 4269 | msgstr "" |
| 4270 | 4270 | |
| 4271 | -#: app/controllers/public/profile_controller.rb:138 | |
| 4271 | +#: app/controllers/public/profile_controller.rb:141 | |
| 4272 | 4272 | msgid "%s still needs to accept being your friend." |
| 4273 | 4273 | msgstr "" |
| 4274 | 4274 | |
| 4275 | -#: app/controllers/public/profile_controller.rb:140 | |
| 4275 | +#: app/controllers/public/profile_controller.rb:143 | |
| 4276 | 4276 | msgid "You are already a friend of %s." |
| 4277 | 4277 | msgstr "" |
| 4278 | 4278 | |
| 4279 | -#: app/controllers/public/profile_controller.rb:159 | |
| 4279 | +#: app/controllers/public/profile_controller.rb:162 | |
| 4280 | 4280 | msgid "You have unblocked %s successfully. " |
| 4281 | 4281 | msgstr "" |
| 4282 | 4282 | |
| 4283 | -#: app/controllers/public/profile_controller.rb:162 | |
| 4283 | +#: app/controllers/public/profile_controller.rb:165 | |
| 4284 | 4284 | msgid "You are not allowed to unblock enterprises in this environment." |
| 4285 | 4285 | msgstr "" |
| 4286 | 4286 | |
| 4287 | -#: app/controllers/public/profile_controller.rb:174 | |
| 4287 | +#: app/controllers/public/profile_controller.rb:177 | |
| 4288 | 4288 | msgid "Message successfully sent." |
| 4289 | 4289 | msgstr "" |
| 4290 | 4290 | |
| 4291 | -#: app/controllers/public/profile_controller.rb:174 | |
| 4291 | +#: app/controllers/public/profile_controller.rb:177 | |
| 4292 | 4292 | msgid "You can't leave an empty message." |
| 4293 | 4293 | msgstr "" |
| 4294 | 4294 | |
| 4295 | -#: app/controllers/public/profile_controller.rb:185 | |
| 4295 | +#: app/controllers/public/profile_controller.rb:188 | |
| 4296 | 4296 | msgid "Comment successfully added." |
| 4297 | 4297 | msgstr "" |
| 4298 | 4298 | |
| 4299 | -#: app/controllers/public/profile_controller.rb:185 | |
| 4299 | +#: app/controllers/public/profile_controller.rb:188 | |
| 4300 | 4300 | msgid "You can't leave an empty comment." |
| 4301 | 4301 | msgstr "" |
| 4302 | 4302 | |
| 4303 | -#: app/controllers/public/profile_controller.rb:276 | |
| 4303 | +#: app/controllers/public/profile_controller.rb:279 | |
| 4304 | 4304 | msgid "Notification successfully removed." |
| 4305 | 4305 | msgstr "" |
| 4306 | 4306 | |
| 4307 | -#: app/controllers/public/profile_controller.rb:278 | |
| 4307 | +#: app/controllers/public/profile_controller.rb:281 | |
| 4308 | 4308 | msgid "You could not remove this notification." |
| 4309 | 4309 | msgstr "" |
| 4310 | 4310 | |
| 4311 | -#: app/controllers/public/profile_controller.rb:311 | |
| 4311 | +#: app/controllers/public/profile_controller.rb:314 | |
| 4312 | 4312 | msgid "You could not answer the captcha." |
| 4313 | 4313 | msgstr "" |
| 4314 | 4314 | |
| 4315 | -#: app/controllers/public/profile_controller.rb:331 | |
| 4315 | +#: app/controllers/public/profile_controller.rb:334 | |
| 4316 | 4316 | msgid "" |
| 4317 | 4317 | "Your abuse report was registered. The administrators are reviewing your " |
| 4318 | 4318 | "report." |
| 4319 | 4319 | msgstr "" |
| 4320 | 4320 | |
| 4321 | -#: app/controllers/public/profile_controller.rb:339 | |
| 4321 | +#: app/controllers/public/profile_controller.rb:342 | |
| 4322 | 4322 | msgid "" |
| 4323 | 4323 | "Your report couldn't be saved due to some problem. Please contact the " |
| 4324 | 4324 | "administrator." |
| 4325 | 4325 | msgstr "" |
| 4326 | 4326 | |
| 4327 | -#: app/controllers/public/profile_controller.rb:402 | |
| 4327 | +#: app/controllers/public/profile_controller.rb:406 | |
| 4328 | 4328 | msgid "" |
| 4329 | 4329 | "This profile is inaccessible. You don't have the permission to view the " |
| 4330 | 4330 | "content here." |
| 4331 | 4331 | msgstr "" |
| 4332 | 4332 | |
| 4333 | -#: app/controllers/public/profile_controller.rb:402 | |
| 4333 | +#: app/controllers/public/profile_controller.rb:406 | |
| 4334 | 4334 | msgid "Oops ... you cannot go ahead here" |
| 4335 | 4335 | msgstr "" |
| 4336 | 4336 | |
| ... | ... | @@ -4403,15 +4403,15 @@ msgstr "" |
| 4403 | 4403 | msgid "Address was updated successfully!" |
| 4404 | 4404 | msgstr "" |
| 4405 | 4405 | |
| 4406 | -#: app/controllers/my_profile/profile_editor_controller.rb:34 | |
| 4406 | +#: app/controllers/my_profile/profile_editor_controller.rb:36 | |
| 4407 | 4407 | msgid "%s was not enabled." |
| 4408 | 4408 | msgstr "" |
| 4409 | 4409 | |
| 4410 | -#: app/controllers/my_profile/profile_editor_controller.rb:44 | |
| 4410 | +#: app/controllers/my_profile/profile_editor_controller.rb:46 | |
| 4411 | 4411 | msgid "%s was not disabled." |
| 4412 | 4412 | msgstr "" |
| 4413 | 4413 | |
| 4414 | -#: app/controllers/my_profile/profile_editor_controller.rb:77 | |
| 4414 | +#: app/controllers/my_profile/profile_editor_controller.rb:79 | |
| 4415 | 4415 | msgid "Could not delete profile" |
| 4416 | 4416 | msgstr "" |
| 4417 | 4417 | |
| ... | ... | @@ -4498,8 +4498,8 @@ msgstr "" |
| 4498 | 4498 | |
| 4499 | 4499 | #: app/mailers/contact.rb:23 |
| 4500 | 4500 | #: app/views/admin_panel/_signup_welcome_text.html.erb:6 |
| 4501 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 4502 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:4 | |
| 4501 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 4502 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:4 | |
| 4503 | 4503 | msgid "Subject" |
| 4504 | 4504 | msgstr "" |
| 4505 | 4505 | |
| ... | ... | @@ -4524,7 +4524,7 @@ msgstr "" |
| 4524 | 4524 | #: app/views/features/_manage_enterprise_fields.html.erb:59 |
| 4525 | 4525 | #: app/views/features/_manage_community_fields.html.erb:59 |
| 4526 | 4526 | #: app/views/features/_manage_person_fields.html.erb:59 |
| 4527 | -#: app/views/features/index.html.erb:54 app/views/role/_form.html.erb:16 | |
| 4527 | +#: app/views/features/index.html.erb:54 app/views/role/_form.html.erb:20 | |
| 4528 | 4528 | #: app/views/profile_members/change_role.html.erb:17 |
| 4529 | 4529 | #: app/views/environment_role_manager/change_role.html.erb:11 |
| 4530 | 4530 | #: app/views/plugins/index.html.erb:30 |
| ... | ... | @@ -5002,8 +5002,8 @@ msgstr "" |
| 5002 | 5002 | #: app/views/enterprise_validation/list_processed.html.erb:3 |
| 5003 | 5003 | #: app/views/enterprise_validation/view_processed.html.erb:3 |
| 5004 | 5004 | #: app/views/manage_products/index.html.erb:29 |
| 5005 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:8 | |
| 5006 | -#: plugins/send_email/views/send_email_plugin/fail.rhtml:3 | |
| 5005 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:8 | |
| 5006 | +#: plugins/send_email/views/send_email_plugin/fail.html.erb:3 | |
| 5007 | 5007 | #: plugins/spaminator/views/spaminator_plugin_admin/reports.html.erb:33 |
| 5008 | 5008 | #: plugins/tolerance_time/views/tolerance_time_plugin_myprofile/index.html.erb:22 |
| 5009 | 5009 | msgid "Back" |
| ... | ... | @@ -5070,10 +5070,7 @@ msgstr "" |
| 5070 | 5070 | #: app/views/pending_task_notifier/notification.text.erb:21 |
| 5071 | 5071 | #: app/views/scrap/notifier/notification.text.erb:12 |
| 5072 | 5072 | #: app/views/person_notifier/mailer/content_summary.html.erb:12 |
| 5073 | -#: app/views/task_mailer/task_activated.text.erb:5 | |
| 5074 | -#: app/views/task_mailer/task_created.text.erb:5 | |
| 5075 | -#: app/views/task_mailer/task_finished.text.erb:5 | |
| 5076 | -#: app/views/task_mailer/task_cancelled.text.erb:5 | |
| 5073 | +#: app/views/task_mailer/generic_message.text.erb:5 | |
| 5077 | 5074 | #: app/views/comment/notifier/mail_to_followers.html.erb:18 |
| 5078 | 5075 | #: app/views/comment/notifier/notification.text.erb:15 |
| 5079 | 5076 | #: app/views/user_mailer/activation_code.text.erb:5 |
| ... | ... | @@ -5086,11 +5083,8 @@ msgstr "" |
| 5086 | 5083 | #: app/views/pending_task_notifier/notification.text.erb:24 |
| 5087 | 5084 | #: app/views/scrap/notifier/notification.text.erb:15 |
| 5088 | 5085 | #: app/views/person_notifier/mailer/content_summary.html.erb:15 |
| 5089 | -#: app/views/task_mailer/task_activated.text.erb:8 | |
| 5090 | -#: app/views/task_mailer/task_created.text.erb:8 | |
| 5091 | -#: app/views/task_mailer/task_finished.text.erb:8 | |
| 5086 | +#: app/views/task_mailer/generic_message.text.erb:8 | |
| 5092 | 5087 | #: app/views/task_mailer/target_notification.text.erb:9 |
| 5093 | -#: app/views/task_mailer/task_cancelled.text.erb:8 | |
| 5094 | 5088 | #: app/views/comment/notifier/mail_to_followers.html.erb:21 |
| 5095 | 5089 | #: app/views/comment/notifier/notification.text.erb:18 |
| 5096 | 5090 | #: app/views/user_mailer/activation_code.text.erb:8 |
| ... | ... | @@ -5777,7 +5771,7 @@ msgstr "" |
| 5777 | 5771 | msgid "Address (street and number)" |
| 5778 | 5772 | msgstr "" |
| 5779 | 5773 | |
| 5780 | -#: app/views/profile_editor/_person_form.html.erb:54 | |
| 5774 | +#: app/views/profile_editor/_person_form.html.erb:58 | |
| 5781 | 5775 | msgid "Custom formation" |
| 5782 | 5776 | msgstr "" |
| 5783 | 5777 | |
| ... | ... | @@ -6343,10 +6337,6 @@ msgstr "" |
| 6343 | 6337 | msgid "View more" |
| 6344 | 6338 | msgstr "" |
| 6345 | 6339 | |
| 6346 | -#: app/views/home/index.html.erb:65 | |
| 6347 | -msgid "More options" | |
| 6348 | -msgstr "" | |
| 6349 | - | |
| 6350 | 6340 | #: app/views/features/_manage_enterprise_fields.html.erb:5 |
| 6351 | 6341 | #: app/views/features/_manage_community_fields.html.erb:5 |
| 6352 | 6342 | #: app/views/features/_manage_person_fields.html.erb:5 |
| ... | ... | @@ -6484,11 +6474,11 @@ msgstr "" |
| 6484 | 6474 | msgid "Create a new role" |
| 6485 | 6475 | msgstr "" |
| 6486 | 6476 | |
| 6487 | -#: app/views/role/_form.html.erb:9 | |
| 6488 | -msgid "Permissions:" | |
| 6477 | +#: app/views/role/_form.html.erb:11 | |
| 6478 | +msgid "%s Permissions:" | |
| 6489 | 6479 | msgstr "" |
| 6490 | 6480 | |
| 6491 | -#: app/views/role/_form.html.erb:16 | |
| 6481 | +#: app/views/role/_form.html.erb:20 | |
| 6492 | 6482 | msgid "Create role" |
| 6493 | 6483 | msgstr "" |
| 6494 | 6484 | |
| ... | ... | @@ -7386,10 +7376,7 @@ msgstr "" |
| 7386 | 7376 | msgid "Unblock" |
| 7387 | 7377 | msgstr "" |
| 7388 | 7378 | |
| 7389 | -#: app/views/task_mailer/task_activated.text.erb:1 | |
| 7390 | -#: app/views/task_mailer/task_created.text.erb:1 | |
| 7391 | -#: app/views/task_mailer/task_finished.text.erb:1 | |
| 7392 | -#: app/views/task_mailer/task_cancelled.text.erb:1 | |
| 7379 | +#: app/views/task_mailer/generic_message.text.erb:1 | |
| 7393 | 7380 | msgid "Dear %s," |
| 7394 | 7381 | msgstr "" |
| 7395 | 7382 | |
| ... | ... | @@ -7613,7 +7600,7 @@ msgstr "" |
| 7613 | 7600 | |
| 7614 | 7601 | #: app/views/account/index_anonymous.html.erb:10 |
| 7615 | 7602 | msgid "Sign up." |
| 7616 | -msgstr "Registro" | |
| 7603 | +msgstr "Registro." | |
| 7617 | 7604 | |
| 7618 | 7605 | #: app/views/account/index_anonymous.html.erb:11 |
| 7619 | 7606 | msgid "" |
| ... | ... | @@ -9419,7 +9406,7 @@ msgid "Configurations could not be saved" |
| 9419 | 9406 | msgstr "" |
| 9420 | 9407 | |
| 9421 | 9408 | #: plugins/send_email/controllers/send_email_plugin_base_controller.rb:16 |
| 9422 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:1 | |
| 9409 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:1 | |
| 9423 | 9410 | msgid "Message sent" |
| 9424 | 9411 | msgstr "" |
| 9425 | 9412 | |
| ... | ... | @@ -9634,11 +9621,11 @@ msgid "Sub-organizations could not be updated" |
| 9634 | 9621 | msgstr "" |
| 9635 | 9622 | |
| 9636 | 9623 | #: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:26 |
| 9637 | -msgid "\"Custom form #{@form.name} was successfully created.\"" | |
| 9624 | +msgid "Custom form %s was successfully created." | |
| 9638 | 9625 | msgstr "" |
| 9639 | 9626 | |
| 9640 | 9627 | #: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:46 |
| 9641 | -msgid "\"Custom form #{@form.name} was successfully updated.\"" | |
| 9628 | +msgid "Custom form %s was successfully updated." | |
| 9642 | 9629 | msgstr "" |
| 9643 | 9630 | |
| 9644 | 9631 | #: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:49 |
| ... | ... | @@ -9661,19 +9648,15 @@ msgstr "" |
| 9661 | 9648 | msgid "Submission could not be saved" |
| 9662 | 9649 | msgstr "" |
| 9663 | 9650 | |
| 9664 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 9651 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 9665 | 9652 | msgid "To" |
| 9666 | 9653 | msgstr "" |
| 9667 | 9654 | |
| 9668 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:7 | |
| 9669 | -msgid "New mail" | |
| 9670 | -msgstr "" | |
| 9671 | - | |
| 9672 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:19 | |
| 9655 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:24 | |
| 9673 | 9656 | msgid "'%s' isn't a valid e-mail address" |
| 9674 | 9657 | msgstr "" |
| 9675 | 9658 | |
| 9676 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:26 | |
| 9659 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:31 | |
| 9677 | 9660 | msgid "'%s' address is not allowed (see SendEmailPlugin config)" |
| 9678 | 9661 | msgstr "" |
| 9679 | 9662 | |
| ... | ... | @@ -9869,6 +9852,31 @@ msgstr "" |
| 9869 | 9852 | msgid "A plugin to enable the video suport, with auto conversion for the web." |
| 9870 | 9853 | msgstr "" |
| 9871 | 9854 | |
| 9855 | +#: plugins/lattes_curriculum/lib/html_parser.rb:19 | |
| 9856 | +msgid "Lattes not found. Please, make sure the informed URL is correct." | |
| 9857 | +msgstr "" | |
| 9858 | + | |
| 9859 | +#: plugins/lattes_curriculum/lib/html_parser.rb:21 | |
| 9860 | +msgid "Lattes Platform is unreachable. Please, try it later." | |
| 9861 | +msgstr "" | |
| 9862 | + | |
| 9863 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:8 | |
| 9864 | +msgid "A plugin that imports the lattes curriculum into the users profiles" | |
| 9865 | +msgstr "" | |
| 9866 | + | |
| 9867 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:40 | |
| 9868 | +msgid "Lattes" | |
| 9869 | +msgstr "" | |
| 9870 | + | |
| 9871 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:73 | |
| 9872 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:106 | |
| 9873 | +msgid " Invalid lattes url" | |
| 9874 | +msgstr "" | |
| 9875 | + | |
| 9876 | +#: plugins/lattes_curriculum/lib/academic_info.rb:10 | |
| 9877 | +msgid " is invalid." | |
| 9878 | +msgstr "" | |
| 9879 | + | |
| 9872 | 9880 | #: plugins/bsc/lib/bsc_plugin.rb:10 |
| 9873 | 9881 | msgid "Adds the Bsc feature" |
| 9874 | 9882 | msgstr "" |
| ... | ... | @@ -10316,7 +10324,7 @@ msgstr "" |
| 10316 | 10324 | msgid "A plugin that add remote user support." |
| 10317 | 10325 | msgstr "" |
| 10318 | 10326 | |
| 10319 | -#: plugins/remote_user/lib/remote_user_plugin.rb:45 | |
| 10327 | +#: plugins/remote_user/lib/remote_user_plugin.rb:55 | |
| 10320 | 10328 | msgid "Could not create the remote_user." |
| 10321 | 10329 | msgstr "" |
| 10322 | 10330 | |
| ... | ... | @@ -10550,14 +10558,6 @@ msgstr "" |
| 10550 | 10558 | msgid "Manage Forms" |
| 10551 | 10559 | msgstr "" |
| 10552 | 10560 | |
| 10553 | -#: plugins/send_email/views/send_email_plugin/fail.rhtml:1 | |
| 10554 | -msgid "The message could not be sent" | |
| 10555 | -msgstr "" | |
| 10556 | - | |
| 10557 | -#: plugins/send_email/views/send_email_plugin/sender/message.rhtml:1 | |
| 10558 | -msgid "Contact from %s" | |
| 10559 | -msgstr "" | |
| 10560 | - | |
| 10561 | 10561 | #: plugins/google_analytics/views/profile-editor-extras.rhtml:4 |
| 10562 | 10562 | msgid "Google Analytics Profile ID" |
| 10563 | 10563 | msgstr "" |
| ... | ... | @@ -10570,6 +10570,14 @@ msgstr "" |
| 10570 | 10570 | msgid "Applied filters" |
| 10571 | 10571 | msgstr "" |
| 10572 | 10572 | |
| 10573 | +#: plugins/send_email/views/send_email_plugin/sender/message.html.erb:1 | |
| 10574 | +msgid "Contact from %s" | |
| 10575 | +msgstr "" | |
| 10576 | + | |
| 10577 | +#: plugins/send_email/views/send_email_plugin/fail.html.erb:1 | |
| 10578 | +msgid "The message could not be sent" | |
| 10579 | +msgstr "" | |
| 10580 | + | |
| 10573 | 10581 | #: plugins/send_email/views/send_email_plugin_admin/index.html.erb:1 |
| 10574 | 10582 | msgid "SendEmailPlugin's config" |
| 10575 | 10583 | msgstr "" | ... | ... |
po/noosfero.pot
| ... | ... | @@ -5,8 +5,8 @@ |
| 5 | 5 | # |
| 6 | 6 | msgid "" |
| 7 | 7 | msgstr "" |
| 8 | -"Project-Id-Version: 1.0~rc3\n" | |
| 9 | -"POT-Creation-Date: 2014-10-30 09:24-0300\n" | |
| 8 | +"Project-Id-Version: 1.0~rc4\n" | |
| 9 | +"POT-Creation-Date: 2014-12-18 17:22-0300\n" | |
| 10 | 10 | "PO-Revision-Date: 2007-08-30 18:47-0300\n" |
| 11 | 11 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
| 12 | 12 | "Language-Team: LANGUAGE <LL@li.org>\n" |
| ... | ... | @@ -528,7 +528,7 @@ msgid "have unsupported languages." |
| 528 | 528 | msgstr "" |
| 529 | 529 | |
| 530 | 530 | #: app/models/communities_block.rb:6 app/helpers/application_helper.rb:549 |
| 531 | -#: app/helpers/application_helper.rb:1082 app/helpers/search_helper.rb:12 | |
| 531 | +#: app/helpers/application_helper.rb:1084 app/helpers/search_helper.rb:12 | |
| 532 | 532 | #: app/helpers/assets_helper.rb:11 |
| 533 | 533 | #: app/controllers/public/search_controller.rb:53 |
| 534 | 534 | msgid "Communities" |
| ... | ... | @@ -697,24 +697,24 @@ msgstr "" |
| 697 | 697 | msgid "Nationality" |
| 698 | 698 | msgstr "" |
| 699 | 699 | |
| 700 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:32 | |
| 700 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:36 | |
| 701 | 701 | msgid "Schooling" |
| 702 | 702 | msgstr "" |
| 703 | 703 | |
| 704 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:58 | |
| 704 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:62 | |
| 705 | 705 | msgid "Area of study" |
| 706 | 706 | msgstr "" |
| 707 | 707 | |
| 708 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:65 | |
| 708 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:69 | |
| 709 | 709 | msgid "Professional activity" |
| 710 | 710 | msgstr "" |
| 711 | 711 | |
| 712 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:66 | |
| 712 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:70 | |
| 713 | 713 | msgid "Organization" |
| 714 | 714 | msgstr "" |
| 715 | 715 | |
| 716 | 716 | #: app/models/person.rb:196 app/models/enterprise.rb:25 |
| 717 | -#: app/views/profile_editor/_person_form.html.erb:67 | |
| 717 | +#: app/views/profile_editor/_person_form.html.erb:71 | |
| 718 | 718 | msgid "Organization website" |
| 719 | 719 | msgstr "" |
| 720 | 720 | |
| ... | ... | @@ -723,7 +723,7 @@ msgid "Schooling status" |
| 723 | 723 | msgstr "" |
| 724 | 724 | |
| 725 | 725 | #: app/models/person.rb:202 app/helpers/profile_editor_helper.rb:26 |
| 726 | -#: app/views/profile_editor/_person_form.html.erb:51 | |
| 726 | +#: app/views/profile_editor/_person_form.html.erb:55 | |
| 727 | 727 | msgid "Education" |
| 728 | 728 | msgstr "" |
| 729 | 729 | |
| ... | ... | @@ -731,7 +731,7 @@ msgstr "" |
| 731 | 731 | msgid "Custom education" |
| 732 | 732 | msgstr "" |
| 733 | 733 | |
| 734 | -#: app/models/person.rb:202 app/views/profile_editor/_person_form.html.erb:61 | |
| 734 | +#: app/models/person.rb:202 app/views/profile_editor/_person_form.html.erb:65 | |
| 735 | 735 | msgid "Custom area of study" |
| 736 | 736 | msgstr "" |
| 737 | 737 | |
| ... | ... | @@ -959,7 +959,7 @@ msgstr "" |
| 959 | 959 | msgid "{fn} must be checked in order to signup." |
| 960 | 960 | msgstr "" |
| 961 | 961 | |
| 962 | -#: app/models/user.rb:251 | |
| 962 | +#: app/models/user.rb:255 | |
| 963 | 963 | msgid "does not match." |
| 964 | 964 | msgstr "" |
| 965 | 965 | |
| ... | ... | @@ -1463,7 +1463,7 @@ msgstr "" |
| 1463 | 1463 | msgid "To do list" |
| 1464 | 1464 | msgstr "" |
| 1465 | 1465 | |
| 1466 | -#: app/models/link_list_block.rb:35 app/helpers/application_helper.rb:914 | |
| 1466 | +#: app/models/link_list_block.rb:35 app/helpers/application_helper.rb:915 | |
| 1467 | 1467 | msgid "Chat" |
| 1468 | 1468 | msgstr "" |
| 1469 | 1469 | |
| ... | ... | @@ -1518,7 +1518,7 @@ msgstr "" |
| 1518 | 1518 | msgid "description" |
| 1519 | 1519 | msgstr "" |
| 1520 | 1520 | |
| 1521 | -#: app/models/create_community.rb:38 app/helpers/application_helper.rb:1079 | |
| 1521 | +#: app/models/create_community.rb:38 app/helpers/application_helper.rb:1081 | |
| 1522 | 1522 | msgid "New community" |
| 1523 | 1523 | msgstr "" |
| 1524 | 1524 | |
| ... | ... | @@ -2212,8 +2212,8 @@ msgstr "" |
| 2212 | 2212 | |
| 2213 | 2213 | #: app/models/disabled_enterprise_message_block.rb:12 |
| 2214 | 2214 | #: app/mailers/contact.rb:23 |
| 2215 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 2216 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:5 | |
| 2215 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 2216 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:5 | |
| 2217 | 2217 | msgid "Message" |
| 2218 | 2218 | msgstr "" |
| 2219 | 2219 | |
| ... | ... | @@ -2438,103 +2438,103 @@ msgstr "" |
| 2438 | 2438 | msgid "Public" |
| 2439 | 2439 | msgstr "" |
| 2440 | 2440 | |
| 2441 | -#: app/helpers/application_helper.rb:913 | |
| 2441 | +#: app/helpers/application_helper.rb:914 | |
| 2442 | 2442 | msgid "Online Manual" |
| 2443 | 2443 | msgstr "" |
| 2444 | 2444 | |
| 2445 | -#: app/helpers/application_helper.rb:961 app/views/home/index.html.erb:12 | |
| 2445 | +#: app/helpers/application_helper.rb:963 app/views/home/index.html.erb:12 | |
| 2446 | 2446 | #: plugins/display_content/lib/display_content_block.rb:141 |
| 2447 | 2447 | #: plugins/recent_content/views/blocks/recent_content_block.html.erb:26 |
| 2448 | 2448 | #: plugins/recent_content/views/blocks/recent_content_block.html.erb:35 |
| 2449 | 2449 | msgid "Read more" |
| 2450 | 2450 | msgstr "" |
| 2451 | 2451 | |
| 2452 | -#: app/helpers/application_helper.rb:1042 | |
| 2452 | +#: app/helpers/application_helper.rb:1044 | |
| 2453 | 2453 | msgid "contents|More recent" |
| 2454 | 2454 | msgstr "" |
| 2455 | 2455 | |
| 2456 | -#: app/helpers/application_helper.rb:1043 | |
| 2456 | +#: app/helpers/application_helper.rb:1045 | |
| 2457 | 2457 | msgid "contents|More viewed" |
| 2458 | 2458 | msgstr "" |
| 2459 | 2459 | |
| 2460 | -#: app/helpers/application_helper.rb:1044 | |
| 2460 | +#: app/helpers/application_helper.rb:1046 | |
| 2461 | 2461 | msgid "contents|Most commented" |
| 2462 | 2462 | msgstr "" |
| 2463 | 2463 | |
| 2464 | -#: app/helpers/application_helper.rb:1047 app/views/cms/view.html.erb:20 | |
| 2464 | +#: app/helpers/application_helper.rb:1049 app/views/cms/view.html.erb:20 | |
| 2465 | 2465 | msgid "New content" |
| 2466 | 2466 | msgstr "" |
| 2467 | 2467 | |
| 2468 | -#: app/helpers/application_helper.rb:1050 app/helpers/search_helper.rb:9 | |
| 2468 | +#: app/helpers/application_helper.rb:1052 app/helpers/search_helper.rb:9 | |
| 2469 | 2469 | #: app/controllers/public/search_controller.rb:54 |
| 2470 | 2470 | msgid "Contents" |
| 2471 | 2471 | msgstr "" |
| 2472 | 2472 | |
| 2473 | -#: app/helpers/application_helper.rb:1051 | |
| 2473 | +#: app/helpers/application_helper.rb:1053 | |
| 2474 | 2474 | #: app/views/comment/_comment_actions.html.erb:5 |
| 2475 | 2475 | msgid "Contents menu" |
| 2476 | 2476 | msgstr "" |
| 2477 | 2477 | |
| 2478 | -#: app/helpers/application_helper.rb:1057 | |
| 2478 | +#: app/helpers/application_helper.rb:1059 | |
| 2479 | 2479 | msgid "people|More recent" |
| 2480 | 2480 | msgstr "" |
| 2481 | 2481 | |
| 2482 | -#: app/helpers/application_helper.rb:1058 | |
| 2482 | +#: app/helpers/application_helper.rb:1060 | |
| 2483 | 2483 | msgid "people|More active" |
| 2484 | 2484 | msgstr "" |
| 2485 | 2485 | |
| 2486 | -#: app/helpers/application_helper.rb:1059 | |
| 2486 | +#: app/helpers/application_helper.rb:1061 | |
| 2487 | 2487 | msgid "people|More popular" |
| 2488 | 2488 | msgstr "" |
| 2489 | 2489 | |
| 2490 | -#: app/helpers/application_helper.rb:1062 | |
| 2490 | +#: app/helpers/application_helper.rb:1064 | |
| 2491 | 2491 | msgid "My friends" |
| 2492 | 2492 | msgstr "" |
| 2493 | 2493 | |
| 2494 | -#: app/helpers/application_helper.rb:1063 plugins/stoa/lib/stoa_plugin.rb:110 | |
| 2494 | +#: app/helpers/application_helper.rb:1065 plugins/stoa/lib/stoa_plugin.rb:110 | |
| 2495 | 2495 | msgid "Invite friends" |
| 2496 | 2496 | msgstr "" |
| 2497 | 2497 | |
| 2498 | -#: app/helpers/application_helper.rb:1066 app/helpers/search_helper.rb:11 | |
| 2498 | +#: app/helpers/application_helper.rb:1068 app/helpers/search_helper.rb:11 | |
| 2499 | 2499 | #: app/helpers/assets_helper.rb:8 |
| 2500 | 2500 | #: app/controllers/public/search_controller.rb:49 |
| 2501 | 2501 | #: plugins/people_block/lib/people_block.rb:4 |
| 2502 | 2502 | msgid "People" |
| 2503 | 2503 | msgstr "" |
| 2504 | 2504 | |
| 2505 | -#: app/helpers/application_helper.rb:1067 | |
| 2505 | +#: app/helpers/application_helper.rb:1069 | |
| 2506 | 2506 | msgid "People menu" |
| 2507 | 2507 | msgstr "" |
| 2508 | 2508 | |
| 2509 | -#: app/helpers/application_helper.rb:1073 | |
| 2509 | +#: app/helpers/application_helper.rb:1075 | |
| 2510 | 2510 | msgid "communities|More recent" |
| 2511 | 2511 | msgstr "" |
| 2512 | 2512 | |
| 2513 | -#: app/helpers/application_helper.rb:1074 | |
| 2513 | +#: app/helpers/application_helper.rb:1076 | |
| 2514 | 2514 | msgid "communities|More active" |
| 2515 | 2515 | msgstr "" |
| 2516 | 2516 | |
| 2517 | -#: app/helpers/application_helper.rb:1075 | |
| 2517 | +#: app/helpers/application_helper.rb:1077 | |
| 2518 | 2518 | msgid "communities|More popular" |
| 2519 | 2519 | msgstr "" |
| 2520 | 2520 | |
| 2521 | -#: app/helpers/application_helper.rb:1078 | |
| 2522 | -#: app/helpers/application_helper.rb:1128 | |
| 2521 | +#: app/helpers/application_helper.rb:1080 | |
| 2522 | +#: app/helpers/application_helper.rb:1130 | |
| 2523 | 2523 | msgid "My communities" |
| 2524 | 2524 | msgstr "" |
| 2525 | 2525 | |
| 2526 | -#: app/helpers/application_helper.rb:1083 | |
| 2526 | +#: app/helpers/application_helper.rb:1085 | |
| 2527 | 2527 | msgid "Communities menu" |
| 2528 | 2528 | msgstr "" |
| 2529 | 2529 | |
| 2530 | -#: app/helpers/application_helper.rb:1088 | |
| 2530 | +#: app/helpers/application_helper.rb:1090 | |
| 2531 | 2531 | #: app/views/layouts/slideshow.html.erb:18 |
| 2532 | 2532 | #: app/views/blocks/slideshow.html.erb:17 |
| 2533 | 2533 | #: app/views/blocks/featured_products.html.erb:3 |
| 2534 | 2534 | msgid "Previous" |
| 2535 | 2535 | msgstr "" |
| 2536 | 2536 | |
| 2537 | -#: app/helpers/application_helper.rb:1088 app/helpers/forms_helper.rb:169 | |
| 2537 | +#: app/helpers/application_helper.rb:1090 app/helpers/forms_helper.rb:169 | |
| 2538 | 2538 | #: app/views/layouts/slideshow.html.erb:18 |
| 2539 | 2539 | #: app/views/enterprise_registration/basic_information.html.erb:40 |
| 2540 | 2540 | #: app/views/blocks/slideshow.html.erb:21 |
| ... | ... | @@ -2543,45 +2543,45 @@ msgstr "" |
| 2543 | 2543 | msgid "Next" |
| 2544 | 2544 | msgstr "" |
| 2545 | 2545 | |
| 2546 | -#: app/helpers/application_helper.rb:1108 | |
| 2546 | +#: app/helpers/application_helper.rb:1110 | |
| 2547 | 2547 | msgid "See all" |
| 2548 | 2548 | msgstr "" |
| 2549 | 2549 | |
| 2550 | -#: app/helpers/application_helper.rb:1111 | |
| 2550 | +#: app/helpers/application_helper.rb:1113 | |
| 2551 | 2551 | msgid "<span>Manage</span> %s" |
| 2552 | 2552 | msgstr "" |
| 2553 | 2553 | |
| 2554 | -#: app/helpers/application_helper.rb:1111 | |
| 2554 | +#: app/helpers/application_helper.rb:1113 | |
| 2555 | 2555 | #: app/views/shared/user_menu.html.erb:26 |
| 2556 | 2556 | #: app/views/shared/_manage_link.html.erb:2 |
| 2557 | 2557 | msgid "Manage %s" |
| 2558 | 2558 | msgstr "" |
| 2559 | 2559 | |
| 2560 | -#: app/helpers/application_helper.rb:1122 | |
| 2560 | +#: app/helpers/application_helper.rb:1124 | |
| 2561 | 2561 | msgid "My enterprises" |
| 2562 | 2562 | msgstr "" |
| 2563 | 2563 | |
| 2564 | -#: app/helpers/application_helper.rb:1132 | |
| 2564 | +#: app/helpers/application_helper.rb:1134 | |
| 2565 | 2565 | msgid "Administration" |
| 2566 | 2566 | msgstr "" |
| 2567 | 2567 | |
| 2568 | -#: app/helpers/application_helper.rb:1132 | |
| 2568 | +#: app/helpers/application_helper.rb:1134 | |
| 2569 | 2569 | msgid "Configure the environment" |
| 2570 | 2570 | msgstr "" |
| 2571 | 2571 | |
| 2572 | -#: app/helpers/application_helper.rb:1139 | |
| 2572 | +#: app/helpers/application_helper.rb:1141 | |
| 2573 | 2573 | msgid "Manage your pending tasks" |
| 2574 | 2574 | msgstr "" |
| 2575 | 2575 | |
| 2576 | -#: app/helpers/application_helper.rb:1142 | |
| 2576 | +#: app/helpers/application_helper.rb:1144 | |
| 2577 | 2577 | msgid "<span class='welcome'>Welcome,</span> %s" |
| 2578 | 2578 | msgstr "" |
| 2579 | 2579 | |
| 2580 | -#: app/helpers/application_helper.rb:1142 | |
| 2580 | +#: app/helpers/application_helper.rb:1144 | |
| 2581 | 2581 | msgid "Go to your homepage" |
| 2582 | 2582 | msgstr "" |
| 2583 | 2583 | |
| 2584 | -#: app/helpers/application_helper.rb:1147 | |
| 2584 | +#: app/helpers/application_helper.rb:1149 | |
| 2585 | 2585 | #: app/views/shared/user_menu.html.erb:37 |
| 2586 | 2586 | #: app/views/blocks/profile_info.html.erb:24 |
| 2587 | 2587 | #: app/views/blocks/profile_image.html.erb:21 |
| ... | ... | @@ -2590,120 +2590,120 @@ msgstr "" |
| 2590 | 2590 | msgid "Control panel" |
| 2591 | 2591 | msgstr "" |
| 2592 | 2592 | |
| 2593 | -#: app/helpers/application_helper.rb:1147 | |
| 2593 | +#: app/helpers/application_helper.rb:1149 | |
| 2594 | 2594 | msgid "Configure your personal account and content" |
| 2595 | 2595 | msgstr "" |
| 2596 | 2596 | |
| 2597 | -#: app/helpers/application_helper.rb:1149 | |
| 2597 | +#: app/helpers/application_helper.rb:1151 | |
| 2598 | 2598 | #: app/views/shared/user_menu.html.erb:45 |
| 2599 | 2599 | #: app/views/blocks/login_block.html.erb:9 |
| 2600 | 2600 | msgid "Logout" |
| 2601 | 2601 | msgstr "" |
| 2602 | 2602 | |
| 2603 | -#: app/helpers/application_helper.rb:1149 | |
| 2603 | +#: app/helpers/application_helper.rb:1151 | |
| 2604 | 2604 | msgid "Leave the system" |
| 2605 | 2605 | msgstr "" |
| 2606 | 2606 | |
| 2607 | -#: app/helpers/application_helper.rb:1155 | |
| 2607 | +#: app/helpers/application_helper.rb:1157 | |
| 2608 | 2608 | msgid " characters left" |
| 2609 | 2609 | msgstr "" |
| 2610 | 2610 | |
| 2611 | -#: app/helpers/application_helper.rb:1156 | |
| 2611 | +#: app/helpers/application_helper.rb:1158 | |
| 2612 | 2612 | msgid "Limit of characters reached" |
| 2613 | 2613 | msgstr "" |
| 2614 | 2614 | |
| 2615 | -#: app/helpers/application_helper.rb:1182 | |
| 2616 | -#: app/helpers/application_helper.rb:1188 | |
| 2615 | +#: app/helpers/application_helper.rb:1184 | |
| 2616 | +#: app/helpers/application_helper.rb:1190 | |
| 2617 | 2617 | msgid "less than a minute" |
| 2618 | 2618 | msgstr "" |
| 2619 | 2619 | |
| 2620 | -#: app/helpers/application_helper.rb:1182 | |
| 2621 | -#: app/helpers/application_helper.rb:1189 | |
| 2620 | +#: app/helpers/application_helper.rb:1184 | |
| 2621 | +#: app/helpers/application_helper.rb:1191 | |
| 2622 | 2622 | msgid "1 minute" |
| 2623 | 2623 | msgstr "" |
| 2624 | 2624 | |
| 2625 | -#: app/helpers/application_helper.rb:1184 | |
| 2625 | +#: app/helpers/application_helper.rb:1186 | |
| 2626 | 2626 | msgid "less than 5 seconds" |
| 2627 | 2627 | msgstr "" |
| 2628 | 2628 | |
| 2629 | -#: app/helpers/application_helper.rb:1185 | |
| 2629 | +#: app/helpers/application_helper.rb:1187 | |
| 2630 | 2630 | msgid "less than 10 seconds" |
| 2631 | 2631 | msgstr "" |
| 2632 | 2632 | |
| 2633 | -#: app/helpers/application_helper.rb:1186 | |
| 2633 | +#: app/helpers/application_helper.rb:1188 | |
| 2634 | 2634 | msgid "less than 20 seconds" |
| 2635 | 2635 | msgstr "" |
| 2636 | 2636 | |
| 2637 | -#: app/helpers/application_helper.rb:1187 | |
| 2637 | +#: app/helpers/application_helper.rb:1189 | |
| 2638 | 2638 | msgid "half a minute" |
| 2639 | 2639 | msgstr "" |
| 2640 | 2640 | |
| 2641 | -#: app/helpers/application_helper.rb:1192 | |
| 2641 | +#: app/helpers/application_helper.rb:1194 | |
| 2642 | 2642 | msgid "%{distance} minutes ago" |
| 2643 | 2643 | msgstr "" |
| 2644 | 2644 | |
| 2645 | -#: app/helpers/application_helper.rb:1193 | |
| 2645 | +#: app/helpers/application_helper.rb:1195 | |
| 2646 | 2646 | msgid "about 1 hour ago" |
| 2647 | 2647 | msgstr "" |
| 2648 | 2648 | |
| 2649 | -#: app/helpers/application_helper.rb:1194 | |
| 2649 | +#: app/helpers/application_helper.rb:1196 | |
| 2650 | 2650 | msgid "about %{distance} hours ago" |
| 2651 | 2651 | msgstr "" |
| 2652 | 2652 | |
| 2653 | -#: app/helpers/application_helper.rb:1195 | |
| 2653 | +#: app/helpers/application_helper.rb:1197 | |
| 2654 | 2654 | msgid "1 day ago" |
| 2655 | 2655 | msgstr "" |
| 2656 | 2656 | |
| 2657 | -#: app/helpers/application_helper.rb:1196 | |
| 2657 | +#: app/helpers/application_helper.rb:1198 | |
| 2658 | 2658 | msgid "%{distance} days ago" |
| 2659 | 2659 | msgstr "" |
| 2660 | 2660 | |
| 2661 | -#: app/helpers/application_helper.rb:1214 | |
| 2661 | +#: app/helpers/application_helper.rb:1216 | |
| 2662 | 2662 | msgid "Source: %s" |
| 2663 | 2663 | msgstr "" |
| 2664 | 2664 | |
| 2665 | -#: app/helpers/application_helper.rb:1247 | |
| 2665 | +#: app/helpers/application_helper.rb:1249 | |
| 2666 | 2666 | #: plugins/community_block/views/community_block.html.erb:17 |
| 2667 | 2667 | msgid "Report abuse" |
| 2668 | 2668 | msgstr "" |
| 2669 | 2669 | |
| 2670 | -#: app/helpers/application_helper.rb:1249 | |
| 2670 | +#: app/helpers/application_helper.rb:1251 | |
| 2671 | 2671 | msgid "You already reported this profile." |
| 2672 | 2672 | msgstr "" |
| 2673 | 2673 | |
| 2674 | -#: app/helpers/application_helper.rb:1250 | |
| 2674 | +#: app/helpers/application_helper.rb:1252 | |
| 2675 | 2675 | msgid "Report this profile for abusive behaviour" |
| 2676 | 2676 | msgstr "" |
| 2677 | 2677 | |
| 2678 | -#: app/helpers/application_helper.rb:1289 | |
| 2678 | +#: app/helpers/application_helper.rb:1292 | |
| 2679 | 2679 | msgid "" |
| 2680 | 2680 | "Are you sure that you want to remove the folder \"%s\"? Note that all the " |
| 2681 | 2681 | "items inside it will also be removed!" |
| 2682 | 2682 | msgstr "" |
| 2683 | 2683 | |
| 2684 | -#: app/helpers/application_helper.rb:1291 | |
| 2684 | +#: app/helpers/application_helper.rb:1294 | |
| 2685 | 2685 | msgid "Are you sure that you want to remove the item \"%s\"?" |
| 2686 | 2686 | msgstr "" |
| 2687 | 2687 | |
| 2688 | -#: app/helpers/application_helper.rb:1319 | |
| 2688 | +#: app/helpers/application_helper.rb:1323 | |
| 2689 | 2689 | msgid "Profile organization" |
| 2690 | 2690 | msgstr "" |
| 2691 | 2691 | |
| 2692 | -#: app/helpers/application_helper.rb:1320 | |
| 2692 | +#: app/helpers/application_helper.rb:1324 | |
| 2693 | 2693 | msgid "" |
| 2694 | 2694 | "Your profile will be created according to the selected template. Click on " |
| 2695 | 2695 | "the options to view them." |
| 2696 | 2696 | msgstr "" |
| 2697 | 2697 | |
| 2698 | -#: app/helpers/application_helper.rb:1355 | |
| 2698 | +#: app/helpers/application_helper.rb:1359 | |
| 2699 | 2699 | msgid "Errors while saving" |
| 2700 | 2700 | msgstr "" |
| 2701 | 2701 | |
| 2702 | -#: app/helpers/application_helper.rb:1365 | |
| 2702 | +#: app/helpers/application_helper.rb:1369 | |
| 2703 | 2703 | msgid "The content here is available to %s's friends only." |
| 2704 | 2704 | msgstr "" |
| 2705 | 2705 | |
| 2706 | -#: app/helpers/application_helper.rb:1368 | |
| 2706 | +#: app/helpers/application_helper.rb:1372 | |
| 2707 | 2707 | msgid "The contents in this profile is available to members only." |
| 2708 | 2708 | msgstr "" |
| 2709 | 2709 | |
| ... | ... | @@ -3448,7 +3448,7 @@ msgid "Wk" |
| 3448 | 3448 | msgstr "" |
| 3449 | 3449 | |
| 3450 | 3450 | #: app/helpers/forms_helper.rb:248 |
| 3451 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 3451 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 3452 | 3452 | #: plugins/shopping_cart/views/shopping_cart_plugin_myprofile/reports.html.erb:11 |
| 3453 | 3453 | msgid "From" |
| 3454 | 3454 | msgstr "" |
| ... | ... | @@ -4081,7 +4081,7 @@ msgid "Failed to edit role" |
| 4081 | 4081 | msgstr "" |
| 4082 | 4082 | |
| 4083 | 4083 | #: app/controllers/admin/users_controller.rb:53 |
| 4084 | -#: app/controllers/my_profile/profile_editor_controller.rb:74 | |
| 4084 | +#: app/controllers/my_profile/profile_editor_controller.rb:76 | |
| 4085 | 4085 | msgid "The profile was deleted." |
| 4086 | 4086 | msgstr "" |
| 4087 | 4087 | |
| ... | ... | @@ -4090,12 +4090,12 @@ msgid "Could not remove profile" |
| 4090 | 4090 | msgstr "" |
| 4091 | 4091 | |
| 4092 | 4092 | #: app/controllers/admin/users_controller.rb:95 |
| 4093 | -#: app/controllers/public/profile_controller.rb:363 | |
| 4093 | +#: app/controllers/public/profile_controller.rb:366 | |
| 4094 | 4094 | msgid "The e-mails are being sent" |
| 4095 | 4095 | msgstr "" |
| 4096 | 4096 | |
| 4097 | 4097 | #: app/controllers/admin/users_controller.rb:98 |
| 4098 | -#: app/controllers/public/profile_controller.rb:366 | |
| 4098 | +#: app/controllers/public/profile_controller.rb:369 | |
| 4099 | 4099 | msgid "Could not create the e-mail" |
| 4100 | 4100 | msgstr "" |
| 4101 | 4101 | |
| ... | ... | @@ -4243,91 +4243,91 @@ msgstr "" |
| 4243 | 4243 | msgid "You couldn't mark this comment as spam." |
| 4244 | 4244 | msgstr "" |
| 4245 | 4245 | |
| 4246 | -#: app/controllers/public/profile_controller.rb:46 | |
| 4247 | -#: app/controllers/public/profile_controller.rb:47 | |
| 4246 | +#: app/controllers/public/profile_controller.rb:49 | |
| 4247 | +#: app/controllers/public/profile_controller.rb:50 | |
| 4248 | 4248 | #: app/views/profile/content_tagged.html.erb:3 |
| 4249 | 4249 | msgid "%s's contents tagged with \"%s\"" |
| 4250 | 4250 | msgstr "" |
| 4251 | 4251 | |
| 4252 | -#: app/controllers/public/profile_controller.rb:91 | |
| 4252 | +#: app/controllers/public/profile_controller.rb:94 | |
| 4253 | 4253 | msgid "%s administrator still needs to accept you as member." |
| 4254 | 4254 | msgstr "" |
| 4255 | 4255 | |
| 4256 | -#: app/controllers/public/profile_controller.rb:93 | |
| 4256 | +#: app/controllers/public/profile_controller.rb:96 | |
| 4257 | 4257 | msgid "You just became a member of %s." |
| 4258 | 4258 | msgstr "" |
| 4259 | 4259 | |
| 4260 | -#: app/controllers/public/profile_controller.rb:96 | |
| 4260 | +#: app/controllers/public/profile_controller.rb:99 | |
| 4261 | 4261 | msgid "You are already a member of %s." |
| 4262 | 4262 | msgstr "" |
| 4263 | 4263 | |
| 4264 | -#: app/controllers/public/profile_controller.rb:118 | |
| 4264 | +#: app/controllers/public/profile_controller.rb:121 | |
| 4265 | 4265 | msgid "You are not a member of %s." |
| 4266 | 4266 | msgstr "" |
| 4267 | 4267 | |
| 4268 | -#: app/controllers/public/profile_controller.rb:138 | |
| 4268 | +#: app/controllers/public/profile_controller.rb:141 | |
| 4269 | 4269 | msgid "%s still needs to accept being your friend." |
| 4270 | 4270 | msgstr "" |
| 4271 | 4271 | |
| 4272 | -#: app/controllers/public/profile_controller.rb:140 | |
| 4272 | +#: app/controllers/public/profile_controller.rb:143 | |
| 4273 | 4273 | msgid "You are already a friend of %s." |
| 4274 | 4274 | msgstr "" |
| 4275 | 4275 | |
| 4276 | -#: app/controllers/public/profile_controller.rb:159 | |
| 4276 | +#: app/controllers/public/profile_controller.rb:162 | |
| 4277 | 4277 | msgid "You have unblocked %s successfully. " |
| 4278 | 4278 | msgstr "" |
| 4279 | 4279 | |
| 4280 | -#: app/controllers/public/profile_controller.rb:162 | |
| 4280 | +#: app/controllers/public/profile_controller.rb:165 | |
| 4281 | 4281 | msgid "You are not allowed to unblock enterprises in this environment." |
| 4282 | 4282 | msgstr "" |
| 4283 | 4283 | |
| 4284 | -#: app/controllers/public/profile_controller.rb:174 | |
| 4284 | +#: app/controllers/public/profile_controller.rb:177 | |
| 4285 | 4285 | msgid "Message successfully sent." |
| 4286 | 4286 | msgstr "" |
| 4287 | 4287 | |
| 4288 | -#: app/controllers/public/profile_controller.rb:174 | |
| 4288 | +#: app/controllers/public/profile_controller.rb:177 | |
| 4289 | 4289 | msgid "You can't leave an empty message." |
| 4290 | 4290 | msgstr "" |
| 4291 | 4291 | |
| 4292 | -#: app/controllers/public/profile_controller.rb:185 | |
| 4292 | +#: app/controllers/public/profile_controller.rb:188 | |
| 4293 | 4293 | msgid "Comment successfully added." |
| 4294 | 4294 | msgstr "" |
| 4295 | 4295 | |
| 4296 | -#: app/controllers/public/profile_controller.rb:185 | |
| 4296 | +#: app/controllers/public/profile_controller.rb:188 | |
| 4297 | 4297 | msgid "You can't leave an empty comment." |
| 4298 | 4298 | msgstr "" |
| 4299 | 4299 | |
| 4300 | -#: app/controllers/public/profile_controller.rb:276 | |
| 4300 | +#: app/controllers/public/profile_controller.rb:279 | |
| 4301 | 4301 | msgid "Notification successfully removed." |
| 4302 | 4302 | msgstr "" |
| 4303 | 4303 | |
| 4304 | -#: app/controllers/public/profile_controller.rb:278 | |
| 4304 | +#: app/controllers/public/profile_controller.rb:281 | |
| 4305 | 4305 | msgid "You could not remove this notification." |
| 4306 | 4306 | msgstr "" |
| 4307 | 4307 | |
| 4308 | -#: app/controllers/public/profile_controller.rb:311 | |
| 4308 | +#: app/controllers/public/profile_controller.rb:314 | |
| 4309 | 4309 | msgid "You could not answer the captcha." |
| 4310 | 4310 | msgstr "" |
| 4311 | 4311 | |
| 4312 | -#: app/controllers/public/profile_controller.rb:331 | |
| 4312 | +#: app/controllers/public/profile_controller.rb:334 | |
| 4313 | 4313 | msgid "" |
| 4314 | 4314 | "Your abuse report was registered. The administrators are reviewing your " |
| 4315 | 4315 | "report." |
| 4316 | 4316 | msgstr "" |
| 4317 | 4317 | |
| 4318 | -#: app/controllers/public/profile_controller.rb:339 | |
| 4318 | +#: app/controllers/public/profile_controller.rb:342 | |
| 4319 | 4319 | msgid "" |
| 4320 | 4320 | "Your report couldn't be saved due to some problem. Please contact the " |
| 4321 | 4321 | "administrator." |
| 4322 | 4322 | msgstr "" |
| 4323 | 4323 | |
| 4324 | -#: app/controllers/public/profile_controller.rb:402 | |
| 4324 | +#: app/controllers/public/profile_controller.rb:406 | |
| 4325 | 4325 | msgid "" |
| 4326 | 4326 | "This profile is inaccessible. You don't have the permission to view the " |
| 4327 | 4327 | "content here." |
| 4328 | 4328 | msgstr "" |
| 4329 | 4329 | |
| 4330 | -#: app/controllers/public/profile_controller.rb:402 | |
| 4330 | +#: app/controllers/public/profile_controller.rb:406 | |
| 4331 | 4331 | msgid "Oops ... you cannot go ahead here" |
| 4332 | 4332 | msgstr "" |
| 4333 | 4333 | |
| ... | ... | @@ -4400,15 +4400,15 @@ msgstr "" |
| 4400 | 4400 | msgid "Address was updated successfully!" |
| 4401 | 4401 | msgstr "" |
| 4402 | 4402 | |
| 4403 | -#: app/controllers/my_profile/profile_editor_controller.rb:34 | |
| 4403 | +#: app/controllers/my_profile/profile_editor_controller.rb:36 | |
| 4404 | 4404 | msgid "%s was not enabled." |
| 4405 | 4405 | msgstr "" |
| 4406 | 4406 | |
| 4407 | -#: app/controllers/my_profile/profile_editor_controller.rb:44 | |
| 4407 | +#: app/controllers/my_profile/profile_editor_controller.rb:46 | |
| 4408 | 4408 | msgid "%s was not disabled." |
| 4409 | 4409 | msgstr "" |
| 4410 | 4410 | |
| 4411 | -#: app/controllers/my_profile/profile_editor_controller.rb:77 | |
| 4411 | +#: app/controllers/my_profile/profile_editor_controller.rb:79 | |
| 4412 | 4412 | msgid "Could not delete profile" |
| 4413 | 4413 | msgstr "" |
| 4414 | 4414 | |
| ... | ... | @@ -4495,8 +4495,8 @@ msgstr "" |
| 4495 | 4495 | |
| 4496 | 4496 | #: app/mailers/contact.rb:23 |
| 4497 | 4497 | #: app/views/admin_panel/_signup_welcome_text.html.erb:6 |
| 4498 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 4499 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:4 | |
| 4498 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 4499 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:4 | |
| 4500 | 4500 | msgid "Subject" |
| 4501 | 4501 | msgstr "" |
| 4502 | 4502 | |
| ... | ... | @@ -4521,7 +4521,7 @@ msgstr "" |
| 4521 | 4521 | #: app/views/features/_manage_enterprise_fields.html.erb:59 |
| 4522 | 4522 | #: app/views/features/_manage_community_fields.html.erb:59 |
| 4523 | 4523 | #: app/views/features/_manage_person_fields.html.erb:59 |
| 4524 | -#: app/views/features/index.html.erb:54 app/views/role/_form.html.erb:16 | |
| 4524 | +#: app/views/features/index.html.erb:54 app/views/role/_form.html.erb:20 | |
| 4525 | 4525 | #: app/views/profile_members/change_role.html.erb:17 |
| 4526 | 4526 | #: app/views/environment_role_manager/change_role.html.erb:11 |
| 4527 | 4527 | #: app/views/plugins/index.html.erb:30 |
| ... | ... | @@ -4999,8 +4999,8 @@ msgstr "" |
| 4999 | 4999 | #: app/views/enterprise_validation/list_processed.html.erb:3 |
| 5000 | 5000 | #: app/views/enterprise_validation/view_processed.html.erb:3 |
| 5001 | 5001 | #: app/views/manage_products/index.html.erb:29 |
| 5002 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:8 | |
| 5003 | -#: plugins/send_email/views/send_email_plugin/fail.rhtml:3 | |
| 5002 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:8 | |
| 5003 | +#: plugins/send_email/views/send_email_plugin/fail.html.erb:3 | |
| 5004 | 5004 | #: plugins/spaminator/views/spaminator_plugin_admin/reports.html.erb:33 |
| 5005 | 5005 | #: plugins/tolerance_time/views/tolerance_time_plugin_myprofile/index.html.erb:22 |
| 5006 | 5006 | msgid "Back" |
| ... | ... | @@ -5067,10 +5067,7 @@ msgstr "" |
| 5067 | 5067 | #: app/views/pending_task_notifier/notification.text.erb:21 |
| 5068 | 5068 | #: app/views/scrap/notifier/notification.text.erb:12 |
| 5069 | 5069 | #: app/views/person_notifier/mailer/content_summary.html.erb:12 |
| 5070 | -#: app/views/task_mailer/task_activated.text.erb:5 | |
| 5071 | -#: app/views/task_mailer/task_created.text.erb:5 | |
| 5072 | -#: app/views/task_mailer/task_finished.text.erb:5 | |
| 5073 | -#: app/views/task_mailer/task_cancelled.text.erb:5 | |
| 5070 | +#: app/views/task_mailer/generic_message.text.erb:5 | |
| 5074 | 5071 | #: app/views/comment/notifier/mail_to_followers.html.erb:18 |
| 5075 | 5072 | #: app/views/comment/notifier/notification.text.erb:15 |
| 5076 | 5073 | #: app/views/user_mailer/activation_code.text.erb:5 |
| ... | ... | @@ -5083,11 +5080,8 @@ msgstr "" |
| 5083 | 5080 | #: app/views/pending_task_notifier/notification.text.erb:24 |
| 5084 | 5081 | #: app/views/scrap/notifier/notification.text.erb:15 |
| 5085 | 5082 | #: app/views/person_notifier/mailer/content_summary.html.erb:15 |
| 5086 | -#: app/views/task_mailer/task_activated.text.erb:8 | |
| 5087 | -#: app/views/task_mailer/task_created.text.erb:8 | |
| 5088 | -#: app/views/task_mailer/task_finished.text.erb:8 | |
| 5083 | +#: app/views/task_mailer/generic_message.text.erb:8 | |
| 5089 | 5084 | #: app/views/task_mailer/target_notification.text.erb:9 |
| 5090 | -#: app/views/task_mailer/task_cancelled.text.erb:8 | |
| 5091 | 5085 | #: app/views/comment/notifier/mail_to_followers.html.erb:21 |
| 5092 | 5086 | #: app/views/comment/notifier/notification.text.erb:18 |
| 5093 | 5087 | #: app/views/user_mailer/activation_code.text.erb:8 |
| ... | ... | @@ -5774,7 +5768,7 @@ msgstr "" |
| 5774 | 5768 | msgid "Address (street and number)" |
| 5775 | 5769 | msgstr "" |
| 5776 | 5770 | |
| 5777 | -#: app/views/profile_editor/_person_form.html.erb:54 | |
| 5771 | +#: app/views/profile_editor/_person_form.html.erb:58 | |
| 5778 | 5772 | msgid "Custom formation" |
| 5779 | 5773 | msgstr "" |
| 5780 | 5774 | |
| ... | ... | @@ -6340,10 +6334,6 @@ msgstr "" |
| 6340 | 6334 | msgid "View more" |
| 6341 | 6335 | msgstr "" |
| 6342 | 6336 | |
| 6343 | -#: app/views/home/index.html.erb:65 | |
| 6344 | -msgid "More options" | |
| 6345 | -msgstr "" | |
| 6346 | - | |
| 6347 | 6337 | #: app/views/features/_manage_enterprise_fields.html.erb:5 |
| 6348 | 6338 | #: app/views/features/_manage_community_fields.html.erb:5 |
| 6349 | 6339 | #: app/views/features/_manage_person_fields.html.erb:5 |
| ... | ... | @@ -6481,11 +6471,11 @@ msgstr "" |
| 6481 | 6471 | msgid "Create a new role" |
| 6482 | 6472 | msgstr "" |
| 6483 | 6473 | |
| 6484 | -#: app/views/role/_form.html.erb:9 | |
| 6485 | -msgid "Permissions:" | |
| 6474 | +#: app/views/role/_form.html.erb:11 | |
| 6475 | +msgid "%s Permissions:" | |
| 6486 | 6476 | msgstr "" |
| 6487 | 6477 | |
| 6488 | -#: app/views/role/_form.html.erb:16 | |
| 6478 | +#: app/views/role/_form.html.erb:20 | |
| 6489 | 6479 | msgid "Create role" |
| 6490 | 6480 | msgstr "" |
| 6491 | 6481 | |
| ... | ... | @@ -7383,10 +7373,7 @@ msgstr "" |
| 7383 | 7373 | msgid "Unblock" |
| 7384 | 7374 | msgstr "" |
| 7385 | 7375 | |
| 7386 | -#: app/views/task_mailer/task_activated.text.erb:1 | |
| 7387 | -#: app/views/task_mailer/task_created.text.erb:1 | |
| 7388 | -#: app/views/task_mailer/task_finished.text.erb:1 | |
| 7389 | -#: app/views/task_mailer/task_cancelled.text.erb:1 | |
| 7376 | +#: app/views/task_mailer/generic_message.text.erb:1 | |
| 7390 | 7377 | msgid "Dear %s," |
| 7391 | 7378 | msgstr "" |
| 7392 | 7379 | |
| ... | ... | @@ -9416,7 +9403,7 @@ msgid "Configurations could not be saved" |
| 9416 | 9403 | msgstr "" |
| 9417 | 9404 | |
| 9418 | 9405 | #: plugins/send_email/controllers/send_email_plugin_base_controller.rb:16 |
| 9419 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:1 | |
| 9406 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:1 | |
| 9420 | 9407 | msgid "Message sent" |
| 9421 | 9408 | msgstr "" |
| 9422 | 9409 | |
| ... | ... | @@ -9631,11 +9618,11 @@ msgid "Sub-organizations could not be updated" |
| 9631 | 9618 | msgstr "" |
| 9632 | 9619 | |
| 9633 | 9620 | #: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:26 |
| 9634 | -msgid "\"Custom form #{@form.name} was successfully created.\"" | |
| 9621 | +msgid "Custom form %s was successfully created." | |
| 9635 | 9622 | msgstr "" |
| 9636 | 9623 | |
| 9637 | 9624 | #: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:46 |
| 9638 | -msgid "\"Custom form #{@form.name} was successfully updated.\"" | |
| 9625 | +msgid "Custom form %s was successfully updated." | |
| 9639 | 9626 | msgstr "" |
| 9640 | 9627 | |
| 9641 | 9628 | #: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:49 |
| ... | ... | @@ -9658,19 +9645,15 @@ msgstr "" |
| 9658 | 9645 | msgid "Submission could not be saved" |
| 9659 | 9646 | msgstr "" |
| 9660 | 9647 | |
| 9661 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 9648 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 9662 | 9649 | msgid "To" |
| 9663 | 9650 | msgstr "" |
| 9664 | 9651 | |
| 9665 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:7 | |
| 9666 | -msgid "New mail" | |
| 9667 | -msgstr "" | |
| 9668 | - | |
| 9669 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:19 | |
| 9652 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:24 | |
| 9670 | 9653 | msgid "'%s' isn't a valid e-mail address" |
| 9671 | 9654 | msgstr "" |
| 9672 | 9655 | |
| 9673 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:26 | |
| 9656 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:31 | |
| 9674 | 9657 | msgid "'%s' address is not allowed (see SendEmailPlugin config)" |
| 9675 | 9658 | msgstr "" |
| 9676 | 9659 | |
| ... | ... | @@ -9866,6 +9849,31 @@ msgstr "" |
| 9866 | 9849 | msgid "A plugin to enable the video suport, with auto conversion for the web." |
| 9867 | 9850 | msgstr "" |
| 9868 | 9851 | |
| 9852 | +#: plugins/lattes_curriculum/lib/html_parser.rb:19 | |
| 9853 | +msgid "Lattes not found. Please, make sure the informed URL is correct." | |
| 9854 | +msgstr "" | |
| 9855 | + | |
| 9856 | +#: plugins/lattes_curriculum/lib/html_parser.rb:21 | |
| 9857 | +msgid "Lattes Platform is unreachable. Please, try it later." | |
| 9858 | +msgstr "" | |
| 9859 | + | |
| 9860 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:8 | |
| 9861 | +msgid "A plugin that imports the lattes curriculum into the users profiles" | |
| 9862 | +msgstr "" | |
| 9863 | + | |
| 9864 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:40 | |
| 9865 | +msgid "Lattes" | |
| 9866 | +msgstr "" | |
| 9867 | + | |
| 9868 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:73 | |
| 9869 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:106 | |
| 9870 | +msgid " Invalid lattes url" | |
| 9871 | +msgstr "" | |
| 9872 | + | |
| 9873 | +#: plugins/lattes_curriculum/lib/academic_info.rb:10 | |
| 9874 | +msgid " is invalid." | |
| 9875 | +msgstr "" | |
| 9876 | + | |
| 9869 | 9877 | #: plugins/bsc/lib/bsc_plugin.rb:10 |
| 9870 | 9878 | msgid "Adds the Bsc feature" |
| 9871 | 9879 | msgstr "" |
| ... | ... | @@ -10312,7 +10320,7 @@ msgstr "" |
| 10312 | 10320 | msgid "A plugin that add remote user support." |
| 10313 | 10321 | msgstr "" |
| 10314 | 10322 | |
| 10315 | -#: plugins/remote_user/lib/remote_user_plugin.rb:45 | |
| 10323 | +#: plugins/remote_user/lib/remote_user_plugin.rb:55 | |
| 10316 | 10324 | msgid "Could not create the remote_user." |
| 10317 | 10325 | msgstr "" |
| 10318 | 10326 | |
| ... | ... | @@ -10546,14 +10554,6 @@ msgstr "" |
| 10546 | 10554 | msgid "Manage Forms" |
| 10547 | 10555 | msgstr "" |
| 10548 | 10556 | |
| 10549 | -#: plugins/send_email/views/send_email_plugin/fail.rhtml:1 | |
| 10550 | -msgid "The message could not be sent" | |
| 10551 | -msgstr "" | |
| 10552 | - | |
| 10553 | -#: plugins/send_email/views/send_email_plugin/sender/message.rhtml:1 | |
| 10554 | -msgid "Contact from %s" | |
| 10555 | -msgstr "" | |
| 10556 | - | |
| 10557 | 10557 | #: plugins/google_analytics/views/profile-editor-extras.rhtml:4 |
| 10558 | 10558 | msgid "Google Analytics Profile ID" |
| 10559 | 10559 | msgstr "" |
| ... | ... | @@ -10566,6 +10566,14 @@ msgstr "" |
| 10566 | 10566 | msgid "Applied filters" |
| 10567 | 10567 | msgstr "" |
| 10568 | 10568 | |
| 10569 | +#: plugins/send_email/views/send_email_plugin/sender/message.html.erb:1 | |
| 10570 | +msgid "Contact from %s" | |
| 10571 | +msgstr "" | |
| 10572 | + | |
| 10573 | +#: plugins/send_email/views/send_email_plugin/fail.html.erb:1 | |
| 10574 | +msgid "The message could not be sent" | |
| 10575 | +msgstr "" | |
| 10576 | + | |
| 10569 | 10577 | #: plugins/send_email/views/send_email_plugin_admin/index.html.erb:1 |
| 10570 | 10578 | msgid "SendEmailPlugin's config" |
| 10571 | 10579 | msgstr "" | ... | ... |
po/pt/noosfero.po
| ... | ... | @@ -11,17 +11,18 @@ |
| 11 | 11 | # |
| 12 | 12 | msgid "" |
| 13 | 13 | msgstr "" |
| 14 | -"Project-Id-Version: 1.0~rc3\n" | |
| 15 | -"POT-Creation-Date: 2014-10-30 09:24-0300\n" | |
| 16 | -"PO-Revision-Date: 2013-07-30 12:53-0300\n" | |
| 17 | -"Last-Translator: Rodrigo Souto <rodrigo@colivre.coop.br>\n" | |
| 18 | -"Language-Team: Noosfero Develeopers <noosfero-dev@listas.softwarelivre.org>\n" | |
| 14 | +"Project-Id-Version: 1.0~rc4\n" | |
| 15 | +"POT-Creation-Date: 2014-12-18 17:22-0300\n" | |
| 16 | +"PO-Revision-Date: 2014-12-18 18:40-0200\n" | |
| 17 | +"Last-Translator: Luciano Prestes Cavalcanti <lucianopcbr@gmail.com>\n" | |
| 18 | +"Language-Team: Portuguese <https://hosted.weblate.org/projects/noosfero/" | |
| 19 | +"noosfero/pt/>\n" | |
| 19 | 20 | "Language: pt\n" |
| 20 | 21 | "MIME-Version: 1.0\n" |
| 21 | 22 | "Content-Type: text/plain; charset=UTF-8\n" |
| 22 | 23 | "Content-Transfer-Encoding: 8bit\n" |
| 23 | -"Plural-Forms: nplurals=2; plural=(n != 1);\n" | |
| 24 | -"X-Generator: Pootle 1.0.2\n" | |
| 24 | +"Plural-Forms: nplurals=2; plural=n != 1;\n" | |
| 25 | +"X-Generator: Weblate 2.0\n" | |
| 25 | 26 | |
| 26 | 27 | #: app/models/approve_comment.rb:17 |
| 27 | 28 | msgid "Anonymous" |
| ... | ... | @@ -133,12 +134,12 @@ msgstr "Convite de comunidade" |
| 133 | 134 | |
| 134 | 135 | #: app/models/invite_member.rb:27 |
| 135 | 136 | msgid "%{requestor} invited you to join %{linked_subject}." |
| 136 | -msgstr "%{requestor} convidou você para ser integrante de %{linked_subject}" | |
| 137 | +msgstr "%{requestor} convidou você para juntar-se a %{linked_subject}." | |
| 137 | 138 | |
| 138 | 139 | #: app/models/invite_member.rb:39 |
| 139 | 140 | msgid "%{requestor} invited you to join %{community}." |
| 140 | 141 | msgstr "" |
| 141 | -"%{requestor} convidou você para ser integrante da comunidade %{community}" | |
| 142 | +"%{requestor} convidou você para ser integrante da comunidade %{community}." | |
| 142 | 143 | |
| 143 | 144 | #: app/models/invite_member.rb:48 app/models/invite_friend.rb:36 |
| 144 | 145 | msgid "Hello <friend>," |
| ... | ... | @@ -171,7 +172,7 @@ msgstr "Busca de Produtos/Serviços" |
| 171 | 172 | |
| 172 | 173 | #: app/models/sellers_search_block.rb:14 |
| 173 | 174 | msgid "Search for sellers" |
| 174 | -msgstr "Buscar por vendedores:" | |
| 175 | +msgstr "Buscar por vendedores" | |
| 175 | 176 | |
| 176 | 177 | #: app/models/sellers_search_block.rb:18 |
| 177 | 178 | msgid "This block presents a search engine for products." |
| ... | ... | @@ -421,7 +422,7 @@ msgstr "Empreendimentos são desabilitados quando criados" |
| 421 | 422 | |
| 422 | 423 | #: app/models/environment.rb:113 |
| 423 | 424 | msgid "Enterprises are validated when created" |
| 424 | -msgstr "Empreendimentos são validadodos quando criados" | |
| 425 | +msgstr "Empreendimentos são validados quando criados" | |
| 425 | 426 | |
| 426 | 427 | #: app/models/environment.rb:115 |
| 427 | 428 | msgid "Media panel in WYSIWYG editor" |
| ... | ... | @@ -457,7 +458,7 @@ msgstr "Artigos não aceitam comentários por padrão" |
| 457 | 458 | |
| 458 | 459 | #: app/models/environment.rb:124 |
| 459 | 460 | msgid "Organizations have moderated publication by default" |
| 460 | -msgstr "Coletivos têem publicação moderada por padrão" | |
| 461 | +msgstr "Coletivos têm publicação moderada por padrão" | |
| 461 | 462 | |
| 462 | 463 | #: app/models/environment.rb:125 |
| 463 | 464 | msgid "Allow organizations to change their URL" |
| ... | ... | @@ -468,9 +469,8 @@ msgid "Admin must approve creation of communities" |
| 468 | 469 | msgstr "Administrador tem que aprovar a criação de comunidades" |
| 469 | 470 | |
| 470 | 471 | #: app/models/environment.rb:127 |
| 471 | -#, fuzzy | |
| 472 | 472 | msgid "Admin must approve registration of new users" |
| 473 | -msgstr "Administrador tem que aprovar a criação de comunidades" | |
| 473 | +msgstr "Administrador tem que aprovar o registro de novos usuários" | |
| 474 | 474 | |
| 475 | 475 | #: app/models/environment.rb:128 |
| 476 | 476 | msgid "Show a balloon with profile links when a profile image is clicked" |
| ... | ... | @@ -511,17 +511,16 @@ msgid "Display on menu the list of enterprises the user can manage" |
| 511 | 511 | msgstr "Mostra no menu a lista de empreendimentos que o usuário pode gerenciar" |
| 512 | 512 | |
| 513 | 513 | #: app/models/environment.rb:137 |
| 514 | -#, fuzzy | |
| 515 | 514 | msgid "Show content only to members" |
| 516 | -msgstr "Mostrar nome do conteúdo" | |
| 515 | +msgstr "Mostrar conteúdo apenas para membros" | |
| 517 | 516 | |
| 518 | 517 | #: app/models/environment.rb:143 |
| 519 | 518 | msgid "Stays on the same page the user was before login." |
| 520 | -msgstr "Permanece na mesma páǵina que o usuário estava antes do login." | |
| 519 | +msgstr "Permanece na mesma página que o usuário estava antes do login." | |
| 521 | 520 | |
| 522 | 521 | #: app/models/environment.rb:144 app/models/environment.rb:155 |
| 523 | 522 | msgid "Redirects the user to the environment homepage." |
| 524 | -msgstr "Redireciona o usuário para a página inicial do ambiente" | |
| 523 | +msgstr "Redireciona o usuário para a página inicial do ambiente." | |
| 525 | 524 | |
| 526 | 525 | #: app/models/environment.rb:145 app/models/environment.rb:156 |
| 527 | 526 | msgid "Redirects the user to his profile page." |
| ... | ... | @@ -537,7 +536,7 @@ msgstr "Redireciona o usuário para seu painel de controle." |
| 537 | 536 | |
| 538 | 537 | #: app/models/environment.rb:154 |
| 539 | 538 | msgid "Stays on the same page the user was before signup." |
| 540 | -msgstr "Permanece na mesma páǵina que o usuário estava antes do cadastro." | |
| 539 | +msgstr "Permanece na mesma página que o usuário estava antes do cadastro." | |
| 541 | 540 | |
| 542 | 541 | #: app/models/environment.rb:260 |
| 543 | 542 | msgid "This enterprise needs to be enabled." |
| ... | ... | @@ -549,14 +548,14 @@ msgstr "Apenas uma comunidade virtual pode ser a padrão" |
| 549 | 548 | |
| 550 | 549 | #: app/models/environment.rb:924 |
| 551 | 550 | msgid "is not available." |
| 552 | -msgstr "não está disponível" | |
| 551 | +msgstr "não está disponível." | |
| 553 | 552 | |
| 554 | 553 | #: app/models/environment.rb:932 |
| 555 | 554 | msgid "have unsupported languages." |
| 556 | 555 | msgstr "tem idiomas não suportados." |
| 557 | 556 | |
| 558 | 557 | #: app/models/communities_block.rb:6 app/helpers/application_helper.rb:549 |
| 559 | -#: app/helpers/application_helper.rb:1082 app/helpers/search_helper.rb:12 | |
| 558 | +#: app/helpers/application_helper.rb:1084 app/helpers/search_helper.rb:12 | |
| 560 | 559 | #: app/helpers/assets_helper.rb:11 |
| 561 | 560 | #: app/controllers/public/search_controller.rb:53 |
| 562 | 561 | msgid "Communities" |
| ... | ... | @@ -624,7 +623,7 @@ msgid "" |
| 624 | 623 | "An internet forum, also called message board, where discussions can be held." |
| 625 | 624 | msgstr "" |
| 626 | 625 | "Um fórum online, também chamado de quadro de mensagens, onde discussões " |
| 627 | -"podem ser feitas" | |
| 626 | +"podem ser feitas." | |
| 628 | 627 | |
| 629 | 628 | #: app/models/enterprises_block.rb:4 |
| 630 | 629 | msgid "{#} enterprise" |
| ... | ... | @@ -737,24 +736,24 @@ msgstr "Telefone comercial" |
| 737 | 736 | msgid "Nationality" |
| 738 | 737 | msgstr "Nacionalidade" |
| 739 | 738 | |
| 740 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:32 | |
| 739 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:36 | |
| 741 | 740 | msgid "Schooling" |
| 742 | 741 | msgstr "Escolaridade" |
| 743 | 742 | |
| 744 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:58 | |
| 743 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:62 | |
| 745 | 744 | msgid "Area of study" |
| 746 | 745 | msgstr "Área de estudo" |
| 747 | 746 | |
| 748 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:65 | |
| 747 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:69 | |
| 749 | 748 | msgid "Professional activity" |
| 750 | 749 | msgstr "Atividade profissional" |
| 751 | 750 | |
| 752 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:66 | |
| 751 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:70 | |
| 753 | 752 | msgid "Organization" |
| 754 | 753 | msgstr "Organização" |
| 755 | 754 | |
| 756 | 755 | #: app/models/person.rb:196 app/models/enterprise.rb:25 |
| 757 | -#: app/views/profile_editor/_person_form.html.erb:67 | |
| 756 | +#: app/views/profile_editor/_person_form.html.erb:71 | |
| 758 | 757 | msgid "Organization website" |
| 759 | 758 | msgstr "Website da organização" |
| 760 | 759 | |
| ... | ... | @@ -763,7 +762,7 @@ msgid "Schooling status" |
| 763 | 762 | msgstr "Situação da escolaridade" |
| 764 | 763 | |
| 765 | 764 | #: app/models/person.rb:202 app/helpers/profile_editor_helper.rb:26 |
| 766 | -#: app/views/profile_editor/_person_form.html.erb:51 | |
| 765 | +#: app/views/profile_editor/_person_form.html.erb:55 | |
| 767 | 766 | msgid "Education" |
| 768 | 767 | msgstr "Educação" |
| 769 | 768 | |
| ... | ... | @@ -771,7 +770,7 @@ msgstr "Educação" |
| 771 | 770 | msgid "Custom education" |
| 772 | 771 | msgstr "Outra formação" |
| 773 | 772 | |
| 774 | -#: app/models/person.rb:202 app/views/profile_editor/_person_form.html.erb:61 | |
| 773 | +#: app/models/person.rb:202 app/views/profile_editor/_person_form.html.erb:65 | |
| 775 | 774 | msgid "Custom area of study" |
| 776 | 775 | msgstr "Outra área de estudo" |
| 777 | 776 | |
| ... | ... | @@ -835,7 +834,7 @@ msgstr "Ponto de referência" |
| 835 | 834 | |
| 836 | 835 | #: app/models/person.rb:236 |
| 837 | 836 | msgid "{fn} is already used by other user" |
| 838 | -msgstr "{fn} já está sendo usado por outro usuário." | |
| 837 | +msgstr "{fn} já está sendo usado por outro usuário" | |
| 839 | 838 | |
| 840 | 839 | #: app/models/person.rb:264 app/models/profile.rb:11 |
| 841 | 840 | #: app/views/profile/index.html.erb:28 app/views/profile/index.html.erb:34 |
| ... | ... | @@ -942,30 +941,26 @@ msgid "New user" |
| 942 | 941 | msgstr "Novo usuário" |
| 943 | 942 | |
| 944 | 943 | #: app/models/moderate_user_registration.rb:37 |
| 945 | -#, fuzzy | |
| 946 | 944 | msgid "%{sender} wants to register." |
| 947 | -msgstr "%{requestor} quer ser seu(sua) amigo(a)." | |
| 945 | +msgstr "%{sender} quer se registrar." | |
| 948 | 946 | |
| 949 | 947 | #: app/models/moderate_user_registration.rb:46 |
| 950 | 948 | msgid "%{sender} tried to register." |
| 951 | -msgstr "" | |
| 949 | +msgstr "%{sender} tentou se registrar." | |
| 952 | 950 | |
| 953 | 951 | #: app/models/moderate_user_registration.rb:52 |
| 954 | -#, fuzzy | |
| 955 | 952 | msgid "You need to login on %{system} in order to approve or reject this user." |
| 956 | 953 | msgstr "" |
| 957 | -"Você precisa entrar no %{system} para poder aprovar ou rejeitar este " | |
| 958 | -"comentário." | |
| 954 | +"Você precisa entrar no %{system} para poder aprovar ou rejeitar este usuário." | |
| 959 | 955 | |
| 960 | 956 | #: app/models/moderate_user_registration.rb:56 |
| 961 | -#, fuzzy | |
| 962 | 957 | msgid "" |
| 963 | 958 | "User \"%{user}\" just requested to register. You have to approve or reject " |
| 964 | 959 | "it through the \"Pending Validations\" section in your control panel.\n" |
| 965 | 960 | msgstr "" |
| 966 | 961 | "O usuário \"%{user}\" requisitou a criação da comunidade %{community}. Você " |
| 967 | 962 | "tem que aprová-lo ou rejeitá-lo através da seção \"Validações Pendentes\" no " |
| 968 | -"seupainel de controle.\n" | |
| 963 | +"seu painel de controle.\n" | |
| 969 | 964 | |
| 970 | 965 | #: app/models/user.rb:10 app/models/change_password.rb:8 |
| 971 | 966 | #: app/views/invite/select_address_book.html.erb:39 |
| ... | ... | @@ -1005,9 +1000,9 @@ msgstr "e-Mail" |
| 1005 | 1000 | |
| 1006 | 1001 | #: app/models/user.rb:103 |
| 1007 | 1002 | msgid "{fn} must be checked in order to signup." |
| 1008 | -msgstr "{fn} deve ser verificado para efetivar inscrição" | |
| 1003 | +msgstr "{fn} deve ser verificado para efetivar inscrição." | |
| 1009 | 1004 | |
| 1010 | -#: app/models/user.rb:251 | |
| 1005 | +#: app/models/user.rb:255 | |
| 1011 | 1006 | msgid "does not match." |
| 1012 | 1007 | msgstr "não corresponde." |
| 1013 | 1008 | |
| ... | ... | @@ -1278,7 +1273,7 @@ msgstr "Tarefa" |
| 1278 | 1273 | |
| 1279 | 1274 | #: app/models/task.rb:136 |
| 1280 | 1275 | msgid "%{requestor} sent you a task." |
| 1281 | -msgstr "%{requestor} enviou uma tarefa para você" | |
| 1276 | +msgstr "%{requestor} enviou uma tarefa para você." | |
| 1282 | 1277 | |
| 1283 | 1278 | #: app/models/tags_block.rb:11 app/helpers/profile_helper.rb:45 |
| 1284 | 1279 | #: app/views/search/_article_tags.html.erb:2 |
| ... | ... | @@ -1527,7 +1522,7 @@ msgstr "Pacote" |
| 1527 | 1522 | msgid "To do list" |
| 1528 | 1523 | msgstr "Lista de atividades" |
| 1529 | 1524 | |
| 1530 | -#: app/models/link_list_block.rb:35 app/helpers/application_helper.rb:914 | |
| 1525 | +#: app/models/link_list_block.rb:35 app/helpers/application_helper.rb:915 | |
| 1531 | 1526 | msgid "Chat" |
| 1532 | 1527 | msgstr "Bate-papo" |
| 1533 | 1528 | |
| ... | ... | @@ -1584,7 +1579,7 @@ msgstr "título" |
| 1584 | 1579 | msgid "description" |
| 1585 | 1580 | msgstr "descrição" |
| 1586 | 1581 | |
| 1587 | -#: app/models/create_community.rb:38 app/helpers/application_helper.rb:1079 | |
| 1582 | +#: app/models/create_community.rb:38 app/helpers/application_helper.rb:1081 | |
| 1588 | 1583 | msgid "New community" |
| 1589 | 1584 | msgstr "Nova comunidade" |
| 1590 | 1585 | |
| ... | ... | @@ -1602,7 +1597,7 @@ msgstr "" |
| 1602 | 1597 | |
| 1603 | 1598 | #: app/models/create_community.rb:74 |
| 1604 | 1599 | msgid "%{requestor} wants to create community %{subject}" |
| 1605 | -msgstr "%{requestor} quer criar a comunidade %{subject}." | |
| 1600 | +msgstr "%{requestor} quer criar a comunidade %{subject}" | |
| 1606 | 1601 | |
| 1607 | 1602 | #: app/models/create_community.rb:78 |
| 1608 | 1603 | msgid "" |
| ... | ... | @@ -2058,7 +2053,7 @@ msgstr "Página do Empreendimento" |
| 2058 | 2053 | |
| 2059 | 2054 | #: app/models/enterprise_homepage.rb:12 |
| 2060 | 2055 | msgid "Display the summary of profile." |
| 2061 | -msgstr "Apresenta o resumo do perfil" | |
| 2056 | +msgstr "Apresenta o resumo do perfil." | |
| 2062 | 2057 | |
| 2063 | 2058 | #: app/models/enterprise.rb:10 app/models/enterprise.rb:13 |
| 2064 | 2059 | #: app/views/templates/index.html.erb:7 |
| ... | ... | @@ -2208,14 +2203,12 @@ msgid "All users" |
| 2208 | 2203 | msgstr "Todos os usuários" |
| 2209 | 2204 | |
| 2210 | 2205 | #: app/models/block.rb:222 |
| 2211 | -#, fuzzy | |
| 2212 | 2206 | msgid "Logged" |
| 2213 | -msgstr "Usuários logados" | |
| 2207 | +msgstr "Usuário logado" | |
| 2214 | 2208 | |
| 2215 | 2209 | #: app/models/block.rb:223 |
| 2216 | -#, fuzzy | |
| 2217 | 2210 | msgid "Not logged" |
| 2218 | -msgstr "Não informado" | |
| 2211 | +msgstr "Não logado" | |
| 2219 | 2212 | |
| 2220 | 2213 | #: app/models/add_member.rb:21 |
| 2221 | 2214 | msgid "New member" |
| ... | ... | @@ -2223,7 +2216,7 @@ msgstr "Novo membro" |
| 2223 | 2216 | |
| 2224 | 2217 | #: app/models/add_member.rb:25 app/models/add_member.rb:41 |
| 2225 | 2218 | msgid "%{requestor} wants to be a member of this community." |
| 2226 | -msgstr "%{requestor} quer ser um integrante desta comunidade." | |
| 2219 | +msgstr "%{requestor} quer ser um membro desta comunidade." | |
| 2227 | 2220 | |
| 2228 | 2221 | #: app/models/add_member.rb:46 |
| 2229 | 2222 | msgid "" |
| ... | ... | @@ -2278,7 +2271,7 @@ msgstr "Assinar feed RSS" |
| 2278 | 2271 | |
| 2279 | 2272 | #: app/models/national_region.rb:72 |
| 2280 | 2273 | msgid "Invalid city or state name." |
| 2281 | -msgstr "Cidade inválida ou nome do estado" | |
| 2274 | +msgstr "Nome da Cidade ou Estado inválidos." | |
| 2282 | 2275 | |
| 2283 | 2276 | #: app/models/blog.rb:24 |
| 2284 | 2277 | msgid "A blog, inside which you can put other articles." |
| ... | ... | @@ -2322,7 +2315,7 @@ msgstr "" |
| 2322 | 2315 | |
| 2323 | 2316 | #: app/models/domain.rb:26 |
| 2324 | 2317 | msgid "{fn} must not start with www." |
| 2325 | -msgstr "{fn} não pode iniciar com www" | |
| 2318 | +msgstr "{fn} não pode iniciar com www." | |
| 2326 | 2319 | |
| 2327 | 2320 | #: app/models/disabled_enterprise_message_block.rb:4 |
| 2328 | 2321 | msgid "\"Disabled enterprise\" message" |
| ... | ... | @@ -2330,12 +2323,12 @@ msgstr "Mensagem \"Empreendimento desabilitado\"" |
| 2330 | 2323 | |
| 2331 | 2324 | #: app/models/disabled_enterprise_message_block.rb:8 |
| 2332 | 2325 | msgid "Shows a message for disabled enterprises." |
| 2333 | -msgstr "Mostrar mensagem para empreendimento desabilitado" | |
| 2326 | +msgstr "Mostrar mensagem para empreendimentos desabilitados." | |
| 2334 | 2327 | |
| 2335 | 2328 | #: app/models/disabled_enterprise_message_block.rb:12 |
| 2336 | 2329 | #: app/mailers/contact.rb:23 |
| 2337 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 2338 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:5 | |
| 2330 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 2331 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:5 | |
| 2339 | 2332 | msgid "Message" |
| 2340 | 2333 | msgstr "Mensagem" |
| 2341 | 2334 | |
| ... | ... | @@ -2421,14 +2414,12 @@ msgid "Jabber" |
| 2421 | 2414 | msgstr "Jabber" |
| 2422 | 2415 | |
| 2423 | 2416 | #: app/helpers/profile_helper.rb:41 |
| 2424 | -#, fuzzy | |
| 2425 | 2417 | msgid "Date of birth" |
| 2426 | -msgstr "Data de nascimento:" | |
| 2418 | +msgstr "Data de nascimento" | |
| 2427 | 2419 | |
| 2428 | 2420 | #: app/helpers/profile_helper.rb:42 |
| 2429 | -#, fuzzy | |
| 2430 | 2421 | msgid "Profile created at" |
| 2431 | -msgstr "Perfil criado em:" | |
| 2422 | +msgstr "Perfil criado em" | |
| 2432 | 2423 | |
| 2433 | 2424 | #: app/helpers/profile_helper.rb:43 app/helpers/application_helper.rb:556 |
| 2434 | 2425 | #: app/helpers/application_helper.rb:565 |
| ... | ... | @@ -2439,9 +2430,8 @@ msgid "Members" |
| 2439 | 2430 | msgstr "Integrantes" |
| 2440 | 2431 | |
| 2441 | 2432 | #: app/helpers/profile_helper.rb:44 |
| 2442 | -#, fuzzy | |
| 2443 | 2433 | msgid "Privacy setting" |
| 2444 | -msgstr "Opções de privacidade" | |
| 2434 | +msgstr "Configurações de privacidade" | |
| 2445 | 2435 | |
| 2446 | 2436 | #: app/helpers/profile_helper.rb:102 app/helpers/application_helper.rb:509 |
| 2447 | 2437 | #: app/views/profile_editor/_person_form.html.erb:18 |
| ... | ... | @@ -2565,103 +2555,103 @@ msgstr "Clique, escreva e pressione enter para pesquisar" |
| 2565 | 2555 | msgid "Public" |
| 2566 | 2556 | msgstr "Público" |
| 2567 | 2557 | |
| 2568 | -#: app/helpers/application_helper.rb:913 | |
| 2558 | +#: app/helpers/application_helper.rb:914 | |
| 2569 | 2559 | msgid "Online Manual" |
| 2570 | 2560 | msgstr "Manual on-line" |
| 2571 | 2561 | |
| 2572 | -#: app/helpers/application_helper.rb:961 app/views/home/index.html.erb:12 | |
| 2562 | +#: app/helpers/application_helper.rb:963 app/views/home/index.html.erb:12 | |
| 2573 | 2563 | #: plugins/display_content/lib/display_content_block.rb:141 |
| 2574 | 2564 | #: plugins/recent_content/views/blocks/recent_content_block.html.erb:26 |
| 2575 | 2565 | #: plugins/recent_content/views/blocks/recent_content_block.html.erb:35 |
| 2576 | 2566 | msgid "Read more" |
| 2577 | 2567 | msgstr "Leia mais" |
| 2578 | 2568 | |
| 2579 | -#: app/helpers/application_helper.rb:1042 | |
| 2569 | +#: app/helpers/application_helper.rb:1044 | |
| 2580 | 2570 | msgid "contents|More recent" |
| 2581 | 2571 | msgstr "Mais recentes" |
| 2582 | 2572 | |
| 2583 | -#: app/helpers/application_helper.rb:1043 | |
| 2573 | +#: app/helpers/application_helper.rb:1045 | |
| 2584 | 2574 | msgid "contents|More viewed" |
| 2585 | 2575 | msgstr "Mais visualizados" |
| 2586 | 2576 | |
| 2587 | -#: app/helpers/application_helper.rb:1044 | |
| 2577 | +#: app/helpers/application_helper.rb:1046 | |
| 2588 | 2578 | msgid "contents|Most commented" |
| 2589 | 2579 | msgstr "Mais comentados" |
| 2590 | 2580 | |
| 2591 | -#: app/helpers/application_helper.rb:1047 app/views/cms/view.html.erb:20 | |
| 2581 | +#: app/helpers/application_helper.rb:1049 app/views/cms/view.html.erb:20 | |
| 2592 | 2582 | msgid "New content" |
| 2593 | 2583 | msgstr "Novo conteúdo" |
| 2594 | 2584 | |
| 2595 | -#: app/helpers/application_helper.rb:1050 app/helpers/search_helper.rb:9 | |
| 2585 | +#: app/helpers/application_helper.rb:1052 app/helpers/search_helper.rb:9 | |
| 2596 | 2586 | #: app/controllers/public/search_controller.rb:54 |
| 2597 | 2587 | msgid "Contents" |
| 2598 | 2588 | msgstr "Conteúdos" |
| 2599 | 2589 | |
| 2600 | -#: app/helpers/application_helper.rb:1051 | |
| 2590 | +#: app/helpers/application_helper.rb:1053 | |
| 2601 | 2591 | #: app/views/comment/_comment_actions.html.erb:5 |
| 2602 | 2592 | msgid "Contents menu" |
| 2603 | 2593 | msgstr "Menu de conteúdos" |
| 2604 | 2594 | |
| 2605 | -#: app/helpers/application_helper.rb:1057 | |
| 2595 | +#: app/helpers/application_helper.rb:1059 | |
| 2606 | 2596 | msgid "people|More recent" |
| 2607 | 2597 | msgstr "Mais recentes" |
| 2608 | 2598 | |
| 2609 | -#: app/helpers/application_helper.rb:1058 | |
| 2599 | +#: app/helpers/application_helper.rb:1060 | |
| 2610 | 2600 | msgid "people|More active" |
| 2611 | 2601 | msgstr "Mais ativas" |
| 2612 | 2602 | |
| 2613 | -#: app/helpers/application_helper.rb:1059 | |
| 2603 | +#: app/helpers/application_helper.rb:1061 | |
| 2614 | 2604 | msgid "people|More popular" |
| 2615 | 2605 | msgstr "Mais populares" |
| 2616 | 2606 | |
| 2617 | -#: app/helpers/application_helper.rb:1062 | |
| 2607 | +#: app/helpers/application_helper.rb:1064 | |
| 2618 | 2608 | msgid "My friends" |
| 2619 | 2609 | msgstr "Meus amigos" |
| 2620 | 2610 | |
| 2621 | -#: app/helpers/application_helper.rb:1063 plugins/stoa/lib/stoa_plugin.rb:110 | |
| 2611 | +#: app/helpers/application_helper.rb:1065 plugins/stoa/lib/stoa_plugin.rb:110 | |
| 2622 | 2612 | msgid "Invite friends" |
| 2623 | 2613 | msgstr "Convidar amigos" |
| 2624 | 2614 | |
| 2625 | -#: app/helpers/application_helper.rb:1066 app/helpers/search_helper.rb:11 | |
| 2615 | +#: app/helpers/application_helper.rb:1068 app/helpers/search_helper.rb:11 | |
| 2626 | 2616 | #: app/helpers/assets_helper.rb:8 |
| 2627 | 2617 | #: app/controllers/public/search_controller.rb:49 |
| 2628 | 2618 | #: plugins/people_block/lib/people_block.rb:4 |
| 2629 | 2619 | msgid "People" |
| 2630 | 2620 | msgstr "Pessoas" |
| 2631 | 2621 | |
| 2632 | -#: app/helpers/application_helper.rb:1067 | |
| 2622 | +#: app/helpers/application_helper.rb:1069 | |
| 2633 | 2623 | msgid "People menu" |
| 2634 | 2624 | msgstr "Menu de pessoas" |
| 2635 | 2625 | |
| 2636 | -#: app/helpers/application_helper.rb:1073 | |
| 2626 | +#: app/helpers/application_helper.rb:1075 | |
| 2637 | 2627 | msgid "communities|More recent" |
| 2638 | 2628 | msgstr "Mais recentes" |
| 2639 | 2629 | |
| 2640 | -#: app/helpers/application_helper.rb:1074 | |
| 2630 | +#: app/helpers/application_helper.rb:1076 | |
| 2641 | 2631 | msgid "communities|More active" |
| 2642 | 2632 | msgstr "Mais ativas" |
| 2643 | 2633 | |
| 2644 | -#: app/helpers/application_helper.rb:1075 | |
| 2634 | +#: app/helpers/application_helper.rb:1077 | |
| 2645 | 2635 | msgid "communities|More popular" |
| 2646 | 2636 | msgstr "Mais populares" |
| 2647 | 2637 | |
| 2648 | -#: app/helpers/application_helper.rb:1078 | |
| 2649 | -#: app/helpers/application_helper.rb:1128 | |
| 2638 | +#: app/helpers/application_helper.rb:1080 | |
| 2639 | +#: app/helpers/application_helper.rb:1130 | |
| 2650 | 2640 | msgid "My communities" |
| 2651 | 2641 | msgstr "Minhas comunidades" |
| 2652 | 2642 | |
| 2653 | -#: app/helpers/application_helper.rb:1083 | |
| 2643 | +#: app/helpers/application_helper.rb:1085 | |
| 2654 | 2644 | msgid "Communities menu" |
| 2655 | 2645 | msgstr "Menu de comunidades" |
| 2656 | 2646 | |
| 2657 | -#: app/helpers/application_helper.rb:1088 | |
| 2647 | +#: app/helpers/application_helper.rb:1090 | |
| 2658 | 2648 | #: app/views/layouts/slideshow.html.erb:18 |
| 2659 | 2649 | #: app/views/blocks/slideshow.html.erb:17 |
| 2660 | 2650 | #: app/views/blocks/featured_products.html.erb:3 |
| 2661 | 2651 | msgid "Previous" |
| 2662 | 2652 | msgstr "Anterior" |
| 2663 | 2653 | |
| 2664 | -#: app/helpers/application_helper.rb:1088 app/helpers/forms_helper.rb:169 | |
| 2654 | +#: app/helpers/application_helper.rb:1090 app/helpers/forms_helper.rb:169 | |
| 2665 | 2655 | #: app/views/layouts/slideshow.html.erb:18 |
| 2666 | 2656 | #: app/views/enterprise_registration/basic_information.html.erb:40 |
| 2667 | 2657 | #: app/views/blocks/slideshow.html.erb:21 |
| ... | ... | @@ -2670,45 +2660,45 @@ msgstr "Anterior" |
| 2670 | 2660 | msgid "Next" |
| 2671 | 2661 | msgstr "Próximo" |
| 2672 | 2662 | |
| 2673 | -#: app/helpers/application_helper.rb:1108 | |
| 2663 | +#: app/helpers/application_helper.rb:1110 | |
| 2674 | 2664 | msgid "See all" |
| 2675 | 2665 | msgstr "Ver todos" |
| 2676 | 2666 | |
| 2677 | -#: app/helpers/application_helper.rb:1111 | |
| 2667 | +#: app/helpers/application_helper.rb:1113 | |
| 2678 | 2668 | msgid "<span>Manage</span> %s" |
| 2679 | 2669 | msgstr "<span>Gerenciar</span> %s" |
| 2680 | 2670 | |
| 2681 | -#: app/helpers/application_helper.rb:1111 | |
| 2671 | +#: app/helpers/application_helper.rb:1113 | |
| 2682 | 2672 | #: app/views/shared/user_menu.html.erb:26 |
| 2683 | 2673 | #: app/views/shared/_manage_link.html.erb:2 |
| 2684 | 2674 | msgid "Manage %s" |
| 2685 | 2675 | msgstr "Gerenciar %s" |
| 2686 | 2676 | |
| 2687 | -#: app/helpers/application_helper.rb:1122 | |
| 2677 | +#: app/helpers/application_helper.rb:1124 | |
| 2688 | 2678 | msgid "My enterprises" |
| 2689 | 2679 | msgstr "Meus empreendimentos" |
| 2690 | 2680 | |
| 2691 | -#: app/helpers/application_helper.rb:1132 | |
| 2681 | +#: app/helpers/application_helper.rb:1134 | |
| 2692 | 2682 | msgid "Administration" |
| 2693 | 2683 | msgstr "Administração" |
| 2694 | 2684 | |
| 2695 | -#: app/helpers/application_helper.rb:1132 | |
| 2685 | +#: app/helpers/application_helper.rb:1134 | |
| 2696 | 2686 | msgid "Configure the environment" |
| 2697 | 2687 | msgstr "Configurar o ambiente" |
| 2698 | 2688 | |
| 2699 | -#: app/helpers/application_helper.rb:1139 | |
| 2689 | +#: app/helpers/application_helper.rb:1141 | |
| 2700 | 2690 | msgid "Manage your pending tasks" |
| 2701 | 2691 | msgstr "Gerenciar suas tarefas pendentes" |
| 2702 | 2692 | |
| 2703 | -#: app/helpers/application_helper.rb:1142 | |
| 2693 | +#: app/helpers/application_helper.rb:1144 | |
| 2704 | 2694 | msgid "<span class='welcome'>Welcome,</span> %s" |
| 2705 | 2695 | msgstr "<span class='welcome'>Bem-vindo(a),</span> %s" |
| 2706 | 2696 | |
| 2707 | -#: app/helpers/application_helper.rb:1142 | |
| 2697 | +#: app/helpers/application_helper.rb:1144 | |
| 2708 | 2698 | msgid "Go to your homepage" |
| 2709 | 2699 | msgstr "Ir à sua página inicial" |
| 2710 | 2700 | |
| 2711 | -#: app/helpers/application_helper.rb:1147 | |
| 2701 | +#: app/helpers/application_helper.rb:1149 | |
| 2712 | 2702 | #: app/views/shared/user_menu.html.erb:37 |
| 2713 | 2703 | #: app/views/blocks/profile_info.html.erb:24 |
| 2714 | 2704 | #: app/views/blocks/profile_image.html.erb:21 |
| ... | ... | @@ -2717,110 +2707,108 @@ msgstr "Ir à sua página inicial" |
| 2717 | 2707 | msgid "Control panel" |
| 2718 | 2708 | msgstr "Painel de controle" |
| 2719 | 2709 | |
| 2720 | -#: app/helpers/application_helper.rb:1147 | |
| 2710 | +#: app/helpers/application_helper.rb:1149 | |
| 2721 | 2711 | msgid "Configure your personal account and content" |
| 2722 | 2712 | msgstr "Configurar sua conta pessoal e conteúdo" |
| 2723 | 2713 | |
| 2724 | -#: app/helpers/application_helper.rb:1149 | |
| 2714 | +#: app/helpers/application_helper.rb:1151 | |
| 2725 | 2715 | #: app/views/shared/user_menu.html.erb:45 |
| 2726 | 2716 | #: app/views/blocks/login_block.html.erb:9 |
| 2727 | 2717 | msgid "Logout" |
| 2728 | 2718 | msgstr "Sair" |
| 2729 | 2719 | |
| 2730 | -#: app/helpers/application_helper.rb:1149 | |
| 2720 | +#: app/helpers/application_helper.rb:1151 | |
| 2731 | 2721 | msgid "Leave the system" |
| 2732 | 2722 | msgstr "Sair do sistema" |
| 2733 | 2723 | |
| 2734 | -#: app/helpers/application_helper.rb:1155 | |
| 2724 | +#: app/helpers/application_helper.rb:1157 | |
| 2735 | 2725 | msgid " characters left" |
| 2736 | -msgstr "caracteres restantes" | |
| 2726 | +msgstr " caracteres restantes" | |
| 2737 | 2727 | |
| 2738 | -#: app/helpers/application_helper.rb:1156 | |
| 2728 | +#: app/helpers/application_helper.rb:1158 | |
| 2739 | 2729 | msgid "Limit of characters reached" |
| 2740 | 2730 | msgstr "Limite de caracteres atingido" |
| 2741 | 2731 | |
| 2742 | -#: app/helpers/application_helper.rb:1182 | |
| 2743 | -#: app/helpers/application_helper.rb:1188 | |
| 2732 | +#: app/helpers/application_helper.rb:1184 | |
| 2733 | +#: app/helpers/application_helper.rb:1190 | |
| 2744 | 2734 | msgid "less than a minute" |
| 2745 | 2735 | msgstr "menos de um minuto" |
| 2746 | 2736 | |
| 2747 | -#: app/helpers/application_helper.rb:1182 | |
| 2748 | -#: app/helpers/application_helper.rb:1189 | |
| 2737 | +#: app/helpers/application_helper.rb:1184 | |
| 2738 | +#: app/helpers/application_helper.rb:1191 | |
| 2749 | 2739 | msgid "1 minute" |
| 2750 | 2740 | msgstr "1 minuto" |
| 2751 | 2741 | |
| 2752 | -#: app/helpers/application_helper.rb:1184 | |
| 2742 | +#: app/helpers/application_helper.rb:1186 | |
| 2753 | 2743 | msgid "less than 5 seconds" |
| 2754 | 2744 | msgstr "menos de 5 segundos" |
| 2755 | 2745 | |
| 2756 | -#: app/helpers/application_helper.rb:1185 | |
| 2746 | +#: app/helpers/application_helper.rb:1187 | |
| 2757 | 2747 | msgid "less than 10 seconds" |
| 2758 | 2748 | msgstr "menos de 10 segundos" |
| 2759 | 2749 | |
| 2760 | -#: app/helpers/application_helper.rb:1186 | |
| 2750 | +#: app/helpers/application_helper.rb:1188 | |
| 2761 | 2751 | msgid "less than 20 seconds" |
| 2762 | 2752 | msgstr "menos de 20 segundos" |
| 2763 | 2753 | |
| 2764 | -#: app/helpers/application_helper.rb:1187 | |
| 2754 | +#: app/helpers/application_helper.rb:1189 | |
| 2765 | 2755 | msgid "half a minute" |
| 2766 | 2756 | msgstr "meio minuto" |
| 2767 | 2757 | |
| 2768 | -#: app/helpers/application_helper.rb:1192 | |
| 2758 | +#: app/helpers/application_helper.rb:1194 | |
| 2769 | 2759 | msgid "%{distance} minutes ago" |
| 2770 | 2760 | msgstr "%{distance} minutos atrás" |
| 2771 | 2761 | |
| 2772 | -#: app/helpers/application_helper.rb:1193 | |
| 2762 | +#: app/helpers/application_helper.rb:1195 | |
| 2773 | 2763 | msgid "about 1 hour ago" |
| 2774 | 2764 | msgstr "por volta de 1 hora atrás" |
| 2775 | 2765 | |
| 2776 | -#: app/helpers/application_helper.rb:1194 | |
| 2766 | +#: app/helpers/application_helper.rb:1196 | |
| 2777 | 2767 | msgid "about %{distance} hours ago" |
| 2778 | 2768 | msgstr "por volta de %{distance} horas atrás" |
| 2779 | 2769 | |
| 2780 | -#: app/helpers/application_helper.rb:1195 | |
| 2770 | +#: app/helpers/application_helper.rb:1197 | |
| 2781 | 2771 | msgid "1 day ago" |
| 2782 | 2772 | msgstr "1 dia atrás" |
| 2783 | 2773 | |
| 2784 | -#: app/helpers/application_helper.rb:1196 | |
| 2774 | +#: app/helpers/application_helper.rb:1198 | |
| 2785 | 2775 | msgid "%{distance} days ago" |
| 2786 | 2776 | msgstr "%{distance} dias atrás" |
| 2787 | 2777 | |
| 2788 | -#: app/helpers/application_helper.rb:1214 | |
| 2778 | +#: app/helpers/application_helper.rb:1216 | |
| 2789 | 2779 | msgid "Source: %s" |
| 2790 | 2780 | msgstr "Fonte: %s" |
| 2791 | 2781 | |
| 2792 | -#: app/helpers/application_helper.rb:1247 | |
| 2782 | +#: app/helpers/application_helper.rb:1249 | |
| 2793 | 2783 | #: plugins/community_block/views/community_block.html.erb:17 |
| 2794 | 2784 | msgid "Report abuse" |
| 2795 | 2785 | msgstr "Denúncia" |
| 2796 | 2786 | |
| 2797 | -#: app/helpers/application_helper.rb:1249 | |
| 2787 | +#: app/helpers/application_helper.rb:1251 | |
| 2798 | 2788 | msgid "You already reported this profile." |
| 2799 | 2789 | msgstr "Você ja denunciou este perfil." |
| 2800 | 2790 | |
| 2801 | -#: app/helpers/application_helper.rb:1250 | |
| 2791 | +#: app/helpers/application_helper.rb:1252 | |
| 2802 | 2792 | msgid "Report this profile for abusive behaviour" |
| 2803 | 2793 | msgstr "Denunciar este perfil por comportamento abusivo" |
| 2804 | 2794 | |
| 2805 | -#: app/helpers/application_helper.rb:1289 | |
| 2806 | -#, fuzzy | |
| 2795 | +#: app/helpers/application_helper.rb:1292 | |
| 2807 | 2796 | msgid "" |
| 2808 | 2797 | "Are you sure that you want to remove the folder \"%s\"? Note that all the " |
| 2809 | 2798 | "items inside it will also be removed!" |
| 2810 | 2799 | msgstr "" |
| 2811 | -"Tem certeza que quer excluir esta pasta? Perceba que todos os itens dentro " | |
| 2812 | -"dela também serão removidos!" | |
| 2800 | +"Tem certeza que quer excluir a pasta \"%s\"? Perceba que todos os itens " | |
| 2801 | +"dentro dela também serão também removidos!" | |
| 2813 | 2802 | |
| 2814 | -#: app/helpers/application_helper.rb:1291 | |
| 2815 | -#, fuzzy | |
| 2803 | +#: app/helpers/application_helper.rb:1294 | |
| 2816 | 2804 | msgid "Are you sure that you want to remove the item \"%s\"?" |
| 2817 | -msgstr "Tem certeza que quer excluir este ítem?" | |
| 2805 | +msgstr "Tem certeza que quer excluir este item?" | |
| 2818 | 2806 | |
| 2819 | -#: app/helpers/application_helper.rb:1319 | |
| 2807 | +#: app/helpers/application_helper.rb:1323 | |
| 2820 | 2808 | msgid "Profile organization" |
| 2821 | 2809 | msgstr "Organização do perfil" |
| 2822 | 2810 | |
| 2823 | -#: app/helpers/application_helper.rb:1320 | |
| 2811 | +#: app/helpers/application_helper.rb:1324 | |
| 2824 | 2812 | msgid "" |
| 2825 | 2813 | "Your profile will be created according to the selected template. Click on " |
| 2826 | 2814 | "the options to view them." |
| ... | ... | @@ -2828,16 +2816,15 @@ msgstr "" |
| 2828 | 2816 | "Seu perfil será criado de acordo com o modelo selecionado. Clique nas opções " |
| 2829 | 2817 | "para visualizá-los." |
| 2830 | 2818 | |
| 2831 | -#: app/helpers/application_helper.rb:1355 | |
| 2832 | -#, fuzzy | |
| 2819 | +#: app/helpers/application_helper.rb:1359 | |
| 2833 | 2820 | msgid "Errors while saving" |
| 2834 | -msgstr "Mensagem de erro" | |
| 2821 | +msgstr "Erro ao salvar" | |
| 2835 | 2822 | |
| 2836 | -#: app/helpers/application_helper.rb:1365 | |
| 2823 | +#: app/helpers/application_helper.rb:1369 | |
| 2837 | 2824 | msgid "The content here is available to %s's friends only." |
| 2838 | 2825 | msgstr "O conteúdo aqui está disponível apenas para os amigos do(a) %s." |
| 2839 | 2826 | |
| 2840 | -#: app/helpers/application_helper.rb:1368 | |
| 2827 | +#: app/helpers/application_helper.rb:1372 | |
| 2841 | 2828 | msgid "The contents in this profile is available to members only." |
| 2842 | 2829 | msgstr "O conteúdo deste perfil está disponível apenas para os seus membros." |
| 2843 | 2830 | |
| ... | ... | @@ -2848,7 +2835,7 @@ msgstr "Alterar categoria" |
| 2848 | 2835 | |
| 2849 | 2836 | #: app/helpers/manage_products_helper.rb:164 |
| 2850 | 2837 | msgid "Price: " |
| 2851 | -msgstr "Preço:" | |
| 2838 | +msgstr "Preço: " | |
| 2852 | 2839 | |
| 2853 | 2840 | #: app/helpers/manage_products_helper.rb:173 |
| 2854 | 2841 | msgid "Product not available!" |
| ... | ... | @@ -3080,17 +3067,19 @@ msgstr "Ajuda sobre este bloco" |
| 3080 | 3067 | |
| 3081 | 3068 | #: app/helpers/boxes_helper.rb:226 |
| 3082 | 3069 | msgid "Embed block code" |
| 3083 | -msgstr "" | |
| 3070 | +msgstr "Código para Incorporação do Bloco" | |
| 3084 | 3071 | |
| 3085 | 3072 | #: app/helpers/boxes_helper.rb:227 |
| 3086 | 3073 | msgid "" |
| 3087 | 3074 | "Below, youll see a field containing embed code for the block. Just copy the " |
| 3088 | 3075 | "code and paste it into your website or blogging software." |
| 3089 | 3076 | msgstr "" |
| 3077 | +"Abaixo, você vê um campo contendo o código de incorporação deste bloco. " | |
| 3078 | +"Apenas copie o código e cole no seu site ou blog." | |
| 3090 | 3079 | |
| 3091 | 3080 | #: app/helpers/boxes_helper.rb:230 |
| 3092 | 3081 | msgid "Embed code" |
| 3093 | -msgstr "" | |
| 3082 | +msgstr "Código de incorporação" | |
| 3094 | 3083 | |
| 3095 | 3084 | #: app/helpers/account_helper.rb:10 app/views/account/_signup_form.html.erb:40 |
| 3096 | 3085 | msgid "Checking availability of login name..." |
| ... | ... | @@ -3127,7 +3116,7 @@ msgstr "e-Mail:" |
| 3127 | 3116 | |
| 3128 | 3117 | #: app/helpers/enterprise_homepage_helper.rb:8 |
| 3129 | 3118 | msgid "Phone(s):" |
| 3130 | -msgstr "Telefone(s)" | |
| 3119 | +msgstr "Telefone(s):" | |
| 3131 | 3120 | |
| 3132 | 3121 | #: app/helpers/enterprise_homepage_helper.rb:9 |
| 3133 | 3122 | msgid "Location:" |
| ... | ... | @@ -3588,7 +3577,7 @@ msgid "Wk" |
| 3588 | 3577 | msgstr "Sem" |
| 3589 | 3578 | |
| 3590 | 3579 | #: app/helpers/forms_helper.rb:248 |
| 3591 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 3580 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 3592 | 3581 | #: plugins/shopping_cart/views/shopping_cart_plugin_myprofile/reports.html.erb:11 |
| 3593 | 3582 | msgid "From" |
| 3594 | 3583 | msgstr "De" |
| ... | ... | @@ -4093,18 +4082,16 @@ msgid "Trusted site could not be removed" |
| 4093 | 4082 | msgstr "O site confiável não pode ser removido" |
| 4094 | 4083 | |
| 4095 | 4084 | #: app/controllers/admin/categories_controller.rb:48 |
| 4096 | -#, fuzzy | |
| 4097 | 4085 | msgid "Category %s saved." |
| 4098 | -msgstr "Categoria: %s" | |
| 4086 | +msgstr "Categoria %s salva." | |
| 4099 | 4087 | |
| 4100 | 4088 | #: app/controllers/admin/categories_controller.rb:52 |
| 4101 | -#, fuzzy | |
| 4102 | 4089 | msgid "Could not save category." |
| 4103 | -msgstr "Clique para selecionar a categoria" | |
| 4090 | +msgstr "Não foi possível salvar a categoria." | |
| 4104 | 4091 | |
| 4105 | 4092 | #: app/controllers/admin/features_controller.rb:11 |
| 4106 | 4093 | msgid "Features updated successfully." |
| 4107 | -msgstr "Funcionalidades alteradas com sucesso" | |
| 4094 | +msgstr "Funcionalidades atualizadas com sucesso." | |
| 4108 | 4095 | |
| 4109 | 4096 | #: app/controllers/admin/features_controller.rb:27 |
| 4110 | 4097 | msgid "Person fields updated successfully." |
| ... | ... | @@ -4120,7 +4107,7 @@ msgstr "Campos de empreendimento atualizados com sucesso." |
| 4120 | 4107 | |
| 4121 | 4108 | #: app/controllers/admin/features_controller.rb:39 |
| 4122 | 4109 | msgid "Enterprise fields not updated successfully." |
| 4123 | -msgstr "Campos de empreendimento não atualizados com sucesso" | |
| 4110 | +msgstr "Campos de empreendimento não atualizados com sucesso." | |
| 4124 | 4111 | |
| 4125 | 4112 | #: app/controllers/admin/features_controller.rb:47 |
| 4126 | 4113 | msgid "Community fields updated successfully." |
| ... | ... | @@ -4169,7 +4156,7 @@ msgstr "Pastas do portal salvas" |
| 4169 | 4156 | |
| 4170 | 4157 | #: app/controllers/admin/admin_panel_controller.rb:69 |
| 4171 | 4158 | msgid "Saved the number of news on folders" |
| 4172 | -msgstr "Número de notícias nas pastas salvo." | |
| 4159 | +msgstr "Número de notícias nas pastas salvo" | |
| 4173 | 4160 | |
| 4174 | 4161 | #: app/controllers/admin/templates_controller.rb:11 |
| 4175 | 4162 | #: app/controllers/admin/templates_controller.rb:23 |
| ... | ... | @@ -4209,7 +4196,7 @@ msgstr "A licença não pode ser atualizada" |
| 4209 | 4196 | |
| 4210 | 4197 | #: app/controllers/admin/licenses_controller.rb:40 |
| 4211 | 4198 | msgid "License removed" |
| 4212 | -msgstr "A licença foi removida." | |
| 4199 | +msgstr "A licença foi removida" | |
| 4213 | 4200 | |
| 4214 | 4201 | #: app/controllers/admin/licenses_controller.rb:42 |
| 4215 | 4202 | #: app/controllers/admin/licenses_controller.rb:45 |
| ... | ... | @@ -4225,7 +4212,7 @@ msgid "Failed to edit role" |
| 4225 | 4212 | msgstr "Falhou em editar papel" |
| 4226 | 4213 | |
| 4227 | 4214 | #: app/controllers/admin/users_controller.rb:53 |
| 4228 | -#: app/controllers/my_profile/profile_editor_controller.rb:74 | |
| 4215 | +#: app/controllers/my_profile/profile_editor_controller.rb:76 | |
| 4229 | 4216 | msgid "The profile was deleted." |
| 4230 | 4217 | msgstr "O perfil foi removido." |
| 4231 | 4218 | |
| ... | ... | @@ -4234,12 +4221,12 @@ msgid "Could not remove profile" |
| 4234 | 4221 | msgstr "Não foi possível remover o perfil" |
| 4235 | 4222 | |
| 4236 | 4223 | #: app/controllers/admin/users_controller.rb:95 |
| 4237 | -#: app/controllers/public/profile_controller.rb:363 | |
| 4224 | +#: app/controllers/public/profile_controller.rb:366 | |
| 4238 | 4225 | msgid "The e-mails are being sent" |
| 4239 | 4226 | msgstr "Os e-mail estão sendo enviados" |
| 4240 | 4227 | |
| 4241 | 4228 | #: app/controllers/admin/users_controller.rb:98 |
| 4242 | -#: app/controllers/public/profile_controller.rb:366 | |
| 4229 | +#: app/controllers/public/profile_controller.rb:369 | |
| 4243 | 4230 | msgid "Could not create the e-mail" |
| 4244 | 4231 | msgstr "Não foi possível criar o e-mail" |
| 4245 | 4232 | |
| ... | ... | @@ -4280,10 +4267,9 @@ msgid "Your account has been activated, now you can log in!" |
| 4280 | 4267 | msgstr "Sua conta foi ativada, agora você pode fazer login!" |
| 4281 | 4268 | |
| 4282 | 4269 | #: app/controllers/public/account_controller.rb:28 |
| 4283 | -#, fuzzy | |
| 4284 | 4270 | msgid "Thanks for registering. The administrators were notified." |
| 4285 | 4271 | msgstr "" |
| 4286 | -"Obrigado pela sua sugestão. Os administradores da comunidade foram " | |
| 4272 | +"Obrigado por se registrar. Os administradores da comunidade foram " | |
| 4287 | 4273 | "notificados." |
| 4288 | 4274 | |
| 4289 | 4275 | #: app/controllers/public/account_controller.rb:36 |
| ... | ... | @@ -4311,9 +4297,8 @@ msgid "Captcha (the human test)" |
| 4311 | 4297 | msgstr "Captcha (o teste humano)" |
| 4312 | 4298 | |
| 4313 | 4299 | #: app/controllers/public/account_controller.rb:132 |
| 4314 | -#, fuzzy | |
| 4315 | 4300 | msgid "Thanks for registering!" |
| 4316 | -msgstr "Obrigado por se registrar!" | |
| 4301 | +msgstr "Obrigado por se cadastrar!" | |
| 4317 | 4302 | |
| 4318 | 4303 | #: app/controllers/public/account_controller.rb:152 |
| 4319 | 4304 | msgid "You have been logged out." |
| ... | ... | @@ -4349,9 +4334,8 @@ msgid "This login name is unavailable" |
| 4349 | 4334 | msgstr "Este nome de usuário está indisponível" |
| 4350 | 4335 | |
| 4351 | 4336 | #: app/controllers/public/account_controller.rb:288 |
| 4352 | -#, fuzzy | |
| 4353 | 4337 | msgid "This field can't be blank" |
| 4354 | -msgstr "Este campo precisa ser público" | |
| 4338 | +msgstr "Este campo precisa ser preenchido" | |
| 4355 | 4339 | |
| 4356 | 4340 | #: app/controllers/public/account_controller.rb:295 |
| 4357 | 4341 | msgid "This e-mail address is available" |
| ... | ... | @@ -4394,80 +4378,80 @@ msgstr "O comentário não foi removido." |
| 4394 | 4378 | msgid "You couldn't mark this comment as spam." |
| 4395 | 4379 | msgstr "Você não pôde marcar esse comentário como spam." |
| 4396 | 4380 | |
| 4397 | -#: app/controllers/public/profile_controller.rb:46 | |
| 4398 | -#: app/controllers/public/profile_controller.rb:47 | |
| 4381 | +#: app/controllers/public/profile_controller.rb:49 | |
| 4382 | +#: app/controllers/public/profile_controller.rb:50 | |
| 4399 | 4383 | #: app/views/profile/content_tagged.html.erb:3 |
| 4400 | 4384 | msgid "%s's contents tagged with \"%s\"" |
| 4401 | 4385 | msgstr "Conteúdo de %s marcado com a tag \"%s\"" |
| 4402 | 4386 | |
| 4403 | -#: app/controllers/public/profile_controller.rb:91 | |
| 4387 | +#: app/controllers/public/profile_controller.rb:94 | |
| 4404 | 4388 | msgid "%s administrator still needs to accept you as member." |
| 4405 | 4389 | msgstr "O administrador de %s ainda precisa aceitar você como integrante." |
| 4406 | 4390 | |
| 4407 | -#: app/controllers/public/profile_controller.rb:93 | |
| 4391 | +#: app/controllers/public/profile_controller.rb:96 | |
| 4408 | 4392 | msgid "You just became a member of %s." |
| 4409 | 4393 | msgstr "Você acaba de se tornar um integrante de %s." |
| 4410 | 4394 | |
| 4411 | -#: app/controllers/public/profile_controller.rb:96 | |
| 4395 | +#: app/controllers/public/profile_controller.rb:99 | |
| 4412 | 4396 | msgid "You are already a member of %s." |
| 4413 | -msgstr "Você já é integrante de %s" | |
| 4397 | +msgstr "Você já é integrante de %s." | |
| 4414 | 4398 | |
| 4415 | -#: app/controllers/public/profile_controller.rb:118 | |
| 4399 | +#: app/controllers/public/profile_controller.rb:121 | |
| 4416 | 4400 | msgid "You are not a member of %s." |
| 4417 | -msgstr "Você não é integrante de %s" | |
| 4401 | +msgstr "Você não é integrante de %s." | |
| 4418 | 4402 | |
| 4419 | -#: app/controllers/public/profile_controller.rb:138 | |
| 4403 | +#: app/controllers/public/profile_controller.rb:141 | |
| 4420 | 4404 | msgid "%s still needs to accept being your friend." |
| 4421 | 4405 | msgstr "%s ainda precisa aceitar ser seu(sua) amigo(a)." |
| 4422 | 4406 | |
| 4423 | -#: app/controllers/public/profile_controller.rb:140 | |
| 4407 | +#: app/controllers/public/profile_controller.rb:143 | |
| 4424 | 4408 | msgid "You are already a friend of %s." |
| 4425 | 4409 | msgstr "Você já é amigo de %s." |
| 4426 | 4410 | |
| 4427 | -#: app/controllers/public/profile_controller.rb:159 | |
| 4411 | +#: app/controllers/public/profile_controller.rb:162 | |
| 4428 | 4412 | msgid "You have unblocked %s successfully. " |
| 4429 | -msgstr "Você desbloqueou %s com sucesso." | |
| 4413 | +msgstr "Você desbloqueou %s com sucesso. " | |
| 4430 | 4414 | |
| 4431 | -#: app/controllers/public/profile_controller.rb:162 | |
| 4415 | +#: app/controllers/public/profile_controller.rb:165 | |
| 4432 | 4416 | msgid "You are not allowed to unblock enterprises in this environment." |
| 4433 | 4417 | msgstr "Você não está autorizado a desbloquear empreendimentos neste ambiente." |
| 4434 | 4418 | |
| 4435 | -#: app/controllers/public/profile_controller.rb:174 | |
| 4419 | +#: app/controllers/public/profile_controller.rb:177 | |
| 4436 | 4420 | msgid "Message successfully sent." |
| 4437 | 4421 | msgstr "Mensagem enviada com sucesso." |
| 4438 | 4422 | |
| 4439 | -#: app/controllers/public/profile_controller.rb:174 | |
| 4423 | +#: app/controllers/public/profile_controller.rb:177 | |
| 4440 | 4424 | msgid "You can't leave an empty message." |
| 4441 | 4425 | msgstr "Você não pode deixar uma mensagem vazia." |
| 4442 | 4426 | |
| 4443 | -#: app/controllers/public/profile_controller.rb:185 | |
| 4427 | +#: app/controllers/public/profile_controller.rb:188 | |
| 4444 | 4428 | msgid "Comment successfully added." |
| 4445 | -msgstr "Comentário adicionado com sucesso" | |
| 4429 | +msgstr "Comentário adicionado com sucesso." | |
| 4446 | 4430 | |
| 4447 | -#: app/controllers/public/profile_controller.rb:185 | |
| 4431 | +#: app/controllers/public/profile_controller.rb:188 | |
| 4448 | 4432 | msgid "You can't leave an empty comment." |
| 4449 | 4433 | msgstr "Você não pode deixar uma mensagem vazia." |
| 4450 | 4434 | |
| 4451 | -#: app/controllers/public/profile_controller.rb:276 | |
| 4435 | +#: app/controllers/public/profile_controller.rb:279 | |
| 4452 | 4436 | msgid "Notification successfully removed." |
| 4453 | -msgstr "Notificação removida com sucesso" | |
| 4437 | +msgstr "Notificação removida com sucesso." | |
| 4454 | 4438 | |
| 4455 | -#: app/controllers/public/profile_controller.rb:278 | |
| 4439 | +#: app/controllers/public/profile_controller.rb:281 | |
| 4456 | 4440 | msgid "You could not remove this notification." |
| 4457 | -msgstr "Você não pode remover essa notificação" | |
| 4441 | +msgstr "Você não pode remover essa notificação." | |
| 4458 | 4442 | |
| 4459 | -#: app/controllers/public/profile_controller.rb:311 | |
| 4443 | +#: app/controllers/public/profile_controller.rb:314 | |
| 4460 | 4444 | msgid "You could not answer the captcha." |
| 4461 | 4445 | msgstr "Você não pode responder o captcha." |
| 4462 | 4446 | |
| 4463 | -#: app/controllers/public/profile_controller.rb:331 | |
| 4447 | +#: app/controllers/public/profile_controller.rb:334 | |
| 4464 | 4448 | msgid "" |
| 4465 | 4449 | "Your abuse report was registered. The administrators are reviewing your " |
| 4466 | 4450 | "report." |
| 4467 | 4451 | msgstr "" |
| 4468 | 4452 | "Sua denúncia foi registrada. O adiministrador esta revisando sua denúncia." |
| 4469 | 4453 | |
| 4470 | -#: app/controllers/public/profile_controller.rb:339 | |
| 4454 | +#: app/controllers/public/profile_controller.rb:342 | |
| 4471 | 4455 | msgid "" |
| 4472 | 4456 | "Your report couldn't be saved due to some problem. Please contact the " |
| 4473 | 4457 | "administrator." |
| ... | ... | @@ -4475,7 +4459,7 @@ msgstr "" |
| 4475 | 4459 | "Sua denúncia não pôde ser salva devido algum problema. Por favor contacte o " |
| 4476 | 4460 | "administrador." |
| 4477 | 4461 | |
| 4478 | -#: app/controllers/public/profile_controller.rb:402 | |
| 4462 | +#: app/controllers/public/profile_controller.rb:406 | |
| 4479 | 4463 | msgid "" |
| 4480 | 4464 | "This profile is inaccessible. You don't have the permission to view the " |
| 4481 | 4465 | "content here." |
| ... | ... | @@ -4483,7 +4467,7 @@ msgstr "" |
| 4483 | 4467 | "Este perfil esta inacessível. Você não tem permissão de visualizar este " |
| 4484 | 4468 | "conteúdo." |
| 4485 | 4469 | |
| 4486 | -#: app/controllers/public/profile_controller.rb:402 | |
| 4470 | +#: app/controllers/public/profile_controller.rb:406 | |
| 4487 | 4471 | msgid "Oops ... you cannot go ahead here" |
| 4488 | 4472 | msgstr "Oops ... você não pode seguir em frente" |
| 4489 | 4473 | |
| ... | ... | @@ -4500,27 +4484,25 @@ msgid "\"%s\" configured as homepage." |
| 4500 | 4484 | msgstr "\"%s\" configurado como página inicial." |
| 4501 | 4485 | |
| 4502 | 4486 | #: app/controllers/my_profile/cms_controller.rb:230 |
| 4503 | -#, fuzzy | |
| 4504 | 4487 | msgid "\"%s\" was removed." |
| 4505 | -msgstr "%s foi removido." | |
| 4488 | +msgstr "\"%s\" foi removido." | |
| 4506 | 4489 | |
| 4507 | 4490 | #: app/controllers/my_profile/cms_controller.rb:270 |
| 4508 | -#, fuzzy | |
| 4509 | 4491 | msgid "Select some group to publish your article" |
| 4510 | 4492 | msgstr "Selecione os grupos onde você quer publicar seu artigo" |
| 4511 | 4493 | |
| 4512 | 4494 | #: app/controllers/my_profile/cms_controller.rb:281 |
| 4513 | 4495 | #: app/controllers/my_profile/cms_controller.rb:298 |
| 4514 | 4496 | msgid "Your publish request was sent successfully" |
| 4515 | -msgstr "Sua requisição de publicação foi enviada com sucesso." | |
| 4497 | +msgstr "Sua requisição de publicação foi enviada com sucesso" | |
| 4516 | 4498 | |
| 4517 | 4499 | #: app/controllers/my_profile/cms_controller.rb:300 |
| 4518 | 4500 | msgid "Your publish request couldn't be sent." |
| 4519 | -msgstr "Sua requisição de publicação não pode ser enviada" | |
| 4501 | +msgstr "Sua requisição de publicação não pode ser enviada." | |
| 4520 | 4502 | |
| 4521 | 4503 | #: app/controllers/my_profile/cms_controller.rb:303 |
| 4522 | 4504 | msgid "There is no portal community to publish your article." |
| 4523 | -msgstr "Não há comunidade portal para publicar seu artigo" | |
| 4505 | +msgstr "Não há comunidade portal para publicar seu artigo." | |
| 4524 | 4506 | |
| 4525 | 4507 | #: app/controllers/my_profile/cms_controller.rb:323 |
| 4526 | 4508 | msgid "Thanks for your suggestion. The community administrators were notified." |
| ... | ... | @@ -4534,7 +4516,7 @@ msgstr "%s não pode ser enviado" |
| 4534 | 4516 | |
| 4535 | 4517 | #: app/controllers/my_profile/tasks_controller.rb:39 |
| 4536 | 4518 | msgid "All decisions were applied successfully." |
| 4537 | -msgstr "Todos as decisões foram aplicadas com sucesso!" | |
| 4519 | +msgstr "Todos as decisões foram aplicadas com sucesso." | |
| 4538 | 4520 | |
| 4539 | 4521 | #: app/controllers/my_profile/tasks_controller.rb:41 |
| 4540 | 4522 | msgid "Some decisions couldn't be applied." |
| ... | ... | @@ -4560,15 +4542,15 @@ msgstr "O insumo não foi encontrado" |
| 4560 | 4542 | msgid "Address was updated successfully!" |
| 4561 | 4543 | msgstr "O endereço foi atualizado com sucesso!" |
| 4562 | 4544 | |
| 4563 | -#: app/controllers/my_profile/profile_editor_controller.rb:34 | |
| 4545 | +#: app/controllers/my_profile/profile_editor_controller.rb:36 | |
| 4564 | 4546 | msgid "%s was not enabled." |
| 4565 | 4547 | msgstr "%s não foi habilitado." |
| 4566 | 4548 | |
| 4567 | -#: app/controllers/my_profile/profile_editor_controller.rb:44 | |
| 4549 | +#: app/controllers/my_profile/profile_editor_controller.rb:46 | |
| 4568 | 4550 | msgid "%s was not disabled." |
| 4569 | 4551 | msgstr "%s não foi desabilitado." |
| 4570 | 4552 | |
| 4571 | -#: app/controllers/my_profile/profile_editor_controller.rb:77 | |
| 4553 | +#: app/controllers/my_profile/profile_editor_controller.rb:79 | |
| 4572 | 4554 | msgid "Could not delete profile" |
| 4573 | 4555 | msgstr "Não foi possível remover o perfil" |
| 4574 | 4556 | |
| ... | ... | @@ -4596,6 +4578,8 @@ msgid "" |
| 4596 | 4578 | "Your new community creation request will be evaluated by an administrator. " |
| 4597 | 4579 | "You will be notified." |
| 4598 | 4580 | msgstr "" |
| 4581 | +"O seu pedido de registro na comunidade será avaliado por um administrador. " | |
| 4582 | +"Você será notificado." | |
| 4599 | 4583 | |
| 4600 | 4584 | #: app/controllers/my_profile/mailconf_controller.rb:23 |
| 4601 | 4585 | msgid "" |
| ... | ... | @@ -4659,8 +4643,8 @@ msgstr "Enviado pelo %s." |
| 4659 | 4643 | |
| 4660 | 4644 | #: app/mailers/contact.rb:23 |
| 4661 | 4645 | #: app/views/admin_panel/_signup_welcome_text.html.erb:6 |
| 4662 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 4663 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:4 | |
| 4646 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 4647 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:4 | |
| 4664 | 4648 | msgid "Subject" |
| 4665 | 4649 | msgstr "Assunto" |
| 4666 | 4650 | |
| ... | ... | @@ -4685,7 +4669,7 @@ msgstr "Editando site confiável" |
| 4685 | 4669 | #: app/views/features/_manage_enterprise_fields.html.erb:59 |
| 4686 | 4670 | #: app/views/features/_manage_community_fields.html.erb:59 |
| 4687 | 4671 | #: app/views/features/_manage_person_fields.html.erb:59 |
| 4688 | -#: app/views/features/index.html.erb:54 app/views/role/_form.html.erb:16 | |
| 4672 | +#: app/views/features/index.html.erb:54 app/views/role/_form.html.erb:20 | |
| 4689 | 4673 | #: app/views/profile_members/change_role.html.erb:17 |
| 4690 | 4674 | #: app/views/environment_role_manager/change_role.html.erb:11 |
| 4691 | 4675 | #: app/views/plugins/index.html.erb:30 |
| ... | ... | @@ -4937,14 +4921,12 @@ msgid "Post a comment" |
| 4937 | 4921 | msgstr "Enviar um comentário" |
| 4938 | 4922 | |
| 4939 | 4923 | #: app/views/content_viewer/view_page.html.erb:88 |
| 4940 | -#, fuzzy | |
| 4941 | 4924 | msgid "Oldest first" |
| 4942 | -msgstr "Data(mais antigos primeiro)" | |
| 4925 | +msgstr "Data (mais antigos primeiro)" | |
| 4943 | 4926 | |
| 4944 | 4927 | #: app/views/content_viewer/view_page.html.erb:88 |
| 4945 | -#, fuzzy | |
| 4946 | 4928 | msgid "Newest first" |
| 4947 | -msgstr "Data(mais recentes primeiro)" | |
| 4929 | +msgstr "Data (mais recentes primeiro)" | |
| 4948 | 4930 | |
| 4949 | 4931 | #: app/views/content_viewer/slideshow.html.erb:1 |
| 4950 | 4932 | msgid "Back to gallery" |
| ... | ... | @@ -4984,7 +4966,7 @@ msgstr "" |
| 4984 | 4966 | |
| 4985 | 4967 | #: app/views/content_viewer/article_versions.html.erb:15 |
| 4986 | 4968 | msgid "\"Version #{v.version}\"" |
| 4987 | -msgstr "" | |
| 4969 | +msgstr "\"Versão #{v.version}\"" | |
| 4988 | 4970 | |
| 4989 | 4971 | #: app/views/content_viewer/article_versions.html.erb:16 |
| 4990 | 4972 | #: app/views/profile_themes/index.html.erb:16 |
| ... | ... | @@ -5179,8 +5161,8 @@ msgstr "Pré-visualizar este tema" |
| 5179 | 5161 | #: app/views/enterprise_validation/list_processed.html.erb:3 |
| 5180 | 5162 | #: app/views/enterprise_validation/view_processed.html.erb:3 |
| 5181 | 5163 | #: app/views/manage_products/index.html.erb:29 |
| 5182 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:8 | |
| 5183 | -#: plugins/send_email/views/send_email_plugin/fail.rhtml:3 | |
| 5164 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:8 | |
| 5165 | +#: plugins/send_email/views/send_email_plugin/fail.html.erb:3 | |
| 5184 | 5166 | #: plugins/spaminator/views/spaminator_plugin_admin/reports.html.erb:33 |
| 5185 | 5167 | #: plugins/tolerance_time/views/tolerance_time_plugin_myprofile/index.html.erb:22 |
| 5186 | 5168 | msgid "Back" |
| ... | ... | @@ -5233,7 +5215,7 @@ msgstr "Caro(a) %s" |
| 5233 | 5215 | |
| 5234 | 5216 | #: app/views/pending_task_notifier/notification.text.erb:3 |
| 5235 | 5217 | msgid "You have %d pending task(s)." |
| 5236 | -msgstr "Você tem %d solicitação(s) pendente(s)" | |
| 5218 | +msgstr "Você tem %d tarefa(s) pendente(s)." | |
| 5237 | 5219 | |
| 5238 | 5220 | #: app/views/pending_task_notifier/notification.text.erb:7 |
| 5239 | 5221 | #: app/views/pending_task_notifier/notification.text.erb:16 |
| ... | ... | @@ -5247,10 +5229,7 @@ msgstr "%s tem %d tarefa(s) pendente(s)." |
| 5247 | 5229 | #: app/views/pending_task_notifier/notification.text.erb:21 |
| 5248 | 5230 | #: app/views/scrap/notifier/notification.text.erb:12 |
| 5249 | 5231 | #: app/views/person_notifier/mailer/content_summary.html.erb:12 |
| 5250 | -#: app/views/task_mailer/task_activated.text.erb:5 | |
| 5251 | -#: app/views/task_mailer/task_created.text.erb:5 | |
| 5252 | -#: app/views/task_mailer/task_finished.text.erb:5 | |
| 5253 | -#: app/views/task_mailer/task_cancelled.text.erb:5 | |
| 5232 | +#: app/views/task_mailer/generic_message.text.erb:5 | |
| 5254 | 5233 | #: app/views/comment/notifier/mail_to_followers.html.erb:18 |
| 5255 | 5234 | #: app/views/comment/notifier/notification.text.erb:15 |
| 5256 | 5235 | #: app/views/user_mailer/activation_code.text.erb:5 |
| ... | ... | @@ -5263,11 +5242,8 @@ msgstr "Saudações," |
| 5263 | 5242 | #: app/views/pending_task_notifier/notification.text.erb:24 |
| 5264 | 5243 | #: app/views/scrap/notifier/notification.text.erb:15 |
| 5265 | 5244 | #: app/views/person_notifier/mailer/content_summary.html.erb:15 |
| 5266 | -#: app/views/task_mailer/task_activated.text.erb:8 | |
| 5267 | -#: app/views/task_mailer/task_created.text.erb:8 | |
| 5268 | -#: app/views/task_mailer/task_finished.text.erb:8 | |
| 5245 | +#: app/views/task_mailer/generic_message.text.erb:8 | |
| 5269 | 5246 | #: app/views/task_mailer/target_notification.text.erb:9 |
| 5270 | -#: app/views/task_mailer/task_cancelled.text.erb:8 | |
| 5271 | 5247 | #: app/views/comment/notifier/mail_to_followers.html.erb:21 |
| 5272 | 5248 | #: app/views/comment/notifier/notification.text.erb:18 |
| 5273 | 5249 | #: app/views/user_mailer/activation_code.text.erb:8 |
| ... | ... | @@ -5453,7 +5429,7 @@ msgstr "Ver tarefas processadas" |
| 5453 | 5429 | |
| 5454 | 5430 | #: app/views/tasks/index.html.erb:44 app/views/tasks/index.html.erb:50 |
| 5455 | 5431 | msgid "Set all to: " |
| 5456 | -msgstr "Marque todos como:" | |
| 5432 | +msgstr "Marque todos como: " | |
| 5457 | 5433 | |
| 5458 | 5434 | #: app/views/box_organizer/_products_block.html.erb:5 |
| 5459 | 5435 | msgid "Select the products that must be shown." |
| ... | ... | @@ -5524,7 +5500,7 @@ msgstr "Mostrar botões de navegação" |
| 5524 | 5500 | |
| 5525 | 5501 | #: app/views/box_organizer/_tags_block.html.erb:2 |
| 5526 | 5502 | msgid "Limit of tags to display:" |
| 5527 | -msgstr "Limite de tags para exibir" | |
| 5503 | +msgstr "Limite de tags para exibir:" | |
| 5528 | 5504 | |
| 5529 | 5505 | #: app/views/box_organizer/add_block.html.erb:4 |
| 5530 | 5506 | msgid "In what area do you want to put your new block?" |
| ... | ... | @@ -5604,9 +5580,8 @@ msgid "Display this block:" |
| 5604 | 5580 | msgstr "Mostrar este bloco:" |
| 5605 | 5581 | |
| 5606 | 5582 | #: app/views/box_organizer/edit.html.erb:16 |
| 5607 | -#, fuzzy | |
| 5608 | 5583 | msgid "Display to users:" |
| 5609 | -msgstr "Mostrar cor" | |
| 5584 | +msgstr "Mostrar aos usuários:" | |
| 5610 | 5585 | |
| 5611 | 5586 | #: app/views/box_organizer/edit.html.erb:20 |
| 5612 | 5587 | msgid "Show for:" |
| ... | ... | @@ -5772,7 +5747,7 @@ msgstr "contato" |
| 5772 | 5747 | #: app/views/search/articles.html.erb:3 app/views/search/products.html.erb:3 |
| 5773 | 5748 | #: plugins/solr/views/search/_results.html.erb:1 |
| 5774 | 5749 | msgid "Type words about the %s you're looking for" |
| 5775 | -msgstr "Digite palavras sobre o/a %s que vocês está procurando" | |
| 5750 | +msgstr "Digite palavras sobre o(a) %s que você está procurando" | |
| 5776 | 5751 | |
| 5777 | 5752 | #: app/views/search/_full_event.html.erb:13 app/views/cms/_event.html.erb:11 |
| 5778 | 5753 | msgid "Start date" |
| ... | ... | @@ -5815,7 +5790,7 @@ msgstr "Autor" |
| 5815 | 5790 | |
| 5816 | 5791 | #: app/views/search/category_index.html.erb:7 |
| 5817 | 5792 | msgid "Category Index" |
| 5818 | -msgstr "Índice da Categoria: " | |
| 5793 | +msgstr "Índice da Categoria" | |
| 5819 | 5794 | |
| 5820 | 5795 | #: app/views/search/category_index.html.erb:13 |
| 5821 | 5796 | #: app/views/search/index.html.erb:14 |
| ... | ... | @@ -5963,7 +5938,7 @@ msgstr "Data de nascimento" |
| 5963 | 5938 | msgid "Address (street and number)" |
| 5964 | 5939 | msgstr "Endereço (rua e número)" |
| 5965 | 5940 | |
| 5966 | -#: app/views/profile_editor/_person_form.html.erb:54 | |
| 5941 | +#: app/views/profile_editor/_person_form.html.erb:58 | |
| 5967 | 5942 | msgid "Custom formation" |
| 5968 | 5943 | msgstr "Outra formação" |
| 5969 | 5944 | |
| ... | ... | @@ -6339,7 +6314,7 @@ msgstr "Voltar" |
| 6339 | 6314 | |
| 6340 | 6315 | #: app/views/shared/access_denied.html.erb:14 public/500.html.erb:28 |
| 6341 | 6316 | msgid "Go to the site home page" |
| 6342 | -msgstr "Ir para a página inicial do site." | |
| 6317 | +msgstr "Ir para a página inicial do site" | |
| 6343 | 6318 | |
| 6344 | 6319 | #: app/views/shared/_list_groups.html.erb:9 |
| 6345 | 6320 | msgid "Role: %s" |
| ... | ... | @@ -6487,7 +6462,7 @@ msgstr "" |
| 6487 | 6462 | |
| 6488 | 6463 | #: app/views/shared/not_found.html.erb:9 |
| 6489 | 6464 | msgid "Go to the home page" |
| 6490 | -msgstr "Ir para a página inicial do site." | |
| 6465 | +msgstr "Ir para a página inicial" | |
| 6491 | 6466 | |
| 6492 | 6467 | #: app/views/shared/content_list.html.erb:4 |
| 6493 | 6468 | msgid "Last update" |
| ... | ... | @@ -6562,10 +6537,6 @@ msgstr "Notícias" |
| 6562 | 6537 | msgid "View more" |
| 6563 | 6538 | msgstr "Ver mais" |
| 6564 | 6539 | |
| 6565 | -#: app/views/home/index.html.erb:65 | |
| 6566 | -msgid "More options" | |
| 6567 | -msgstr "Mais opções" | |
| 6568 | - | |
| 6569 | 6540 | #: app/views/features/_manage_enterprise_fields.html.erb:5 |
| 6570 | 6541 | #: app/views/features/_manage_community_fields.html.erb:5 |
| 6571 | 6542 | #: app/views/features/_manage_person_fields.html.erb:5 |
| ... | ... | @@ -6659,24 +6630,20 @@ msgid "Organization Approval Method" |
| 6659 | 6630 | msgstr "Método de Aprovação de Organização" |
| 6660 | 6631 | |
| 6661 | 6632 | #: app/views/features/index.html.erb:40 |
| 6662 | -#, fuzzy | |
| 6663 | 6633 | msgid "Members Whitelist" |
| 6664 | -msgstr "Integrantes: %s" | |
| 6634 | +msgstr "Lista de Integrantes Permitidos" | |
| 6665 | 6635 | |
| 6666 | 6636 | #: app/views/features/index.html.erb:43 |
| 6667 | -#, fuzzy | |
| 6668 | 6637 | msgid "Enable whitelist" |
| 6669 | -msgstr "Habilitar esse marcador?" | |
| 6638 | +msgstr "Habilitar lista de integrantes permitidos" | |
| 6670 | 6639 | |
| 6671 | 6640 | #: app/views/features/index.html.erb:46 |
| 6672 | -#, fuzzy | |
| 6673 | 6641 | msgid "Allow these people to access this environment:" |
| 6674 | -msgstr "Você quer ver outras pessoas neste ambiente?" | |
| 6642 | +msgstr "Permitir que outras pessoas acessem este ambiente:" | |
| 6675 | 6643 | |
| 6676 | 6644 | #: app/views/embed/unavailable.html.erb:2 |
| 6677 | -#, fuzzy | |
| 6678 | 6645 | msgid "Embed unavailable." |
| 6679 | -msgstr "produto indisponível" | |
| 6646 | +msgstr "Inclusão indisponível." | |
| 6680 | 6647 | |
| 6681 | 6648 | #: app/views/chat/start_session_error.html.erb:3 |
| 6682 | 6649 | msgid "Could not connect to chat" |
| ... | ... | @@ -6714,17 +6681,17 @@ msgstr "Tem certeza que quer usar o tema padrão do ambiente?" |
| 6714 | 6681 | msgid "Create a new role" |
| 6715 | 6682 | msgstr "Criar um novo papel" |
| 6716 | 6683 | |
| 6717 | -#: app/views/role/_form.html.erb:9 | |
| 6718 | -msgid "Permissions:" | |
| 6719 | -msgstr "Permissões:" | |
| 6684 | +#: app/views/role/_form.html.erb:11 | |
| 6685 | +msgid "%s Permissions:" | |
| 6686 | +msgstr "Permissões de %s:" | |
| 6720 | 6687 | |
| 6721 | -#: app/views/role/_form.html.erb:16 | |
| 6688 | +#: app/views/role/_form.html.erb:20 | |
| 6722 | 6689 | msgid "Create role" |
| 6723 | 6690 | msgstr "Criar papel" |
| 6724 | 6691 | |
| 6725 | 6692 | #: app/views/role/edit.html.erb:1 |
| 6726 | 6693 | msgid "\"Editing #{@role.name}\"" |
| 6727 | -msgstr "" | |
| 6694 | +msgstr "\"Editando #{@role.name}\"" | |
| 6728 | 6695 | |
| 6729 | 6696 | #: app/views/role/show.html.erb:3 |
| 6730 | 6697 | msgid "Permissions" |
| ... | ... | @@ -6886,9 +6853,8 @@ msgid "Display in the menu" |
| 6886 | 6853 | msgstr "Mostrar no menu" |
| 6887 | 6854 | |
| 6888 | 6855 | #: app/views/categories/_form.html.erb:24 |
| 6889 | -#, fuzzy | |
| 6890 | 6856 | msgid "Pick a color" |
| 6891 | -msgstr "Mostrar cor" | |
| 6857 | +msgstr "Escolha uma cor" | |
| 6892 | 6858 | |
| 6893 | 6859 | #: app/views/categories/edit.html.erb:1 |
| 6894 | 6860 | msgid "Editing %s" |
| ... | ... | @@ -7008,7 +6974,7 @@ msgid "" |
| 7008 | 6974 | "result to add them as validators for this region. " |
| 7009 | 6975 | msgstr "" |
| 7010 | 6976 | "Primeiro procure organizações pelo seu nome, depois use os botões no " |
| 7011 | -"resultado da pesquisa para adicioná-las como validadoras para esta região." | |
| 6977 | +"resultado da pesquisa para adicioná-las como validadoras para esta região. " | |
| 7012 | 6978 | |
| 7013 | 6979 | #: app/views/region_validators/_region.html.erb:5 |
| 7014 | 6980 | msgid "1 validator" |
| ... | ... | @@ -7070,7 +7036,7 @@ msgstr "Descrição:" |
| 7070 | 7036 | |
| 7071 | 7037 | #: app/views/cms/_event.html.erb:15 |
| 7072 | 7038 | msgid "Event website:" |
| 7073 | -msgstr "Site do evento" | |
| 7039 | +msgstr "Site do evento:" | |
| 7074 | 7040 | |
| 7075 | 7041 | #: app/views/cms/why_categorize.html.erb:1 app/views/cms/edit.html.erb:29 |
| 7076 | 7042 | msgid "Why categorize?" |
| ... | ... | @@ -7255,7 +7221,7 @@ msgstr "Informação do Perfil" |
| 7255 | 7221 | |
| 7256 | 7222 | #: app/views/cms/view.html.erb:26 |
| 7257 | 7223 | msgid "Current folder: " |
| 7258 | -msgstr "Pasta atual:" | |
| 7224 | +msgstr "Pasta atual: " | |
| 7259 | 7225 | |
| 7260 | 7226 | #: app/views/cms/view.html.erb:47 app/views/cms/view.html.erb:49 |
| 7261 | 7227 | msgid "parent folder" |
| ... | ... | @@ -7391,7 +7357,7 @@ msgstr "Busca de mídia" |
| 7391 | 7357 | |
| 7392 | 7358 | #: app/views/cms/select_article_type.html.erb:3 |
| 7393 | 7359 | msgid "Choose the type of content:" |
| 7394 | -msgstr "Escolha o tipo de conteúdo" | |
| 7360 | +msgstr "Escolha o tipo de conteúdo:" | |
| 7395 | 7361 | |
| 7396 | 7362 | #: app/views/cms/_published_article.html.erb:4 |
| 7397 | 7363 | msgid "This is a republication of \"%s\", by %s." |
| ... | ... | @@ -7403,7 +7369,7 @@ msgstr "Selecione os grupos onde você quer publicar seu artigo" |
| 7403 | 7369 | |
| 7404 | 7370 | #: app/views/cms/publish.html.erb:5 |
| 7405 | 7371 | msgid "There were errors with the following communities: " |
| 7406 | -msgstr "Houveram problemas com as seguintes comunidades :" | |
| 7372 | +msgstr "Houve problemas com as seguintes comunidades: " | |
| 7407 | 7373 | |
| 7408 | 7374 | #: app/views/cms/destroy.html.erb:1 |
| 7409 | 7375 | msgid "Delete: %s" |
| ... | ... | @@ -7480,7 +7446,7 @@ msgid "" |
| 7480 | 7446 | "Contact your administrator for instructions." |
| 7481 | 7447 | msgstr "" |
| 7482 | 7448 | "Não existem validadores para validar o registro desse novo empreendimento. " |
| 7483 | -"Contacte seu administrador para instruções" | |
| 7449 | +"Entre em contato com seu administrador para instruções." | |
| 7484 | 7450 | |
| 7485 | 7451 | #: app/views/enterprise_registration/basic_information.html.erb:16 |
| 7486 | 7452 | msgid "" |
| ... | ... | @@ -7603,9 +7569,8 @@ msgid "Logged in as %s" |
| 7603 | 7569 | msgstr "Identificado(a) como %s" |
| 7604 | 7570 | |
| 7605 | 7571 | #: app/views/blocks/login_block.html.erb:5 |
| 7606 | -#, fuzzy | |
| 7607 | 7572 | msgid "User since %s/%s" |
| 7608 | -msgstr "Preço %s (%s)" | |
| 7573 | +msgstr "Usuário desde %s/%s" | |
| 7609 | 7574 | |
| 7610 | 7575 | #: app/views/blocks/my_network/person.html.erb:2 |
| 7611 | 7576 | #: app/views/blocks/my_network/community.html.erb:2 |
| ... | ... | @@ -7651,10 +7616,7 @@ msgstr "Por favor, edite este bloco e selecione alguns produtos" |
| 7651 | 7616 | msgid "Unblock" |
| 7652 | 7617 | msgstr "Desbloquear" |
| 7653 | 7618 | |
| 7654 | -#: app/views/task_mailer/task_activated.text.erb:1 | |
| 7655 | -#: app/views/task_mailer/task_created.text.erb:1 | |
| 7656 | -#: app/views/task_mailer/task_finished.text.erb:1 | |
| 7657 | -#: app/views/task_mailer/task_cancelled.text.erb:1 | |
| 7619 | +#: app/views/task_mailer/generic_message.text.erb:1 | |
| 7658 | 7620 | msgid "Dear %s," |
| 7659 | 7621 | msgstr "Caro(a) %s," |
| 7660 | 7622 | |
| ... | ... | @@ -7705,7 +7667,7 @@ msgid "" |
| 7705 | 7667 | "will not be able to change it later." |
| 7706 | 7668 | msgstr "" |
| 7707 | 7669 | "Escolha o nome de usuário cuidadosamente! Ele será seu acesso à rede e você " |
| 7708 | -"não poderá alterá-lo depois" | |
| 7670 | +"não poderá alterá-lo depois." | |
| 7709 | 7671 | |
| 7710 | 7672 | #: app/views/account/_signup_form.html.erb:49 |
| 7711 | 7673 | msgid "" |
| ... | ... | @@ -7717,20 +7679,19 @@ msgstr "" |
| 7717 | 7679 | |
| 7718 | 7680 | #: app/views/account/_signup_form.html.erb:52 |
| 7719 | 7681 | msgid "Short" |
| 7720 | -msgstr "" | |
| 7682 | +msgstr "Curto" | |
| 7721 | 7683 | |
| 7722 | 7684 | #: app/views/account/_signup_form.html.erb:55 |
| 7723 | -#, fuzzy | |
| 7724 | 7685 | msgid "Bad" |
| 7725 | -msgstr "Barra" | |
| 7686 | +msgstr "Ruim" | |
| 7726 | 7687 | |
| 7727 | 7688 | #: app/views/account/_signup_form.html.erb:58 |
| 7728 | 7689 | msgid "Good" |
| 7729 | -msgstr "" | |
| 7690 | +msgstr "Bom" | |
| 7730 | 7691 | |
| 7731 | 7692 | #: app/views/account/_signup_form.html.erb:61 |
| 7732 | 7693 | msgid "Strong" |
| 7733 | -msgstr "" | |
| 7694 | +msgstr "Forte" | |
| 7734 | 7695 | |
| 7735 | 7696 | #: app/views/account/_signup_form.html.erb:68 |
| 7736 | 7697 | msgid "" |
| ... | ... | @@ -7791,9 +7752,8 @@ msgstr "" |
| 7791 | 7752 | "página onde você poderá criar uma nova senha." |
| 7792 | 7753 | |
| 7793 | 7754 | #: app/views/account/_identifier_status.html.erb:6 |
| 7794 | -#, fuzzy | |
| 7795 | 7755 | msgid "Available: " |
| 7796 | -msgstr "Disponível:" | |
| 7756 | +msgstr "Disponível: " | |
| 7797 | 7757 | |
| 7798 | 7758 | #: app/views/account/activation_question.html.erb:6 |
| 7799 | 7759 | msgid "The year must be between %d and %d" |
| ... | ... | @@ -7933,7 +7893,7 @@ msgstr "parte 2 de 2" |
| 7933 | 7893 | |
| 7934 | 7894 | #: app/views/account/accept_terms.html.erb:14 |
| 7935 | 7895 | msgid " part 2 of 3" |
| 7936 | -msgstr "parte 2 de 3" | |
| 7896 | +msgstr " parte 2 de 3" | |
| 7937 | 7897 | |
| 7938 | 7898 | #: app/views/account/accept_terms.html.erb:22 |
| 7939 | 7899 | msgid "I read the terms of use and accepted them" |
| ... | ... | @@ -7961,7 +7921,7 @@ msgstr "Não, eu quero ficar." |
| 7961 | 7921 | |
| 7962 | 7922 | #: app/views/account/signup.html.erb:6 app/views/account/signup.html.erb:24 |
| 7963 | 7923 | msgid "Welcome to %s!" |
| 7964 | -msgstr "Boas vindas ao ambiente %s" | |
| 7924 | +msgstr "Bem-vindo ao ambiente %s!" | |
| 7965 | 7925 | |
| 7966 | 7926 | #: app/views/account/signup.html.erb:7 app/views/account/signup.html.erb:25 |
| 7967 | 7927 | msgid "" |
| ... | ... | @@ -7974,9 +7934,8 @@ msgid "Firstly, some tips for getting started:" |
| 7974 | 7934 | msgstr "Em primeiro lugar, algumas dicas para começar:" |
| 7975 | 7935 | |
| 7976 | 7936 | #: app/views/account/signup.html.erb:10 |
| 7977 | -#, fuzzy | |
| 7978 | 7937 | msgid "Confirm your account and wait for admin approvement!" |
| 7979 | -msgstr "Configurar sua conta pessoal e conteúdo" | |
| 7938 | +msgstr "Confirme a sua conta e aguarde pela aprovação do administrador!" | |
| 7980 | 7939 | |
| 7981 | 7940 | #: app/views/account/signup.html.erb:11 app/views/account/signup.html.erb:28 |
| 7982 | 7941 | msgid "" |
| ... | ... | @@ -7987,9 +7946,8 @@ msgstr "" |
| 7987 | 7946 | "segundo para seguir o link no e-mail e confirmar sua conta." |
| 7988 | 7947 | |
| 7989 | 7948 | #: app/views/account/signup.html.erb:12 |
| 7990 | -#, fuzzy | |
| 7991 | 7949 | msgid "You won't appear as %s until your account is confirmed and approved." |
| 7992 | -msgstr "Você não aparecerá como um %s até sua conta ser confirmada." | |
| 7950 | +msgstr "Você não aparecerá como %s até sua conta ser confirmada." | |
| 7993 | 7951 | |
| 7994 | 7952 | #: app/views/account/signup.html.erb:12 app/views/account/signup.html.erb:16 |
| 7995 | 7953 | #: app/views/account/signup.html.erb:29 |
| ... | ... | @@ -7998,16 +7956,15 @@ msgstr "usuário" |
| 7998 | 7956 | |
| 7999 | 7957 | #: app/views/account/signup.html.erb:14 |
| 8000 | 7958 | msgid "Wait for admin approvement!" |
| 8001 | -msgstr "" | |
| 7959 | +msgstr "Aguarde a aprovação do administrador!" | |
| 8002 | 7960 | |
| 8003 | 7961 | #: app/views/account/signup.html.erb:15 |
| 8004 | 7962 | msgid "The administrators will evaluate your signup request for approvement." |
| 8005 | -msgstr "" | |
| 7963 | +msgstr "O administrador avaliará seu pedido de aprovação." | |
| 8006 | 7964 | |
| 8007 | 7965 | #: app/views/account/signup.html.erb:16 |
| 8008 | -#, fuzzy | |
| 8009 | 7966 | msgid "You won't appear as %s until your account is approved." |
| 8010 | -msgstr "Você não aparecerá como um %s até sua conta ser confirmada." | |
| 7967 | +msgstr "Você não aparecerá como %s até sua conta ser confirmada." | |
| 8011 | 7968 | |
| 8012 | 7969 | #: app/views/account/signup.html.erb:18 app/views/account/signup.html.erb:30 |
| 8013 | 7970 | msgid "What to do next?" |
| ... | ... | @@ -8057,7 +8014,7 @@ msgstr "Você não aparecerá como um %s até sua conta ser confirmada." |
| 8057 | 8014 | |
| 8058 | 8015 | #: app/views/account/signup.html.erb:38 |
| 8059 | 8016 | msgid "Sign up for %s!" |
| 8060 | -msgstr "Registre-se em %s" | |
| 8017 | +msgstr "Registre-se em %s!" | |
| 8061 | 8018 | |
| 8062 | 8019 | #: app/views/account/new_password.html.erb:1 |
| 8063 | 8020 | #: app/views/account/new_password.html.erb:11 |
| ... | ... | @@ -8082,7 +8039,7 @@ msgid "" |
| 8082 | 8039 | "account to the enterprise." |
| 8083 | 8040 | msgstr "" |
| 8084 | 8041 | "Agora para gerenciar seu empreendimento você tem que associar uma conta de " |
| 8085 | -"usuário individual ao empreendimento" | |
| 8042 | +"usuário individual ao empreendimento." | |
| 8086 | 8043 | |
| 8087 | 8044 | #: app/views/account/activate_enterprise.html.erb:7 |
| 8088 | 8045 | msgid "Do you have a personal user account in the system?" |
| ... | ... | @@ -8100,7 +8057,7 @@ msgid "" |
| 8100 | 8057 | msgstr "" |
| 8101 | 8058 | "<b>Atenção</b>: este formulário é para você cadastrar a sua conta pessoal, e " |
| 8102 | 8059 | "não do empreendimento. Assim, você terá uma conta pessoal a partir da qual " |
| 8103 | -"pode gerenciar o seu empreendimento" | |
| 8060 | +"pode gerenciar o seu empreendimento." | |
| 8104 | 8061 | |
| 8105 | 8062 | #: app/views/account/activate_enterprise.html.erb:22 |
| 8106 | 8063 | msgid "Enter you user name and password" |
| ... | ... | @@ -8125,8 +8082,8 @@ msgstr "" |
| 8125 | 8082 | #: app/views/account/blocked.html.erb:8 |
| 8126 | 8083 | msgid "We don't have enough information about your enterprise to identify you." |
| 8127 | 8084 | msgstr "" |
| 8128 | -"Nós não temos informação o suficiente sobre o seu empreendimento para " | |
| 8129 | -"identificá-lo" | |
| 8085 | +"Nós não temos informação suficiente sobre o seu empreendimento para " | |
| 8086 | +"identificar você." | |
| 8130 | 8087 | |
| 8131 | 8088 | #: app/views/account/blocked.html.erb:13 |
| 8132 | 8089 | msgid "Your enterprise has been blocked" |
| ... | ... | @@ -8146,7 +8103,7 @@ msgstr "É uma boa idéia alterar sua senha de tempos em tempos." |
| 8146 | 8103 | |
| 8147 | 8104 | #: app/views/account/index.html.erb:9 |
| 8148 | 8105 | msgid "Edit Personal details." |
| 8149 | -msgstr "Editar dados pessoais" | |
| 8106 | +msgstr "Editar dados pessoais." | |
| 8150 | 8107 | |
| 8151 | 8108 | #: app/views/account/index.html.erb:10 |
| 8152 | 8109 | msgid "You can change your personal details." |
| ... | ... | @@ -8166,7 +8123,7 @@ msgstr "Gerenciar conteúdo." |
| 8166 | 8123 | |
| 8167 | 8124 | #: app/views/account/index.html.erb:20 |
| 8168 | 8125 | msgid "Manage your content." |
| 8169 | -msgstr "Gerenciar o seu conteúdo" | |
| 8126 | +msgstr "Gerenciar o seu conteúdo." | |
| 8170 | 8127 | |
| 8171 | 8128 | #: app/views/account/index.html.erb:24 |
| 8172 | 8129 | msgid "Logout." |
| ... | ... | @@ -8439,7 +8396,7 @@ msgid "" |
| 8439 | 8396 | msgstr "" |
| 8440 | 8397 | "Se este empreendimento passar no critério para ser considerado um " |
| 8441 | 8398 | "empreendimento de economia solidária, você pode aprová-lo clicando no botão " |
| 8442 | -"abaixo" | |
| 8399 | +"abaixo." | |
| 8443 | 8400 | |
| 8444 | 8401 | #: app/views/enterprise_validation/details.html.erb:25 |
| 8445 | 8402 | msgid "" |
| ... | ... | @@ -8484,7 +8441,7 @@ msgstr "Ver os detalhes" |
| 8484 | 8441 | |
| 8485 | 8442 | #: app/views/enterprise_validation/view_processed.html.erb:1 |
| 8486 | 8443 | msgid "Processed validation request for %s " |
| 8487 | -msgstr "Requisição de validação para %s processada" | |
| 8444 | +msgstr "Requisição de validação para %s processada " | |
| 8488 | 8445 | |
| 8489 | 8446 | #: app/views/enterprise_validation/_details.html.erb:27 |
| 8490 | 8447 | msgid "Foundation Year" |
| ... | ... | @@ -8560,7 +8517,7 @@ msgstr "Sim, quero entrar." |
| 8560 | 8517 | #: app/views/favorite_enterprises/remove.html.erb:15 |
| 8561 | 8518 | #: app/views/favorite_enterprises/add.html.erb:11 |
| 8562 | 8519 | msgid "No, I don't want" |
| 8563 | -msgstr "Não, não quero." | |
| 8520 | +msgstr "Não, não quero" | |
| 8564 | 8521 | |
| 8565 | 8522 | #: app/views/profile/friends.html.erb:20 |
| 8566 | 8523 | msgid "Manage my friends" |
| ... | ... | @@ -9072,6 +9029,7 @@ msgstr "Definir Quantidade por Pasta" |
| 9072 | 9029 | #: app/views/admin_panel/_signup_welcome_screen.html.erb:2 |
| 9073 | 9030 | msgid "This text will be showed as a welcome message to users after signup" |
| 9074 | 9031 | msgstr "" |
| 9032 | +"Este é o texto de boas vindas que será mostrado aos usuários após o cadastro" | |
| 9075 | 9033 | |
| 9076 | 9034 | #: app/views/admin_panel/set_portal_folders.html.erb:1 |
| 9077 | 9035 | msgid "Select folders" |
| ... | ... | @@ -9106,7 +9064,7 @@ msgstr "Nome do site" |
| 9106 | 9064 | |
| 9107 | 9065 | #: app/views/admin_panel/_site_info.html.erb:3 |
| 9108 | 9066 | msgid "No reply email" |
| 9109 | -msgstr "No reply email" | |
| 9067 | +msgstr "e-mail somente para envio (no-replay)" | |
| 9110 | 9068 | |
| 9111 | 9069 | #: app/views/admin_panel/_site_info.html.erb:5 |
| 9112 | 9070 | msgid "Theme" |
| ... | ... | @@ -9129,8 +9087,8 @@ msgid "" |
| 9129 | 9087 | "This text will be sent to new users if the feature \"Send welcome e-mail to " |
| 9130 | 9088 | "new users\" is enabled on environment." |
| 9131 | 9089 | msgstr "" |
| 9132 | -"Este texto será envado para os novos usuários se a funcionalidade \"Enviar e-" | |
| 9133 | -"mail de boas vindas para novos usuários\" estiver habilitada no ambiente" | |
| 9090 | +"Este texto será enviado para os novos usuários se a funcionalidade \"Enviar " | |
| 9091 | +"e-mail de boas vindas para novos usuários\" estiver habilitada no ambiente." | |
| 9134 | 9092 | |
| 9135 | 9093 | #: app/views/admin_panel/_signup_welcome_text.html.erb:3 |
| 9136 | 9094 | msgid "" |
| ... | ... | @@ -9159,7 +9117,6 @@ msgid "Signup welcome text" |
| 9159 | 9117 | msgstr "Texto de boas vindas no registro" |
| 9160 | 9118 | |
| 9161 | 9119 | #: app/views/admin_panel/site_info.html.erb:15 |
| 9162 | -#, fuzzy | |
| 9163 | 9120 | msgid "Signup welcome message" |
| 9164 | 9121 | msgstr "Texto de boas vindas no registro" |
| 9165 | 9122 | |
| ... | ... | @@ -9243,7 +9200,7 @@ msgstr "e-Mail: " |
| 9243 | 9200 | |
| 9244 | 9201 | #: app/views/map_balloon/profile.html.erb:11 |
| 9245 | 9202 | msgid "Phone(s): " |
| 9246 | -msgstr "Telefone(s):" | |
| 9203 | +msgstr "Telefone(s): " | |
| 9247 | 9204 | |
| 9248 | 9205 | #: app/views/map_balloon/profile.html.erb:14 |
| 9249 | 9206 | #: plugins/bsc/views/profile/_profile_tab.html.erb:4 |
| ... | ... | @@ -9352,7 +9309,7 @@ msgstr "" |
| 9352 | 9309 | |
| 9353 | 9310 | #: lib/unifreire_terminology.rb:24 |
| 9354 | 9311 | msgid "Here are all <b>%s</b>'s institutions." |
| 9355 | -msgstr "Aqui estão todas a instituições de <b>%s</b>" | |
| 9312 | +msgstr "Aqui estão todas a instituições de <b>%s</b>." | |
| 9356 | 9313 | |
| 9357 | 9314 | #: lib/unifreire_terminology.rb:25 |
| 9358 | 9315 | msgid "Here are all <b>%s</b>'s favorite institutions." |
| ... | ... | @@ -9420,7 +9377,7 @@ msgstr "Meu ePortfolio" |
| 9420 | 9377 | |
| 9421 | 9378 | #: lib/zen3_terminology.rb:9 |
| 9422 | 9379 | msgid "ePortfolio" |
| 9423 | -msgstr "ePortfolio" | |
| 9380 | +msgstr "e-Portfólio" | |
| 9424 | 9381 | |
| 9425 | 9382 | #: lib/zen3_terminology.rb:10 |
| 9426 | 9383 | msgid "Groups" |
| ... | ... | @@ -9592,7 +9549,7 @@ msgstr "Note que %s precisará aceitar ser adicionado como seu contato." |
| 9592 | 9549 | |
| 9593 | 9550 | #: lib/zen3_terminology.rb:50 |
| 9594 | 9551 | msgid "Classify your new contact %s: " |
| 9595 | -msgstr "Classifique seu novo contato %s:" | |
| 9552 | +msgstr "Classifique seu novo contato %s: " | |
| 9596 | 9553 | |
| 9597 | 9554 | #: lib/zen3_terminology.rb:51 |
| 9598 | 9555 | msgid "Yes, I want to add %s as my contact" |
| ... | ... | @@ -9620,7 +9577,7 @@ msgstr "Contatos de %s" |
| 9620 | 9577 | |
| 9621 | 9578 | #: lib/zen3_terminology.rb:58 |
| 9622 | 9579 | msgid "Here are all <b>%s</b>'s contacts." |
| 9623 | -msgstr "Aqui estão todas os contatos de <b>%s</b>" | |
| 9580 | +msgstr "Aqui estão todos os contatos de <b>%s</b>." | |
| 9624 | 9581 | |
| 9625 | 9582 | #: lib/zen3_terminology.rb:59 |
| 9626 | 9583 | msgid "Contacts" |
| ... | ... | @@ -9770,7 +9727,7 @@ msgid "" |
| 9770 | 9727 | "inconvenience." |
| 9771 | 9728 | msgstr "" |
| 9772 | 9729 | "Nossa equipe técnica está trabalhando nele, por favor tente mais tarde. " |
| 9773 | -"Perdoe o incoveniente. " | |
| 9730 | +"Perdoe o inconveniente." | |
| 9774 | 9731 | |
| 9775 | 9732 | #: public/503.html.erb:22 |
| 9776 | 9733 | msgid "System maintainance" |
| ... | ... | @@ -9813,7 +9770,7 @@ msgid "Configurations could not be saved" |
| 9813 | 9770 | msgstr "As configurações não puderam ser salvas" |
| 9814 | 9771 | |
| 9815 | 9772 | #: plugins/send_email/controllers/send_email_plugin_base_controller.rb:16 |
| 9816 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:1 | |
| 9773 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:1 | |
| 9817 | 9774 | msgid "Message sent" |
| 9818 | 9775 | msgstr "A mensagem foi enviada" |
| 9819 | 9776 | |
| ... | ... | @@ -9949,7 +9906,7 @@ msgstr "O empreendimento foi criado em associação com %s." |
| 9949 | 9906 | |
| 9950 | 9907 | #: plugins/bsc/controllers/bsc_plugin_myprofile_controller.rb:117 |
| 9951 | 9908 | msgid "Contract created." |
| 9952 | -msgstr "O contrato foi criado" | |
| 9909 | +msgstr "O contrato foi criado." | |
| 9953 | 9910 | |
| 9954 | 9911 | #: plugins/bsc/controllers/bsc_plugin_myprofile_controller.rb:120 |
| 9955 | 9912 | msgid "Contract created but some products could not be added." |
| ... | ... | @@ -9961,11 +9918,11 @@ msgstr "O contrato não existe! Talvez ele já tenha sido removido." |
| 9961 | 9918 | |
| 9962 | 9919 | #: plugins/bsc/controllers/bsc_plugin_myprofile_controller.rb:140 |
| 9963 | 9920 | msgid "Could not edit such contract." |
| 9964 | -msgstr "Não foi possível editar o contrato" | |
| 9921 | +msgstr "Não foi possível editar o contrato." | |
| 9965 | 9922 | |
| 9966 | 9923 | #: plugins/bsc/controllers/bsc_plugin_myprofile_controller.rb:170 |
| 9967 | 9924 | msgid "Contract edited." |
| 9968 | -msgstr "Contrato editado" | |
| 9925 | +msgstr "Contrato editado." | |
| 9969 | 9926 | |
| 9970 | 9927 | #: plugins/bsc/controllers/bsc_plugin_myprofile_controller.rb:173 |
| 9971 | 9928 | msgid "Contract edited but some products could not be added." |
| ... | ... | @@ -9978,7 +9935,7 @@ msgstr "Contrato removido." |
| 9978 | 9935 | |
| 9979 | 9936 | #: plugins/bsc/controllers/bsc_plugin_myprofile_controller.rb:185 |
| 9980 | 9937 | msgid "Contract could not be removed. Sorry! ^^" |
| 9981 | -msgstr "O contrato não pôde ser removdo. Desculpa!" | |
| 9938 | +msgstr "O contrato não pôde ser removido. Desculpa!" | |
| 9982 | 9939 | |
| 9983 | 9940 | #: plugins/bsc/controllers/bsc_plugin_admin_controller.rb:11 |
| 9984 | 9941 | msgid "Your Bsc was created." |
| ... | ... | @@ -9993,14 +9950,12 @@ msgid "Enterprise validations couldn't be saved." |
| 9993 | 9950 | msgstr "As validações de empreendimento não puderam ser salvas." |
| 9994 | 9951 | |
| 9995 | 9952 | #: plugins/piwik/controllers/piwik_plugin_admin_controller.rb:8 |
| 9996 | -#, fuzzy | |
| 9997 | 9953 | msgid "Piwik plugin settings updated successfully." |
| 9998 | -msgstr "Os plugins foram atualizados com sucesso." | |
| 9954 | +msgstr "As configurações do plugin Piwik foram atualizadas com sucesso." | |
| 9999 | 9955 | |
| 10000 | 9956 | #: plugins/piwik/controllers/piwik_plugin_admin_controller.rb:10 |
| 10001 | -#, fuzzy | |
| 10002 | 9957 | msgid "Piwik plugin settings could not be saved." |
| 10003 | -msgstr "A submissão não pode ser salva" | |
| 9958 | +msgstr "As configurações do plugin Piwik não puderam ser gravadas." | |
| 10004 | 9959 | |
| 10005 | 9960 | #: plugins/stoa/controllers/stoa_plugin_controller.rb:21 |
| 10006 | 9961 | msgid "Incorrect user/password pair." |
| ... | ... | @@ -10031,14 +9986,12 @@ msgid "Sub-organizations could not be updated" |
| 10031 | 9986 | msgstr "As sub-organizações não puderam ser salvas" |
| 10032 | 9987 | |
| 10033 | 9988 | #: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:26 |
| 10034 | -#, fuzzy | |
| 10035 | -msgid "\"Custom form #{@form.name} was successfully created.\"" | |
| 10036 | -msgstr "O formulário #{@form.name} foi criado com sucesso." | |
| 9989 | +msgid "Custom form %s was successfully created." | |
| 9990 | +msgstr "\"O formulário %s foi criado com sucesso.\"" | |
| 10037 | 9991 | |
| 10038 | 9992 | #: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:46 |
| 10039 | -#, fuzzy | |
| 10040 | -msgid "\"Custom form #{@form.name} was successfully updated.\"" | |
| 10041 | -msgstr "O formulário #{@form.name} foi atualizado com sucesso." | |
| 9993 | +msgid "Custom form %s was successfully updated." | |
| 9994 | +msgstr "O formulário personalizado %s foi atualizado com sucesso" | |
| 10042 | 9995 | |
| 10043 | 9996 | #: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:49 |
| 10044 | 9997 | msgid "Form could not be updated" |
| ... | ... | @@ -10046,7 +9999,7 @@ msgstr "O formulário não pode ser atualizado" |
| 10046 | 9999 | |
| 10047 | 10000 | #: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:59 |
| 10048 | 10001 | msgid "Form removed" |
| 10049 | -msgstr "Formulário removido." | |
| 10002 | +msgstr "Formulário removido" | |
| 10050 | 10003 | |
| 10051 | 10004 | #: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:61 |
| 10052 | 10005 | msgid "Form could not be removed" |
| ... | ... | @@ -10060,19 +10013,15 @@ msgstr "Submissão salva" |
| 10060 | 10013 | msgid "Submission could not be saved" |
| 10061 | 10014 | msgstr "A submissão não pode ser salva" |
| 10062 | 10015 | |
| 10063 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 10016 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 10064 | 10017 | msgid "To" |
| 10065 | 10018 | msgstr "Para" |
| 10066 | 10019 | |
| 10067 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:7 | |
| 10068 | -msgid "New mail" | |
| 10069 | -msgstr "Novo email" | |
| 10070 | - | |
| 10071 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:19 | |
| 10020 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:24 | |
| 10072 | 10021 | msgid "'%s' isn't a valid e-mail address" |
| 10073 | -msgstr "'%s' não é um endereço de e-mail válido." | |
| 10022 | +msgstr "'%s' não é um endereço de e-mail válido" | |
| 10074 | 10023 | |
| 10075 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:26 | |
| 10024 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:31 | |
| 10076 | 10025 | msgid "'%s' address is not allowed (see SendEmailPlugin config)" |
| 10077 | 10026 | msgstr "" |
| 10078 | 10027 | "%{fn} '%s' endereço não permitido (veja as configurações do SendEmailPlugin)" |
| ... | ... | @@ -10091,7 +10040,7 @@ msgstr "Bloco de comunidade" |
| 10091 | 10040 | |
| 10092 | 10041 | #: plugins/community_block/lib/community_block.rb:8 |
| 10093 | 10042 | msgid "Help for Community Description Block." |
| 10094 | -msgstr "Ajuda para Bloco de Descrição de Comunidade" | |
| 10043 | +msgstr "Ajuda para Bloco de Descrição de Comunidade." | |
| 10095 | 10044 | |
| 10096 | 10045 | #: plugins/comment_classification/lib/comment_classification_plugin.rb:11 |
| 10097 | 10046 | msgid "A plugin that allow classification of comments." |
| ... | ... | @@ -10181,18 +10130,17 @@ msgid "A plugin that add ldap support." |
| 10181 | 10130 | msgstr "Um plugin que adiciona suporte a ldap." |
| 10182 | 10131 | |
| 10183 | 10132 | #: plugins/variables/lib/variables_plugin/macros/profile.rb:7 |
| 10184 | -#, fuzzy | |
| 10185 | 10133 | msgid "Variables" |
| 10186 | -msgstr "Disponível" | |
| 10134 | +msgstr "Variáveis" | |
| 10187 | 10135 | |
| 10188 | 10136 | #: plugins/variables/lib/variables_plugin/macros/profile.rb:13 |
| 10189 | -#, fuzzy | |
| 10190 | 10137 | msgid "Select the desired variable" |
| 10191 | -msgstr "Selecione o Estado" | |
| 10138 | +msgstr "Selecione a variável desejada" | |
| 10192 | 10139 | |
| 10193 | 10140 | #: plugins/variables/lib/variables_plugin.rb:8 |
| 10194 | 10141 | msgid "A set of simple variables to be used in a macro context" |
| 10195 | 10142 | msgstr "" |
| 10143 | +"Um conjunto de variáveis simples para serem usadas em um contexto amplo" | |
| 10196 | 10144 | |
| 10197 | 10145 | #: plugins/community_track/lib/community_track_plugin.rb:8 |
| 10198 | 10146 | msgid "New kind of content for communities." |
| ... | ... | @@ -10257,7 +10205,7 @@ msgstr "Este bloco apresenta a lista das trilhas mais relevantes." |
| 10257 | 10205 | |
| 10258 | 10206 | #: plugins/vote/lib/vote_plugin.rb:8 |
| 10259 | 10207 | msgid "Provide buttons to like/dislike a articles and comments." |
| 10260 | -msgstr "Prover botões de curti/não curti para artigos e comentários." | |
| 10208 | +msgstr "Provê botões de curtir/rejeitar para artigos e comentários." | |
| 10261 | 10209 | |
| 10262 | 10210 | #: plugins/pg_search/lib/pg_search_plugin.rb:8 |
| 10263 | 10211 | msgid "Search engine that uses Postgres Full-Text Search." |
| ... | ... | @@ -10272,6 +10220,31 @@ msgid "A plugin to enable the video suport, with auto conversion for the web." |
| 10272 | 10220 | msgstr "" |
| 10273 | 10221 | "Um plugin para habilitar suporte de video, com conversão de audio para a web." |
| 10274 | 10222 | |
| 10223 | +#: plugins/lattes_curriculum/lib/html_parser.rb:19 | |
| 10224 | +msgid "Lattes not found. Please, make sure the informed URL is correct." | |
| 10225 | +msgstr "Lattes não encontrado. Por favor certifique-se que a URL informada está correta." | |
| 10226 | + | |
| 10227 | +#: plugins/lattes_curriculum/lib/html_parser.rb:21 | |
| 10228 | +msgid "Lattes Platform is unreachable. Please, try it later." | |
| 10229 | +msgstr "A Plataforma Lattes está inacessível. Por favor tente novamente mais tarde." | |
| 10230 | + | |
| 10231 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:8 | |
| 10232 | +msgid "A plugin that imports the lattes curriculum into the users profiles" | |
| 10233 | +msgstr "Um plugins que importa o currículo Lattes no perfil dos usuários" | |
| 10234 | + | |
| 10235 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:40 | |
| 10236 | +msgid "Lattes" | |
| 10237 | +msgstr "Lattes" | |
| 10238 | + | |
| 10239 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:73 | |
| 10240 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:106 | |
| 10241 | +msgid " Invalid lattes url" | |
| 10242 | +msgstr "URL do Lattes inválida" | |
| 10243 | + | |
| 10244 | +#: plugins/lattes_curriculum/lib/academic_info.rb:10 | |
| 10245 | +msgid " is invalid." | |
| 10246 | +msgstr " é inválido." | |
| 10247 | + | |
| 10275 | 10248 | #: plugins/bsc/lib/bsc_plugin.rb:10 |
| 10276 | 10249 | msgid "Adds the Bsc feature" |
| 10277 | 10250 | msgstr "Adiciona a funcionalidades Bsc" |
| ... | ... | @@ -10366,9 +10339,8 @@ msgid "ProjectB" |
| 10366 | 10339 | msgstr "ProjetoB" |
| 10367 | 10340 | |
| 10368 | 10341 | #: plugins/piwik/lib/piwik_plugin.rb:13 |
| 10369 | -#, fuzzy | |
| 10370 | 10342 | msgid "Tracking and web analytics to your Noosfero's environment" |
| 10371 | -msgstr "Rastreamento e análise web para pessoas e comunidades" | |
| 10343 | +msgstr "Rastreamento e análise web para o seu ambiente Noosfero" | |
| 10372 | 10344 | |
| 10373 | 10345 | #: plugins/display_content/lib/display_content_plugin.rb:10 |
| 10374 | 10346 | msgid "" |
| ... | ... | @@ -10448,7 +10420,7 @@ msgstr "Ver todas as versões" |
| 10448 | 10420 | |
| 10449 | 10421 | #: plugins/spaminator/lib/spaminator_plugin.rb:8 |
| 10450 | 10422 | msgid "Search and destroy spams and spammers." |
| 10451 | -msgstr "Busca e destrói" | |
| 10423 | +msgstr "Busca e destrói spams e spammers." | |
| 10452 | 10424 | |
| 10453 | 10425 | #: plugins/spaminator/lib/spaminator_plugin/mailer.rb:8 |
| 10454 | 10426 | msgid "[%s] You must reactivate your account." |
| ... | ... | @@ -10561,7 +10533,7 @@ msgstr "Container" |
| 10561 | 10533 | |
| 10562 | 10534 | #: plugins/container_block/lib/container_block_plugin/container_block.rb:25 |
| 10563 | 10535 | msgid "This block acts as a container for another blocks" |
| 10564 | -msgstr "Este block age como um container para outros blocos." | |
| 10536 | +msgstr "Este bloco age como um container para outros blocos" | |
| 10565 | 10537 | |
| 10566 | 10538 | #: plugins/comment_group/lib/ext/article.rb:13 |
| 10567 | 10539 | msgid "Not empty group comment cannot be removed" |
| ... | ... | @@ -10601,33 +10573,33 @@ msgid "multi-level paternity is not allowed." |
| 10601 | 10573 | msgstr "paternidade multi-nível não é permitido." |
| 10602 | 10574 | |
| 10603 | 10575 | #: plugins/sub_organizations/lib/related_organizations_block.rb:8 |
| 10604 | -#, fuzzy | |
| 10605 | 10576 | msgid "Related Organizations" |
| 10606 | -msgstr "Organizações Favoritas" | |
| 10577 | +msgstr "Organizações Relacionadas" | |
| 10607 | 10578 | |
| 10608 | 10579 | #: plugins/sub_organizations/lib/related_organizations_block.rb:18 |
| 10609 | 10580 | msgid "\"{#} #{display_type[:title]} enterprise\"" |
| 10610 | 10581 | msgid_plural " \"{#} #{display_type[:title]} enterprises\"" |
| 10611 | -msgstr[0] "" | |
| 10612 | -msgstr[1] "" | |
| 10582 | +msgstr[0] "\"{#} #{display_type[:title]} empreendimento\"" | |
| 10583 | +msgstr[1] "\"{#} #{display_type[:title]} empreendimentos\"" | |
| 10613 | 10584 | |
| 10614 | 10585 | #: plugins/sub_organizations/lib/related_organizations_block.rb:20 |
| 10615 | 10586 | msgid "\"{#} #{display_type[:title]} community\"" |
| 10616 | 10587 | msgid_plural " \"{#} #{display_type[:title]} communities\"" |
| 10617 | -msgstr[0] "" | |
| 10618 | -msgstr[1] "" | |
| 10588 | +msgstr[0] "\"{#} #{display_type[:title]} comunidade\"" | |
| 10589 | +msgstr[1] "\"{#} #{display_type[:title]} comunidades\"" | |
| 10619 | 10590 | |
| 10620 | 10591 | #: plugins/sub_organizations/lib/related_organizations_block.rb:22 |
| 10621 | 10592 | msgid "\"{#} #{display_type[:title]} organization\"" |
| 10622 | 10593 | msgid_plural " \"{#} #{display_type[:title]} organizations\"" |
| 10623 | -msgstr[0] "" | |
| 10624 | -msgstr[1] "" | |
| 10594 | +msgstr[0] "\"{#} #{display_type[:title]} organização\"" | |
| 10595 | +msgstr[1] "\"{#} #{display_type[:title]} organizações\"" | |
| 10625 | 10596 | |
| 10626 | 10597 | #: plugins/sub_organizations/lib/related_organizations_block.rb:27 |
| 10627 | 10598 | msgid "" |
| 10628 | 10599 | "\"This block displays #{display_type[:title]} organizations of this " |
| 10629 | 10600 | "organization\"" |
| 10630 | 10601 | msgstr "" |
| 10602 | +"\"Este bloco mostra #{display_type[:title]} organizações desta organização\"" | |
| 10631 | 10603 | |
| 10632 | 10604 | #: plugins/statistics/lib/statistics_block.rb:23 |
| 10633 | 10605 | msgid "Statistics for %s" |
| ... | ... | @@ -10662,9 +10634,8 @@ msgstr "" |
| 10662 | 10634 | "esse bloco para escolher qual dos seus blogs será mostrado nele." |
| 10663 | 10635 | |
| 10664 | 10636 | #: plugins/people_block/lib/friends_block.rb:8 |
| 10665 | -#, fuzzy | |
| 10666 | 10637 | msgid "Clicking a friend takes you to his/her homepage" |
| 10667 | -msgstr "Clicando em uma pessoa você será enviado para sua página inicial." | |
| 10638 | +msgstr "Clicando em um amigo você será enviado a página inicial dele" | |
| 10668 | 10639 | |
| 10669 | 10640 | #: plugins/people_block/lib/friends_block.rb:12 |
| 10670 | 10641 | msgid "{#} friend" |
| ... | ... | @@ -10678,37 +10649,32 @@ msgstr "Pessoas aleatórias" |
| 10678 | 10649 | |
| 10679 | 10650 | #: plugins/people_block/lib/people_block_base.rb:17 |
| 10680 | 10651 | #: plugins/people_block/lib/people_block.rb:12 |
| 10681 | -#, fuzzy | |
| 10682 | 10652 | msgid "{#} People" |
| 10683 | -msgstr "Pessoas" | |
| 10653 | +msgstr "{#} Pessoas" | |
| 10684 | 10654 | |
| 10685 | 10655 | #: plugins/people_block/lib/members_block.rb:11 |
| 10686 | -#, fuzzy | |
| 10687 | 10656 | msgid "Clicking a member takes you to his/her homepage" |
| 10688 | -msgstr "Clicando em uma pessoa você será enviado para sua página inicial." | |
| 10657 | +msgstr "Clicando em um membro você irá para a página dele" | |
| 10689 | 10658 | |
| 10690 | 10659 | #: plugins/people_block/lib/members_block.rb:15 |
| 10691 | -#, fuzzy | |
| 10692 | 10660 | msgid "members" |
| 10693 | -msgstr "Integrantes" | |
| 10661 | +msgstr "integrantes" | |
| 10694 | 10662 | |
| 10695 | 10663 | #: plugins/people_block/lib/members_block.rb:16 |
| 10696 | -#, fuzzy | |
| 10697 | 10664 | msgid "{#} %s" |
| 10698 | -msgstr "{#} grupos" | |
| 10665 | +msgstr "{#} %s" | |
| 10699 | 10666 | |
| 10700 | 10667 | #: plugins/people_block/lib/members_block.rb:42 |
| 10701 | 10668 | msgid "Show join leave button" |
| 10702 | 10669 | msgstr "Mostrar botão entrar/sair" |
| 10703 | 10670 | |
| 10704 | 10671 | #: plugins/people_block/lib/people_block_plugin.rb:8 |
| 10705 | -#, fuzzy | |
| 10706 | 10672 | msgid "A plugin that adds a people block" |
| 10707 | -msgstr "Um plugin que adiciona um bloco container." | |
| 10673 | +msgstr "Um plugin que adiciona um bloco de pessoas" | |
| 10708 | 10674 | |
| 10709 | 10675 | #: plugins/people_block/lib/people_block.rb:8 |
| 10710 | 10676 | msgid "Clicking a person takes you to his/her homepage" |
| 10711 | -msgstr "Clicando em uma pessoa você será enviado para sua página inicial." | |
| 10677 | +msgstr "Clicando em uma pessoa você irá para a página dela" | |
| 10712 | 10678 | |
| 10713 | 10679 | #: plugins/context_content/lib/context_content_plugin.rb:8 |
| 10714 | 10680 | msgid "A plugin that display content based on page context." |
| ... | ... | @@ -10728,7 +10694,7 @@ msgid "" |
| 10728 | 10694 | "engine." |
| 10729 | 10695 | msgstr "" |
| 10730 | 10696 | "Um plugin que utiliza a busca customizada do Google como busca geral do " |
| 10731 | -"Noosfero" | |
| 10697 | +"Noosfero." | |
| 10732 | 10698 | |
| 10733 | 10699 | #: plugins/foo/lib/foo_plugin.rb:8 |
| 10734 | 10700 | msgid "A sample plugin to test autoload craziness." |
| ... | ... | @@ -10755,56 +10721,49 @@ msgstr "" |
| 10755 | 10721 | "spams compatível com a API Akismet" |
| 10756 | 10722 | |
| 10757 | 10723 | #: plugins/remote_user/lib/remote_user_plugin.rb:8 |
| 10758 | -#, fuzzy | |
| 10759 | 10724 | msgid "A plugin that add remote user support." |
| 10760 | -msgstr "Um plugin que adiciona suporte a ldap." | |
| 10725 | +msgstr "Um plugin que adiciona suporte a usuário remoto." | |
| 10761 | 10726 | |
| 10762 | -#: plugins/remote_user/lib/remote_user_plugin.rb:45 | |
| 10763 | -#, fuzzy | |
| 10727 | +#: plugins/remote_user/lib/remote_user_plugin.rb:55 | |
| 10764 | 10728 | msgid "Could not create the remote_user." |
| 10765 | -msgstr "Não foi possível criar o e-mail" | |
| 10729 | +msgstr "Não foi possível criar o usuário remoto." | |
| 10766 | 10730 | |
| 10767 | 10731 | #: plugins/relevant_content/lib/relevant_content_plugin/relevant_content_block.rb:3 |
| 10768 | 10732 | #: plugins/relevant_content/lib/relevant_content_plugin/relevant_content_block.rb:7 |
| 10769 | -#, fuzzy | |
| 10770 | 10733 | msgid "Relevant content" |
| 10771 | -msgstr "Conteúdo recente" | |
| 10734 | +msgstr "Conteúdo relevante" | |
| 10772 | 10735 | |
| 10773 | 10736 | #: plugins/relevant_content/lib/relevant_content_plugin/relevant_content_block.rb:11 |
| 10774 | -#, fuzzy | |
| 10775 | 10737 | msgid "This block lists the most popular content." |
| 10776 | -msgstr "Este bloco apresenta os integrantes de um coletivo." | |
| 10738 | +msgstr "Este bloco apresenta o conteúdo mais popular." | |
| 10777 | 10739 | |
| 10778 | 10740 | #: plugins/relevant_content/lib/relevant_content_plugin/relevant_content_block.rb:34 |
| 10779 | -#, fuzzy | |
| 10780 | 10741 | msgid "Most read articles" |
| 10781 | -msgstr "Sugerir um artigo" | |
| 10742 | +msgstr "Artigos mais lidos" | |
| 10782 | 10743 | |
| 10783 | 10744 | #: plugins/relevant_content/lib/relevant_content_plugin/relevant_content_block.rb:44 |
| 10784 | -#, fuzzy | |
| 10785 | 10745 | msgid "Most commented articles" |
| 10786 | -msgstr "Novo comentário para o artigo" | |
| 10746 | +msgstr "Artigos mais comentados" | |
| 10787 | 10747 | |
| 10788 | 10748 | #: plugins/relevant_content/lib/relevant_content_plugin/relevant_content_block.rb:61 |
| 10789 | -#, fuzzy | |
| 10790 | 10749 | msgid "Most liked articles" |
| 10791 | -msgstr "Todos os artigos" | |
| 10750 | +msgstr "Artigos mais curtidos" | |
| 10792 | 10751 | |
| 10793 | 10752 | #: plugins/relevant_content/lib/relevant_content_plugin/relevant_content_block.rb:70 |
| 10794 | -#, fuzzy | |
| 10795 | 10753 | msgid "Most disliked articles" |
| 10796 | -msgstr "textilearticle" | |
| 10754 | +msgstr "Artigos mais rejeitados" | |
| 10797 | 10755 | |
| 10798 | 10756 | #: plugins/relevant_content/lib/relevant_content_plugin/relevant_content_block.rb:80 |
| 10799 | -#, fuzzy | |
| 10800 | 10757 | msgid "Most voted articles" |
| 10801 | -msgstr "Limite de artigos" | |
| 10758 | +msgstr "Artigos mais votados" | |
| 10802 | 10759 | |
| 10803 | 10760 | #: plugins/relevant_content/lib/relevant_content_plugin.rb:8 |
| 10804 | 10761 | msgid "" |
| 10805 | 10762 | "A plugin that lists the most accessed, most commented, most liked and most " |
| 10806 | 10763 | "disliked contents." |
| 10807 | 10764 | msgstr "" |
| 10765 | +"Um plugin que lista os conteúdos mais acessados, mais comentados, mais " | |
| 10766 | +"curtidos e mais rejeitados." | |
| 10808 | 10767 | |
| 10809 | 10768 | #: plugins/solr/lib/solr_plugin.rb:14 |
| 10810 | 10769 | msgid "Uses Solr as search engine." |
| ... | ... | @@ -10901,7 +10860,7 @@ msgstr "Digite uma opção" |
| 10901 | 10860 | |
| 10902 | 10861 | #: plugins/custom_forms/lib/custom_forms_plugin/form.rb:67 |
| 10903 | 10862 | msgid "Invalid string format of access." |
| 10904 | -msgstr "Tipo de acesso inválido" | |
| 10863 | +msgstr "Tipo de acesso inválido." | |
| 10905 | 10864 | |
| 10906 | 10865 | #: plugins/custom_forms/lib/custom_forms_plugin/form.rb:71 |
| 10907 | 10866 | #: plugins/custom_forms/lib/custom_forms_plugin/form.rb:76 |
| ... | ... | @@ -10938,7 +10897,7 @@ msgstr "%{requestor} quer que preencha algumas informações adicionais." |
| 10938 | 10897 | |
| 10939 | 10898 | #: plugins/custom_forms/lib/custom_forms_plugin/answer.rb:13 |
| 10940 | 10899 | msgid "is mandatory." |
| 10941 | -msgstr "é obrigatório" | |
| 10900 | +msgstr "é obrigatório." | |
| 10942 | 10901 | |
| 10943 | 10902 | #: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:14 |
| 10944 | 10903 | #: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:47 |
| ... | ... | @@ -11006,14 +10965,6 @@ msgstr "Habilita a criação de formulários." |
| 11006 | 10965 | msgid "Manage Forms" |
| 11007 | 10966 | msgstr "Gerenciar Formulários" |
| 11008 | 10967 | |
| 11009 | -#: plugins/send_email/views/send_email_plugin/fail.rhtml:1 | |
| 11010 | -msgid "The message could not be sent" | |
| 11011 | -msgstr "A mensagem não pode ser enviada" | |
| 11012 | - | |
| 11013 | -#: plugins/send_email/views/send_email_plugin/sender/message.rhtml:1 | |
| 11014 | -msgid "Contact from %s" | |
| 11015 | -msgstr "Contato de %s" | |
| 11016 | - | |
| 11017 | 10968 | #: plugins/google_analytics/views/profile-editor-extras.rhtml:4 |
| 11018 | 10969 | msgid "Google Analytics Profile ID" |
| 11019 | 10970 | msgstr "ID do Perfil no Google Analytics" |
| ... | ... | @@ -11026,6 +10977,14 @@ msgstr "Veja como configurar as estatísticas para seu perfil" |
| 11026 | 10977 | msgid "Applied filters" |
| 11027 | 10978 | msgstr "Aplicar filtros" |
| 11028 | 10979 | |
| 10980 | +#: plugins/send_email/views/send_email_plugin/sender/message.html.erb:1 | |
| 10981 | +msgid "Contact from %s" | |
| 10982 | +msgstr "Contato de %s" | |
| 10983 | + | |
| 10984 | +#: plugins/send_email/views/send_email_plugin/fail.html.erb:1 | |
| 10985 | +msgid "The message could not be sent" | |
| 10986 | +msgstr "A mensagem não pode ser enviada" | |
| 10987 | + | |
| 11029 | 10988 | #: plugins/send_email/views/send_email_plugin_admin/index.html.erb:1 |
| 11030 | 10989 | msgid "SendEmailPlugin's config" |
| 11031 | 10990 | msgstr "Configurações do SendEmailPlugin" |
| ... | ... | @@ -11073,7 +11032,7 @@ msgstr "<i>Razão:</i> %s" |
| 11073 | 11032 | #: plugins/comment_classification/views/comment_classification_plugin_status/create.html.erb:1 |
| 11074 | 11033 | #: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:29 |
| 11075 | 11034 | msgid "Add a new status" |
| 11076 | -msgstr "Adicionar novo status " | |
| 11035 | +msgstr "Adicionar novo status" | |
| 11077 | 11036 | |
| 11078 | 11037 | #: plugins/comment_classification/views/comment_classification_plugin_myprofile/index.html.erb:1 |
| 11079 | 11038 | msgid "Manage comment classification" |
| ... | ... | @@ -11550,7 +11509,7 @@ msgstr "Curtir" |
| 11550 | 11509 | |
| 11551 | 11510 | #: plugins/vote/views/vote_plugin_admin/index.html.erb:8 |
| 11552 | 11511 | msgid "Dislike" |
| 11553 | -msgstr "Não curtir" | |
| 11512 | +msgstr "Rejeitar" | |
| 11554 | 11513 | |
| 11555 | 11514 | #: plugins/vote/views/vote_plugin_admin/index.html.erb:13 |
| 11556 | 11515 | msgid "Limit of voters to display:" |
| ... | ... | @@ -11582,7 +11541,7 @@ msgstr "Tipo de cliente" |
| 11582 | 11541 | #: plugins/bsc/views/bsc_plugin_myprofile/_contract_form.html.erb:7 |
| 11583 | 11542 | #: plugins/bsc/views/bsc_plugin_myprofile/view_contract.html.erb:8 |
| 11584 | 11543 | msgid "Business type" |
| 11585 | -msgstr "Nome fantasia" | |
| 11544 | +msgstr "Tipo de negócio" | |
| 11586 | 11545 | |
| 11587 | 11546 | #: plugins/bsc/views/bsc_plugin_myprofile/_contract_form.html.erb:18 |
| 11588 | 11547 | msgid "Type in search term for enterprise" |
| ... | ... | @@ -11662,7 +11621,7 @@ msgstr "Criar novo contrato" |
| 11662 | 11621 | |
| 11663 | 11622 | #: plugins/bsc/views/bsc_plugin_myprofile/_similar_enterprises.html.erb:2 |
| 11664 | 11623 | msgid "Existing enterprises:" |
| 11665 | -msgstr "Empreendimento existentes" | |
| 11624 | +msgstr "Empreendimentos existentes:" | |
| 11666 | 11625 | |
| 11667 | 11626 | #: plugins/bsc/views/bsc_plugin_myprofile/_similar_enterprises.html.erb:3 |
| 11668 | 11627 | msgid "" |
| ... | ... | @@ -11671,7 +11630,7 @@ msgid "" |
| 11671 | 11630 | "informations you typed in." |
| 11672 | 11631 | msgstr "" |
| 11673 | 11632 | "Foram encontrados %{count} empreendimentos com nomes similares na mesma " |
| 11674 | -"cidade, você pode decidir assoociar um deles ou criar um novo empreendimento " | |
| 11633 | +"cidade, você pode decidir associar um deles ou criar um novo empreendimento " | |
| 11675 | 11634 | "confirmando as informações que você digitou." |
| 11676 | 11635 | |
| 11677 | 11636 | #: plugins/bsc/views/bsc_plugin_myprofile/_similar_enterprises.html.erb:20 |
| ... | ... | @@ -11688,9 +11647,9 @@ msgid "" |
| 11688 | 11647 | "user. This action will remove all the current administrators. Be careful " |
| 11689 | 11648 | "when confirming this procedure." |
| 11690 | 11649 | msgstr "" |
| 11691 | -"Esta opção permite que transfira a administração do empreendimento para " | |
| 11692 | -"outro usuário. Esta ação removerá todos os administradores atuais. Seja " | |
| 11693 | -"cuidadoso ao confirmar este procedimento." | |
| 11650 | +"Esta opção permite transferir a administração do empreendimento para outro " | |
| 11651 | +"usuário. Esta ação removerá todos os administradores atuais. Seja cuidadoso " | |
| 11652 | +"ao confirmar este procedimento." | |
| 11694 | 11653 | |
| 11695 | 11654 | #: plugins/bsc/views/bsc_plugin_myprofile/transfer_ownership.html.erb:8 |
| 11696 | 11655 | msgid "Current administrators:" |
| ... | ... | @@ -11733,18 +11692,16 @@ msgid "Validate enterprises" |
| 11733 | 11692 | msgstr "Validar empreendimentos" |
| 11734 | 11693 | |
| 11735 | 11694 | #: plugins/piwik/views/piwik_plugin_admin/index.html.erb:1 |
| 11736 | -#, fuzzy | |
| 11737 | 11695 | msgid "Piwik plugin settings" |
| 11738 | -msgstr "Configurações de e-mail" | |
| 11696 | +msgstr "Configurações do plugin Piwik" | |
| 11739 | 11697 | |
| 11740 | 11698 | #: plugins/piwik/views/piwik_plugin_admin/index.html.erb:5 |
| 11741 | -#, fuzzy | |
| 11742 | 11699 | msgid "Piwik domain" |
| 11743 | -msgstr "domínio" | |
| 11700 | +msgstr "Domínio do Piwik" | |
| 11744 | 11701 | |
| 11745 | 11702 | #: plugins/piwik/views/piwik_plugin_admin/index.html.erb:7 |
| 11746 | 11703 | msgid "Piwik site id" |
| 11747 | -msgstr "" | |
| 11704 | +msgstr "Id do site do Piwik" | |
| 11748 | 11705 | |
| 11749 | 11706 | #: plugins/display_content/views/box_organizer/_display_content_block.html.erb:5 |
| 11750 | 11707 | msgid "Choose which attributes should be displayed and drag to reorder them:" |
| ... | ... | @@ -11757,12 +11714,11 @@ msgstr "Escolha qual conteúdo deve ser mostrado:" |
| 11757 | 11714 | |
| 11758 | 11715 | #: plugins/display_content/views/box_organizer/_display_content_block.html.erb:23 |
| 11759 | 11716 | msgid "Choose directly" |
| 11760 | -msgstr "" | |
| 11717 | +msgstr "Escolha diretamente" | |
| 11761 | 11718 | |
| 11762 | 11719 | #: plugins/display_content/views/box_organizer/_display_content_block.html.erb:24 |
| 11763 | -#, fuzzy | |
| 11764 | 11720 | msgid "Choose by Content Type" |
| 11765 | -msgstr "Tipo de conteúdo" | |
| 11721 | +msgstr "Escolha pelo Tipo de conteúdo" | |
| 11766 | 11722 | |
| 11767 | 11723 | #: plugins/display_content/views/box_organizer/_choose_by_content_type.html.erb:1 |
| 11768 | 11724 | #: plugins/context_content/views/box_organizer/context_content_plugin/_context_content_block.html.erb:8 |
| ... | ... | @@ -11876,7 +11832,7 @@ msgstr "Spaminator está buscando..." |
| 11876 | 11832 | |
| 11877 | 11833 | #: plugins/spaminator/views/spaminator_plugin_admin/index.html.erb:21 |
| 11878 | 11834 | msgid "Next scan on %s days." |
| 11879 | -msgstr "Proxima busca em %s dias" | |
| 11835 | +msgstr "Próxima busca em %s dias." | |
| 11880 | 11836 | |
| 11881 | 11837 | #: plugins/spaminator/views/spaminator_plugin_admin/index.html.erb:25 |
| 11882 | 11838 | msgid "Scanning..." |
| ... | ... | @@ -11900,7 +11856,7 @@ msgstr "Em espera" |
| 11900 | 11856 | |
| 11901 | 11857 | #: plugins/spaminator/views/spaminator_plugin_admin/index.html.erb:30 |
| 11902 | 11858 | msgid "Cancel next scheduled scans" |
| 11903 | -msgstr "Cancela as próximas buscas agendadas" | |
| 11859 | +msgstr "Cancelar as próximas buscas agendadas" | |
| 11904 | 11860 | |
| 11905 | 11861 | #: plugins/spaminator/views/spaminator_plugin_admin/index.html.erb:41 |
| 11906 | 11862 | msgid "Spams" |
| ... | ... | @@ -11942,8 +11898,8 @@ msgid "" |
| 11942 | 11898 | "We are sorry that this procedure might bother you a lot, but it's necessary " |
| 11943 | 11899 | "for the healthy of our network." |
| 11944 | 11900 | msgstr "" |
| 11945 | -"Lamentamos que esse procedimento poderia incomodá-lo muito, mas é necessário " | |
| 11946 | -"para a saúe na nossa rede." | |
| 11901 | +"Lamentamos que esse procedimento possa incomodá-lo muito, mas é necessário " | |
| 11902 | +"para a saúde de nossa rede." | |
| 11947 | 11903 | |
| 11948 | 11904 | #: plugins/spaminator/views/spaminator_plugin/mailer/inactive_person_notification.html.erb:17 |
| 11949 | 11905 | msgid "We hope to see you back soon!" |
| ... | ... | @@ -12000,17 +11956,16 @@ msgstr "Ambos" |
| 12000 | 11956 | #: plugins/sub_organizations/views/sub_organizations_plugin_profile/_related_organizations.html.erb:2 |
| 12001 | 11957 | #: plugins/sub_organizations/views/sub_organizations_plugin_profile/_full_related_organizations.html.erb:4 |
| 12002 | 11958 | msgid "\"#{profile.name}'s sub-#{organization_type.pluralize}\"" |
| 12003 | -msgstr "" | |
| 11959 | +msgstr "\"#{profile.name}'s sub-#{organization_type.pluralize}\"" | |
| 12004 | 11960 | |
| 12005 | 11961 | #: plugins/sub_organizations/views/sub_organizations_plugin_profile/_related_organizations.html.erb:10 |
| 12006 | 11962 | msgid "\"There are no sub-#{organization_type.pluralize} yet. \"" |
| 12007 | -msgstr "" | |
| 11963 | +msgstr "\"Ainda não há sub-#{organization_type.pluralize}.\"" | |
| 12008 | 11964 | |
| 12009 | 11965 | #: plugins/sub_organizations/views/sub_organizations_plugin_profile/_related_organizations.html.erb:14 |
| 12010 | 11966 | #: plugins/sub_organizations/views/sub_organizations_plugin_profile/_full_related_organizations.html.erb:56 |
| 12011 | -#, fuzzy | |
| 12012 | 11967 | msgid "\"Add a new #{organization_type}\"" |
| 12013 | -msgstr "Registrar nova organização" | |
| 11968 | +msgstr "\"Adicionar #{organization_type}\"" | |
| 12014 | 11969 | |
| 12015 | 11970 | #: plugins/sub_organizations/views/sub_organizations_plugin_myprofile/index.html.erb:4 |
| 12016 | 11971 | msgid "Sub-groups awaiting approval:" |
| ... | ... | @@ -12062,7 +12017,7 @@ msgstr "Mostrar contador de comentário" |
| 12062 | 12017 | |
| 12063 | 12018 | #: plugins/statistics/views/box_organizer/_statistics_block.html.erb:24 |
| 12064 | 12019 | msgid "Show hit counter" |
| 12065 | -msgstr "Mostrar contador de acessos" | |
| 12020 | +msgstr "Mostrar contador de acesso" | |
| 12066 | 12021 | |
| 12067 | 12022 | #: plugins/statistics/views/box_organizer/_statistics_block.html.erb:30 |
| 12068 | 12023 | msgid "Show counter for communities with template %s" |
| ... | ... | @@ -12087,11 +12042,12 @@ msgstr "categorias" |
| 12087 | 12042 | #: plugins/recent_content/views/box_organizer/_recent_content_block.html.erb:3 |
| 12088 | 12043 | msgid "No blogs found. Please add a blog in order to configure this block." |
| 12089 | 12044 | msgstr "" |
| 12090 | -"Nenhum blog encontrado. Por favor adicione um blog para configurar esse blog." | |
| 12045 | +"Nenhum blog encontrado. Por favor adicione um blog para configurar esse " | |
| 12046 | +"bloco." | |
| 12091 | 12047 | |
| 12092 | 12048 | #: plugins/recent_content/views/box_organizer/_recent_content_block.html.erb:6 |
| 12093 | 12049 | msgid "Choose which blog should be displayed" |
| 12094 | -msgstr "Escolha qual blog deve ser mostrado:" | |
| 12050 | +msgstr "Escolha qual blog deve ser mostrado" | |
| 12095 | 12051 | |
| 12096 | 12052 | #: plugins/recent_content/views/box_organizer/_recent_content_block.html.erb:14 |
| 12097 | 12053 | msgid "Choose how the content should be displayed" |
| ... | ... | @@ -12123,19 +12079,19 @@ msgid "" |
| 12123 | 12079 | "want." |
| 12124 | 12080 | msgstr "" |
| 12125 | 12081 | "Esse é o bloco de conteúdo recente. Por favor edite-o para mostrar o " |
| 12126 | -"conteúdoque você deseja." | |
| 12082 | +"conteúdo que você deseja." | |
| 12127 | 12083 | |
| 12128 | 12084 | #: plugins/people_block/views/box_organizer/_people_block_base.html.erb:6 |
| 12129 | 12085 | msgid "Filter by role:" |
| 12130 | -msgstr "" | |
| 12086 | +msgstr "Filtrar por papel:" | |
| 12131 | 12087 | |
| 12132 | 12088 | #: plugins/people_block/views/blocks/friends.html.erb:1 |
| 12133 | 12089 | msgid "friends|View all" |
| 12134 | -msgstr "Ver todos(as)" | |
| 12090 | +msgstr "Ver todos" | |
| 12135 | 12091 | |
| 12136 | 12092 | #: plugins/context_content/views/box_organizer/context_content_plugin/_context_content_block.html.erb:3 |
| 12137 | 12093 | msgid "Show content name" |
| 12138 | -msgstr "Mostrar nome do conteúdo" | |
| 12094 | +msgstr "Mostrar o nome do conteúdo" | |
| 12139 | 12095 | |
| 12140 | 12096 | #: plugins/context_content/views/box_organizer/context_content_plugin/_context_content_block.html.erb:4 |
| 12141 | 12097 | msgid "Show content image" |
| ... | ... | @@ -12147,7 +12103,7 @@ msgstr "Mostrar conteúdo do pai quando os filhos estão vazios" |
| 12147 | 12103 | |
| 12148 | 12104 | #: plugins/google_cse/views/google_cse_plugin/results.html.erb:2 |
| 12149 | 12105 | msgid "Loading" |
| 12150 | -msgstr "Carregando... " | |
| 12106 | +msgstr "Carregando" | |
| 12151 | 12107 | |
| 12152 | 12108 | #: plugins/anti_spam/views/anti_spam_plugin_admin/index.html.erb:1 |
| 12153 | 12109 | msgid "AntiSpam settings" |
| ... | ... | @@ -12158,34 +12114,28 @@ msgid "API key" |
| 12158 | 12114 | msgstr "Chave da API" |
| 12159 | 12115 | |
| 12160 | 12116 | #: plugins/relevant_content/views/box_organizer/relevant_content_plugin/_relevant_content_block.html.erb:2 |
| 12161 | -#, fuzzy | |
| 12162 | 12117 | msgid "Limit of items per category" |
| 12163 | -msgstr "Limite de itens" | |
| 12118 | +msgstr "Limite de itens por categoria" | |
| 12164 | 12119 | |
| 12165 | 12120 | #: plugins/relevant_content/views/box_organizer/relevant_content_plugin/_relevant_content_block.html.erb:3 |
| 12166 | -#, fuzzy | |
| 12167 | 12121 | msgid "Display most accessed content" |
| 12168 | -msgstr "Mostrar conteúdo contextual" | |
| 12122 | +msgstr "Mostrar conteúdo mais acessado" | |
| 12169 | 12123 | |
| 12170 | 12124 | #: plugins/relevant_content/views/box_organizer/relevant_content_plugin/_relevant_content_block.html.erb:4 |
| 12171 | -#, fuzzy | |
| 12172 | 12125 | msgid "Display most commented content" |
| 12173 | -msgstr "Mostrar conteúdo contextual" | |
| 12126 | +msgstr "Mostrar conteúdo mais comentado" | |
| 12174 | 12127 | |
| 12175 | 12128 | #: plugins/relevant_content/views/box_organizer/relevant_content_plugin/_relevant_content_block.html.erb:5 |
| 12176 | -#, fuzzy | |
| 12177 | 12129 | msgid "Display most liked content" |
| 12178 | -msgstr "Mostrar conteúdo contextual" | |
| 12130 | +msgstr "Mostrar conteúdo mais curtido" | |
| 12179 | 12131 | |
| 12180 | 12132 | #: plugins/relevant_content/views/box_organizer/relevant_content_plugin/_relevant_content_block.html.erb:6 |
| 12181 | -#, fuzzy | |
| 12182 | 12133 | msgid "Display most voted content" |
| 12183 | -msgstr "Mostrar conteúdo contextual" | |
| 12134 | +msgstr "Mostrar conteúdo mais votado" | |
| 12184 | 12135 | |
| 12185 | 12136 | #: plugins/relevant_content/views/box_organizer/relevant_content_plugin/_relevant_content_block.html.erb:7 |
| 12186 | -#, fuzzy | |
| 12187 | 12137 | msgid "Display most disliked content" |
| 12188 | -msgstr "Mostrar conteúdo contextual" | |
| 12138 | +msgstr "Mostrar conteúdo mais rejeitado" | |
| 12189 | 12139 | |
| 12190 | 12140 | #: plugins/solr/views/search/_results_header.html.erb:7 |
| 12191 | 12141 | msgid "Showing page %s of %s" |
| ... | ... | @@ -12268,7 +12218,7 @@ msgstr "Qual o período limite em que esse formulário pode ser preenchido?" |
| 12268 | 12218 | #: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:13 |
| 12269 | 12219 | #: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:9 |
| 12270 | 12220 | msgid "Access" |
| 12271 | -msgstr "Accesso" | |
| 12221 | +msgstr "Acesso" | |
| 12272 | 12222 | |
| 12273 | 12223 | #: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:16 |
| 12274 | 12224 | msgid "Triggered on membership request as requirement for approval" |
| ... | ... | @@ -12304,7 +12254,7 @@ msgstr "Submissões pendentes para %s" |
| 12304 | 12254 | |
| 12305 | 12255 | #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:6 |
| 12306 | 12256 | msgid "There are no pending submissions for this form." |
| 12307 | -msgstr "Não há submissões pendentes para esse formulário" | |
| 12257 | +msgstr "Não há submissões pendentes para esse formulário." | |
| 12308 | 12258 | |
| 12309 | 12259 | #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9 |
| 12310 | 12260 | #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:14 |
| ... | ... | @@ -12316,7 +12266,7 @@ msgstr "Tempo" |
| 12316 | 12266 | #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9 |
| 12317 | 12267 | #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:13 |
| 12318 | 12268 | msgid "User" |
| 12319 | -msgstr "usuário" | |
| 12269 | +msgstr "Usuário" | |
| 12320 | 12270 | |
| 12321 | 12271 | #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:26 |
| 12322 | 12272 | #: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:31 |
| ... | ... | @@ -12367,6 +12317,12 @@ msgstr "Tem certeza de que deseja remover esse formulário?" |
| 12367 | 12317 | msgid "Add a new form" |
| 12368 | 12318 | msgstr "Adicionar um novo formulário" |
| 12369 | 12319 | |
| 12320 | +#~ msgid "More options" | |
| 12321 | +#~ msgstr "Mais opções" | |
| 12322 | + | |
| 12323 | +#~ msgid "New mail" | |
| 12324 | +#~ msgstr "Novo email" | |
| 12325 | + | |
| 12370 | 12326 | #~ msgid "Do not display at the menu" |
| 12371 | 12327 | #~ msgstr "Não exibir no menu" |
| 12372 | 12328 | |
| ... | ... | @@ -13748,9 +13704,6 @@ msgstr "Adicionar um novo formulário" |
| 13748 | 13704 | #~ "\">Convide e encontre</a> seus contatos do Gmail, Yahoo e Hotmail!</p>\n" |
| 13749 | 13705 | #~ " <p>Comece a explorar e divirta-se!</p>" |
| 13750 | 13706 | |
| 13751 | -#~ msgid "%{fn} is invalid." | |
| 13752 | -#~ msgstr "%{fn} é inválido" | |
| 13753 | - | |
| 13754 | 13707 | #~ msgid "%{fn} can't be blank" |
| 13755 | 13708 | #~ msgstr "%{fn} não pode ser em branco" |
| 13756 | 13709 | ... | ... |
po/ru/noosfero.po
| ... | ... | @@ -5,16 +5,19 @@ |
| 5 | 5 | # |
| 6 | 6 | msgid "" |
| 7 | 7 | msgstr "" |
| 8 | -"Project-Id-Version: 1.0~rc3\n" | |
| 9 | -"POT-Creation-Date: 2014-10-30 09:24-0300\n" | |
| 10 | -"PO-Revision-Date: 2010-10-26 09:57-0300\n" | |
| 11 | -"Last-Translator: Anton <anton.c@live.com>\n" | |
| 12 | -"Language-Team: German <de@li.org>\n" | |
| 13 | -"Language: de\n" | |
| 8 | +"Project-Id-Version: 1.0~rc4\n" | |
| 9 | +"POT-Creation-Date: 2014-12-18 17:22-0300\n" | |
| 10 | +"PO-Revision-Date: 2014-12-12 14:23+0200\n" | |
| 11 | +"Last-Translator: Michal Čihař <michal@cihar.com>\n" | |
| 12 | +"Language-Team: Russian <https://hosted.weblate.org/projects/noosfero/" | |
| 13 | +"noosfero/ru/>\n" | |
| 14 | +"Language: ru\n" | |
| 14 | 15 | "MIME-Version: 1.0\n" |
| 15 | 16 | "Content-Type: text/plain; charset=UTF-8\n" |
| 16 | 17 | "Content-Transfer-Encoding: 8bit\n" |
| 17 | -"Plural-Forms: nplurals=2; plural=(n > 1);\n" | |
| 18 | +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" | |
| 19 | +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" | |
| 20 | +"X-Generator: Weblate 2.2-dev\n" | |
| 18 | 21 | |
| 19 | 22 | #: app/models/approve_comment.rb:17 |
| 20 | 23 | #, fuzzy |
| ... | ... | @@ -569,7 +572,7 @@ msgid "have unsupported languages." |
| 569 | 572 | msgstr "" |
| 570 | 573 | |
| 571 | 574 | #: app/models/communities_block.rb:6 app/helpers/application_helper.rb:549 |
| 572 | -#: app/helpers/application_helper.rb:1082 app/helpers/search_helper.rb:12 | |
| 575 | +#: app/helpers/application_helper.rb:1084 app/helpers/search_helper.rb:12 | |
| 573 | 576 | #: app/helpers/assets_helper.rb:11 |
| 574 | 577 | #: app/controllers/public/search_controller.rb:53 |
| 575 | 578 | msgid "Communities" |
| ... | ... | @@ -742,24 +745,24 @@ msgstr "рабочий телефон" |
| 742 | 745 | msgid "Nationality" |
| 743 | 746 | msgstr "Национальность" |
| 744 | 747 | |
| 745 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:32 | |
| 748 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:36 | |
| 746 | 749 | msgid "Schooling" |
| 747 | 750 | msgstr "Учеба" |
| 748 | 751 | |
| 749 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:58 | |
| 752 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:62 | |
| 750 | 753 | msgid "Area of study" |
| 751 | 754 | msgstr "Облась изучния" |
| 752 | 755 | |
| 753 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:65 | |
| 756 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:69 | |
| 754 | 757 | msgid "Professional activity" |
| 755 | 758 | msgstr "Профессиональная деятельность" |
| 756 | 759 | |
| 757 | -#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:66 | |
| 760 | +#: app/models/person.rb:196 app/views/profile_editor/_person_form.html.erb:70 | |
| 758 | 761 | msgid "Organization" |
| 759 | 762 | msgstr "Организация" |
| 760 | 763 | |
| 761 | 764 | #: app/models/person.rb:196 app/models/enterprise.rb:25 |
| 762 | -#: app/views/profile_editor/_person_form.html.erb:67 | |
| 765 | +#: app/views/profile_editor/_person_form.html.erb:71 | |
| 763 | 766 | msgid "Organization website" |
| 764 | 767 | msgstr "Веб-сайт организации" |
| 765 | 768 | |
| ... | ... | @@ -768,7 +771,7 @@ msgid "Schooling status" |
| 768 | 771 | msgstr "Учебный статус" |
| 769 | 772 | |
| 770 | 773 | #: app/models/person.rb:202 app/helpers/profile_editor_helper.rb:26 |
| 771 | -#: app/views/profile_editor/_person_form.html.erb:51 | |
| 774 | +#: app/views/profile_editor/_person_form.html.erb:55 | |
| 772 | 775 | msgid "Education" |
| 773 | 776 | msgstr "Образование" |
| 774 | 777 | |
| ... | ... | @@ -777,7 +780,7 @@ msgstr "Образование" |
| 777 | 780 | msgid "Custom education" |
| 778 | 781 | msgstr "Пользовательское формирование" |
| 779 | 782 | |
| 780 | -#: app/models/person.rb:202 app/views/profile_editor/_person_form.html.erb:61 | |
| 783 | +#: app/models/person.rb:202 app/views/profile_editor/_person_form.html.erb:65 | |
| 781 | 784 | msgid "Custom area of study" |
| 782 | 785 | msgstr "Пользовательская область изучения" |
| 783 | 786 | |
| ... | ... | @@ -1024,7 +1027,7 @@ msgstr "E-Mail" |
| 1024 | 1027 | msgid "{fn} must be checked in order to signup." |
| 1025 | 1028 | msgstr "%{fn} - необходимое значение для регистрации." |
| 1026 | 1029 | |
| 1027 | -#: app/models/user.rb:251 | |
| 1030 | +#: app/models/user.rb:255 | |
| 1028 | 1031 | #, fuzzy |
| 1029 | 1032 | msgid "does not match." |
| 1030 | 1033 | msgstr "Подтверждение пароля" |
| ... | ... | @@ -1556,7 +1559,7 @@ msgstr "Управлять" |
| 1556 | 1559 | msgid "To do list" |
| 1557 | 1560 | msgstr "Список тегов" |
| 1558 | 1561 | |
| 1559 | -#: app/models/link_list_block.rb:35 app/helpers/application_helper.rb:914 | |
| 1562 | +#: app/models/link_list_block.rb:35 app/helpers/application_helper.rb:915 | |
| 1560 | 1563 | msgid "Chat" |
| 1561 | 1564 | msgstr "Чат" |
| 1562 | 1565 | |
| ... | ... | @@ -1618,7 +1621,7 @@ msgstr "Название" |
| 1618 | 1621 | msgid "description" |
| 1619 | 1622 | msgstr "Описание" |
| 1620 | 1623 | |
| 1621 | -#: app/models/create_community.rb:38 app/helpers/application_helper.rb:1079 | |
| 1624 | +#: app/models/create_community.rb:38 app/helpers/application_helper.rb:1081 | |
| 1622 | 1625 | msgid "New community" |
| 1623 | 1626 | msgstr "Новое сообщество" |
| 1624 | 1627 | |
| ... | ... | @@ -2386,8 +2389,8 @@ msgstr "Показать сообщение для отключенных ком |
| 2386 | 2389 | |
| 2387 | 2390 | #: app/models/disabled_enterprise_message_block.rb:12 |
| 2388 | 2391 | #: app/mailers/contact.rb:23 |
| 2389 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 2390 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:5 | |
| 2392 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 2393 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:5 | |
| 2391 | 2394 | msgid "Message" |
| 2392 | 2395 | msgstr "Сообщение" |
| 2393 | 2396 | |
| ... | ... | @@ -2616,117 +2619,117 @@ msgstr "Введите запрос и нажмите enter" |
| 2616 | 2619 | msgid "Public" |
| 2617 | 2620 | msgstr "публичный" |
| 2618 | 2621 | |
| 2619 | -#: app/helpers/application_helper.rb:913 | |
| 2622 | +#: app/helpers/application_helper.rb:914 | |
| 2620 | 2623 | msgid "Online Manual" |
| 2621 | 2624 | msgstr "Онлайн-руководство" |
| 2622 | 2625 | |
| 2623 | -#: app/helpers/application_helper.rb:961 app/views/home/index.html.erb:12 | |
| 2626 | +#: app/helpers/application_helper.rb:963 app/views/home/index.html.erb:12 | |
| 2624 | 2627 | #: plugins/display_content/lib/display_content_block.rb:141 |
| 2625 | 2628 | #: plugins/recent_content/views/blocks/recent_content_block.html.erb:26 |
| 2626 | 2629 | #: plugins/recent_content/views/blocks/recent_content_block.html.erb:35 |
| 2627 | 2630 | msgid "Read more" |
| 2628 | 2631 | msgstr "Читать дальше" |
| 2629 | 2632 | |
| 2630 | -#: app/helpers/application_helper.rb:1042 | |
| 2633 | +#: app/helpers/application_helper.rb:1044 | |
| 2631 | 2634 | #, fuzzy |
| 2632 | 2635 | msgid "contents|More recent" |
| 2633 | 2636 | msgstr "Сообщества|последние" |
| 2634 | 2637 | |
| 2635 | -#: app/helpers/application_helper.rb:1043 | |
| 2638 | +#: app/helpers/application_helper.rb:1045 | |
| 2636 | 2639 | #, fuzzy |
| 2637 | 2640 | msgid "contents|More viewed" |
| 2638 | 2641 | msgstr "Сообщества|Активные" |
| 2639 | 2642 | |
| 2640 | -#: app/helpers/application_helper.rb:1044 | |
| 2643 | +#: app/helpers/application_helper.rb:1046 | |
| 2641 | 2644 | #, fuzzy |
| 2642 | 2645 | msgid "contents|Most commented" |
| 2643 | 2646 | msgstr "Сообщества|последние" |
| 2644 | 2647 | |
| 2645 | -#: app/helpers/application_helper.rb:1047 app/views/cms/view.html.erb:20 | |
| 2648 | +#: app/helpers/application_helper.rb:1049 app/views/cms/view.html.erb:20 | |
| 2646 | 2649 | #, fuzzy |
| 2647 | 2650 | msgid "New content" |
| 2648 | 2651 | msgstr "Весь контент" |
| 2649 | 2652 | |
| 2650 | -#: app/helpers/application_helper.rb:1050 app/helpers/search_helper.rb:9 | |
| 2653 | +#: app/helpers/application_helper.rb:1052 app/helpers/search_helper.rb:9 | |
| 2651 | 2654 | #: app/controllers/public/search_controller.rb:54 |
| 2652 | 2655 | #, fuzzy |
| 2653 | 2656 | msgid "Contents" |
| 2654 | 2657 | msgstr "Контент" |
| 2655 | 2658 | |
| 2656 | -#: app/helpers/application_helper.rb:1051 | |
| 2659 | +#: app/helpers/application_helper.rb:1053 | |
| 2657 | 2660 | #: app/views/comment/_comment_actions.html.erb:5 |
| 2658 | 2661 | #, fuzzy |
| 2659 | 2662 | msgid "Contents menu" |
| 2660 | 2663 | msgstr "Меню \"Сообщества\"" |
| 2661 | 2664 | |
| 2662 | -#: app/helpers/application_helper.rb:1057 | |
| 2665 | +#: app/helpers/application_helper.rb:1059 | |
| 2663 | 2666 | #, fuzzy |
| 2664 | 2667 | msgid "people|More recent" |
| 2665 | 2668 | msgstr "люди|Последние" |
| 2666 | 2669 | |
| 2667 | -#: app/helpers/application_helper.rb:1058 | |
| 2670 | +#: app/helpers/application_helper.rb:1060 | |
| 2668 | 2671 | #, fuzzy |
| 2669 | 2672 | msgid "people|More active" |
| 2670 | 2673 | msgstr "люди|Наиболее активные" |
| 2671 | 2674 | |
| 2672 | -#: app/helpers/application_helper.rb:1059 | |
| 2675 | +#: app/helpers/application_helper.rb:1061 | |
| 2673 | 2676 | #, fuzzy |
| 2674 | 2677 | msgid "people|More popular" |
| 2675 | 2678 | msgstr "люди|Наиболее популярные" |
| 2676 | 2679 | |
| 2677 | -#: app/helpers/application_helper.rb:1062 | |
| 2680 | +#: app/helpers/application_helper.rb:1064 | |
| 2678 | 2681 | msgid "My friends" |
| 2679 | 2682 | msgstr "Мои друзья" |
| 2680 | 2683 | |
| 2681 | -#: app/helpers/application_helper.rb:1063 plugins/stoa/lib/stoa_plugin.rb:110 | |
| 2684 | +#: app/helpers/application_helper.rb:1065 plugins/stoa/lib/stoa_plugin.rb:110 | |
| 2682 | 2685 | msgid "Invite friends" |
| 2683 | 2686 | msgstr "Пригласить друзей" |
| 2684 | 2687 | |
| 2685 | -#: app/helpers/application_helper.rb:1066 app/helpers/search_helper.rb:11 | |
| 2688 | +#: app/helpers/application_helper.rb:1068 app/helpers/search_helper.rb:11 | |
| 2686 | 2689 | #: app/helpers/assets_helper.rb:8 |
| 2687 | 2690 | #: app/controllers/public/search_controller.rb:49 |
| 2688 | 2691 | #: plugins/people_block/lib/people_block.rb:4 |
| 2689 | 2692 | msgid "People" |
| 2690 | 2693 | msgstr "Пользователи" |
| 2691 | 2694 | |
| 2692 | -#: app/helpers/application_helper.rb:1067 | |
| 2695 | +#: app/helpers/application_helper.rb:1069 | |
| 2693 | 2696 | #, fuzzy |
| 2694 | 2697 | msgid "People menu" |
| 2695 | 2698 | msgstr "Меню \"Пользователи\"" |
| 2696 | 2699 | |
| 2697 | -#: app/helpers/application_helper.rb:1073 | |
| 2700 | +#: app/helpers/application_helper.rb:1075 | |
| 2698 | 2701 | #, fuzzy |
| 2699 | 2702 | msgid "communities|More recent" |
| 2700 | 2703 | msgstr "Сообщества|последние" |
| 2701 | 2704 | |
| 2702 | -#: app/helpers/application_helper.rb:1074 | |
| 2705 | +#: app/helpers/application_helper.rb:1076 | |
| 2703 | 2706 | #, fuzzy |
| 2704 | 2707 | msgid "communities|More active" |
| 2705 | 2708 | msgstr "Сообщества|Активные" |
| 2706 | 2709 | |
| 2707 | -#: app/helpers/application_helper.rb:1075 | |
| 2710 | +#: app/helpers/application_helper.rb:1077 | |
| 2708 | 2711 | #, fuzzy |
| 2709 | 2712 | msgid "communities|More popular" |
| 2710 | 2713 | msgstr "Сообщества|Наиболее популярные" |
| 2711 | 2714 | |
| 2712 | -#: app/helpers/application_helper.rb:1078 | |
| 2713 | -#: app/helpers/application_helper.rb:1128 | |
| 2715 | +#: app/helpers/application_helper.rb:1080 | |
| 2716 | +#: app/helpers/application_helper.rb:1130 | |
| 2714 | 2717 | msgid "My communities" |
| 2715 | 2718 | msgstr "Мои сообщества" |
| 2716 | 2719 | |
| 2717 | -#: app/helpers/application_helper.rb:1083 | |
| 2720 | +#: app/helpers/application_helper.rb:1085 | |
| 2718 | 2721 | #, fuzzy |
| 2719 | 2722 | msgid "Communities menu" |
| 2720 | 2723 | msgstr "Меню \"Сообщества\"" |
| 2721 | 2724 | |
| 2722 | -#: app/helpers/application_helper.rb:1088 | |
| 2725 | +#: app/helpers/application_helper.rb:1090 | |
| 2723 | 2726 | #: app/views/layouts/slideshow.html.erb:18 |
| 2724 | 2727 | #: app/views/blocks/slideshow.html.erb:17 |
| 2725 | 2728 | #: app/views/blocks/featured_products.html.erb:3 |
| 2726 | 2729 | msgid "Previous" |
| 2727 | 2730 | msgstr "Предыдущий" |
| 2728 | 2731 | |
| 2729 | -#: app/helpers/application_helper.rb:1088 app/helpers/forms_helper.rb:169 | |
| 2732 | +#: app/helpers/application_helper.rb:1090 app/helpers/forms_helper.rb:169 | |
| 2730 | 2733 | #: app/views/layouts/slideshow.html.erb:18 |
| 2731 | 2734 | #: app/views/enterprise_registration/basic_information.html.erb:40 |
| 2732 | 2735 | #: app/views/blocks/slideshow.html.erb:21 |
| ... | ... | @@ -2735,48 +2738,48 @@ msgstr "Предыдущий" |
| 2735 | 2738 | msgid "Next" |
| 2736 | 2739 | msgstr "Следующий" |
| 2737 | 2740 | |
| 2738 | -#: app/helpers/application_helper.rb:1108 | |
| 2741 | +#: app/helpers/application_helper.rb:1110 | |
| 2739 | 2742 | #, fuzzy |
| 2740 | 2743 | msgid "See all" |
| 2741 | 2744 | msgstr "просмотреть все..." |
| 2742 | 2745 | |
| 2743 | -#: app/helpers/application_helper.rb:1111 | |
| 2746 | +#: app/helpers/application_helper.rb:1113 | |
| 2744 | 2747 | msgid "<span>Manage</span> %s" |
| 2745 | 2748 | msgstr "" |
| 2746 | 2749 | |
| 2747 | -#: app/helpers/application_helper.rb:1111 | |
| 2750 | +#: app/helpers/application_helper.rb:1113 | |
| 2748 | 2751 | #: app/views/shared/user_menu.html.erb:26 |
| 2749 | 2752 | #: app/views/shared/_manage_link.html.erb:2 |
| 2750 | 2753 | msgid "Manage %s" |
| 2751 | 2754 | msgstr "Управлять%s" |
| 2752 | 2755 | |
| 2753 | -#: app/helpers/application_helper.rb:1122 | |
| 2756 | +#: app/helpers/application_helper.rb:1124 | |
| 2754 | 2757 | #, fuzzy |
| 2755 | 2758 | msgid "My enterprises" |
| 2756 | 2759 | msgstr "Компании" |
| 2757 | 2760 | |
| 2758 | -#: app/helpers/application_helper.rb:1132 | |
| 2761 | +#: app/helpers/application_helper.rb:1134 | |
| 2759 | 2762 | msgid "Administration" |
| 2760 | 2763 | msgstr "Администрация" |
| 2761 | 2764 | |
| 2762 | -#: app/helpers/application_helper.rb:1132 | |
| 2765 | +#: app/helpers/application_helper.rb:1134 | |
| 2763 | 2766 | msgid "Configure the environment" |
| 2764 | 2767 | msgstr "Настроить среду" |
| 2765 | 2768 | |
| 2766 | -#: app/helpers/application_helper.rb:1139 | |
| 2769 | +#: app/helpers/application_helper.rb:1141 | |
| 2767 | 2770 | #, fuzzy |
| 2768 | 2771 | msgid "Manage your pending tasks" |
| 2769 | 2772 | msgstr "Управление контентом" |
| 2770 | 2773 | |
| 2771 | -#: app/helpers/application_helper.rb:1142 | |
| 2774 | +#: app/helpers/application_helper.rb:1144 | |
| 2772 | 2775 | msgid "<span class='welcome'>Welcome,</span> %s" |
| 2773 | 2776 | msgstr "" |
| 2774 | 2777 | |
| 2775 | -#: app/helpers/application_helper.rb:1142 | |
| 2778 | +#: app/helpers/application_helper.rb:1144 | |
| 2776 | 2779 | msgid "Go to your homepage" |
| 2777 | 2780 | msgstr "Вернуться на главную" |
| 2778 | 2781 | |
| 2779 | -#: app/helpers/application_helper.rb:1147 | |
| 2782 | +#: app/helpers/application_helper.rb:1149 | |
| 2780 | 2783 | #: app/views/shared/user_menu.html.erb:37 |
| 2781 | 2784 | #: app/views/blocks/profile_info.html.erb:24 |
| 2782 | 2785 | #: app/views/blocks/profile_image.html.erb:21 |
| ... | ... | @@ -2785,129 +2788,129 @@ msgstr "Вернуться на главную" |
| 2785 | 2788 | msgid "Control panel" |
| 2786 | 2789 | msgstr "Панель управления" |
| 2787 | 2790 | |
| 2788 | -#: app/helpers/application_helper.rb:1147 | |
| 2791 | +#: app/helpers/application_helper.rb:1149 | |
| 2789 | 2792 | msgid "Configure your personal account and content" |
| 2790 | 2793 | msgstr "Настроить аккаунт и контент" |
| 2791 | 2794 | |
| 2792 | -#: app/helpers/application_helper.rb:1149 | |
| 2795 | +#: app/helpers/application_helper.rb:1151 | |
| 2793 | 2796 | #: app/views/shared/user_menu.html.erb:45 |
| 2794 | 2797 | #: app/views/blocks/login_block.html.erb:9 |
| 2795 | 2798 | msgid "Logout" |
| 2796 | 2799 | msgstr "Выйти" |
| 2797 | 2800 | |
| 2798 | -#: app/helpers/application_helper.rb:1149 | |
| 2801 | +#: app/helpers/application_helper.rb:1151 | |
| 2799 | 2802 | msgid "Leave the system" |
| 2800 | 2803 | msgstr "Выйти из системы" |
| 2801 | 2804 | |
| 2802 | -#: app/helpers/application_helper.rb:1155 | |
| 2805 | +#: app/helpers/application_helper.rb:1157 | |
| 2803 | 2806 | msgid " characters left" |
| 2804 | -msgstr "символов осталось" | |
| 2807 | +msgstr " символов осталось" | |
| 2805 | 2808 | |
| 2806 | -#: app/helpers/application_helper.rb:1156 | |
| 2809 | +#: app/helpers/application_helper.rb:1158 | |
| 2807 | 2810 | msgid "Limit of characters reached" |
| 2808 | 2811 | msgstr "Лимит символов достигнут" |
| 2809 | 2812 | |
| 2810 | -#: app/helpers/application_helper.rb:1182 | |
| 2811 | -#: app/helpers/application_helper.rb:1188 | |
| 2813 | +#: app/helpers/application_helper.rb:1184 | |
| 2814 | +#: app/helpers/application_helper.rb:1190 | |
| 2812 | 2815 | msgid "less than a minute" |
| 2813 | 2816 | msgstr "менее минуты" |
| 2814 | 2817 | |
| 2815 | -#: app/helpers/application_helper.rb:1182 | |
| 2816 | -#: app/helpers/application_helper.rb:1189 | |
| 2818 | +#: app/helpers/application_helper.rb:1184 | |
| 2819 | +#: app/helpers/application_helper.rb:1191 | |
| 2817 | 2820 | msgid "1 minute" |
| 2818 | 2821 | msgstr "1 минута" |
| 2819 | 2822 | |
| 2820 | -#: app/helpers/application_helper.rb:1184 | |
| 2823 | +#: app/helpers/application_helper.rb:1186 | |
| 2821 | 2824 | msgid "less than 5 seconds" |
| 2822 | 2825 | msgstr "менее 5-ти секунд" |
| 2823 | 2826 | |
| 2824 | -#: app/helpers/application_helper.rb:1185 | |
| 2827 | +#: app/helpers/application_helper.rb:1187 | |
| 2825 | 2828 | msgid "less than 10 seconds" |
| 2826 | 2829 | msgstr "менее 10-ти секунд" |
| 2827 | 2830 | |
| 2828 | -#: app/helpers/application_helper.rb:1186 | |
| 2831 | +#: app/helpers/application_helper.rb:1188 | |
| 2829 | 2832 | msgid "less than 20 seconds" |
| 2830 | 2833 | msgstr "менее 20-ти секунд" |
| 2831 | 2834 | |
| 2832 | -#: app/helpers/application_helper.rb:1187 | |
| 2835 | +#: app/helpers/application_helper.rb:1189 | |
| 2833 | 2836 | msgid "half a minute" |
| 2834 | 2837 | msgstr "полминуты" |
| 2835 | 2838 | |
| 2836 | -#: app/helpers/application_helper.rb:1192 | |
| 2839 | +#: app/helpers/application_helper.rb:1194 | |
| 2837 | 2840 | #, fuzzy |
| 2838 | 2841 | msgid "%{distance} minutes ago" |
| 2839 | 2842 | msgstr "%{distance} минут" |
| 2840 | 2843 | |
| 2841 | -#: app/helpers/application_helper.rb:1193 | |
| 2844 | +#: app/helpers/application_helper.rb:1195 | |
| 2842 | 2845 | #, fuzzy |
| 2843 | 2846 | msgid "about 1 hour ago" |
| 2844 | 2847 | msgstr "около часа" |
| 2845 | 2848 | |
| 2846 | -#: app/helpers/application_helper.rb:1194 | |
| 2849 | +#: app/helpers/application_helper.rb:1196 | |
| 2847 | 2850 | #, fuzzy |
| 2848 | 2851 | msgid "about %{distance} hours ago" |
| 2849 | 2852 | msgstr "около %{distance} часов" |
| 2850 | 2853 | |
| 2851 | -#: app/helpers/application_helper.rb:1195 | |
| 2854 | +#: app/helpers/application_helper.rb:1197 | |
| 2852 | 2855 | #, fuzzy |
| 2853 | 2856 | msgid "1 day ago" |
| 2854 | 2857 | msgstr "1 день" |
| 2855 | 2858 | |
| 2856 | -#: app/helpers/application_helper.rb:1196 | |
| 2859 | +#: app/helpers/application_helper.rb:1198 | |
| 2857 | 2860 | #, fuzzy |
| 2858 | 2861 | msgid "%{distance} days ago" |
| 2859 | 2862 | msgstr "%{distance} дней" |
| 2860 | 2863 | |
| 2861 | -#: app/helpers/application_helper.rb:1214 | |
| 2864 | +#: app/helpers/application_helper.rb:1216 | |
| 2862 | 2865 | msgid "Source: %s" |
| 2863 | 2866 | msgstr "Источник: %s" |
| 2864 | 2867 | |
| 2865 | -#: app/helpers/application_helper.rb:1247 | |
| 2868 | +#: app/helpers/application_helper.rb:1249 | |
| 2866 | 2869 | #: plugins/community_block/views/community_block.html.erb:17 |
| 2867 | 2870 | msgid "Report abuse" |
| 2868 | 2871 | msgstr "" |
| 2869 | 2872 | |
| 2870 | -#: app/helpers/application_helper.rb:1249 | |
| 2873 | +#: app/helpers/application_helper.rb:1251 | |
| 2871 | 2874 | msgid "You already reported this profile." |
| 2872 | 2875 | msgstr "" |
| 2873 | 2876 | |
| 2874 | -#: app/helpers/application_helper.rb:1250 | |
| 2877 | +#: app/helpers/application_helper.rb:1252 | |
| 2875 | 2878 | msgid "Report this profile for abusive behaviour" |
| 2876 | 2879 | msgstr "" |
| 2877 | 2880 | |
| 2878 | -#: app/helpers/application_helper.rb:1289 | |
| 2881 | +#: app/helpers/application_helper.rb:1292 | |
| 2879 | 2882 | #, fuzzy |
| 2880 | 2883 | msgid "" |
| 2881 | 2884 | "Are you sure that you want to remove the folder \"%s\"? Note that all the " |
| 2882 | 2885 | "items inside it will also be removed!" |
| 2883 | 2886 | msgstr "Вы уверены что хотите удалить всю папку?" |
| 2884 | 2887 | |
| 2885 | -#: app/helpers/application_helper.rb:1291 | |
| 2888 | +#: app/helpers/application_helper.rb:1294 | |
| 2886 | 2889 | #, fuzzy |
| 2887 | 2890 | msgid "Are you sure that you want to remove the item \"%s\"?" |
| 2888 | 2891 | msgstr "Вы уверены что хотите удалить этот элемент?" |
| 2889 | 2892 | |
| 2890 | -#: app/helpers/application_helper.rb:1319 | |
| 2893 | +#: app/helpers/application_helper.rb:1323 | |
| 2891 | 2894 | #, fuzzy |
| 2892 | 2895 | msgid "Profile organization" |
| 2893 | 2896 | msgstr "Одна организация" |
| 2894 | 2897 | |
| 2895 | -#: app/helpers/application_helper.rb:1320 | |
| 2898 | +#: app/helpers/application_helper.rb:1324 | |
| 2896 | 2899 | msgid "" |
| 2897 | 2900 | "Your profile will be created according to the selected template. Click on " |
| 2898 | 2901 | "the options to view them." |
| 2899 | 2902 | msgstr "" |
| 2900 | 2903 | |
| 2901 | -#: app/helpers/application_helper.rb:1355 | |
| 2904 | +#: app/helpers/application_helper.rb:1359 | |
| 2902 | 2905 | #, fuzzy |
| 2903 | 2906 | msgid "Errors while saving" |
| 2904 | 2907 | msgstr "Сообщение об ошибке" |
| 2905 | 2908 | |
| 2906 | -#: app/helpers/application_helper.rb:1365 | |
| 2909 | +#: app/helpers/application_helper.rb:1369 | |
| 2907 | 2910 | msgid "The content here is available to %s's friends only." |
| 2908 | 2911 | msgstr "%s ограничивает доступ к данной информации только кругом друзей." |
| 2909 | 2912 | |
| 2910 | -#: app/helpers/application_helper.rb:1368 | |
| 2913 | +#: app/helpers/application_helper.rb:1372 | |
| 2911 | 2914 | #, fuzzy |
| 2912 | 2915 | msgid "The contents in this profile is available to members only." |
| 2913 | 2916 | msgstr "Ктонтент єтого сообщества доступен только его членам." |
| ... | ... | @@ -3723,7 +3726,7 @@ msgid "Wk" |
| 3723 | 3726 | msgstr "Работа" |
| 3724 | 3727 | |
| 3725 | 3728 | #: app/helpers/forms_helper.rb:248 |
| 3726 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 3729 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 3727 | 3730 | #: plugins/shopping_cart/views/shopping_cart_plugin_myprofile/reports.html.erb:11 |
| 3728 | 3731 | msgid "From" |
| 3729 | 3732 | msgstr "" |
| ... | ... | @@ -4379,7 +4382,7 @@ msgid "Failed to edit role" |
| 4379 | 4382 | msgstr "Невозможно редактировать роль" |
| 4380 | 4383 | |
| 4381 | 4384 | #: app/controllers/admin/users_controller.rb:53 |
| 4382 | -#: app/controllers/my_profile/profile_editor_controller.rb:74 | |
| 4385 | +#: app/controllers/my_profile/profile_editor_controller.rb:76 | |
| 4383 | 4386 | #, fuzzy |
| 4384 | 4387 | msgid "The profile was deleted." |
| 4385 | 4388 | msgstr "Текст был удален" |
| ... | ... | @@ -4390,12 +4393,12 @@ msgid "Could not remove profile" |
| 4390 | 4393 | msgstr "Невозможно обновить профиль" |
| 4391 | 4394 | |
| 4392 | 4395 | #: app/controllers/admin/users_controller.rb:95 |
| 4393 | -#: app/controllers/public/profile_controller.rb:363 | |
| 4396 | +#: app/controllers/public/profile_controller.rb:366 | |
| 4394 | 4397 | msgid "The e-mails are being sent" |
| 4395 | 4398 | msgstr "Сообщения отправлены" |
| 4396 | 4399 | |
| 4397 | 4400 | #: app/controllers/admin/users_controller.rb:98 |
| 4398 | -#: app/controllers/public/profile_controller.rb:366 | |
| 4401 | +#: app/controllers/public/profile_controller.rb:369 | |
| 4399 | 4402 | msgid "Could not create the e-mail" |
| 4400 | 4403 | msgstr "Невозможно создать e-mail" |
| 4401 | 4404 | |
| ... | ... | @@ -4557,97 +4560,97 @@ msgstr "Текст был удален" |
| 4557 | 4560 | msgid "You couldn't mark this comment as spam." |
| 4558 | 4561 | msgstr "Вы уверены что хотите удалить этот элемент?" |
| 4559 | 4562 | |
| 4560 | -#: app/controllers/public/profile_controller.rb:46 | |
| 4561 | -#: app/controllers/public/profile_controller.rb:47 | |
| 4563 | +#: app/controllers/public/profile_controller.rb:49 | |
| 4564 | +#: app/controllers/public/profile_controller.rb:50 | |
| 4562 | 4565 | #: app/views/profile/content_tagged.html.erb:3 |
| 4563 | 4566 | msgid "%s's contents tagged with \"%s\"" |
| 4564 | 4567 | msgstr "контент, принадлежащий %s отмечен \"%s\"" |
| 4565 | 4568 | |
| 4566 | -#: app/controllers/public/profile_controller.rb:91 | |
| 4569 | +#: app/controllers/public/profile_controller.rb:94 | |
| 4567 | 4570 | msgid "%s administrator still needs to accept you as member." |
| 4568 | 4571 | msgstr "%s Администратор должен подтвердить ваше участие." |
| 4569 | 4572 | |
| 4570 | -#: app/controllers/public/profile_controller.rb:93 | |
| 4573 | +#: app/controllers/public/profile_controller.rb:96 | |
| 4571 | 4574 | msgid "You just became a member of %s." |
| 4572 | 4575 | msgstr "Станьте участником %s" |
| 4573 | 4576 | |
| 4574 | -#: app/controllers/public/profile_controller.rb:96 | |
| 4577 | +#: app/controllers/public/profile_controller.rb:99 | |
| 4575 | 4578 | msgid "You are already a member of %s." |
| 4576 | 4579 | msgstr "Вы уже участник %s" |
| 4577 | 4580 | |
| 4578 | -#: app/controllers/public/profile_controller.rb:118 | |
| 4581 | +#: app/controllers/public/profile_controller.rb:121 | |
| 4579 | 4582 | #, fuzzy |
| 4580 | 4583 | msgid "You are not a member of %s." |
| 4581 | 4584 | msgstr "Вы уже участник %s" |
| 4582 | 4585 | |
| 4583 | -#: app/controllers/public/profile_controller.rb:138 | |
| 4586 | +#: app/controllers/public/profile_controller.rb:141 | |
| 4584 | 4587 | msgid "%s still needs to accept being your friend." |
| 4585 | 4588 | msgstr "%s должен подтвердить статус друга" |
| 4586 | 4589 | |
| 4587 | -#: app/controllers/public/profile_controller.rb:140 | |
| 4590 | +#: app/controllers/public/profile_controller.rb:143 | |
| 4588 | 4591 | msgid "You are already a friend of %s." |
| 4589 | 4592 | msgstr "Вы и %s уже друзья" |
| 4590 | 4593 | |
| 4591 | -#: app/controllers/public/profile_controller.rb:159 | |
| 4594 | +#: app/controllers/public/profile_controller.rb:162 | |
| 4592 | 4595 | msgid "You have unblocked %s successfully. " |
| 4593 | -msgstr " %s успешно разблокирован" | |
| 4596 | +msgstr "%s успешно разблокирован. " | |
| 4594 | 4597 | |
| 4595 | -#: app/controllers/public/profile_controller.rb:162 | |
| 4598 | +#: app/controllers/public/profile_controller.rb:165 | |
| 4596 | 4599 | msgid "You are not allowed to unblock enterprises in this environment." |
| 4597 | 4600 | msgstr "Вы не можете разблокировать компании в этой среде." |
| 4598 | 4601 | |
| 4599 | -#: app/controllers/public/profile_controller.rb:174 | |
| 4602 | +#: app/controllers/public/profile_controller.rb:177 | |
| 4600 | 4603 | msgid "Message successfully sent." |
| 4601 | 4604 | msgstr "Сообщение успешно отправлено." |
| 4602 | 4605 | |
| 4603 | -#: app/controllers/public/profile_controller.rb:174 | |
| 4606 | +#: app/controllers/public/profile_controller.rb:177 | |
| 4604 | 4607 | msgid "You can't leave an empty message." |
| 4605 | 4608 | msgstr "Вы не можете оставить пустое сообщение" |
| 4606 | 4609 | |
| 4607 | -#: app/controllers/public/profile_controller.rb:185 | |
| 4610 | +#: app/controllers/public/profile_controller.rb:188 | |
| 4608 | 4611 | #, fuzzy |
| 4609 | 4612 | msgid "Comment successfully added." |
| 4610 | 4613 | msgstr "Комментарий успешно удален" |
| 4611 | 4614 | |
| 4612 | -#: app/controllers/public/profile_controller.rb:185 | |
| 4615 | +#: app/controllers/public/profile_controller.rb:188 | |
| 4613 | 4616 | #, fuzzy |
| 4614 | 4617 | msgid "You can't leave an empty comment." |
| 4615 | 4618 | msgstr "Вы не можете оставить пустое сообщение" |
| 4616 | 4619 | |
| 4617 | -#: app/controllers/public/profile_controller.rb:276 | |
| 4620 | +#: app/controllers/public/profile_controller.rb:279 | |
| 4618 | 4621 | #, fuzzy |
| 4619 | 4622 | msgid "Notification successfully removed." |
| 4620 | 4623 | msgstr "Активность успешно удалена." |
| 4621 | 4624 | |
| 4622 | -#: app/controllers/public/profile_controller.rb:278 | |
| 4625 | +#: app/controllers/public/profile_controller.rb:281 | |
| 4623 | 4626 | #, fuzzy |
| 4624 | 4627 | msgid "You could not remove this notification." |
| 4625 | 4628 | msgstr "Невозможно удалить эту активность." |
| 4626 | 4629 | |
| 4627 | -#: app/controllers/public/profile_controller.rb:311 | |
| 4630 | +#: app/controllers/public/profile_controller.rb:314 | |
| 4628 | 4631 | #, fuzzy |
| 4629 | 4632 | msgid "You could not answer the captcha." |
| 4630 | 4633 | msgstr "Невозможно удалить этот пост." |
| 4631 | 4634 | |
| 4632 | -#: app/controllers/public/profile_controller.rb:331 | |
| 4635 | +#: app/controllers/public/profile_controller.rb:334 | |
| 4633 | 4636 | msgid "" |
| 4634 | 4637 | "Your abuse report was registered. The administrators are reviewing your " |
| 4635 | 4638 | "report." |
| 4636 | 4639 | msgstr "" |
| 4637 | 4640 | |
| 4638 | -#: app/controllers/public/profile_controller.rb:339 | |
| 4641 | +#: app/controllers/public/profile_controller.rb:342 | |
| 4639 | 4642 | msgid "" |
| 4640 | 4643 | "Your report couldn't be saved due to some problem. Please contact the " |
| 4641 | 4644 | "administrator." |
| 4642 | 4645 | msgstr "" |
| 4643 | 4646 | |
| 4644 | -#: app/controllers/public/profile_controller.rb:402 | |
| 4647 | +#: app/controllers/public/profile_controller.rb:406 | |
| 4645 | 4648 | msgid "" |
| 4646 | 4649 | "This profile is inaccessible. You don't have the permission to view the " |
| 4647 | 4650 | "content here." |
| 4648 | 4651 | msgstr "" |
| 4649 | 4652 | |
| 4650 | -#: app/controllers/public/profile_controller.rb:402 | |
| 4653 | +#: app/controllers/public/profile_controller.rb:406 | |
| 4651 | 4654 | msgid "Oops ... you cannot go ahead here" |
| 4652 | 4655 | msgstr "Лажа... Вы не можете сюда зайти" |
| 4653 | 4656 | |
| ... | ... | @@ -4727,15 +4730,15 @@ msgstr "Ввод не найден" |
| 4727 | 4730 | msgid "Address was updated successfully!" |
| 4728 | 4731 | msgstr "Адрес успешно обновлен" |
| 4729 | 4732 | |
| 4730 | -#: app/controllers/my_profile/profile_editor_controller.rb:34 | |
| 4733 | +#: app/controllers/my_profile/profile_editor_controller.rb:36 | |
| 4731 | 4734 | msgid "%s was not enabled." |
| 4732 | 4735 | msgstr "%s не позволено" |
| 4733 | 4736 | |
| 4734 | -#: app/controllers/my_profile/profile_editor_controller.rb:44 | |
| 4737 | +#: app/controllers/my_profile/profile_editor_controller.rb:46 | |
| 4735 | 4738 | msgid "%s was not disabled." |
| 4736 | 4739 | msgstr "%s не отключено" |
| 4737 | 4740 | |
| 4738 | -#: app/controllers/my_profile/profile_editor_controller.rb:77 | |
| 4741 | +#: app/controllers/my_profile/profile_editor_controller.rb:79 | |
| 4739 | 4742 | #, fuzzy |
| 4740 | 4743 | msgid "Could not delete profile" |
| 4741 | 4744 | msgstr "Невозможно обновить профиль" |
| ... | ... | @@ -4829,8 +4832,8 @@ msgstr "Отправлено %s." |
| 4829 | 4832 | |
| 4830 | 4833 | #: app/mailers/contact.rb:23 |
| 4831 | 4834 | #: app/views/admin_panel/_signup_welcome_text.html.erb:6 |
| 4832 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 4833 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:4 | |
| 4835 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 4836 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:4 | |
| 4834 | 4837 | msgid "Subject" |
| 4835 | 4838 | msgstr "Тема" |
| 4836 | 4839 | |
| ... | ... | @@ -4858,7 +4861,7 @@ msgstr "Редактировать тему \"%s\"" |
| 4858 | 4861 | #: app/views/features/_manage_enterprise_fields.html.erb:59 |
| 4859 | 4862 | #: app/views/features/_manage_community_fields.html.erb:59 |
| 4860 | 4863 | #: app/views/features/_manage_person_fields.html.erb:59 |
| 4861 | -#: app/views/features/index.html.erb:54 app/views/role/_form.html.erb:16 | |
| 4864 | +#: app/views/features/index.html.erb:54 app/views/role/_form.html.erb:20 | |
| 4862 | 4865 | #: app/views/profile_members/change_role.html.erb:17 |
| 4863 | 4866 | #: app/views/environment_role_manager/change_role.html.erb:11 |
| 4864 | 4867 | #: app/views/plugins/index.html.erb:30 |
| ... | ... | @@ -5368,8 +5371,8 @@ msgstr "Предпросмотр темы" |
| 5368 | 5371 | #: app/views/enterprise_validation/list_processed.html.erb:3 |
| 5369 | 5372 | #: app/views/enterprise_validation/view_processed.html.erb:3 |
| 5370 | 5373 | #: app/views/manage_products/index.html.erb:29 |
| 5371 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:8 | |
| 5372 | -#: plugins/send_email/views/send_email_plugin/fail.rhtml:3 | |
| 5374 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:8 | |
| 5375 | +#: plugins/send_email/views/send_email_plugin/fail.html.erb:3 | |
| 5373 | 5376 | #: plugins/spaminator/views/spaminator_plugin_admin/reports.html.erb:33 |
| 5374 | 5377 | #: plugins/tolerance_time/views/tolerance_time_plugin_myprofile/index.html.erb:22 |
| 5375 | 5378 | msgid "Back" |
| ... | ... | @@ -5436,10 +5439,7 @@ msgstr "%s имеет %d ожидающих задач" |
| 5436 | 5439 | #: app/views/pending_task_notifier/notification.text.erb:21 |
| 5437 | 5440 | #: app/views/scrap/notifier/notification.text.erb:12 |
| 5438 | 5441 | #: app/views/person_notifier/mailer/content_summary.html.erb:12 |
| 5439 | -#: app/views/task_mailer/task_activated.text.erb:5 | |
| 5440 | -#: app/views/task_mailer/task_created.text.erb:5 | |
| 5441 | -#: app/views/task_mailer/task_finished.text.erb:5 | |
| 5442 | -#: app/views/task_mailer/task_cancelled.text.erb:5 | |
| 5442 | +#: app/views/task_mailer/generic_message.text.erb:5 | |
| 5443 | 5443 | #: app/views/comment/notifier/mail_to_followers.html.erb:18 |
| 5444 | 5444 | #: app/views/comment/notifier/notification.text.erb:15 |
| 5445 | 5445 | #: app/views/user_mailer/activation_code.text.erb:5 |
| ... | ... | @@ -5452,11 +5452,8 @@ msgstr "Приветсвую," |
| 5452 | 5452 | #: app/views/pending_task_notifier/notification.text.erb:24 |
| 5453 | 5453 | #: app/views/scrap/notifier/notification.text.erb:15 |
| 5454 | 5454 | #: app/views/person_notifier/mailer/content_summary.html.erb:15 |
| 5455 | -#: app/views/task_mailer/task_activated.text.erb:8 | |
| 5456 | -#: app/views/task_mailer/task_created.text.erb:8 | |
| 5457 | -#: app/views/task_mailer/task_finished.text.erb:8 | |
| 5455 | +#: app/views/task_mailer/generic_message.text.erb:8 | |
| 5458 | 5456 | #: app/views/task_mailer/target_notification.text.erb:9 |
| 5459 | -#: app/views/task_mailer/task_cancelled.text.erb:8 | |
| 5460 | 5457 | #: app/views/comment/notifier/mail_to_followers.html.erb:21 |
| 5461 | 5458 | #: app/views/comment/notifier/notification.text.erb:18 |
| 5462 | 5459 | #: app/views/user_mailer/activation_code.text.erb:8 |
| ... | ... | @@ -6172,7 +6169,7 @@ msgstr "Дата рождения" |
| 6172 | 6169 | msgid "Address (street and number)" |
| 6173 | 6170 | msgstr "Адрес" |
| 6174 | 6171 | |
| 6175 | -#: app/views/profile_editor/_person_form.html.erb:54 | |
| 6172 | +#: app/views/profile_editor/_person_form.html.erb:58 | |
| 6176 | 6173 | #, fuzzy |
| 6177 | 6174 | msgid "Custom formation" |
| 6178 | 6175 | msgstr "Пользовательское формирование" |
| ... | ... | @@ -6774,10 +6771,6 @@ msgstr "Новости" |
| 6774 | 6771 | msgid "View more" |
| 6775 | 6772 | msgstr "Смотреть еще" |
| 6776 | 6773 | |
| 6777 | -#: app/views/home/index.html.erb:65 | |
| 6778 | -msgid "More options" | |
| 6779 | -msgstr "Еще опции" | |
| 6780 | - | |
| 6781 | 6774 | #: app/views/features/_manage_enterprise_fields.html.erb:5 |
| 6782 | 6775 | #: app/views/features/_manage_community_fields.html.erb:5 |
| 6783 | 6776 | #: app/views/features/_manage_person_fields.html.erb:5 |
| ... | ... | @@ -6929,11 +6922,12 @@ msgstr "Вы уверены что хотите выйти?" |
| 6929 | 6922 | msgid "Create a new role" |
| 6930 | 6923 | msgstr "Создать новую группу" |
| 6931 | 6924 | |
| 6932 | -#: app/views/role/_form.html.erb:9 | |
| 6933 | -msgid "Permissions:" | |
| 6925 | +#: app/views/role/_form.html.erb:11 | |
| 6926 | +#, fuzzy | |
| 6927 | +msgid "%s Permissions:" | |
| 6934 | 6928 | msgstr "Разрешения:" |
| 6935 | 6929 | |
| 6936 | -#: app/views/role/_form.html.erb:16 | |
| 6930 | +#: app/views/role/_form.html.erb:20 | |
| 6937 | 6931 | msgid "Create role" |
| 6938 | 6932 | msgstr "Создать роль" |
| 6939 | 6933 | |
| ... | ... | @@ -7595,7 +7589,8 @@ msgstr "" |
| 7595 | 7589 | msgid "This file couldn't be saved" |
| 7596 | 7590 | msgid_plural "These %{num} files couldn't be saved" |
| 7597 | 7591 | msgstr[0] "Файл не может быть сохранен" |
| 7598 | -msgstr[1] " %{num} файлов не могут быть сохранены" | |
| 7592 | +msgstr[1] "%{num} файлов не могут быть сохранены" | |
| 7593 | +msgstr[2] "" | |
| 7599 | 7594 | |
| 7600 | 7595 | #: app/views/cms/upload_files.html.erb:4 |
| 7601 | 7596 | msgid "There were problems with the following files:" |
| ... | ... | @@ -7900,10 +7895,7 @@ msgstr "Пожалуйста, отредактируйте этот блок и |
| 7900 | 7895 | msgid "Unblock" |
| 7901 | 7896 | msgstr "разблокировать" |
| 7902 | 7897 | |
| 7903 | -#: app/views/task_mailer/task_activated.text.erb:1 | |
| 7904 | -#: app/views/task_mailer/task_created.text.erb:1 | |
| 7905 | -#: app/views/task_mailer/task_finished.text.erb:1 | |
| 7906 | -#: app/views/task_mailer/task_cancelled.text.erb:1 | |
| 7898 | +#: app/views/task_mailer/generic_message.text.erb:1 | |
| 7907 | 7899 | msgid "Dear %s," |
| 7908 | 7900 | msgstr "Уважаемый(ая) %s," |
| 7909 | 7901 | |
| ... | ... | @@ -8171,7 +8163,7 @@ msgstr "Часть 2 из 2х" |
| 8171 | 8163 | |
| 8172 | 8164 | #: app/views/account/accept_terms.html.erb:14 |
| 8173 | 8165 | msgid " part 2 of 3" |
| 8174 | -msgstr "Часть 2 из 3х" | |
| 8166 | +msgstr " Часть 2 из 3х" | |
| 8175 | 8167 | |
| 8176 | 8168 | #: app/views/account/accept_terms.html.erb:22 |
| 8177 | 8169 | msgid "I read the terms of use and accepted them" |
| ... | ... | @@ -10058,7 +10050,7 @@ msgid "Configurations could not be saved" |
| 10058 | 10050 | msgstr "Блок персональной информации" |
| 10059 | 10051 | |
| 10060 | 10052 | #: plugins/send_email/controllers/send_email_plugin_base_controller.rb:16 |
| 10061 | -#: plugins/send_email/views/send_email_plugin/success.rhtml:1 | |
| 10053 | +#: plugins/send_email/views/send_email_plugin/success.html.erb:1 | |
| 10062 | 10054 | #, fuzzy |
| 10063 | 10055 | msgid "Message sent" |
| 10064 | 10056 | msgstr "Сообщение" |
| ... | ... | @@ -10320,12 +10312,12 @@ msgstr "Блок персональной информации" |
| 10320 | 10312 | |
| 10321 | 10313 | #: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:26 |
| 10322 | 10314 | #, fuzzy |
| 10323 | -msgid "\"Custom form #{@form.name} was successfully created.\"" | |
| 10315 | +msgid "Custom form %s was successfully created." | |
| 10324 | 10316 | msgstr "Комментарий успешно удален" |
| 10325 | 10317 | |
| 10326 | 10318 | #: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:46 |
| 10327 | 10319 | #, fuzzy |
| 10328 | -msgid "\"Custom form #{@form.name} was successfully updated.\"" | |
| 10320 | +msgid "Custom form %s was successfully updated." | |
| 10329 | 10321 | msgstr "Комментарий успешно удален" |
| 10330 | 10322 | |
| 10331 | 10323 | #: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:49 |
| ... | ... | @@ -10352,22 +10344,17 @@ msgstr "" |
| 10352 | 10344 | msgid "Submission could not be saved" |
| 10353 | 10345 | msgstr "Блок персональной информации" |
| 10354 | 10346 | |
| 10355 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:3 | |
| 10347 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:4 | |
| 10356 | 10348 | #, fuzzy |
| 10357 | 10349 | msgid "To" |
| 10358 | 10350 | msgstr "Получатель:" |
| 10359 | 10351 | |
| 10360 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:7 | |
| 10361 | -#, fuzzy | |
| 10362 | -msgid "New mail" | |
| 10363 | -msgstr "E-Mail" | |
| 10364 | - | |
| 10365 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:19 | |
| 10352 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:24 | |
| 10366 | 10353 | #, fuzzy |
| 10367 | 10354 | msgid "'%s' isn't a valid e-mail address" |
| 10368 | 10355 | msgstr "Пожалуйста, введите правильный E-Mail." |
| 10369 | 10356 | |
| 10370 | -#: plugins/send_email/lib/send_email_plugin/mail.rb:26 | |
| 10357 | +#: plugins/send_email/lib/send_email_plugin/mail.rb:31 | |
| 10371 | 10358 | msgid "'%s' address is not allowed (see SendEmailPlugin config)" |
| 10372 | 10359 | msgstr "" |
| 10373 | 10360 | |
| ... | ... | @@ -10591,6 +10578,33 @@ msgstr "Цена: %s" |
| 10591 | 10578 | msgid "A plugin to enable the video suport, with auto conversion for the web." |
| 10592 | 10579 | msgstr "" |
| 10593 | 10580 | |
| 10581 | +#: plugins/lattes_curriculum/lib/html_parser.rb:19 | |
| 10582 | +msgid "Lattes not found. Please, make sure the informed URL is correct." | |
| 10583 | +msgstr "" | |
| 10584 | + | |
| 10585 | +#: plugins/lattes_curriculum/lib/html_parser.rb:21 | |
| 10586 | +msgid "Lattes Platform is unreachable. Please, try it later." | |
| 10587 | +msgstr "" | |
| 10588 | + | |
| 10589 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:8 | |
| 10590 | +msgid "A plugin that imports the lattes curriculum into the users profiles" | |
| 10591 | +msgstr "" | |
| 10592 | + | |
| 10593 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:40 | |
| 10594 | +msgid "Lattes" | |
| 10595 | +msgstr "" | |
| 10596 | + | |
| 10597 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:73 | |
| 10598 | +#: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:106 | |
| 10599 | +#, fuzzy | |
| 10600 | +msgid " Invalid lattes url" | |
| 10601 | +msgstr "Адрес ленты" | |
| 10602 | + | |
| 10603 | +#: plugins/lattes_curriculum/lib/academic_info.rb:10 | |
| 10604 | +#, fuzzy | |
| 10605 | +msgid " is invalid." | |
| 10606 | +msgstr "%{fn} неверно" | |
| 10607 | + | |
| 10594 | 10608 | #: plugins/bsc/lib/bsc_plugin.rb:10 |
| 10595 | 10609 | #, fuzzy |
| 10596 | 10610 | msgid "Adds the Bsc feature" |
| ... | ... | @@ -11098,7 +11112,7 @@ msgstr "" |
| 11098 | 11112 | msgid "A plugin that add remote user support." |
| 11099 | 11113 | msgstr "Блок, отображающий группы" |
| 11100 | 11114 | |
| 11101 | -#: plugins/remote_user/lib/remote_user_plugin.rb:45 | |
| 11115 | +#: plugins/remote_user/lib/remote_user_plugin.rb:55 | |
| 11102 | 11116 | #, fuzzy |
| 11103 | 11117 | msgid "Could not create the remote_user." |
| 11104 | 11118 | msgstr "Невозможно создать e-mail" |
| ... | ... | @@ -11372,16 +11386,6 @@ msgstr "Включить активацию для компаний" |
| 11372 | 11386 | msgid "Manage Forms" |
| 11373 | 11387 | msgstr "Управлять%s" |
| 11374 | 11388 | |
| 11375 | -#: plugins/send_email/views/send_email_plugin/fail.rhtml:1 | |
| 11376 | -#, fuzzy | |
| 11377 | -msgid "The message could not be sent" | |
| 11378 | -msgstr "Адрес не может быть сохранен" | |
| 11379 | - | |
| 11380 | -#: plugins/send_email/views/send_email_plugin/sender/message.rhtml:1 | |
| 11381 | -#, fuzzy | |
| 11382 | -msgid "Contact from %s" | |
| 11383 | -msgstr "Контакт: %s" | |
| 11384 | - | |
| 11385 | 11389 | #: plugins/google_analytics/views/profile-editor-extras.rhtml:4 |
| 11386 | 11390 | msgid "Google Analytics Profile ID" |
| 11387 | 11391 | msgstr "" |
| ... | ... | @@ -11395,6 +11399,16 @@ msgstr "" |
| 11395 | 11399 | msgid "Applied filters" |
| 11396 | 11400 | msgstr "Загруженные файлы" |
| 11397 | 11401 | |
| 11402 | +#: plugins/send_email/views/send_email_plugin/sender/message.html.erb:1 | |
| 11403 | +#, fuzzy | |
| 11404 | +msgid "Contact from %s" | |
| 11405 | +msgstr "Контакт: %s" | |
| 11406 | + | |
| 11407 | +#: plugins/send_email/views/send_email_plugin/fail.html.erb:1 | |
| 11408 | +#, fuzzy | |
| 11409 | +msgid "The message could not be sent" | |
| 11410 | +msgstr "Адрес не может быть сохранен" | |
| 11411 | + | |
| 11398 | 11412 | #: plugins/send_email/views/send_email_plugin_admin/index.html.erb:1 |
| 11399 | 11413 | msgid "SendEmailPlugin's config" |
| 11400 | 11414 | msgstr "" |
| ... | ... | @@ -12863,6 +12877,13 @@ msgstr "Вы уверены что хотите удалить этот элем |
| 12863 | 12877 | msgid "Add a new form" |
| 12864 | 12878 | msgstr "Одна компания" |
| 12865 | 12879 | |
| 12880 | +#~ msgid "More options" | |
| 12881 | +#~ msgstr "Еще опции" | |
| 12882 | + | |
| 12883 | +#, fuzzy | |
| 12884 | +#~ msgid "New mail" | |
| 12885 | +#~ msgstr "E-Mail" | |
| 12886 | + | |
| 12866 | 12887 | #~ msgid "ZIP code:" |
| 12867 | 12888 | #~ msgstr "Почтовый индекс:" |
| 12868 | 12889 | |
| ... | ... | @@ -14042,9 +14063,6 @@ msgstr "Одна компания" |
| 14042 | 14063 | #~ msgid "Disable CMS" |
| 14043 | 14064 | #~ msgstr "Отключить CMS" |
| 14044 | 14065 | |
| 14045 | -#~ msgid "%{fn} is invalid." | |
| 14046 | -#~ msgstr "%{fn} неверно" | |
| 14047 | - | |
| 14048 | 14066 | #, fuzzy |
| 14049 | 14067 | #~ msgid "Project successfully registered" |
| 14050 | 14068 | #~ msgstr "Продукт создан" | ... | ... |
public/designs/themes/base/footer.html.erb
| 1 | 1 | <div id="footer-links"> |
| 2 | - <a id="link-to-doc" class='icon-help'><%= link_to _('Manual'), '/doc' %></a> | |
| 2 | + <%= link_to _('Manual'), '/doc', id: "link-to-doc", class: 'icon-help' %> | |
| 3 | 3 | </div><!-- end id="footer-links" --> |
| 4 | 4 | <div id="copyright"> |
| 5 | 5 | <p><%= _('This social network uses <a href="http://noosfero.org/">Noosfero</a>, developed by %s and licensed under the <a href="http://www.gnu.org/licenses/agpl.html">GNU Affero General Public License</a> version 3 or any later version.') % link_to('Colivre', 'http://colivre.coop.br/') %></p> | ... | ... |
public/javascripts/application.js
| ... | ... | @@ -799,7 +799,7 @@ function original_image_dimensions(src) { |
| 799 | 799 | |
| 800 | 800 | function gravatarCommentFailback(img) { |
| 801 | 801 | var link = img.parentNode; |
| 802 | - link.href = "http://www.gravatar.com"; | |
| 802 | + link.href = "//www.gravatar.com"; | |
| 803 | 803 | img.src = img.getAttribute("data-gravatar"); |
| 804 | 804 | } |
| 805 | 805 | ... | ... |
test/functional/profile_editor_controller_test.rb
| ... | ... | @@ -230,16 +230,20 @@ class ProfileEditorControllerTest < ActionController::TestCase |
| 230 | 230 | |
| 231 | 231 | should 'back when update community info fail' do |
| 232 | 232 | org = fast_create(Community) |
| 233 | - Community.any_instance.stubs(:update_attributes).returns(false) | |
| 233 | + Community.any_instance.expects(:update_attributes!).raises(ActiveRecord::RecordInvalid) | |
| 234 | 234 | post :edit, :profile => org.identifier |
| 235 | + | |
| 235 | 236 | assert_template 'edit' |
| 237 | + assert_response :success | |
| 236 | 238 | end |
| 237 | 239 | |
| 238 | 240 | should 'back when update enterprise info fail' do |
| 239 | 241 | org = fast_create(Enterprise) |
| 240 | - Enterprise.any_instance.stubs(:update_attributes).returns(false) | |
| 242 | + | |
| 243 | + Enterprise.any_instance.expects(:update_attributes!).raises(ActiveRecord::RecordInvalid) | |
| 241 | 244 | post :edit, :profile => org.identifier |
| 242 | 245 | assert_template 'edit' |
| 246 | + assert_response :success | |
| 243 | 247 | end |
| 244 | 248 | |
| 245 | 249 | should 'show edit profile button' do | ... | ... |
test/functional/role_controller_test.rb
| ... | ... | @@ -78,4 +78,24 @@ class RoleControllerTest < ActionController::TestCase |
| 78 | 78 | get :edit, :id => role.id |
| 79 | 79 | end |
| 80 | 80 | end |
| 81 | + | |
| 82 | + should 'display permissions for both environment and profile when editing a environment role' do | |
| 83 | + role = Role.create!(:name => 'environment_role', :key => 'environment_role', :environment => Environment.default) | |
| 84 | + get :edit, :id => role.id | |
| 85 | + ['Environment', 'Profile'].each do |key| | |
| 86 | + ActiveRecord::Base::PERMISSIONS[key].each do |permission, value| | |
| 87 | + assert_select ".permissions.#{key.downcase} input##{permission}" | |
| 88 | + end | |
| 89 | + end | |
| 90 | + end | |
| 91 | + | |
| 92 | + should 'display permissions only for profile when editing a profile role' do | |
| 93 | + role = Role.create!(:name => 'profile_role', :key => 'profile_role', :environment => Environment.default) | |
| 94 | + get :edit, :id => role.id | |
| 95 | + ActiveRecord::Base::PERMISSIONS['Profile'].each do |permission, value| | |
| 96 | + assert_select "input##{permission}" | |
| 97 | + end | |
| 98 | + assert_select ".permissions.environment", false | |
| 99 | + end | |
| 100 | + | |
| 81 | 101 | end | ... | ... |
test/unit/cms_helper_test.rb
| ... | ... | @@ -71,7 +71,7 @@ class CmsHelperTest < ActionView::TestCase |
| 71 | 71 | profile = fast_create(Profile) |
| 72 | 72 | name = 'My folder' |
| 73 | 73 | folder = fast_create(Folder, :name => name, :profile_id => profile.id) |
| 74 | - confirm_message = "Are you sure that you want to remove the folder \"#{name}\"? Note that all the items inside it will also be removed!" | |
| 74 | + confirm_message = CGI.escapeHTML("Are you sure that you want to remove the folder \"#{name}\"? Note that all the items inside it will also be removed!") | |
| 75 | 75 | expects(:link_to).with('Delete', {:action => 'destroy', :id => folder.id}, :method => :post, :confirm => confirm_message, :class => 'button with-text icon-delete', :title => nil) |
| 76 | 76 | |
| 77 | 77 | result = display_delete_button(folder) |
| ... | ... | @@ -82,7 +82,7 @@ class CmsHelperTest < ActionView::TestCase |
| 82 | 82 | profile = fast_create(Profile) |
| 83 | 83 | name = 'My article' |
| 84 | 84 | article = fast_create(TinyMceArticle, :name => name, :profile_id => profile.id) |
| 85 | - confirm_message = "Are you sure that you want to remove the item \"#{name}\"?" | |
| 85 | + confirm_message = CGI.escapeHTML("Are you sure that you want to remove the item \"#{name}\"?") | |
| 86 | 86 | expects(:link_to).with('Delete', {:action => 'destroy', :id => article.id}, :method => :post, :confirm => confirm_message, :class => 'button with-text icon-delete', :title => nil) |
| 87 | 87 | |
| 88 | 88 | result = display_delete_button(article) | ... | ... |
test/unit/gravatar_test.rb
| ... | ... | @@ -9,18 +9,18 @@ class GravatarTest < ActiveSupport::TestCase |
| 9 | 9 | |
| 10 | 10 | should 'generate a gravatar image url' do |
| 11 | 11 | url = @object.gravatar_profile_image_url( 'rms@gnu.org', :size => 50, :d => 'crazyvatar' ) |
| 12 | - assert_match(/^http:\/\/www\.gravatar\.com\/avatar\/ed5214d4b49154ba0dc397a28ee90eb7?/, url) | |
| 12 | + assert_match(/^\/\/www\.gravatar\.com\/avatar\/ed5214d4b49154ba0dc397a28ee90eb7?/, url) | |
| 13 | 13 | assert_match(/(\?|&)d=crazyvatar(&|$)/, url) |
| 14 | 14 | assert_match(/(\?|&)size=50(&|$)/, url) |
| 15 | 15 | |
| 16 | 16 | url = @object.gravatar_profile_image_url( 'rms@gnu.org', :size => 50, :d => 'nicevatar' ) |
| 17 | - assert_match(/^http:\/\/www\.gravatar\.com\/avatar\/ed5214d4b49154ba0dc397a28ee90eb7?/, url) | |
| 17 | + assert_match(/^\/\/www\.gravatar\.com\/avatar\/ed5214d4b49154ba0dc397a28ee90eb7?/, url) | |
| 18 | 18 | assert_match(/(\?|&)d=nicevatar(&|$)/, url) |
| 19 | 19 | assert_match(/(\?|&)size=50(&|$)/, url) |
| 20 | 20 | end |
| 21 | 21 | |
| 22 | 22 | should 'generate a gravatar profile url' do |
| 23 | 23 | url = @object.gravatar_profile_url( 'rms@gnu.org' ) |
| 24 | - assert_equal('http://www.gravatar.com/ed5214d4b49154ba0dc397a28ee90eb7', url) | |
| 24 | + assert_equal('//www.gravatar.com/ed5214d4b49154ba0dc397a28ee90eb7', url) | |
| 25 | 25 | end |
| 26 | 26 | end | ... | ... |
test/unit/user_activation_job_test.rb
| ... | ... | @@ -29,6 +29,17 @@ class NotifyActivityToProfilesJobTest < ActiveSupport::TestCase |
| 29 | 29 | end |
| 30 | 30 | end |
| 31 | 31 | |
| 32 | + should 'not destroy user if not activated but is template' do | |
| 33 | + user = new_user :login => 'test3' | |
| 34 | + user.person.is_template = true | |
| 35 | + user.person.save | |
| 36 | + job = UserActivationJob.new(user.id) | |
| 37 | + assert_no_difference 'User.count' do | |
| 38 | + job.perform | |
| 39 | + process_delayed_job_queue | |
| 40 | + end | |
| 41 | + end | |
| 42 | + | |
| 32 | 43 | protected |
| 33 | 44 | def new_user(options = {}) |
| 34 | 45 | user = User.new({ :login => 'quire', :email => 'quire@example.com', :password => 'quire', :password_confirmation => 'quire' }.merge(options)) | ... | ... |
test/unit/user_test.rb
| ... | ... | @@ -190,6 +190,12 @@ class UserTest < ActiveSupport::TestCase |
| 190 | 190 | assert_equal '098f6bcd4621d373cade4e832627b4f6', user.crypted_password |
| 191 | 191 | end |
| 192 | 192 | |
| 193 | + | |
| 194 | + def test_should_support_salted_md5_passwords | |
| 195 | + user = new_user(:login => 'lalala', :email => 'lalala@example.com', :password => 'test', :password_confirmation => 'test', :password_type => 'salted_md5', :salt => 'test') | |
| 196 | + assert_equal '05a671c66aefea124cc08b76ea6d30bb', user.crypted_password | |
| 197 | + end | |
| 198 | + | |
| 193 | 199 | def test_should_support_crypt_passwords |
| 194 | 200 | user = new_user(:login => 'lalala', :email => 'lalala@example.com', :password => 'test', :password_confirmation => 'test', :password_type => 'crypt', :salt => 'test') |
| 195 | 201 | assert_equal 'teH0wLIpW0gyQ', user.crypted_password |
| ... | ... | @@ -349,7 +355,7 @@ class UserTest < ActiveSupport::TestCase |
| 349 | 355 | assert_equal expected_hash['since_year'], person.user.data_hash['since_year'] |
| 350 | 356 | |
| 351 | 357 | # Avatar stuff |
| 352 | - assert_match 'http://www.gravatar.com/avatar/a0517761d5125820c28d87860bc7c02e', person.user.data_hash['avatar'] | |
| 358 | + assert_match '/www.gravatar.com/avatar/a0517761d5125820c28d87860bc7c02e', person.user.data_hash['avatar'] | |
| 353 | 359 | assert_match 'only_path=false', person.user.data_hash['avatar'] |
| 354 | 360 | assert_match 'd=', person.user.data_hash['avatar'] |
| 355 | 361 | assert_match 'size=20', person.user.data_hash['avatar'] |
| ... | ... | @@ -525,6 +531,13 @@ class UserTest < ActiveSupport::TestCase |
| 525 | 531 | assert_match /UserActivationJob/, Delayed::Job.last.handler |
| 526 | 532 | end |
| 527 | 533 | |
| 534 | + should 'not create job to check activation to template users' do | |
| 535 | + Person.any_instance.stubs(:is_template?).returns(true) | |
| 536 | + | |
| 537 | + user = new_user | |
| 538 | + assert_equal 0, Delayed::Job.by_handler("--- !ruby/struct:UserActivationJob\nuser_id: #{user.id}\n").count | |
| 539 | + end | |
| 540 | + | |
| 528 | 541 | should 'deactivate an user' do |
| 529 | 542 | user = new_user |
| 530 | 543 | user.activate | ... | ... |