Commit 700b7cf760f061e524ca2bccd01dd984c5e37606
1 parent
8374b600
Exists in
master
and in
5 other branches
Changing the MpogSoftwarePlugin references to SoftwareCommunitiesPlugin
Showing
44 changed files
with
694 additions
and
695 deletions
Show diff stats
README.md
| ... | ... | @@ -16,7 +16,7 @@ Enable Plugin |
| 16 | 16 | Also, you need to enable MPOG Software Plugin on your Noosfero: |
| 17 | 17 | |
| 18 | 18 | cd <your_noosfero_dir> |
| 19 | -./script/noosfero-plugins enable mpog_software | |
| 19 | +./script/noosfero-plugins enable software_communities | |
| 20 | 20 | |
| 21 | 21 | Activate Plugin |
| 22 | 22 | --------------- |
| ... | ... | @@ -31,7 +31,7 @@ As a Noosfero administrator user, go to administrator panel: |
| 31 | 31 | Schedule Institutions Update |
| 32 | 32 | ---------------------------- |
| 33 | 33 | |
| 34 | -./plugins/mpog_software/script/schedule_institution_update.sh | |
| 34 | +./plugins/software_communities/script/schedule_institution_update.sh | |
| 35 | 35 | |
| 36 | 36 | |
| 37 | 37 | Create Categories |
| ... | ... | @@ -59,8 +59,8 @@ rake noosfero:translations:compile |
| 59 | 59 | |
| 60 | 60 | Running MPOG Software tests |
| 61 | 61 | -------------------- |
| 62 | -$ ruby plugins/mpog_software/test/unit/name_of_file.rb | |
| 63 | -$ cucumber plugins/mpog_software/features/ | |
| 62 | +$ ruby plugins/software_communities/test/unit/name_of_file.rb | |
| 63 | +$ cucumber plugins/software_communities/features/ | |
| 64 | 64 | |
| 65 | 65 | Get Involved |
| 66 | 66 | ============ | ... | ... |
controllers/mpog_software_plugin_controller.rb
| 1 | 1 | require 'csv' |
| 2 | -class MpogSoftwarePluginController < ApplicationController | |
| 2 | +class SoftwareCommunitiesPluginController < ApplicationController | |
| 3 | 3 | |
| 4 | 4 | def check_reactivate_account |
| 5 | 5 | if request.xhr? && params[:email] |
| ... | ... | @@ -242,7 +242,7 @@ class MpogSoftwarePluginController < ApplicationController |
| 242 | 242 | redirect_to :controller => "/admin_panel", :action => "index" |
| 243 | 243 | else |
| 244 | 244 | flash[:errors] = response_message[:errors] |
| 245 | - redirect_to :controller => "mpog_software_plugin", :action => "create_institution_admin" | |
| 245 | + redirect_to :controller => "software_communities_plugin", :action => "create_institution_admin" | |
| 246 | 246 | end |
| 247 | 247 | end |
| 248 | 248 | ... | ... |
controllers/mpog_software_plugin_myprofile_controller.rb
db/migrate/20140528193956_create_programming_languages_table.rb
| ... | ... | @@ -4,7 +4,7 @@ class CreateProgrammingLanguagesTable < ActiveRecord::Migration |
| 4 | 4 | t.string :name |
| 5 | 5 | end |
| 6 | 6 | |
| 7 | - SoftwareHelper.create_list_with_file("plugins/mpog_software/public/static/languages.txt", ProgrammingLanguage) | |
| 7 | + SoftwareHelper.create_list_with_file("plugins/software_communities/public/static/languages.txt", ProgrammingLanguage) | |
| 8 | 8 | end |
| 9 | 9 | |
| 10 | 10 | def self.down | ... | ... |
db/migrate/20140528194044_create_database_descriptions_table.rb
| ... | ... | @@ -4,7 +4,7 @@ class CreateDatabaseDescriptionsTable < ActiveRecord::Migration |
| 4 | 4 | t.string :name |
| 5 | 5 | end |
| 6 | 6 | |
| 7 | - path_to_file = "plugins/mpog_software/public/static/databases.txt" | |
| 7 | + path_to_file = "plugins/software_communities/public/static/databases.txt" | |
| 8 | 8 | SoftwareHelper.create_list_with_file(path_to_file, DatabaseDescription) |
| 9 | 9 | end |
| 10 | 10 | ... | ... |
db/migrate/20140617132133_create_governmental_spheres.rb
| ... | ... | @@ -6,7 +6,7 @@ class CreateGovernmentalSpheres < ActiveRecord::Migration |
| 6 | 6 | t.timestamps |
| 7 | 7 | end |
| 8 | 8 | |
| 9 | - path_to_file = "plugins/mpog_software/public/static/governmental_sphere.txt" | |
| 9 | + path_to_file = "plugins/software_communities/public/static/governmental_sphere.txt" | |
| 10 | 10 | SoftwareHelper.create_list_with_file(path_to_file, GovernmentalSphere) |
| 11 | 11 | end |
| 12 | 12 | end | ... | ... |
db/migrate/20140617132451_create_governmental_powers.rb
| ... | ... | @@ -6,7 +6,7 @@ class CreateGovernmentalPowers < ActiveRecord::Migration |
| 6 | 6 | t.timestamps |
| 7 | 7 | end |
| 8 | 8 | |
| 9 | - path_to_file = "plugins/mpog_software/public/static/governmental_powers.txt" | |
| 9 | + path_to_file = "plugins/software_communities/public/static/governmental_powers.txt" | |
| 10 | 10 | SoftwareHelper.create_list_with_file(path_to_file, GovernmentalPower) |
| 11 | 11 | end |
| 12 | 12 | end | ... | ... |
db/migrate/20140714133901_create_operating_name_table.rb
| ... | ... | @@ -4,7 +4,7 @@ class CreateOperatingNameTable < ActiveRecord::Migration |
| 4 | 4 | t.string :name |
| 5 | 5 | end |
| 6 | 6 | |
| 7 | - path_to_file = "plugins/mpog_software/public/static/operating_systems.txt" | |
| 7 | + path_to_file = "plugins/software_communities/public/static/operating_systems.txt" | |
| 8 | 8 | SoftwareHelper.create_list_with_file(path_to_file, OperatingSystemName) |
| 9 | 9 | end |
| 10 | 10 | ... | ... |
db/migrate/20140814131606_create_juridical_natures_table.rb
| ... | ... | @@ -4,7 +4,7 @@ class CreateJuridicalNaturesTable < ActiveRecord::Migration |
| 4 | 4 | t.string :name |
| 5 | 5 | end |
| 6 | 6 | |
| 7 | - path_to_file = "plugins/mpog_software/public/static/juridical_nature.txt" | |
| 7 | + path_to_file = "plugins/software_communities/public/static/juridical_nature.txt" | |
| 8 | 8 | SoftwareHelper.create_list_with_file(path_to_file, JuridicalNature) |
| 9 | 9 | end |
| 10 | 10 | ... | ... |
features/deactivate_user.feature
| ... | ... | @@ -4,10 +4,10 @@ Feature: deactivate user |
| 4 | 4 | So that user data remains persisted and allows the reactivation of the account |
| 5 | 5 | |
| 6 | 6 | Background: |
| 7 | - Given "MpogSoftwarePlugin" plugin is enabled | |
| 7 | + Given "SoftwareCommunitiesPlugin" plugin is enabled | |
| 8 | 8 | And I am logged in as mpog_admin |
| 9 | 9 | And I go to /admin/plugins |
| 10 | - And I check "MpogSoftwarePlugin" | |
| 10 | + And I check "SoftwareCommunitiesPlugin" | |
| 11 | 11 | And I press "Save changes" |
| 12 | 12 | And I go to /account/logout |
| 13 | 13 | And the following users | ... | ... |
features/institution_registration.feature
| ... | ... | @@ -4,10 +4,10 @@ Feature: Institution Field |
| 4 | 4 | So others users can use it |
| 5 | 5 | |
| 6 | 6 | Background: |
| 7 | - Given "MpogSoftwarePlugin" plugin is enabled | |
| 7 | + Given "SoftwareCommunitiesPlugin" plugin is enabled | |
| 8 | 8 | And I am logged in as mpog_admin |
| 9 | 9 | And I go to /admin/plugins |
| 10 | - And I check "MpogSoftwarePlugin" | |
| 10 | + And I check "SoftwareCommunitiesPlugin" | |
| 11 | 11 | And I press "Save changes" |
| 12 | 12 | And Institutions has initial default values on database |
| 13 | 13 | And I am logged in as mpog_admin | ... | ... |
features/public_software_validation.feature
| ... | ... | @@ -4,7 +4,7 @@ Feature: edit adherent fields |
| 4 | 4 | to mantain my public software up to date. |
| 5 | 5 | |
| 6 | 6 | Background: |
| 7 | - Given "MpogSoftwarePlugin" plugin is enabled | |
| 7 | + Given "SoftwareCommunitiesPlugin" plugin is enabled | |
| 8 | 8 | And the following users |
| 9 | 9 | | login | name | email | |
| 10 | 10 | | joaosilva | Joao Silva | joaosilva@example.com | |
| ... | ... | @@ -12,7 +12,7 @@ Feature: edit adherent fields |
| 12 | 12 | And SoftwareInfo has initial default values on database |
| 13 | 13 | And I am logged in as mpog_admin |
| 14 | 14 | And I go to /admin/plugins |
| 15 | - And I check "MpogSoftwarePlugin" | |
| 15 | + And I check "SoftwareCommunitiesPlugin" | |
| 16 | 16 | And I press "Save changes" |
| 17 | 17 | And I go to /myprofile/mpog-admin |
| 18 | 18 | And I follow "Create a new software" |
| ... | ... | @@ -22,20 +22,20 @@ Feature: edit adherent fields |
| 22 | 22 | |
| 23 | 23 | Scenario: Disable public software checkbox to non admin users |
| 24 | 24 | Given I am logged in as "joaosilva" |
| 25 | - And I go to /myprofile/basic-software/plugin/mpog_software/edit_software | |
| 25 | + And I go to /myprofile/basic-software/plugin/software_communities/edit_software | |
| 26 | 26 | And I follow "Specifications" |
| 27 | 27 | Then I should see "Public software" within ".public_software_disabled" |
| 28 | 28 | |
| 29 | 29 | Scenario: Enable public software checkbox to admin users |
| 30 | 30 | Given I am logged in as mpog_admin |
| 31 | - And I go to /myprofile/basic-software/plugin/mpog_software/edit_software | |
| 31 | + And I go to /myprofile/basic-software/plugin/software_communities/edit_software | |
| 32 | 32 | And I follow "Specifications" |
| 33 | 33 | Then I should see "Public software" within ".public_software_enabled" |
| 34 | 34 | |
| 35 | 35 | @selenium |
| 36 | 36 | Scenario: Show adherent fields when checkbox are checked |
| 37 | 37 | Given I am logged in as mpog_admin |
| 38 | - And I go to /myprofile/basic-software/plugin/mpog_software/edit_software | |
| 38 | + And I go to /myprofile/basic-software/plugin/software_communities/edit_software | |
| 39 | 39 | And I follow "Specifications" |
| 40 | 40 | And I uncheck "software[public_software]" |
| 41 | 41 | And I check "software[public_software]" |
| ... | ... | @@ -44,7 +44,7 @@ Feature: edit adherent fields |
| 44 | 44 | @selenium |
| 45 | 45 | Scenario: Don't show adherent fields when checkbox are not checked |
| 46 | 46 | Given I am logged in as mpog_admin |
| 47 | - And I go to /myprofile/basic-software/plugin/mpog_software/edit_software | |
| 47 | + And I go to /myprofile/basic-software/plugin/software_communities/edit_software | |
| 48 | 48 | And I follow "Specifications" |
| 49 | 49 | And I check "software[public_software]" |
| 50 | 50 | And I uncheck "software[public_software]" | ... | ... |
features/software_block.feature
| ... | ... | @@ -4,10 +4,10 @@ Feature: edit adherent fields |
| 4 | 4 | to mantain my public software up to date. |
| 5 | 5 | |
| 6 | 6 | Background: |
| 7 | - Given "MpogSoftwarePlugin" plugin is enabled | |
| 7 | + Given "SoftwareCommunitiesPlugin" plugin is enabled | |
| 8 | 8 | And I am logged in as mpog_admin |
| 9 | 9 | And I go to /admin/plugins |
| 10 | - And I check "MpogSoftwarePlugin" | |
| 10 | + And I check "SoftwareCommunitiesPlugin" | |
| 11 | 11 | And I press "Save changes" |
| 12 | 12 | And the following softwares |
| 13 | 13 | | name | public_software | | ... | ... |
features/software_catalog.feature
| ... | ... | @@ -3,10 +3,10 @@ Feature: Search software |
| 3 | 3 | I want to be able to search catalogued software |
| 4 | 4 | So that I find a software that fit my needs |
| 5 | 5 | Background: |
| 6 | - Given "MpogSoftwarePlugin" plugin is enabled | |
| 6 | + Given "SoftwareCommunitiesPlugin" plugin is enabled | |
| 7 | 7 | And I am logged in as mpog_admin |
| 8 | 8 | And I go to /admin/plugins |
| 9 | - And I check "MpogSoftwarePlugin" | |
| 9 | + And I check "SoftwareCommunitiesPlugin" | |
| 10 | 10 | And I press "Save changes" |
| 11 | 11 | And I go to /account/logout |
| 12 | 12 | And the following categories | ... | ... |
features/software_registration.feature
| 1 | -A | |
| 2 | 1 | Feature: edit public software information |
| 3 | 2 | As a user |
| 4 | 3 | I want to add public software information to a software |
| 5 | 4 | So that I can have software communities on my network |
| 6 | 5 | |
| 7 | 6 | Background: |
| 8 | - Given "MpogSoftwarePlugin" plugin is enabled | |
| 7 | + Given "SoftwareCommunitiesPlugin" plugin is enabled | |
| 9 | 8 | And SoftwareInfo has initial default values on database |
| 10 | 9 | And I am logged in as mpog_admin |
| 11 | 10 | And I go to /admin/plugins |
| 12 | - And I check "MpogSoftwarePlugin" | |
| 11 | + And I check "SoftwareCommunitiesPlugin" | |
| 13 | 12 | And I press "Save changes" |
| 14 | 13 | And I go to /myprofile/mpog-admin |
| 15 | 14 | And I follow "Create a new software" |
| ... | ... | @@ -20,7 +19,7 @@ Feature: edit public software information |
| 20 | 19 | |
| 21 | 20 | @selenium |
| 22 | 21 | Scenario: Show SoftwareLangue fields when click in New Language |
| 23 | - Given I go to /myprofile/basic-software/plugin/mpog_software/edit_software | |
| 22 | + Given I go to /myprofile/basic-software/plugin/software_communities/edit_software | |
| 24 | 23 | When I follow "Specifications" |
| 25 | 24 | And I follow "New language" |
| 26 | 25 | And I should see "3" of this selector ".software-language-table" |
| ... | ... | @@ -30,7 +29,7 @@ Feature: edit public software information |
| 30 | 29 | |
| 31 | 30 | @selenium |
| 32 | 31 | Scenario: Show databasefields when click in New database |
| 33 | - Given I go to /myprofile/basic-software/plugin/mpog_software/edit_software | |
| 32 | + Given I go to /myprofile/basic-software/plugin/software_communities/edit_software | |
| 34 | 33 | When I follow "Specifications" |
| 35 | 34 | And I follow "New Database" |
| 36 | 35 | And I should see "3" of this selector ".database-table" |
| ... | ... | @@ -40,7 +39,7 @@ Feature: edit public software information |
| 40 | 39 | |
| 41 | 40 | @selenium |
| 42 | 41 | Scenario: Software database name should be an autocomplete |
| 43 | - Given I go to /myprofile/basic-software/plugin/mpog_software/edit_software | |
| 42 | + Given I go to /myprofile/basic-software/plugin/software_communities/edit_software | |
| 44 | 43 | When I follow "Specifications" |
| 45 | 44 | And I follow "New Database" |
| 46 | 45 | And I type in "my" in autocomplete list ".database_autocomplete" and I choose "MySQL" |
| ... | ... | @@ -48,7 +47,7 @@ Feature: edit public software information |
| 48 | 47 | |
| 49 | 48 | @selenium |
| 50 | 49 | Scenario: Software database name should be an autocomplete |
| 51 | - Given I go to /myprofile/basic-software/plugin/mpog_software/edit_software | |
| 50 | + Given I go to /myprofile/basic-software/plugin/software_communities/edit_software | |
| 52 | 51 | When I follow "Specifications" |
| 53 | 52 | And I follow "New language" |
| 54 | 53 | And I type in "py" in autocomplete list ".language_autocomplete" and I choose "Python" |
| ... | ... | @@ -56,7 +55,7 @@ Feature: edit public software information |
| 56 | 55 | |
| 57 | 56 | @selenium |
| 58 | 57 | Scenario: Create software with all dynamic table fields filled |
| 59 | - Given I go to /myprofile/basic-software/plugin/mpog_software/edit_software | |
| 58 | + Given I go to /myprofile/basic-software/plugin/software_communities/edit_software | |
| 60 | 59 | When I follow "Specifications" |
| 61 | 60 | And I follow "New language" |
| 62 | 61 | And I type in "py" in autocomplete list ".language_autocomplete" and I choose "Python" | ... | ... |
features/user_profile_edition.feature
| ... | ... | @@ -4,10 +4,10 @@ Feature: Institution Field |
| 4 | 4 | So I can maintain my personal data updated |
| 5 | 5 | |
| 6 | 6 | Background: |
| 7 | - Given "MpogSoftwarePlugin" plugin is enabled | |
| 7 | + Given "SoftwareCommunitiesPlugin" plugin is enabled | |
| 8 | 8 | And I am logged in as mpog_admin |
| 9 | 9 | And I go to /admin/plugins |
| 10 | - And I check "MpogSoftwarePlugin" | |
| 10 | + And I check "SoftwareCommunitiesPlugin" | |
| 11 | 11 | And I press "Save changes" |
| 12 | 12 | And feature "skip_new_user_email_confirmation" is enabled on environment |
| 13 | 13 | And I go to /admin/features/manage_fields | ... | ... |
lib/mpog_software_plugin.rb
| 1 | -class MpogSoftwarePlugin < Noosfero::Plugin | |
| 1 | +class SoftwareCommunitiesPlugin < Noosfero::Plugin | |
| 2 | 2 | include ActionView::Helpers::TagHelper |
| 3 | 3 | include ActionView::Helpers::FormTagHelper |
| 4 | 4 | include ActionView::Helpers::FormOptionsHelper |
| ... | ... | @@ -10,7 +10,7 @@ class MpogSoftwarePlugin < Noosfero::Plugin |
| 10 | 10 | include Rails.application.routes.url_helpers |
| 11 | 11 | |
| 12 | 12 | def self.plugin_name |
| 13 | - 'MpogSoftwarePlugin' | |
| 13 | + 'SoftwareCommunitiesPlugin' | |
| 14 | 14 | end |
| 15 | 15 | |
| 16 | 16 | def self.plugin_description |
| ... | ... | @@ -166,7 +166,7 @@ class MpogSoftwarePlugin < Noosfero::Plugin |
| 166 | 166 | { |
| 167 | 167 | :title => _('Create Institution'), |
| 168 | 168 | :url => { |
| 169 | - :controller => 'mpog_software_plugin', | |
| 169 | + :controller => 'software_communities_plugin', | |
| 170 | 170 | :action => 'create_institution_admin' |
| 171 | 171 | } |
| 172 | 172 | } |
| ... | ... | @@ -297,7 +297,7 @@ class MpogSoftwarePlugin < Noosfero::Plugin |
| 297 | 297 | :title => _('Software Info'), |
| 298 | 298 | :icon => 'edit-profile-group control-panel-software-link', |
| 299 | 299 | :url => { |
| 300 | - :controller => 'mpog_software_plugin_myprofile', | |
| 300 | + :controller => 'software_communities_plugin_myprofile', | |
| 301 | 301 | :action => 'edit_software' |
| 302 | 302 | } |
| 303 | 303 | } |
| ... | ... | @@ -308,7 +308,7 @@ class MpogSoftwarePlugin < Noosfero::Plugin |
| 308 | 308 | :title => _('Create a new software'), |
| 309 | 309 | :icon => 'design-editor', |
| 310 | 310 | :url => { |
| 311 | - :controller => 'mpog_software_plugin_myprofile', | |
| 311 | + :controller => 'software_communities_plugin_myprofile', | |
| 312 | 312 | :action => 'new_software' |
| 313 | 313 | } |
| 314 | 314 | } |
| ... | ... | @@ -319,7 +319,7 @@ class MpogSoftwarePlugin < Noosfero::Plugin |
| 319 | 319 | :title => _('Institution Info'), |
| 320 | 320 | :icon => 'edit-profile-group control-panel-instituton-link', |
| 321 | 321 | :url => { |
| 322 | - :controller => 'mpog_software_plugin_myprofile', | |
| 322 | + :controller => 'software_communities_plugin_myprofile', | |
| 323 | 323 | :action => 'edit_institution' |
| 324 | 324 | } |
| 325 | 325 | } | ... | ... |
lib/tasks/create_categories.rake
| ... | ... | @@ -2,7 +2,7 @@ namespace :software do |
| 2 | 2 | desc "Create software categories" |
| 3 | 3 | task :create_categories => :environment do |
| 4 | 4 | Environment.all.each do |env| |
| 5 | - if env.plugin_enabled?("MpogSoftware") or env.plugin_enabled?("MpogSoftwarePlugin") | |
| 5 | + if env.plugin_enabled?("MpogSoftware") or env.plugin_enabled?("SoftwareCommunitiesPlugin") | |
| 6 | 6 | software = Category.create(:name => _("Software"), :environment => env) |
| 7 | 7 | Category::SOFTWARE_CATEGORIES.each do |category_name| |
| 8 | 8 | Category.create(:name => category_name, :environment => env, :parent => software) | ... | ... |
lib/tasks/create_lincences.rake
| ... | ... | @@ -3,8 +3,8 @@ namespace :software do |
| 3 | 3 | |
| 4 | 4 | task :create_licenses => :environment do |
| 5 | 5 | Environment.all.each do |env| |
| 6 | - if env.plugin_enabled?("MpogSoftware") or env.plugin_enabled?("MpogSoftwarePlugin") | |
| 7 | - list_file = File.open "plugins/mpog_software/public/static/licences.txt", "r" | |
| 6 | + if env.plugin_enabled?("MpogSoftware") or env.plugin_enabled?("SoftwareCommunitiesPlugin") | |
| 7 | + list_file = File.open "plugins/software_communities/public/static/licences.txt", "r" | |
| 8 | 8 | |
| 9 | 9 | version_or_link = 'version' |
| 10 | 10 | can_save = true | ... | ... |
lib/tasks/create_sample_softwares.rake
| ... | ... | @@ -4,7 +4,7 @@ namespace :software do |
| 4 | 4 | desc "Create sample softwares" |
| 5 | 5 | task :create_sample_softwares => :environment do |
| 6 | 6 | Environment.all.each do |env| |
| 7 | - if env.plugin_enabled?("MpogSoftware") or env.plugin_enabled?("MpogSoftwarePlugin") | |
| 7 | + if env.plugin_enabled?("MpogSoftware") or env.plugin_enabled?("SoftwareCommunitiesPlugin") | |
| 8 | 8 | |
| 9 | 9 | print "Creating softwares: " |
| 10 | 10 | ... | ... |
lib/tasks/main_data.rake
| ... | ... | @@ -19,7 +19,7 @@ namespace :main_data do |
| 19 | 19 | desc "Create the main community" |
| 20 | 20 | task :community => :environment do |
| 21 | 21 | Environment.all.each do |env| |
| 22 | - if env.plugin_enabled?("MpogSoftware") or env.plugin_enabled?("MpogSoftwarePlugin") | |
| 22 | + if env.plugin_enabled?("MpogSoftware") or env.plugin_enabled?("SoftwareCommunitiesPlugin") | |
| 23 | 23 | identifier = "spb" |
| 24 | 24 | community = Community.create!(:name => "SPB", :identifier => identifier) |
| 25 | 25 | community.layout_template = "leftbar" |
| ... | ... | @@ -58,7 +58,7 @@ namespace :main_data do |
| 58 | 58 | desc "Create the home page blocks" |
| 59 | 59 | task :home => :environment do |
| 60 | 60 | Environment.all.each do |env| |
| 61 | - if env.plugin_enabled?("MpogSoftware") or env.plugin_enabled?("MpogSoftwarePlugin") | |
| 61 | + if env.plugin_enabled?("MpogSoftware") or env.plugin_enabled?("SoftwareCommunitiesPlugin") | |
| 62 | 62 | identifier = "spb" |
| 63 | 63 | |
| 64 | 64 | box2 = env.boxes.where(:position => 2).first |
| ... | ... | @@ -72,7 +72,7 @@ namespace :main_data do |
| 72 | 72 | desc "Destroy all main content created by this namespace" |
| 73 | 73 | task :destroy => :environment do |
| 74 | 74 | Environment.all.each do |env| |
| 75 | - if env.plugin_enabled?("MpogSoftware") or env.plugin_enabled?("MpogSoftwarePlugin") | |
| 75 | + if env.plugin_enabled?("MpogSoftware") or env.plugin_enabled?("SoftwareCommunitiesPlugin") | |
| 76 | 76 | Community["spb"].destroy unless Community["spb"].nil? |
| 77 | 77 | puts "Main Community destoyed with success!" |
| 78 | 78 | end | ... | ... |
lib/tasks/templates.rake
| ... | ... | @@ -15,7 +15,7 @@ namespace :templates do |
| 15 | 15 | desc "Create new templates of software" |
| 16 | 16 | task :software => :environment do |
| 17 | 17 | Environment.all.each do |env| |
| 18 | - if env.plugin_enabled?("MpogSoftware") or env.plugin_enabled?("MpogSoftwarePlugin") | |
| 18 | + if env.plugin_enabled?("MpogSoftware") or env.plugin_enabled?("SoftwareCommunitiesPlugin") | |
| 19 | 19 | software = Community["software"] |
| 20 | 20 | |
| 21 | 21 | if software.nil? |
| ... | ... | @@ -172,7 +172,7 @@ namespace :templates do |
| 172 | 172 | desc "Create new templates of people" |
| 173 | 173 | task :people => :environment do |
| 174 | 174 | Environment.all.each do |env| |
| 175 | - if env.plugin_enabled?("MpogSoftware") or env.plugin_enabled?("MpogSoftwarePlugin") | |
| 175 | + if env.plugin_enabled?("MpogSoftware") or env.plugin_enabled?("SoftwareCommunitiesPlugin") | |
| 176 | 176 | person = Person.where(:identifier => "noosfero_person_template").first |
| 177 | 177 | |
| 178 | 178 | if person.nil? |
| ... | ... | @@ -224,7 +224,7 @@ namespace :templates do |
| 224 | 224 | desc "Create new templates of community" |
| 225 | 225 | task :community => :environment do |
| 226 | 226 | Environment.all.each do |env| |
| 227 | - if env.plugin_enabled?("MpogSoftware") or env.plugin_enabled?("MpogSoftwarePlugin") | |
| 227 | + if env.plugin_enabled?("MpogSoftware") or env.plugin_enabled?("SoftwareCommunitiesPlugin") | |
| 228 | 228 | puts "Community successfully created!" |
| 229 | 229 | end |
| 230 | 230 | end |
| ... | ... | @@ -233,7 +233,7 @@ namespace :templates do |
| 233 | 233 | desc "Create new templates of intitution" |
| 234 | 234 | task :institution => :environment do |
| 235 | 235 | Environment.all.each do |env| |
| 236 | - if env.plugin_enabled?("MpogSoftware") or env.plugin_enabled?("MpogSoftwarePlugin") | |
| 236 | + if env.plugin_enabled?("MpogSoftware") or env.plugin_enabled?("SoftwareCommunitiesPlugin") | |
| 237 | 237 | community = Community.create!(:name => "institution", :is_template => true, :moderated_articles => true, :environment => env) |
| 238 | 238 | community.layout_template = "leftbar" |
| 239 | 239 | |
| ... | ... | @@ -278,7 +278,7 @@ namespace :templates do |
| 278 | 278 | desc "Destroy all templates created by this namespace" |
| 279 | 279 | task :destroy => :environment do |
| 280 | 280 | Environment.all.each do |env| |
| 281 | - if env.plugin_enabled?("MpogSoftware") or env.plugin_enabled?("MpogSoftwarePlugin") | |
| 281 | + if env.plugin_enabled?("MpogSoftware") or env.plugin_enabled?("SoftwareCommunitiesPlugin") | |
| 282 | 282 | Community["institution"].destroy unless Community["institution"].nil? |
| 283 | 283 | puts "Institution template destoyed with success!" |
| 284 | 284 | ... | ... |
po/mpog_software.pot
| ... | ... | @@ -16,48 +16,48 @@ msgstr "" |
| 16 | 16 | "Content-Transfer-Encoding: 8bit\n" |
| 17 | 17 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" |
| 18 | 18 | |
| 19 | -#: plugins/mpog_software/test/unit/mpog_person_test.rb:57 | |
| 20 | -#: plugins/mpog_software/test/unit/mpog_person_test.rb:63 | |
| 19 | +#: plugins/software_communities/test/unit/mpog_person_test.rb:57 | |
| 20 | +#: plugins/software_communities/test/unit/mpog_person_test.rb:63 | |
| 21 | 21 | msgid "Name Should begin with a capital letter and no special characters" |
| 22 | 22 | msgstr "Deve começar com uma letra maiúscula e sem caracteres especiais" |
| 23 | 23 | |
| 24 | -#: plugins/mpog_software/test/unit/software_info_validation_test.rb:107 | |
| 24 | +#: plugins/software_communities/test/unit/software_info_validation_test.rb:107 | |
| 25 | 25 | msgid "Features is too long (maximum is 4000 characters)" |
| 26 | 26 | msgstr "" |
| 27 | 27 | "Funcionalidade contém mais caracteres do que o permitido(máximo é 4000 " |
| 28 | 28 | "caracteres)" |
| 29 | 29 | |
| 30 | -#: plugins/mpog_software/test/unit/software_info_validation_test.rb:115 | |
| 30 | +#: plugins/software_communities/test/unit/software_info_validation_test.rb:115 | |
| 31 | 31 | msgid "Objectives is too long (maximum is 4000 characters)" |
| 32 | 32 | msgstr "" |
| 33 | 33 | "Objetivos contém mais caracteres do que o permitido (máximo é 4000 " |
| 34 | 34 | "caracteres)" |
| 35 | 35 | |
| 36 | -#: plugins/mpog_software/test/functional/search_controller_test.rb:24 | |
| 37 | -#: plugins/mpog_software/lib/mpog_software_plugin.rb:344 | |
| 38 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_software.html.erb:7 | |
| 36 | +#: plugins/software_communities/test/functional/search_controller_test.rb:24 | |
| 37 | +#: plugins/software_communities/lib/software_communities_plugin.rb:344 | |
| 38 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_software.html.erb:7 | |
| 39 | 39 | msgid "Software" |
| 40 | 40 | msgstr "Software" |
| 41 | 41 | |
| 42 | -#: plugins/mpog_software/controllers/mpog_software_plugin_myprofile_controller.rb:52 | |
| 43 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_software.html.erb:17 | |
| 42 | +#: plugins/software_communities/controllers/software_communities_plugin_myprofile_controller.rb:52 | |
| 43 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_software.html.erb:17 | |
| 44 | 44 | msgid "Save and Configure Community" |
| 45 | 45 | msgstr "Salvar e Configurar Comunidade" |
| 46 | 46 | |
| 47 | -#: plugins/mpog_software/controllers/mpog_software_plugin_myprofile_controller.rb:56 | |
| 47 | +#: plugins/software_communities/controllers/software_communities_plugin_myprofile_controller.rb:56 | |
| 48 | 48 | msgid "Software updated sucessefuly" |
| 49 | 49 | msgstr "Software atualizado com sucesso" |
| 50 | 50 | |
| 51 | -#: plugins/mpog_software/controllers/mpog_software_plugin_myprofile_controller.rb:59 | |
| 51 | +#: plugins/software_communities/controllers/software_communities_plugin_myprofile_controller.rb:59 | |
| 52 | 52 | msgid "Could not update software" |
| 53 | 53 | msgstr "Não foi possível atualizar o software" |
| 54 | 54 | |
| 55 | -#: plugins/mpog_software/controllers/mpog_software_plugin_myprofile_controller.rb:96 | |
| 56 | -#: plugins/mpog_software/controllers/mpog_software_plugin_controller.rb:170 | |
| 55 | +#: plugins/software_communities/controllers/software_communities_plugin_myprofile_controller.rb:96 | |
| 56 | +#: plugins/software_communities/controllers/software_communities_plugin_controller.rb:170 | |
| 57 | 57 | msgid "Could not find Governmental Power or Governmental Sphere" |
| 58 | 58 | msgstr "Não foi possível encontrar Poder Governamental ou Esfera Governamental" |
| 59 | 59 | |
| 60 | -#: plugins/mpog_software/controllers/mpog_software_plugin_myprofile_controller.rb:149 | |
| 60 | +#: plugins/software_communities/controllers/software_communities_plugin_myprofile_controller.rb:149 | |
| 61 | 61 | msgid "" |
| 62 | 62 | "Your new software request will be evaluated by anadministrator. You will be " |
| 63 | 63 | "notified." |
| ... | ... | @@ -65,128 +65,128 @@ msgstr "" |
| 65 | 65 | "Sua requisição para criação de um novo software será avaliada por um " |
| 66 | 66 | "administrador. Você será noficado." |
| 67 | 67 | |
| 68 | -#: plugins/mpog_software/controllers/mpog_software_plugin_controller.rb:215 | |
| 68 | +#: plugins/software_communities/controllers/software_communities_plugin_controller.rb:215 | |
| 69 | 69 | msgid "Institution successful created!" |
| 70 | 70 | msgstr "Instituição criada com sucesso!" |
| 71 | 71 | |
| 72 | -#: plugins/mpog_software/controllers/mpog_software_plugin_controller.rb:220 | |
| 72 | +#: plugins/software_communities/controllers/software_communities_plugin_controller.rb:220 | |
| 73 | 73 | msgid "Institution could not be created!" |
| 74 | 74 | msgstr "Instituição não pode ser criada!" |
| 75 | 75 | |
| 76 | -#: plugins/mpog_software/lib/software_info.rb:69 | |
| 76 | +#: plugins/software_communities/lib/software_info.rb:69 | |
| 77 | 77 | msgid "Name is too long (maximum is %{count} characters)" |
| 78 | 78 | msgstr "" |
| 79 | 79 | "Nome contém mais caracteres do que o permitido (máximo é %{count} caracteres)" |
| 80 | 80 | |
| 81 | -#: plugins/mpog_software/lib/software_info.rb:113 | |
| 81 | +#: plugins/software_communities/lib/software_info.rb:113 | |
| 82 | 82 | msgid "can't have more than 10 characteres" |
| 83 | 83 | msgstr "não pode ter mais de 10 caracteres" |
| 84 | 84 | |
| 85 | -#: plugins/mpog_software/lib/software_info.rb:116 | |
| 85 | +#: plugins/software_communities/lib/software_info.rb:116 | |
| 86 | 86 | msgid "can't have whitespaces" |
| 87 | 87 | msgstr "não pode ter espaços" |
| 88 | 88 | |
| 89 | -#: plugins/mpog_software/lib/software_info.rb:124 | |
| 90 | -#: plugins/mpog_software/lib/software_info.rb:130 | |
| 91 | -#: plugins/mpog_software/lib/software_info.rb:136 | |
| 89 | +#: plugins/software_communities/lib/software_info.rb:124 | |
| 90 | +#: plugins/software_communities/lib/software_info.rb:130 | |
| 91 | +#: plugins/software_communities/lib/software_info.rb:136 | |
| 92 | 92 | msgid ": at least one must be filled" |
| 93 | 93 | msgstr ": pelo menos um deve ser preenchido" |
| 94 | 94 | |
| 95 | -#: plugins/mpog_software/lib/dynamic_table_helper.rb:17 | |
| 96 | -#: plugins/mpog_software/views/_main_software_editor_extras.html.erb:3 | |
| 97 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/new_software.html.erb:31 | |
| 95 | +#: plugins/software_communities/lib/dynamic_table_helper.rb:17 | |
| 96 | +#: plugins/software_communities/views/_main_software_editor_extras.html.erb:3 | |
| 97 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/new_software.html.erb:31 | |
| 98 | 98 | msgid "Name" |
| 99 | 99 | msgstr "Nome" |
| 100 | 100 | |
| 101 | -#: plugins/mpog_software/lib/dynamic_table_helper.rb:18 | |
| 101 | +#: plugins/software_communities/lib/dynamic_table_helper.rb:18 | |
| 102 | 102 | msgid "Version" |
| 103 | 103 | msgstr "Versão" |
| 104 | 104 | |
| 105 | -#: plugins/mpog_software/lib/dynamic_table_helper.rb:19 | |
| 106 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:19 | |
| 105 | +#: plugins/software_communities/lib/dynamic_table_helper.rb:19 | |
| 106 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:19 | |
| 107 | 107 | msgid "License" |
| 108 | 108 | msgstr "Licença" |
| 109 | 109 | |
| 110 | -#: plugins/mpog_software/lib/dynamic_table_helper.rb:91 | |
| 110 | +#: plugins/software_communities/lib/dynamic_table_helper.rb:91 | |
| 111 | 111 | msgid "Autocomplete field, type something" |
| 112 | 112 | msgstr "Campo automático, digite algo" |
| 113 | 113 | |
| 114 | -#: plugins/mpog_software/lib/dynamic_table_helper.rb:116 | |
| 114 | +#: plugins/software_communities/lib/dynamic_table_helper.rb:116 | |
| 115 | 115 | msgid "Delete" |
| 116 | 116 | msgstr "Excluir" |
| 117 | 117 | |
| 118 | -#: plugins/mpog_software/lib/categories_and_tags_block.rb:8 | |
| 118 | +#: plugins/software_communities/lib/categories_and_tags_block.rb:8 | |
| 119 | 119 | msgid "Categories and Tags" |
| 120 | 120 | msgstr "Categorias e Tags" |
| 121 | 121 | |
| 122 | -#: plugins/mpog_software/lib/categories_and_tags_block.rb:12 | |
| 122 | +#: plugins/software_communities/lib/categories_and_tags_block.rb:12 | |
| 123 | 123 | msgid "This block displays the categories and tags of a software." |
| 124 | 124 | msgstr "" |
| 125 | 125 | "Este bloco exibe as informações de categorias e tags de um perfil de " |
| 126 | 126 | "software." |
| 127 | 127 | |
| 128 | -#: plugins/mpog_software/lib/software_information_block.rb:8 | |
| 128 | +#: plugins/software_communities/lib/software_information_block.rb:8 | |
| 129 | 129 | msgid "Basic Software Information" |
| 130 | 130 | msgstr "Informações Básicas Software" |
| 131 | 131 | |
| 132 | -#: plugins/mpog_software/lib/software_information_block.rb:12 | |
| 132 | +#: plugins/software_communities/lib/software_information_block.rb:12 | |
| 133 | 133 | msgid "This block displays the basic information of a software profile." |
| 134 | 134 | msgstr "Este bloco exibe as informações básicas de um perfil de software." |
| 135 | 135 | |
| 136 | -#: plugins/mpog_software/lib/softwares_block.rb:8 | |
| 136 | +#: plugins/software_communities/lib/softwares_block.rb:8 | |
| 137 | 137 | msgid "Softwares" |
| 138 | 138 | msgstr "Softwares" |
| 139 | 139 | |
| 140 | -#: plugins/mpog_software/lib/softwares_block.rb:13 | |
| 140 | +#: plugins/software_communities/lib/softwares_block.rb:13 | |
| 141 | 141 | msgid "{#} generic software" |
| 142 | 142 | msgid_plural "{#} generic softwares" |
| 143 | 143 | msgstr[0] "{#} software genérico" |
| 144 | 144 | msgstr[1] "{#} softwares genéricos" |
| 145 | 145 | |
| 146 | -#: plugins/mpog_software/lib/softwares_block.rb:15 | |
| 146 | +#: plugins/software_communities/lib/softwares_block.rb:15 | |
| 147 | 147 | msgid "{#} public software" |
| 148 | 148 | msgid_plural "{#} public softwares" |
| 149 | 149 | msgstr[0] "{#} software público" |
| 150 | 150 | msgstr[1] "{#} software públicos" |
| 151 | 151 | |
| 152 | -#: plugins/mpog_software/lib/softwares_block.rb:17 | |
| 152 | +#: plugins/software_communities/lib/softwares_block.rb:17 | |
| 153 | 153 | msgid "{#} software" |
| 154 | 154 | msgid_plural "{#} softwares" |
| 155 | 155 | msgstr[0] "{#} software" |
| 156 | 156 | msgstr[1] "{#} softwares" |
| 157 | 157 | |
| 158 | -#: plugins/mpog_software/lib/softwares_block.rb:22 | |
| 158 | +#: plugins/software_communities/lib/softwares_block.rb:22 | |
| 159 | 159 | msgid "This block displays the softwares in which the user is a member." |
| 160 | 160 | msgstr "Este bloco apresenta os softwares no qual o usuário é membro." |
| 161 | 161 | |
| 162 | -#: plugins/mpog_software/lib/softwares_block.rb:31 | |
| 163 | -#: plugins/mpog_software/lib/softwares_block.rb:37 | |
| 162 | +#: plugins/software_communities/lib/softwares_block.rb:31 | |
| 163 | +#: plugins/software_communities/lib/softwares_block.rb:37 | |
| 164 | 164 | msgid "softwares|View all" |
| 165 | 165 | msgstr "Ver todos" |
| 166 | 166 | |
| 167 | -#: plugins/mpog_software/lib/create_software.rb:36 | |
| 167 | +#: plugins/software_communities/lib/create_software.rb:36 | |
| 168 | 168 | msgid "New software" |
| 169 | 169 | msgstr "Novo software" |
| 170 | 170 | |
| 171 | -#: plugins/mpog_software/lib/create_software.rb:44 | |
| 171 | +#: plugins/software_communities/lib/create_software.rb:44 | |
| 172 | 172 | msgid "%{requestor} wants to create software %{subject} with" |
| 173 | 173 | msgstr "%{requestor} deseja criar o software %{subject}" |
| 174 | 174 | |
| 175 | -#: plugins/mpog_software/lib/create_software.rb:46 | |
| 175 | +#: plugins/software_communities/lib/create_software.rb:46 | |
| 176 | 176 | msgid " no finality." |
| 177 | 177 | msgstr " sem finalidade" |
| 178 | 178 | |
| 179 | -#: plugins/mpog_software/lib/create_software.rb:48 | |
| 179 | +#: plugins/software_communities/lib/create_software.rb:48 | |
| 180 | 180 | msgid " this finality:<p><em>%{finality}</em></p>" |
| 181 | 181 | msgstr "" |
| 182 | 182 | " com esta finalidade:<p><em>" |
| 183 | 183 | "%{finality}</em></p>" |
| 184 | 184 | |
| 185 | -#: plugins/mpog_software/lib/create_software.rb:68 | |
| 185 | +#: plugins/software_communities/lib/create_software.rb:68 | |
| 186 | 186 | msgid "%{requestor} wants to create software %{subject}" |
| 187 | 187 | msgstr "%{requestor} deseja criar o software %{subject}" |
| 188 | 188 | |
| 189 | -#: plugins/mpog_software/lib/create_software.rb:73 | |
| 189 | +#: plugins/software_communities/lib/create_software.rb:73 | |
| 190 | 190 | msgid "" |
| 191 | 191 | "User \"%{user}\" just requested to create software %{software}.\n" |
| 192 | 192 | " You have to approve or reject it through the \"Pending Validations\"\n" |
| ... | ... | @@ -196,7 +196,7 @@ msgstr "" |
| 196 | 196 | "deve aprovar ou rejeitar pela seção \"Validações pendentes\" no seu painel " |
| 197 | 197 | "de controle.\n" |
| 198 | 198 | |
| 199 | -#: plugins/mpog_software/lib/create_software.rb:80 | |
| 199 | +#: plugins/software_communities/lib/create_software.rb:80 | |
| 200 | 200 | msgid "" |
| 201 | 201 | "Your request for registering software %{software} at %{environment} was\n" |
| 202 | 202 | " just sent. Environment administrator will receive it and will approve " |
| ... | ... | @@ -212,7 +212,7 @@ msgstr "" |
| 212 | 212 | "rejeitar sua requisição de acordo com seus métodos e critérios.\n Você será " |
| 213 | 213 | "notificado assim que o administrador tenha uma posição sobre sua requisição." |
| 214 | 214 | |
| 215 | -#: plugins/mpog_software/lib/create_software.rb:90 | |
| 215 | +#: plugins/software_communities/lib/create_software.rb:90 | |
| 216 | 216 | msgid "" |
| 217 | 217 | "Your request for registering software %{software} at %{environment} was\n" |
| 218 | 218 | " not approved by the environment administrator. The following " |
| ... | ... | @@ -227,7 +227,7 @@ msgstr "" |
| 227 | 227 | "\n" |
| 228 | 228 | "%{explanation}" |
| 229 | 229 | |
| 230 | -#: plugins/mpog_software/lib/create_software.rb:99 | |
| 230 | +#: plugins/software_communities/lib/create_software.rb:99 | |
| 231 | 231 | msgid "" |
| 232 | 232 | "Your request for registering the software \"%{software}\" was approved.\n" |
| 233 | 233 | " You can access %{url} and finish the registration of your software." |
| ... | ... | @@ -235,670 +235,670 @@ msgstr "" |
| 235 | 235 | "Sua requisição para registro do software \"%{software}\" foi aprovada. \n Você " |
| 236 | 236 | "pode acessá-la %{url} e finalizar o registro do seu software." |
| 237 | 237 | |
| 238 | -#: plugins/mpog_software/lib/repository_block.rb:8 | |
| 238 | +#: plugins/software_communities/lib/repository_block.rb:8 | |
| 239 | 239 | msgid "Repository Link" |
| 240 | 240 | msgstr "Link para o Repositório:" |
| 241 | 241 | |
| 242 | -#: plugins/mpog_software/lib/repository_block.rb:12 | |
| 242 | +#: plugins/software_communities/lib/repository_block.rb:12 | |
| 243 | 243 | msgid "This block displays the repository link of a software." |
| 244 | 244 | msgstr "Este bloco exibe o link para o repositório de um perfil de software." |
| 245 | 245 | |
| 246 | -#: plugins/mpog_software/lib/software_language.rb:10 | |
| 246 | +#: plugins/software_communities/lib/software_language.rb:10 | |
| 247 | 247 | msgid "Software language is too long (maximum is 20 characters)" |
| 248 | 248 | msgstr "" |
| 249 | 249 | "Linguagem de programação do software contém mais caracteres do que o " |
| 250 | 250 | "permitido (máximo é 20 caracteres)" |
| 251 | 251 | |
| 252 | -#: plugins/mpog_software/lib/download_block.rb:14 | |
| 252 | +#: plugins/software_communities/lib/download_block.rb:14 | |
| 253 | 253 | msgid "Download Stable Version" |
| 254 | 254 | msgstr "Baixar Versão Estável" |
| 255 | 255 | |
| 256 | -#: plugins/mpog_software/lib/download_block.rb:18 | |
| 256 | +#: plugins/software_communities/lib/download_block.rb:18 | |
| 257 | 257 | msgid "This block displays the stable version of a software." |
| 258 | 258 | msgstr "Este bloco exibe as informações básicas de um perfil de software." |
| 259 | 259 | |
| 260 | -#: plugins/mpog_software/lib/mpog_software_plugin.rb:17 | |
| 260 | +#: plugins/software_communities/lib/software_communities_plugin.rb:17 | |
| 261 | 261 | msgid "Add Public Software and MPOG features." |
| 262 | 262 | msgstr "Adicionar funcionalidades referentes ao Software Público e MPOG" |
| 263 | 263 | |
| 264 | -#: plugins/mpog_software/lib/mpog_software_plugin.rb:167 | |
| 264 | +#: plugins/software_communities/lib/software_communities_plugin.rb:167 | |
| 265 | 265 | msgid "Create Institution" |
| 266 | 266 | msgstr "Criar Instituição" |
| 267 | 267 | |
| 268 | -#: plugins/mpog_software/lib/mpog_software_plugin.rb:297 | |
| 268 | +#: plugins/software_communities/lib/software_communities_plugin.rb:297 | |
| 269 | 269 | msgid "Software Info" |
| 270 | 270 | msgstr "Informação de Software" |
| 271 | 271 | |
| 272 | -#: plugins/mpog_software/lib/mpog_software_plugin.rb:308 | |
| 272 | +#: plugins/software_communities/lib/software_communities_plugin.rb:308 | |
| 273 | 273 | msgid "Create a new software" |
| 274 | 274 | msgstr "Criar um novo software" |
| 275 | 275 | |
| 276 | -#: plugins/mpog_software/lib/mpog_software_plugin.rb:319 | |
| 276 | +#: plugins/software_communities/lib/software_communities_plugin.rb:319 | |
| 277 | 277 | msgid "Institution Info" |
| 278 | 278 | msgstr "Informação da Instituição" |
| 279 | 279 | |
| 280 | -#: plugins/mpog_software/lib/mpog_software_plugin.rb:351 | |
| 280 | +#: plugins/software_communities/lib/software_communities_plugin.rb:351 | |
| 281 | 281 | msgid "Institution" |
| 282 | 282 | msgstr "Instituição" |
| 283 | 283 | |
| 284 | -#: plugins/mpog_software/lib/institution.rb:46 | |
| 284 | +#: plugins/software_communities/lib/institution.rb:46 | |
| 285 | 285 | msgid "invalid, only public and private institutions are allowed." |
| 286 | 286 | msgstr "inválido, somente instituição públicas ou privadas são permitidas." |
| 287 | 287 | |
| 288 | -#: plugins/mpog_software/lib/institution.rb:59 | |
| 289 | -#: plugins/mpog_software/lib/institution.rb:71 | |
| 290 | -#: plugins/mpog_software/lib/institution.rb:86 | |
| 291 | -#: plugins/mpog_software/lib/institution.rb:111 | |
| 292 | -#: plugins/mpog_software/lib/library.rb:5 | |
| 288 | +#: plugins/software_communities/lib/institution.rb:59 | |
| 289 | +#: plugins/software_communities/lib/institution.rb:71 | |
| 290 | +#: plugins/software_communities/lib/institution.rb:86 | |
| 291 | +#: plugins/software_communities/lib/institution.rb:111 | |
| 292 | +#: plugins/software_communities/lib/library.rb:5 | |
| 293 | 293 | msgid "can't be blank" |
| 294 | 294 | msgstr "não pode ser em branco" |
| 295 | 295 | |
| 296 | -#: plugins/mpog_software/lib/institution.rb:103 | |
| 296 | +#: plugins/software_communities/lib/institution.rb:103 | |
| 297 | 297 | msgid "invalid format" |
| 298 | 298 | msgstr "formato inválido" |
| 299 | 299 | |
| 300 | -#: plugins/mpog_software/lib/operating_system.rb:12 | |
| 300 | +#: plugins/software_communities/lib/operating_system.rb:12 | |
| 301 | 301 | msgid "too long (maximum is 20 characters)" |
| 302 | 302 | msgstr "" |
| 303 | 303 | "Sistema operacional contém mais caracteres do que o permitido (máximo é 20 caracteres)" |
| 304 | 304 | |
| 305 | -#: plugins/mpog_software/lib/search_catalog_block.rb:8 | |
| 305 | +#: plugins/software_communities/lib/search_catalog_block.rb:8 | |
| 306 | 306 | msgid "Search Softwares catalog" |
| 307 | 307 | msgstr "Informações Básicas Software" |
| 308 | 308 | |
| 309 | -#: plugins/mpog_software/lib/search_catalog_block.rb:12 | |
| 309 | +#: plugins/software_communities/lib/search_catalog_block.rb:12 | |
| 310 | 310 | msgid "This block displays the search categories field " |
| 311 | 311 | msgstr "Este bloco apresenta a busca por categorias" |
| 312 | 312 | |
| 313 | -#: plugins/mpog_software/lib/library.rb:8 | |
| 313 | +#: plugins/software_communities/lib/library.rb:8 | |
| 314 | 314 | msgid "Too long (maximum is 20 characters)" |
| 315 | 315 | msgstr "" |
| 316 | 316 | "Biblioteca contém mais caracteres do que o permitido (máximo é 20 caracteres)" |
| 317 | 317 | |
| 318 | -#: plugins/mpog_software/lib/categories_software_block.rb:8 | |
| 318 | +#: plugins/software_communities/lib/categories_software_block.rb:8 | |
| 319 | 319 | msgid "Categories Softwares" |
| 320 | 320 | msgstr "Ativar Software" |
| 321 | 321 | |
| 322 | -#: plugins/mpog_software/lib/categories_software_block.rb:12 | |
| 322 | +#: plugins/software_communities/lib/categories_software_block.rb:12 | |
| 323 | 323 | msgid "" |
| 324 | 324 | "This block displays the categories and the amount of softwares for\n" |
| 325 | 325 | " each category." |
| 326 | 326 | msgstr "Este bloco exibe as categorias e a quantidade de softwares por categoria." |
| 327 | 327 | |
| 328 | -#: plugins/mpog_software/lib/ext/user.rb:19 | |
| 328 | +#: plugins/software_communities/lib/ext/user.rb:19 | |
| 329 | 329 | msgid "Email must be different from secondary email." |
| 330 | 330 | msgstr "E-mail deve ser diferente do e-mail secundário." |
| 331 | 331 | |
| 332 | -#: plugins/mpog_software/lib/ext/user.rb:40 | |
| 332 | +#: plugins/software_communities/lib/ext/user.rb:40 | |
| 333 | 333 | msgid "E-mail or secondary e-mail already taken." |
| 334 | 334 | msgstr "E-mail ou e-mail secundário já está sendo utilizado" |
| 335 | 335 | |
| 336 | -#: plugins/mpog_software/lib/ext/user.rb:50 | |
| 336 | +#: plugins/software_communities/lib/ext/user.rb:50 | |
| 337 | 337 | msgid "Invalid secondary email format." |
| 338 | 338 | msgstr "Formato do e-mail secundário inválido." |
| 339 | 339 | |
| 340 | -#: plugins/mpog_software/lib/ext/user.rb:70 | |
| 340 | +#: plugins/software_communities/lib/ext/user.rb:70 | |
| 341 | 341 | msgid "The governamental email must be the primary one." |
| 342 | 342 | msgstr "O e-mail governamental deve ser o e-mail primário." |
| 343 | 343 | |
| 344 | -#: plugins/mpog_software/lib/ext/user.rb:78 | |
| 344 | +#: plugins/software_communities/lib/ext/user.rb:78 | |
| 345 | 345 | msgid "Institution is obligatory if user has a government email." |
| 346 | 346 | msgstr "Instituição é obrigatória se o usuário tiver um e-mail governamental." |
| 347 | 347 | |
| 348 | -#: plugins/mpog_software/lib/ext/category.rb:5 | |
| 348 | +#: plugins/software_communities/lib/ext/category.rb:5 | |
| 349 | 349 | msgid "Agriculture, Fisheries and Extraction" |
| 350 | 350 | msgstr "Agricultura, Extrativismo e Pesca " |
| 351 | 351 | |
| 352 | -#: plugins/mpog_software/lib/ext/category.rb:6 | |
| 352 | +#: plugins/software_communities/lib/ext/category.rb:6 | |
| 353 | 353 | msgid "Science, Information and Communication" |
| 354 | 354 | msgstr "Ciência, Informação e Comunicação " |
| 355 | 355 | |
| 356 | -#: plugins/mpog_software/lib/ext/category.rb:7 | |
| 356 | +#: plugins/software_communities/lib/ext/category.rb:7 | |
| 357 | 357 | msgid "Economy and Finances" |
| 358 | 358 | msgstr "Economia e Finanças " |
| 359 | 359 | |
| 360 | -#: plugins/mpog_software/lib/ext/category.rb:8 | |
| 360 | +#: plugins/software_communities/lib/ext/category.rb:8 | |
| 361 | 361 | msgid "Public Administration" |
| 362 | 362 | msgstr "Administração Pública" |
| 363 | 363 | |
| 364 | -#: plugins/mpog_software/lib/ext/category.rb:9 | |
| 364 | +#: plugins/software_communities/lib/ext/category.rb:9 | |
| 365 | 365 | msgid "Habitation, Sanitation and Urbanism" |
| 366 | 366 | msgstr "Habitação, Saneamento e Urbanismo" |
| 367 | 367 | |
| 368 | -#: plugins/mpog_software/lib/ext/category.rb:10 | |
| 368 | +#: plugins/software_communities/lib/ext/category.rb:10 | |
| 369 | 369 | msgid "Individual, Family and Society" |
| 370 | 370 | msgstr "Pessoa, Família e Sociedade" |
| 371 | 371 | |
| 372 | -#: plugins/mpog_software/lib/ext/category.rb:11 | |
| 372 | +#: plugins/software_communities/lib/ext/category.rb:11 | |
| 373 | 373 | msgid "Health" |
| 374 | 374 | msgstr "Saúde" |
| 375 | 375 | |
| 376 | -#: plugins/mpog_software/lib/ext/category.rb:12 | |
| 376 | +#: plugins/software_communities/lib/ext/category.rb:12 | |
| 377 | 377 | msgid "Social Welfare and Development" |
| 378 | 378 | msgstr "Bem-estar Social e Desenvolvimento" |
| 379 | 379 | |
| 380 | -#: plugins/mpog_software/lib/ext/category.rb:13 | |
| 380 | +#: plugins/software_communities/lib/ext/category.rb:13 | |
| 381 | 381 | msgid "Defense and Security" |
| 382 | 382 | msgstr "Defesa e Segurança" |
| 383 | 383 | |
| 384 | -#: plugins/mpog_software/lib/ext/category.rb:14 | |
| 384 | +#: plugins/software_communities/lib/ext/category.rb:14 | |
| 385 | 385 | msgid "Education" |
| 386 | 386 | msgstr "Educação" |
| 387 | 387 | |
| 388 | -#: plugins/mpog_software/lib/ext/category.rb:15 | |
| 388 | +#: plugins/software_communities/lib/ext/category.rb:15 | |
| 389 | 389 | msgid "Government and Politics" |
| 390 | 390 | msgstr "Governo e Política" |
| 391 | 391 | |
| 392 | -#: plugins/mpog_software/lib/ext/category.rb:16 | |
| 392 | +#: plugins/software_communities/lib/ext/category.rb:16 | |
| 393 | 393 | msgid "Justice and Legislation" |
| 394 | 394 | msgstr "Justiça e Legislação" |
| 395 | 395 | |
| 396 | -#: plugins/mpog_software/lib/ext/category.rb:17 | |
| 396 | +#: plugins/software_communities/lib/ext/category.rb:17 | |
| 397 | 397 | msgid "International Relationships" |
| 398 | 398 | msgstr "Relações Internacionais" |
| 399 | 399 | |
| 400 | -#: plugins/mpog_software/lib/ext/search_controller.rb:15 | |
| 400 | +#: plugins/software_communities/lib/ext/search_controller.rb:15 | |
| 401 | 401 | msgid "Institution Catalog" |
| 402 | 402 | msgstr "Catálogo de Instituição" |
| 403 | 403 | |
| 404 | -#: plugins/mpog_software/lib/ext/search_controller.rb:25 | |
| 404 | +#: plugins/software_communities/lib/ext/search_controller.rb:25 | |
| 405 | 405 | msgid "Software Catalog" |
| 406 | 406 | msgstr "Catálogo de Software" |
| 407 | 407 | |
| 408 | -#: plugins/mpog_software/lib/institutions_block.rb:4 | |
| 409 | -#: plugins/mpog_software/views/person_editor_extras.html.erb:10 | |
| 408 | +#: plugins/software_communities/lib/institutions_block.rb:4 | |
| 409 | +#: plugins/software_communities/views/person_editor_extras.html.erb:10 | |
| 410 | 410 | msgid "Institutions" |
| 411 | 411 | msgstr "Instituições" |
| 412 | 412 | |
| 413 | -#: plugins/mpog_software/lib/institutions_block.rb:12 | |
| 413 | +#: plugins/software_communities/lib/institutions_block.rb:12 | |
| 414 | 414 | msgid "{#} institution" |
| 415 | 415 | msgid_plural "{#} institutions" |
| 416 | 416 | msgstr[0] "{#} intituição" |
| 417 | 417 | msgstr[1] "{#} instituições" |
| 418 | 418 | |
| 419 | -#: plugins/mpog_software/lib/institutions_block.rb:16 | |
| 419 | +#: plugins/software_communities/lib/institutions_block.rb:16 | |
| 420 | 420 | msgid "This block displays the institutions in which the user is a member." |
| 421 | 421 | msgstr "Este bloco mostra as instituições a que o usuário pertence" |
| 422 | 422 | |
| 423 | -#: plugins/mpog_software/lib/institutions_block.rb:24 | |
| 424 | -#: plugins/mpog_software/lib/institutions_block.rb:30 | |
| 423 | +#: plugins/software_communities/lib/institutions_block.rb:24 | |
| 424 | +#: plugins/software_communities/lib/institutions_block.rb:30 | |
| 425 | 425 | msgid "institutions|View all" |
| 426 | 426 | msgstr "instituições|Ver todas" |
| 427 | 427 | |
| 428 | -#: plugins/mpog_software/lib/software_database.rb:12 | |
| 428 | +#: plugins/software_communities/lib/software_database.rb:12 | |
| 429 | 429 | msgid "Software database is too long (maximum is 20 characters)" |
| 430 | 430 | msgstr "" |
| 431 | 431 | "Banco de dados do software contém mais caracteres do que o permitido (máximo " |
| 432 | 432 | "é 20 caracteres)" |
| 433 | 433 | |
| 434 | -#: plugins/mpog_software/views/box_organizer/_download_block.html.erb:2 | |
| 435 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:7 | |
| 434 | +#: plugins/software_communities/views/box_organizer/_download_block.html.erb:2 | |
| 435 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:7 | |
| 436 | 436 | msgid "Name:" |
| 437 | 437 | msgstr "Nome:" |
| 438 | 438 | |
| 439 | -#: plugins/mpog_software/views/box_organizer/_download_block.html.erb:3 | |
| 440 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:21 | |
| 439 | +#: plugins/software_communities/views/box_organizer/_download_block.html.erb:3 | |
| 440 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:21 | |
| 441 | 441 | msgid "Link:" |
| 442 | 442 | msgstr "Endereço:" |
| 443 | 443 | |
| 444 | -#: plugins/mpog_software/views/box_organizer/_download_block.html.erb:4 | |
| 444 | +#: plugins/software_communities/views/box_organizer/_download_block.html.erb:4 | |
| 445 | 445 | msgid "Software Description:" |
| 446 | 446 | msgstr "Descrição do Software" |
| 447 | 447 | |
| 448 | -#: plugins/mpog_software/views/box_organizer/_download_block.html.erb:5 | |
| 448 | +#: plugins/software_communities/views/box_organizer/_download_block.html.erb:5 | |
| 449 | 449 | msgid "Link to Version News:" |
| 450 | 450 | msgstr "Link para as Novidades da Versão:" |
| 451 | 451 | |
| 452 | -#: plugins/mpog_software/views/box_organizer/_download_block.html.erb:6 | |
| 452 | +#: plugins/software_communities/views/box_organizer/_download_block.html.erb:6 | |
| 453 | 453 | msgid "Link to Minimum Requirements:" |
| 454 | 454 | msgstr "Link para Requisitos Mínimos:" |
| 455 | 455 | |
| 456 | -#: plugins/mpog_software/views/box_organizer/_softwares_block.html.erb:2 | |
| 456 | +#: plugins/software_communities/views/box_organizer/_softwares_block.html.erb:2 | |
| 457 | 457 | msgid "Limit of items" |
| 458 | 458 | msgstr "Limite de itens" |
| 459 | 459 | |
| 460 | -#: plugins/mpog_software/views/box_organizer/_softwares_block.html.erb:3 | |
| 460 | +#: plugins/software_communities/views/box_organizer/_softwares_block.html.erb:3 | |
| 461 | 461 | msgid "Software Type:" |
| 462 | 462 | msgstr "Tipo do Software:" |
| 463 | 463 | |
| 464 | -#: plugins/mpog_software/views/person_editor_extras.html.erb:2 | |
| 464 | +#: plugins/software_communities/views/person_editor_extras.html.erb:2 | |
| 465 | 465 | msgid "Secondary e-mail" |
| 466 | 466 | msgstr "E-mail secundário" |
| 467 | 467 | |
| 468 | -#: plugins/mpog_software/views/person_editor_extras.html.erb:20 | |
| 468 | +#: plugins/software_communities/views/person_editor_extras.html.erb:20 | |
| 469 | 469 | msgid "No institution found" |
| 470 | 470 | msgstr "Nenhuma instituição encontrada" |
| 471 | 471 | |
| 472 | -#: plugins/mpog_software/views/person_editor_extras.html.erb:21 | |
| 472 | +#: plugins/software_communities/views/person_editor_extras.html.erb:21 | |
| 473 | 473 | msgid "Add new institution" |
| 474 | 474 | msgstr "Adicionar nova instituição" |
| 475 | 475 | |
| 476 | -#: plugins/mpog_software/views/person_editor_extras.html.erb:22 | |
| 476 | +#: plugins/software_communities/views/person_editor_extras.html.erb:22 | |
| 477 | 477 | msgid "Create new institution" |
| 478 | 478 | msgstr "Criar nova instituição" |
| 479 | 479 | |
| 480 | -#: plugins/mpog_software/views/person_editor_extras.html.erb:38 | |
| 480 | +#: plugins/software_communities/views/person_editor_extras.html.erb:38 | |
| 481 | 481 | msgid "Should begin with a capital letter and no special characters" |
| 482 | 482 | msgstr "Deve começar com uma letra maiúscula e sem caracteres especiais" |
| 483 | 483 | |
| 484 | -#: plugins/mpog_software/views/person_editor_extras.html.erb:39 | |
| 484 | +#: plugins/software_communities/views/person_editor_extras.html.erb:39 | |
| 485 | 485 | msgid "Email should have the following format: name@host.br" |
| 486 | 486 | msgstr "Email deve ter o seguinte formato: nome@host.br" |
| 487 | 487 | |
| 488 | -#: plugins/mpog_software/views/person_editor_extras.html.erb:40 | |
| 488 | +#: plugins/software_communities/views/person_editor_extras.html.erb:40 | |
| 489 | 489 | msgid "Site should have a valid format: http://name.hosts" |
| 490 | 490 | msgstr "Site deve ter um formato válido: http: //name.hosts" |
| 491 | 491 | |
| 492 | -#: plugins/mpog_software/views/person_editor_extras.html.erb:41 | |
| 492 | +#: plugins/software_communities/views/person_editor_extras.html.erb:41 | |
| 493 | 493 | msgid "If you work in a public agency use your government e-Mail" |
| 494 | 494 | msgstr "" |
| 495 | 495 | "Se você trabalhar em uma agência pública utilize o seu e-mail governamental" |
| 496 | 496 | |
| 497 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:3 | |
| 497 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:3 | |
| 498 | 498 | msgid "Institution Information" |
| 499 | 499 | msgstr "Informação da Instituição" |
| 500 | 500 | |
| 501 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:6 | |
| 501 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:6 | |
| 502 | 502 | msgid "Type:" |
| 503 | 503 | msgstr "Tipo:" |
| 504 | 504 | |
| 505 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:7 | |
| 505 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:7 | |
| 506 | 506 | msgid "CNPJ:" |
| 507 | 507 | msgstr "CNPJ:" |
| 508 | 508 | |
| 509 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:8 | |
| 509 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:8 | |
| 510 | 510 | msgid "Last modification:" |
| 511 | 511 | msgstr "Última Modificação" |
| 512 | 512 | |
| 513 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:9 | |
| 513 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:9 | |
| 514 | 514 | msgid "Country:" |
| 515 | 515 | msgstr "País:" |
| 516 | 516 | |
| 517 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:10 | |
| 517 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:10 | |
| 518 | 518 | msgid "State:" |
| 519 | 519 | msgstr "Estado:" |
| 520 | 520 | |
| 521 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:11 | |
| 521 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:11 | |
| 522 | 522 | msgid "City:" |
| 523 | 523 | msgstr "Cidade:" |
| 524 | 524 | |
| 525 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:13 | |
| 525 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:13 | |
| 526 | 526 | msgid "Fantasy Name:" |
| 527 | 527 | msgstr "Nome Fantasia:" |
| 528 | 528 | |
| 529 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:15 | |
| 530 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:15 | |
| 529 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:15 | |
| 530 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:15 | |
| 531 | 531 | msgid "Acronym:" |
| 532 | 532 | msgstr "Sigla:" |
| 533 | 533 | |
| 534 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:16 | |
| 535 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:90 | |
| 536 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:90 | |
| 534 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:16 | |
| 535 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:90 | |
| 536 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:90 | |
| 537 | 537 | msgid "Governmental Power:" |
| 538 | 538 | msgstr "Poder Governamental" |
| 539 | 539 | |
| 540 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:17 | |
| 541 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:83 | |
| 542 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:83 | |
| 540 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:17 | |
| 541 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:83 | |
| 542 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:83 | |
| 543 | 543 | msgid "Governmental Sphere:" |
| 544 | 544 | msgstr "Esfera Governamental:" |
| 545 | 545 | |
| 546 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:18 | |
| 547 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:96 | |
| 548 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:96 | |
| 546 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:18 | |
| 547 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:96 | |
| 548 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:96 | |
| 549 | 549 | msgid "Juridical Nature:" |
| 550 | 550 | msgstr "Natureza Jurídica:" |
| 551 | 551 | |
| 552 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:19 | |
| 552 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:19 | |
| 553 | 553 | msgid "SISP:" |
| 554 | 554 | msgstr "SISP:" |
| 555 | 555 | |
| 556 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:19 | |
| 557 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:8 | |
| 558 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:9 | |
| 559 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:10 | |
| 560 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:11 | |
| 561 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:12 | |
| 562 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:105 | |
| 563 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:105 | |
| 556 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:19 | |
| 557 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:8 | |
| 558 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:9 | |
| 559 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:10 | |
| 560 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:11 | |
| 561 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:12 | |
| 562 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:105 | |
| 563 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:105 | |
| 564 | 564 | msgid "Yes" |
| 565 | 565 | msgstr "Sim" |
| 566 | 566 | |
| 567 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:19 | |
| 568 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:8 | |
| 569 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:9 | |
| 570 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:10 | |
| 571 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:11 | |
| 572 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:12 | |
| 573 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:107 | |
| 574 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:110 | |
| 575 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:107 | |
| 576 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:110 | |
| 567 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:19 | |
| 568 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:8 | |
| 569 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:9 | |
| 570 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:10 | |
| 571 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:11 | |
| 572 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:12 | |
| 573 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:107 | |
| 574 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:110 | |
| 575 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:107 | |
| 576 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:110 | |
| 577 | 577 | msgid "No" |
| 578 | 578 | msgstr "Não" |
| 579 | 579 | |
| 580 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:4 | |
| 581 | -#: plugins/mpog_software/views/_main_software_editor_extras.html.erb:1 | |
| 580 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:4 | |
| 581 | +#: plugins/software_communities/views/_main_software_editor_extras.html.erb:1 | |
| 582 | 582 | msgid "Software Information" |
| 583 | 583 | msgstr "Informação do Software" |
| 584 | 584 | |
| 585 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:8 | |
| 585 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:8 | |
| 586 | 586 | msgid "Adherent to e_mag:" |
| 587 | 587 | msgstr "Aderente ao e-Mag:" |
| 588 | 588 | |
| 589 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:9 | |
| 589 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:9 | |
| 590 | 590 | msgid "Adherent to icp_brasil:" |
| 591 | 591 | msgstr "Adherent ao ICP-Brasil:" |
| 592 | 592 | |
| 593 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:10 | |
| 593 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:10 | |
| 594 | 594 | msgid "Adherent to e_ping:" |
| 595 | 595 | msgstr "Aderente ao e-Ping:" |
| 596 | 596 | |
| 597 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:11 | |
| 597 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:11 | |
| 598 | 598 | msgid "Adherent to e_arq:" |
| 599 | 599 | msgstr "Aderente ao e-Arq:" |
| 600 | 600 | |
| 601 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:12 | |
| 601 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:12 | |
| 602 | 602 | msgid "Internacionalizable:" |
| 603 | 603 | msgstr "Internacionalizável:" |
| 604 | 604 | |
| 605 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:13 | |
| 605 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:13 | |
| 606 | 606 | msgid "Operating Platform:" |
| 607 | 607 | msgstr "Plataforma Operacional:" |
| 608 | 608 | |
| 609 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:14 | |
| 609 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:14 | |
| 610 | 610 | msgid "Demonstration URL:" |
| 611 | 611 | msgstr "URL de demonstração:" |
| 612 | 612 | |
| 613 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:16 | |
| 613 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:16 | |
| 614 | 614 | msgid "Objectives:" |
| 615 | 615 | msgstr "Objetivos:" |
| 616 | 616 | |
| 617 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:17 | |
| 617 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:17 | |
| 618 | 618 | msgid "Features:" |
| 619 | 619 | msgstr "Características:" |
| 620 | 620 | |
| 621 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:20 | |
| 621 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:20 | |
| 622 | 622 | msgid "Version:" |
| 623 | 623 | msgstr "Versão:" |
| 624 | 624 | |
| 625 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:26 | |
| 625 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:26 | |
| 626 | 626 | msgid "Show Libraries" |
| 627 | 627 | msgstr "Mostrar Bibliotecas" |
| 628 | 628 | |
| 629 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:27 | |
| 629 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:27 | |
| 630 | 630 | msgid "Hide Libraries" |
| 631 | 631 | msgstr "Esconder Bibliotecas" |
| 632 | 632 | |
| 633 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:36 | |
| 634 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:14 | |
| 633 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:36 | |
| 634 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:14 | |
| 635 | 635 | msgid "Libraries" |
| 636 | 636 | msgstr "Bibliotecas" |
| 637 | 637 | |
| 638 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:54 | |
| 638 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:54 | |
| 639 | 639 | msgid "Show Database" |
| 640 | 640 | msgstr "Mostrar Banco de Dados" |
| 641 | 641 | |
| 642 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:55 | |
| 642 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:55 | |
| 643 | 643 | msgid "Hide Database" |
| 644 | 644 | msgstr "Esconder Banco de Dados" |
| 645 | 645 | |
| 646 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:64 | |
| 646 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:64 | |
| 647 | 647 | msgid "Software Databases" |
| 648 | 648 | msgstr "Banco de Dados" |
| 649 | 649 | |
| 650 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:82 | |
| 650 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:82 | |
| 651 | 651 | msgid "Show Languages" |
| 652 | 652 | msgstr "Mostrar Linguagens" |
| 653 | 653 | |
| 654 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:83 | |
| 654 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:83 | |
| 655 | 655 | msgid "Hide Languages" |
| 656 | 656 | msgstr "Esconder Linguagens" |
| 657 | 657 | |
| 658 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:92 | |
| 658 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:92 | |
| 659 | 659 | msgid "Software Languages" |
| 660 | 660 | msgstr "Linguagens de Software" |
| 661 | 661 | |
| 662 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:110 | |
| 662 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:110 | |
| 663 | 663 | msgid "Show Operating Systems" |
| 664 | 664 | msgstr "Mostrar Sistemas Operacionais" |
| 665 | 665 | |
| 666 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:111 | |
| 666 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:111 | |
| 667 | 667 | msgid "Hide Operating Systems" |
| 668 | 668 | msgstr "Esconder Sistemas Operacionais" |
| 669 | 669 | |
| 670 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:121 | |
| 670 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:121 | |
| 671 | 671 | msgid "Operating System" |
| 672 | 672 | msgstr "Sistema Operacional" |
| 673 | 673 | |
| 674 | -#: plugins/mpog_software/views/_main_software_editor_extras.html.erb:10 | |
| 675 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_main_software_editor_extras.html.erb:8 | |
| 676 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/new_software.html.erb:40 | |
| 677 | -#: plugins/mpog_software/views/search/_full_community.html.erb:21 | |
| 674 | +#: plugins/software_communities/views/_main_software_editor_extras.html.erb:10 | |
| 675 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_main_software_editor_extras.html.erb:8 | |
| 676 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/new_software.html.erb:40 | |
| 677 | +#: plugins/software_communities/views/search/_full_community.html.erb:21 | |
| 678 | 678 | msgid "Finality" |
| 679 | 679 | msgstr "Finalidade" |
| 680 | 680 | |
| 681 | -#: plugins/mpog_software/views/_main_software_editor_extras.html.erb:15 | |
| 682 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_main_software_editor_extras.html.erb:13 | |
| 681 | +#: plugins/software_communities/views/_main_software_editor_extras.html.erb:15 | |
| 682 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_main_software_editor_extras.html.erb:13 | |
| 683 | 683 | msgid "Licenses" |
| 684 | 684 | msgstr "Licenças" |
| 685 | 685 | |
| 686 | -#: plugins/mpog_software/views/_main_software_editor_extras.html.erb:20 | |
| 687 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_main_software_editor_extras.html.erb:18 | |
| 688 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/new_software.html.erb:50 | |
| 686 | +#: plugins/software_communities/views/_main_software_editor_extras.html.erb:20 | |
| 687 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_main_software_editor_extras.html.erb:18 | |
| 688 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/new_software.html.erb:50 | |
| 689 | 689 | msgid "License link" |
| 690 | 690 | msgstr "Endereço da licença" |
| 691 | 691 | |
| 692 | -#: plugins/mpog_software/views/_main_software_editor_extras.html.erb:29 | |
| 693 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/new_software.html.erb:62 | |
| 692 | +#: plugins/software_communities/views/_main_software_editor_extras.html.erb:29 | |
| 693 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/new_software.html.erb:62 | |
| 694 | 694 | msgid "Link to Repository: " |
| 695 | 695 | msgstr "Link pro Repositório: " |
| 696 | 696 | |
| 697 | -#: plugins/mpog_software/views/incomplete_registration.html.erb:3 | |
| 697 | +#: plugins/software_communities/views/incomplete_registration.html.erb:3 | |
| 698 | 698 | msgid "Complete Profile" |
| 699 | 699 | msgstr "Complete o Perfil" |
| 700 | 700 | |
| 701 | -#: plugins/mpog_software/views/incomplete_registration.html.erb:6 | |
| 701 | +#: plugins/software_communities/views/incomplete_registration.html.erb:6 | |
| 702 | 702 | msgid "Complete your profile" |
| 703 | 703 | msgstr "Complete o seu perfil" |
| 704 | 704 | |
| 705 | -#: plugins/mpog_software/views/incomplete_registration.html.erb:7 | |
| 705 | +#: plugins/software_communities/views/incomplete_registration.html.erb:7 | |
| 706 | 706 | msgid "Hide" |
| 707 | 707 | msgstr "Esconder" |
| 708 | 708 | |
| 709 | -#: plugins/mpog_software/views/blocks/repository.html.erb:2 | |
| 710 | -#: plugins/mpog_software/views/blocks/download.html.erb:2 | |
| 711 | -#: plugins/mpog_software/views/blocks/software_information.html.erb:4 | |
| 709 | +#: plugins/software_communities/views/blocks/repository.html.erb:2 | |
| 710 | +#: plugins/software_communities/views/blocks/download.html.erb:2 | |
| 711 | +#: plugins/software_communities/views/blocks/software_information.html.erb:4 | |
| 712 | 712 | msgid "This community needs a software to use this block" |
| 713 | 713 | msgstr "Esta comunidade precisa de um software para utilizar este bloco" |
| 714 | 714 | |
| 715 | -#: plugins/mpog_software/views/blocks/repository.html.erb:4 | |
| 715 | +#: plugins/software_communities/views/blocks/repository.html.erb:4 | |
| 716 | 716 | msgid "Repository" |
| 717 | 717 | msgstr "Repositório" |
| 718 | 718 | |
| 719 | -#: plugins/mpog_software/views/blocks/search_catalog.html.erb:2 | |
| 719 | +#: plugins/software_communities/views/blocks/search_catalog.html.erb:2 | |
| 720 | 720 | msgid "Catalog of Public Software" |
| 721 | 721 | msgstr "Software Público" |
| 722 | 722 | |
| 723 | -#: plugins/mpog_software/views/blocks/search_catalog.html.erb:5 | |
| 723 | +#: plugins/software_communities/views/blocks/search_catalog.html.erb:5 | |
| 724 | 724 | msgid "Search" |
| 725 | 725 | msgstr "Pesquisar" |
| 726 | 726 | |
| 727 | -#: plugins/mpog_software/views/blocks/search_catalog.html.erb:9 | |
| 728 | -#: plugins/mpog_software/views/blocks/categories_software.html.erb:24 | |
| 727 | +#: plugins/software_communities/views/blocks/search_catalog.html.erb:9 | |
| 728 | +#: plugins/software_communities/views/blocks/categories_software.html.erb:24 | |
| 729 | 729 | msgid "Access the complete catalog" |
| 730 | 730 | msgstr "Acesse o catálogo completo" |
| 731 | 731 | |
| 732 | -#: plugins/mpog_software/views/blocks/download.html.erb:6 | |
| 732 | +#: plugins/software_communities/views/blocks/download.html.erb:6 | |
| 733 | 733 | msgid "Download" |
| 734 | 734 | msgstr "Baixar" |
| 735 | 735 | |
| 736 | -#: plugins/mpog_software/views/blocks/download.html.erb:19 | |
| 736 | +#: plugins/software_communities/views/blocks/download.html.erb:19 | |
| 737 | 737 | msgid "Minimal Requirements" |
| 738 | 738 | msgstr "Requisitos Mínimos" |
| 739 | 739 | |
| 740 | -#: plugins/mpog_software/views/blocks/download.html.erb:23 | |
| 740 | +#: plugins/software_communities/views/blocks/download.html.erb:23 | |
| 741 | 741 | msgid "Version News" |
| 742 | 742 | msgstr "Novidades da Versão" |
| 743 | 743 | |
| 744 | -#: plugins/mpog_software/views/blocks/download.html.erb:27 | |
| 744 | +#: plugins/software_communities/views/blocks/download.html.erb:27 | |
| 745 | 745 | msgid "Licensed by" |
| 746 | 746 | msgstr "Licenciado por " |
| 747 | 747 | |
| 748 | -#: plugins/mpog_software/views/blocks/categories_software.html.erb:14 | |
| 748 | +#: plugins/software_communities/views/blocks/categories_software.html.erb:14 | |
| 749 | 749 | msgid "Categories:" |
| 750 | 750 | msgstr "Categorias:" |
| 751 | 751 | |
| 752 | -#: plugins/mpog_software/views/blocks/categories_software.html.erb:18 | |
| 752 | +#: plugins/software_communities/views/blocks/categories_software.html.erb:18 | |
| 753 | 753 | msgid "\"#{category.name}\"" |
| 754 | 754 | msgstr "\"#{category.name}\"" |
| 755 | 755 | |
| 756 | -#: plugins/mpog_software/views/blocks/categories_and_tags.html.erb:2 | |
| 756 | +#: plugins/software_communities/views/blocks/categories_and_tags.html.erb:2 | |
| 757 | 757 | msgid "Categories" |
| 758 | 758 | msgstr "Categorias" |
| 759 | 759 | |
| 760 | -#: plugins/mpog_software/views/blocks/categories_and_tags.html.erb:12 | |
| 760 | +#: plugins/software_communities/views/blocks/categories_and_tags.html.erb:12 | |
| 761 | 761 | msgid "Tags" |
| 762 | 762 | msgstr "Tags" |
| 763 | 763 | |
| 764 | -#: plugins/mpog_software/views/blocks/main_area_softwares.html.erb:22 | |
| 764 | +#: plugins/software_communities/views/blocks/main_area_softwares.html.erb:22 | |
| 765 | 765 | msgid "See More" |
| 766 | 766 | msgstr "Veja Mais" |
| 767 | 767 | |
| 768 | -#: plugins/mpog_software/views/blocks/software_information.html.erb:16 | |
| 768 | +#: plugins/software_communities/views/blocks/software_information.html.erb:16 | |
| 769 | 769 | msgid "Control panel" |
| 770 | 770 | msgstr "Painel de controle" |
| 771 | 771 | |
| 772 | -#: plugins/mpog_software/views/blocks/software_information.html.erb:24 | |
| 772 | +#: plugins/software_communities/views/blocks/software_information.html.erb:24 | |
| 773 | 773 | msgid "\"#{block.owner.software_info.acronym} - \"" |
| 774 | 774 | msgstr "\"#{block.owner.software_info.acronym} - \"" |
| 775 | 775 | |
| 776 | -#: plugins/mpog_software/views/blocks/software_information.html.erb:25 | |
| 776 | +#: plugins/software_communities/views/blocks/software_information.html.erb:25 | |
| 777 | 777 | msgid "\"#{block.owner.name}\"" |
| 778 | 778 | msgstr "\"#{block.owner.name}\"" |
| 779 | 779 | |
| 780 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:1 | |
| 780 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:1 | |
| 781 | 781 | msgid "Edit software" |
| 782 | 782 | msgstr "Editar software" |
| 783 | 783 | |
| 784 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:4 | |
| 784 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:4 | |
| 785 | 785 | msgid "Operating Platform" |
| 786 | 786 | msgstr "Plataforma Operacional" |
| 787 | 787 | |
| 788 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:9 | |
| 788 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:9 | |
| 789 | 789 | msgid "Features" |
| 790 | 790 | msgstr "Características" |
| 791 | 791 | |
| 792 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:21 | |
| 792 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:21 | |
| 793 | 793 | msgid "Operating Systems" |
| 794 | 794 | msgstr "Sistemas Operacionais" |
| 795 | 795 | |
| 796 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:29 | |
| 796 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:29 | |
| 797 | 797 | msgid "Programming languages" |
| 798 | 798 | msgstr "Linguagens de Programação" |
| 799 | 799 | |
| 800 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:36 | |
| 800 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:36 | |
| 801 | 801 | msgid "Databases" |
| 802 | 802 | msgstr "Bancos de Dados" |
| 803 | 803 | |
| 804 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:42 | |
| 804 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:42 | |
| 805 | 805 | msgid "Demonstration url" |
| 806 | 806 | msgstr "Url de demonstração" |
| 807 | 807 | |
| 808 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:51 | |
| 809 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:54 | |
| 810 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:57 | |
| 808 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:51 | |
| 809 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:54 | |
| 810 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:57 | |
| 811 | 811 | msgid "Public Software" |
| 812 | 812 | msgstr "Software Público" |
| 813 | 813 | |
| 814 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:51 | |
| 815 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:54 | |
| 814 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:51 | |
| 815 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:54 | |
| 816 | 816 | msgid "Public software" |
| 817 | 817 | msgstr "Software público" |
| 818 | 818 | |
| 819 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:59 | |
| 819 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:59 | |
| 820 | 820 | msgid "Adherent to e-PING ?" |
| 821 | 821 | msgstr "Aderente ao e-PING ?" |
| 822 | 822 | |
| 823 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:68 | |
| 823 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:68 | |
| 824 | 824 | msgid "Adherent to e-MAG ?" |
| 825 | 825 | msgstr "Aderente ao e-MAG ?" |
| 826 | 826 | |
| 827 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:77 | |
| 827 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:77 | |
| 828 | 828 | msgid "Adherent to ICP-Brasil ?" |
| 829 | 829 | msgstr "Aderente ao ICP-Brasil?" |
| 830 | 830 | |
| 831 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:86 | |
| 831 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:86 | |
| 832 | 832 | msgid "Adherent to e-ARQ ?" |
| 833 | 833 | msgstr "Aderente ao e-ARQ?" |
| 834 | 834 | |
| 835 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:95 | |
| 835 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:95 | |
| 836 | 836 | msgid "Internacionalizable ?" |
| 837 | 837 | msgstr "Internacionalizável?" |
| 838 | 838 | |
| 839 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_main_software_editor_extras.html.erb:1 | |
| 839 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_main_software_editor_extras.html.erb:1 | |
| 840 | 840 | msgid " Information" |
| 841 | 841 | msgstr " Informação" |
| 842 | 842 | |
| 843 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_main_software_editor_extras.html.erb:3 | |
| 844 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:74 | |
| 845 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:76 | |
| 846 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:74 | |
| 847 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:76 | |
| 843 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_main_software_editor_extras.html.erb:3 | |
| 844 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:74 | |
| 845 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:76 | |
| 846 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:74 | |
| 847 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:76 | |
| 848 | 848 | msgid "Acronym" |
| 849 | 849 | msgstr "Sigla" |
| 850 | 850 | |
| 851 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_main_software_editor_extras.html.erb:10 | |
| 852 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/new_software.html.erb:41 | |
| 851 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_main_software_editor_extras.html.erb:10 | |
| 852 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/new_software.html.erb:41 | |
| 853 | 853 | msgid "It is a software of..." |
| 854 | 854 | msgstr "É um software de ..." |
| 855 | 855 | |
| 856 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_main_software_editor_extras.html.erb:26 | |
| 856 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_main_software_editor_extras.html.erb:26 | |
| 857 | 857 | msgid "Link to Repository" |
| 858 | 858 | msgstr "Link pro Repositório" |
| 859 | 859 | |
| 860 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_operating_system_fields.html.erb:11 | |
| 860 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_operating_system_fields.html.erb:11 | |
| 861 | 861 | msgid "New Operating System" |
| 862 | 862 | msgstr "Novo Sistema Operacional" |
| 863 | 863 | |
| 864 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_software.html.erb:10 | |
| 864 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_software.html.erb:10 | |
| 865 | 865 | msgid "Specifications" |
| 866 | 866 | msgstr "Especificações" |
| 867 | 867 | |
| 868 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_software.html.erb:16 | |
| 869 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:116 | |
| 870 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:117 | |
| 871 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:120 | |
| 868 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_software.html.erb:16 | |
| 869 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:116 | |
| 870 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:117 | |
| 871 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:120 | |
| 872 | 872 | msgid "Save" |
| 873 | 873 | msgstr "Salvar" |
| 874 | 874 | |
| 875 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_software.html.erb:18 | |
| 875 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_software.html.erb:18 | |
| 876 | 876 | msgid "Back to control panel" |
| 877 | 877 | msgstr "Voltar para o painel de controle" |
| 878 | 878 | |
| 879 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_library_fields.html.erb:11 | |
| 879 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_library_fields.html.erb:11 | |
| 880 | 880 | msgid "New Library" |
| 881 | 881 | msgstr "Nova Biblioteca" |
| 882 | 882 | |
| 883 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_database_fields.html.erb:11 | |
| 883 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_database_fields.html.erb:11 | |
| 884 | 884 | msgid "New Database" |
| 885 | 885 | msgstr "Novo Banco de Dados" |
| 886 | 886 | |
| 887 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_language_fields.html.erb:11 | |
| 887 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_language_fields.html.erb:11 | |
| 888 | 888 | msgid "New language" |
| 889 | 889 | msgstr "Nova linguagem" |
| 890 | 890 | |
| 891 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/new_software.html.erb:4 | |
| 891 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/new_software.html.erb:4 | |
| 892 | 892 | msgid "Step 1/2 - Software Creation" |
| 893 | 893 | msgstr "Passo 1/2 - Criação de Software" |
| 894 | 894 | |
| 895 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/new_software.html.erb:7 | |
| 895 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/new_software.html.erb:7 | |
| 896 | 896 | msgid "Creating new software" |
| 897 | 897 | msgstr "Criando novo software" |
| 898 | 898 | |
| 899 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/new_software.html.erb:11 | |
| 900 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:5 | |
| 901 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:5 | |
| 899 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/new_software.html.erb:11 | |
| 900 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:5 | |
| 901 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:5 | |
| 902 | 902 | msgid "" |
| 903 | 903 | "Note that the creation of communities in this environment is restricted. " |
| 904 | 904 | "Your request to create this new community will be sent to %{environment} " |
| ... | ... | @@ -910,139 +910,139 @@ msgstr "" |
| 910 | 910 | "administradores do %{environment} e será aprovada ou rejeitada de acordo com " |
| 911 | 911 | "seus métodos e critérios. " |
| 912 | 912 | |
| 913 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/new_software.html.erb:17 | |
| 913 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/new_software.html.erb:17 | |
| 914 | 914 | msgid "\"Can`t create new software: #{@errors.length} errors\"" |
| 915 | 915 | msgstr "\"Não é possível criar um novo software: #{@errors.length} erros\"" |
| 916 | 916 | |
| 917 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/new_software.html.erb:47 | |
| 917 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/new_software.html.erb:47 | |
| 918 | 918 | msgid "License Version: " |
| 919 | 919 | msgstr "Versão da Licença: " |
| 920 | 920 | |
| 921 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/new_software.html.erb:70 | |
| 921 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/new_software.html.erb:70 | |
| 922 | 922 | msgid "Create" |
| 923 | 923 | msgstr "Criar" |
| 924 | 924 | |
| 925 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/new_software.html.erb:71 | |
| 925 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/new_software.html.erb:71 | |
| 926 | 926 | msgid "Cancel" |
| 927 | 927 | msgstr "Cancelar" |
| 928 | 928 | |
| 929 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:1 | |
| 929 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:1 | |
| 930 | 930 | msgid "Edit Institution" |
| 931 | 931 | msgstr "Editar Instituição" |
| 932 | 932 | |
| 933 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:11 | |
| 934 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:11 | |
| 933 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:11 | |
| 934 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:11 | |
| 935 | 935 | msgid "\"Can`t create new Institution: #{flash[:errors].length} errors\"" |
| 936 | 936 | msgstr "" |
| 937 | 937 | "\"Não é possível criar nova Instituição: #{flash[: errors].length} erros\"" |
| 938 | 938 | |
| 939 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:24 | |
| 940 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:24 | |
| 939 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:24 | |
| 940 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:24 | |
| 941 | 941 | msgid "All fields with (*) are mandatory" |
| 942 | 942 | msgstr "Todos os campos com (*) são obrigatórios" |
| 943 | 943 | |
| 944 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:32 | |
| 945 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:32 | |
| 944 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:32 | |
| 945 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:32 | |
| 946 | 946 | msgid "Public Institution" |
| 947 | 947 | msgstr "Instituição Pública" |
| 948 | 948 | |
| 949 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:37 | |
| 950 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:37 | |
| 949 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:37 | |
| 950 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:37 | |
| 951 | 951 | msgid "Private Institution" |
| 952 | 952 | msgstr "Instituição Privada" |
| 953 | 953 | |
| 954 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:44 | |
| 955 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:44 | |
| 954 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:44 | |
| 955 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:44 | |
| 956 | 956 | msgid "Institution name already exists" |
| 957 | 957 | msgstr "Nome da instituição já existe" |
| 958 | 958 | |
| 959 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:48 | |
| 960 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:48 | |
| 959 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:48 | |
| 960 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:48 | |
| 961 | 961 | msgid "Corporate Name" |
| 962 | 962 | msgstr "Razão Social" |
| 963 | 963 | |
| 964 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:53 | |
| 965 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:53 | |
| 964 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:53 | |
| 965 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:53 | |
| 966 | 966 | msgid "Country" |
| 967 | 967 | msgstr "País" |
| 968 | 968 | |
| 969 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:57 | |
| 970 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:57 | |
| 969 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:57 | |
| 970 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:57 | |
| 971 | 971 | msgid "State" |
| 972 | 972 | msgstr "Estado" |
| 973 | 973 | |
| 974 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:67 | |
| 975 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:67 | |
| 974 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:67 | |
| 975 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:67 | |
| 976 | 976 | msgid "CNPJ" |
| 977 | 977 | msgstr "CNPJ" |
| 978 | 978 | |
| 979 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:75 | |
| 980 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:75 | |
| 979 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:75 | |
| 980 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:75 | |
| 981 | 981 | msgid "Fantasy name" |
| 982 | 982 | msgstr "Nome Fantasia" |
| 983 | 983 | |
| 984 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:84 | |
| 985 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:84 | |
| 984 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:84 | |
| 985 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:84 | |
| 986 | 986 | msgid "Select a Governmental Sphere" |
| 987 | 987 | msgstr "Selecione uma Esfera Governamental" |
| 988 | 988 | |
| 989 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:91 | |
| 990 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:91 | |
| 989 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:91 | |
| 990 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:91 | |
| 991 | 991 | msgid "Select a Governmental Power" |
| 992 | 992 | msgstr "Selecione um Poder Governamental" |
| 993 | 993 | |
| 994 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:97 | |
| 995 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:97 | |
| 994 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:97 | |
| 995 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:97 | |
| 996 | 996 | msgid "Select a Juridical Nature" |
| 997 | 997 | msgstr "Selecione uma Natureza Jurídica" |
| 998 | 998 | |
| 999 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:103 | |
| 1000 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:103 | |
| 999 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:103 | |
| 1000 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:103 | |
| 1001 | 1001 | msgid "SISP?" |
| 1002 | 1002 | msgstr "SISP?" |
| 1003 | 1003 | |
| 1004 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:1 | |
| 1004 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:1 | |
| 1005 | 1005 | msgid "New Institution" |
| 1006 | 1006 | msgstr "Nova Instituição" |
| 1007 | 1007 | |
| 1008 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:122 | |
| 1008 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:122 | |
| 1009 | 1009 | msgid "Could not send the form data to the server" |
| 1010 | 1010 | msgstr "Não foi possível enviar os dados do formulário para o servidor" |
| 1011 | 1011 | |
| 1012 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:129 | |
| 1012 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:129 | |
| 1013 | 1013 | msgid "Creating institution" |
| 1014 | 1014 | msgstr "Criando Instituição" |
| 1015 | 1015 | |
| 1016 | -#: plugins/mpog_software/views/search/_catalog_filter.html.erb:15 | |
| 1016 | +#: plugins/software_communities/views/search/_catalog_filter.html.erb:15 | |
| 1017 | 1017 | msgid "Categories filter" |
| 1018 | 1018 | msgstr "Filtro de Categorias" |
| 1019 | 1019 | |
| 1020 | -#: plugins/mpog_software/views/search/_catalog_filter.html.erb:16 | |
| 1020 | +#: plugins/software_communities/views/search/_catalog_filter.html.erb:16 | |
| 1021 | 1021 | msgid "Type a category name here" |
| 1022 | 1022 | msgstr "Escreva uma categoria aqui" |
| 1023 | 1023 | |
| 1024 | -#: plugins/mpog_software/views/search/_full_community.html.erb:30 | |
| 1024 | +#: plugins/software_communities/views/search/_full_community.html.erb:30 | |
| 1025 | 1025 | msgid "Software licence" |
| 1026 | 1026 | msgstr "Licença do Software" |
| 1027 | 1027 | |
| 1028 | -#: plugins/mpog_software/views/search/_full_community.html.erb:39 | |
| 1028 | +#: plugins/software_communities/views/search/_full_community.html.erb:39 | |
| 1029 | 1029 | msgid "Link software repository" |
| 1030 | 1030 | msgstr "Link pro Repositório" |
| 1031 | 1031 | |
| 1032 | -#: plugins/mpog_software/views/search/_full_community.html.erb:48 | |
| 1032 | +#: plugins/software_communities/views/search/_full_community.html.erb:48 | |
| 1033 | 1033 | msgid "Software Categories" |
| 1034 | 1034 | msgstr "Categorias de Software" |
| 1035 | 1035 | |
| 1036 | -#: plugins/mpog_software/views/search/_full_community.html.erb:62 | |
| 1036 | +#: plugins/software_communities/views/search/_full_community.html.erb:62 | |
| 1037 | 1037 | msgid "This software doesn't have categories" |
| 1038 | 1038 | msgstr "Este software não tem categorias" |
| 1039 | 1039 | |
| 1040 | -#: plugins/mpog_software/views/search/software_infos.html.erb:3 | |
| 1041 | -#: plugins/mpog_software/views/search/institutions.html.erb:3 | |
| 1040 | +#: plugins/software_communities/views/search/software_infos.html.erb:3 | |
| 1041 | +#: plugins/software_communities/views/search/institutions.html.erb:3 | |
| 1042 | 1042 | msgid "Type words about the %s you're looking for" |
| 1043 | 1043 | msgstr "Escreva palavras sobre o software que você está procurando" |
| 1044 | 1044 | |
| 1045 | -#: plugins/mpog_software/views/first_edit_software_community_extras.html.erb:2 | |
| 1045 | +#: plugins/software_communities/views/first_edit_software_community_extras.html.erb:2 | |
| 1046 | 1046 | msgid "Step 2/2 - Software Community Configuration" |
| 1047 | 1047 | msgstr "Passo 2/2 - Configuração da Comunidade do Software" |
| 1048 | 1048 | ... | ... |
po/pt/mpog_software.po
| ... | ... | @@ -16,48 +16,48 @@ msgstr "" |
| 16 | 16 | "Content-Transfer-Encoding: 8bit\n" |
| 17 | 17 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" |
| 18 | 18 | |
| 19 | -#: plugins/mpog_software/test/unit/mpog_person_test.rb:57 | |
| 20 | -#: plugins/mpog_software/test/unit/mpog_person_test.rb:63 | |
| 19 | +#: plugins/software_communities/test/unit/mpog_person_test.rb:57 | |
| 20 | +#: plugins/software_communities/test/unit/mpog_person_test.rb:63 | |
| 21 | 21 | msgid "Name Should begin with a capital letter and no special characters" |
| 22 | 22 | msgstr "Deve começar com uma letra maiúscula e sem caracteres especiais" |
| 23 | 23 | |
| 24 | -#: plugins/mpog_software/test/unit/software_info_validation_test.rb:107 | |
| 24 | +#: plugins/software_communities/test/unit/software_info_validation_test.rb:107 | |
| 25 | 25 | msgid "Features is too long (maximum is 4000 characters)" |
| 26 | 26 | msgstr "" |
| 27 | 27 | "Funcionalidade contém mais caracteres do que o permitido(máximo é 4000 " |
| 28 | 28 | "caracteres)" |
| 29 | 29 | |
| 30 | -#: plugins/mpog_software/test/unit/software_info_validation_test.rb:115 | |
| 30 | +#: plugins/software_communities/test/unit/software_info_validation_test.rb:115 | |
| 31 | 31 | msgid "Objectives is too long (maximum is 4000 characters)" |
| 32 | 32 | msgstr "" |
| 33 | 33 | "Objetivos contém mais caracteres do que o permitido (máximo é 4000 " |
| 34 | 34 | "caracteres)" |
| 35 | 35 | |
| 36 | -#: plugins/mpog_software/test/functional/search_controller_test.rb:24 | |
| 37 | -#: plugins/mpog_software/lib/mpog_software_plugin.rb:344 | |
| 38 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_software.html.erb:7 | |
| 36 | +#: plugins/software_communities/test/functional/search_controller_test.rb:24 | |
| 37 | +#: plugins/software_communities/lib/software_communities_plugin.rb:344 | |
| 38 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_software.html.erb:7 | |
| 39 | 39 | msgid "Software" |
| 40 | 40 | msgstr "Software" |
| 41 | 41 | |
| 42 | -#: plugins/mpog_software/controllers/mpog_software_plugin_myprofile_controller.rb:52 | |
| 43 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_software.html.erb:17 | |
| 42 | +#: plugins/software_communities/controllers/software_communities_plugin_myprofile_controller.rb:52 | |
| 43 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_software.html.erb:17 | |
| 44 | 44 | msgid "Save and Configure Community" |
| 45 | 45 | msgstr "Salvar e Configurar Comunidade" |
| 46 | 46 | |
| 47 | -#: plugins/mpog_software/controllers/mpog_software_plugin_myprofile_controller.rb:56 | |
| 47 | +#: plugins/software_communities/controllers/software_communities_plugin_myprofile_controller.rb:56 | |
| 48 | 48 | msgid "Software updated sucessefuly" |
| 49 | 49 | msgstr "Software atualizado com sucesso" |
| 50 | 50 | |
| 51 | -#: plugins/mpog_software/controllers/mpog_software_plugin_myprofile_controller.rb:59 | |
| 51 | +#: plugins/software_communities/controllers/software_communities_plugin_myprofile_controller.rb:59 | |
| 52 | 52 | msgid "Could not update software" |
| 53 | 53 | msgstr "Não foi possível atualizar o software" |
| 54 | 54 | |
| 55 | -#: plugins/mpog_software/controllers/mpog_software_plugin_myprofile_controller.rb:96 | |
| 56 | -#: plugins/mpog_software/controllers/mpog_software_plugin_controller.rb:170 | |
| 55 | +#: plugins/software_communities/controllers/software_communities_plugin_myprofile_controller.rb:96 | |
| 56 | +#: plugins/software_communities/controllers/software_communities_plugin_controller.rb:170 | |
| 57 | 57 | msgid "Could not find Governmental Power or Governmental Sphere" |
| 58 | 58 | msgstr "Não foi possível encontrar Poder Governamental ou Esfera Governamental" |
| 59 | 59 | |
| 60 | -#: plugins/mpog_software/controllers/mpog_software_plugin_myprofile_controller.rb:149 | |
| 60 | +#: plugins/software_communities/controllers/software_communities_plugin_myprofile_controller.rb:149 | |
| 61 | 61 | msgid "" |
| 62 | 62 | "Your new software request will be evaluated by anadministrator. You will be " |
| 63 | 63 | "notified." |
| ... | ... | @@ -65,128 +65,128 @@ msgstr "" |
| 65 | 65 | "Sua requisição para criação de um novo software será avaliada por um " |
| 66 | 66 | "administrador. Você será noficado." |
| 67 | 67 | |
| 68 | -#: plugins/mpog_software/controllers/mpog_software_plugin_controller.rb:215 | |
| 68 | +#: plugins/software_communities/controllers/software_communities_plugin_controller.rb:215 | |
| 69 | 69 | msgid "Institution successful created!" |
| 70 | 70 | msgstr "Instituição criada com sucesso!" |
| 71 | 71 | |
| 72 | -#: plugins/mpog_software/controllers/mpog_software_plugin_controller.rb:220 | |
| 72 | +#: plugins/software_communities/controllers/software_communities_plugin_controller.rb:220 | |
| 73 | 73 | msgid "Institution could not be created!" |
| 74 | 74 | msgstr "Instituição não pode ser criada!" |
| 75 | 75 | |
| 76 | -#: plugins/mpog_software/lib/software_info.rb:69 | |
| 76 | +#: plugins/software_communities/lib/software_info.rb:69 | |
| 77 | 77 | msgid "Name is too long (maximum is %{count} characters)" |
| 78 | 78 | msgstr "" |
| 79 | 79 | "Nome contém mais caracteres do que o permitido (máximo é %{count} caracteres)" |
| 80 | 80 | |
| 81 | -#: plugins/mpog_software/lib/software_info.rb:113 | |
| 81 | +#: plugins/software_communities/lib/software_info.rb:113 | |
| 82 | 82 | msgid "can't have more than 10 characteres" |
| 83 | 83 | msgstr "não pode ter mais de 10 caracteres" |
| 84 | 84 | |
| 85 | -#: plugins/mpog_software/lib/software_info.rb:116 | |
| 85 | +#: plugins/software_communities/lib/software_info.rb:116 | |
| 86 | 86 | msgid "can't have whitespaces" |
| 87 | 87 | msgstr "não pode ter espaços" |
| 88 | 88 | |
| 89 | -#: plugins/mpog_software/lib/software_info.rb:124 | |
| 90 | -#: plugins/mpog_software/lib/software_info.rb:130 | |
| 91 | -#: plugins/mpog_software/lib/software_info.rb:136 | |
| 89 | +#: plugins/software_communities/lib/software_info.rb:124 | |
| 90 | +#: plugins/software_communities/lib/software_info.rb:130 | |
| 91 | +#: plugins/software_communities/lib/software_info.rb:136 | |
| 92 | 92 | msgid ": at least one must be filled" |
| 93 | 93 | msgstr ": pelo menos um deve ser preenchido" |
| 94 | 94 | |
| 95 | -#: plugins/mpog_software/lib/dynamic_table_helper.rb:17 | |
| 96 | -#: plugins/mpog_software/views/_main_software_editor_extras.html.erb:3 | |
| 97 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/new_software.html.erb:31 | |
| 95 | +#: plugins/software_communities/lib/dynamic_table_helper.rb:17 | |
| 96 | +#: plugins/software_communities/views/_main_software_editor_extras.html.erb:3 | |
| 97 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/new_software.html.erb:31 | |
| 98 | 98 | msgid "Name" |
| 99 | 99 | msgstr "Nome" |
| 100 | 100 | |
| 101 | -#: plugins/mpog_software/lib/dynamic_table_helper.rb:18 | |
| 101 | +#: plugins/software_communities/lib/dynamic_table_helper.rb:18 | |
| 102 | 102 | msgid "Version" |
| 103 | 103 | msgstr "Versão" |
| 104 | 104 | |
| 105 | -#: plugins/mpog_software/lib/dynamic_table_helper.rb:19 | |
| 106 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:19 | |
| 105 | +#: plugins/software_communities/lib/dynamic_table_helper.rb:19 | |
| 106 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:19 | |
| 107 | 107 | msgid "License" |
| 108 | 108 | msgstr "Licença" |
| 109 | 109 | |
| 110 | -#: plugins/mpog_software/lib/dynamic_table_helper.rb:91 | |
| 110 | +#: plugins/software_communities/lib/dynamic_table_helper.rb:91 | |
| 111 | 111 | msgid "Autocomplete field, type something" |
| 112 | 112 | msgstr "Campo automático, digite algo" |
| 113 | 113 | |
| 114 | -#: plugins/mpog_software/lib/dynamic_table_helper.rb:116 | |
| 114 | +#: plugins/software_communities/lib/dynamic_table_helper.rb:116 | |
| 115 | 115 | msgid "Delete" |
| 116 | 116 | msgstr "Excluir" |
| 117 | 117 | |
| 118 | -#: plugins/mpog_software/lib/categories_and_tags_block.rb:8 | |
| 118 | +#: plugins/software_communities/lib/categories_and_tags_block.rb:8 | |
| 119 | 119 | msgid "Categories and Tags" |
| 120 | 120 | msgstr "Categorias e Tags" |
| 121 | 121 | |
| 122 | -#: plugins/mpog_software/lib/categories_and_tags_block.rb:12 | |
| 122 | +#: plugins/software_communities/lib/categories_and_tags_block.rb:12 | |
| 123 | 123 | msgid "This block displays the categories and tags of a software." |
| 124 | 124 | msgstr "" |
| 125 | 125 | "Este bloco exibe as informações de categorias e tags de um perfil de " |
| 126 | 126 | "software." |
| 127 | 127 | |
| 128 | -#: plugins/mpog_software/lib/software_information_block.rb:8 | |
| 128 | +#: plugins/software_communities/lib/software_information_block.rb:8 | |
| 129 | 129 | msgid "Basic Software Information" |
| 130 | 130 | msgstr "Informações Básicas Software" |
| 131 | 131 | |
| 132 | -#: plugins/mpog_software/lib/software_information_block.rb:12 | |
| 132 | +#: plugins/software_communities/lib/software_information_block.rb:12 | |
| 133 | 133 | msgid "This block displays the basic information of a software profile." |
| 134 | 134 | msgstr "Este bloco exibe as informações básicas de um perfil de software." |
| 135 | 135 | |
| 136 | -#: plugins/mpog_software/lib/softwares_block.rb:8 | |
| 136 | +#: plugins/software_communities/lib/softwares_block.rb:8 | |
| 137 | 137 | msgid "Softwares" |
| 138 | 138 | msgstr "Softwares" |
| 139 | 139 | |
| 140 | -#: plugins/mpog_software/lib/softwares_block.rb:13 | |
| 140 | +#: plugins/software_communities/lib/softwares_block.rb:13 | |
| 141 | 141 | msgid "{#} generic software" |
| 142 | 142 | msgid_plural "{#} generic softwares" |
| 143 | 143 | msgstr[0] "{#} software genérico" |
| 144 | 144 | msgstr[1] "{#} softwares genéricos" |
| 145 | 145 | |
| 146 | -#: plugins/mpog_software/lib/softwares_block.rb:15 | |
| 146 | +#: plugins/software_communities/lib/softwares_block.rb:15 | |
| 147 | 147 | msgid "{#} public software" |
| 148 | 148 | msgid_plural "{#} public softwares" |
| 149 | 149 | msgstr[0] "{#} software público" |
| 150 | 150 | msgstr[1] "{#} software públicos" |
| 151 | 151 | |
| 152 | -#: plugins/mpog_software/lib/softwares_block.rb:17 | |
| 152 | +#: plugins/software_communities/lib/softwares_block.rb:17 | |
| 153 | 153 | msgid "{#} software" |
| 154 | 154 | msgid_plural "{#} softwares" |
| 155 | 155 | msgstr[0] "{#} software" |
| 156 | 156 | msgstr[1] "{#} softwares" |
| 157 | 157 | |
| 158 | -#: plugins/mpog_software/lib/softwares_block.rb:22 | |
| 158 | +#: plugins/software_communities/lib/softwares_block.rb:22 | |
| 159 | 159 | msgid "This block displays the softwares in which the user is a member." |
| 160 | 160 | msgstr "Este bloco apresenta os softwares no qual o usuário é membro." |
| 161 | 161 | |
| 162 | -#: plugins/mpog_software/lib/softwares_block.rb:31 | |
| 163 | -#: plugins/mpog_software/lib/softwares_block.rb:37 | |
| 162 | +#: plugins/software_communities/lib/softwares_block.rb:31 | |
| 163 | +#: plugins/software_communities/lib/softwares_block.rb:37 | |
| 164 | 164 | msgid "softwares|View all" |
| 165 | 165 | msgstr "Ver todos" |
| 166 | 166 | |
| 167 | -#: plugins/mpog_software/lib/create_software.rb:36 | |
| 167 | +#: plugins/software_communities/lib/create_software.rb:36 | |
| 168 | 168 | msgid "New software" |
| 169 | 169 | msgstr "Novo software" |
| 170 | 170 | |
| 171 | -#: plugins/mpog_software/lib/create_software.rb:44 | |
| 171 | +#: plugins/software_communities/lib/create_software.rb:44 | |
| 172 | 172 | msgid "%{requestor} wants to create software %{subject} with" |
| 173 | 173 | msgstr "%{requestor} deseja criar o software %{subject}" |
| 174 | 174 | |
| 175 | -#: plugins/mpog_software/lib/create_software.rb:46 | |
| 175 | +#: plugins/software_communities/lib/create_software.rb:46 | |
| 176 | 176 | msgid " no finality." |
| 177 | 177 | msgstr " sem finalidade" |
| 178 | 178 | |
| 179 | -#: plugins/mpog_software/lib/create_software.rb:48 | |
| 179 | +#: plugins/software_communities/lib/create_software.rb:48 | |
| 180 | 180 | msgid " this finality:<p><em>%{finality}</em></p>" |
| 181 | 181 | msgstr "" |
| 182 | 182 | " com esta finalidade:<p><em>" |
| 183 | 183 | "%{finality}</em></p>" |
| 184 | 184 | |
| 185 | -#: plugins/mpog_software/lib/create_software.rb:68 | |
| 185 | +#: plugins/software_communities/lib/create_software.rb:68 | |
| 186 | 186 | msgid "%{requestor} wants to create software %{subject}" |
| 187 | 187 | msgstr "%{requestor} deseja criar o software %{subject}" |
| 188 | 188 | |
| 189 | -#: plugins/mpog_software/lib/create_software.rb:73 | |
| 189 | +#: plugins/software_communities/lib/create_software.rb:73 | |
| 190 | 190 | msgid "" |
| 191 | 191 | "User \"%{user}\" just requested to create software %{software}.\n" |
| 192 | 192 | " You have to approve or reject it through the \"Pending Validations\"\n" |
| ... | ... | @@ -196,7 +196,7 @@ msgstr "" |
| 196 | 196 | "deve aprovar ou rejeitar pela seção \"Validações pendentes\" no seu painel " |
| 197 | 197 | "de controle.\n" |
| 198 | 198 | |
| 199 | -#: plugins/mpog_software/lib/create_software.rb:80 | |
| 199 | +#: plugins/software_communities/lib/create_software.rb:80 | |
| 200 | 200 | msgid "" |
| 201 | 201 | "Your request for registering software %{software} at %{environment} was\n" |
| 202 | 202 | " just sent. Environment administrator will receive it and will approve " |
| ... | ... | @@ -212,7 +212,7 @@ msgstr "" |
| 212 | 212 | "rejeitar sua requisição de acordo com seus métodos e critérios.\n Você será " |
| 213 | 213 | "notificado assim que o administrador tenha uma posição sobre sua requisição." |
| 214 | 214 | |
| 215 | -#: plugins/mpog_software/lib/create_software.rb:90 | |
| 215 | +#: plugins/software_communities/lib/create_software.rb:90 | |
| 216 | 216 | msgid "" |
| 217 | 217 | "Your request for registering software %{software} at %{environment} was\n" |
| 218 | 218 | " not approved by the environment administrator. The following " |
| ... | ... | @@ -227,7 +227,7 @@ msgstr "" |
| 227 | 227 | "\n" |
| 228 | 228 | "%{explanation}" |
| 229 | 229 | |
| 230 | -#: plugins/mpog_software/lib/create_software.rb:99 | |
| 230 | +#: plugins/software_communities/lib/create_software.rb:99 | |
| 231 | 231 | msgid "" |
| 232 | 232 | "Your request for registering the software \"%{software}\" was approved.\n" |
| 233 | 233 | " You can access %{url} and finish the registration of your software." |
| ... | ... | @@ -235,670 +235,670 @@ msgstr "" |
| 235 | 235 | "Sua requisição para registro do software \"%{software}\" foi aprovada. \n Você " |
| 236 | 236 | "pode acessá-la %{url} e finalizar o registro do seu software." |
| 237 | 237 | |
| 238 | -#: plugins/mpog_software/lib/repository_block.rb:8 | |
| 238 | +#: plugins/software_communities/lib/repository_block.rb:8 | |
| 239 | 239 | msgid "Repository Link" |
| 240 | 240 | msgstr "Link para o Repositório:" |
| 241 | 241 | |
| 242 | -#: plugins/mpog_software/lib/repository_block.rb:12 | |
| 242 | +#: plugins/software_communities/lib/repository_block.rb:12 | |
| 243 | 243 | msgid "This block displays the repository link of a software." |
| 244 | 244 | msgstr "Este bloco exibe o link para o repositório de um perfil de software." |
| 245 | 245 | |
| 246 | -#: plugins/mpog_software/lib/software_language.rb:10 | |
| 246 | +#: plugins/software_communities/lib/software_language.rb:10 | |
| 247 | 247 | msgid "Software language is too long (maximum is 20 characters)" |
| 248 | 248 | msgstr "" |
| 249 | 249 | "Linguagem de programação do software contém mais caracteres do que o " |
| 250 | 250 | "permitido (máximo é 20 caracteres)" |
| 251 | 251 | |
| 252 | -#: plugins/mpog_software/lib/download_block.rb:14 | |
| 252 | +#: plugins/software_communities/lib/download_block.rb:14 | |
| 253 | 253 | msgid "Download Stable Version" |
| 254 | 254 | msgstr "Baixar Versão Estável" |
| 255 | 255 | |
| 256 | -#: plugins/mpog_software/lib/download_block.rb:18 | |
| 256 | +#: plugins/software_communities/lib/download_block.rb:18 | |
| 257 | 257 | msgid "This block displays the stable version of a software." |
| 258 | 258 | msgstr "Este bloco exibe as informações básicas de um perfil de software." |
| 259 | 259 | |
| 260 | -#: plugins/mpog_software/lib/mpog_software_plugin.rb:17 | |
| 260 | +#: plugins/software_communities/lib/software_communities_plugin.rb:17 | |
| 261 | 261 | msgid "Add Public Software and MPOG features." |
| 262 | 262 | msgstr "Adicionar funcionalidades referentes ao Software Público e MPOG" |
| 263 | 263 | |
| 264 | -#: plugins/mpog_software/lib/mpog_software_plugin.rb:167 | |
| 264 | +#: plugins/software_communities/lib/software_communities_plugin.rb:167 | |
| 265 | 265 | msgid "Create Institution" |
| 266 | 266 | msgstr "Criar Instituição" |
| 267 | 267 | |
| 268 | -#: plugins/mpog_software/lib/mpog_software_plugin.rb:297 | |
| 268 | +#: plugins/software_communities/lib/software_communities_plugin.rb:297 | |
| 269 | 269 | msgid "Software Info" |
| 270 | 270 | msgstr "Informação de Software" |
| 271 | 271 | |
| 272 | -#: plugins/mpog_software/lib/mpog_software_plugin.rb:308 | |
| 272 | +#: plugins/software_communities/lib/software_communities_plugin.rb:308 | |
| 273 | 273 | msgid "Create a new software" |
| 274 | 274 | msgstr "Criar um novo software" |
| 275 | 275 | |
| 276 | -#: plugins/mpog_software/lib/mpog_software_plugin.rb:319 | |
| 276 | +#: plugins/software_communities/lib/software_communities_plugin.rb:319 | |
| 277 | 277 | msgid "Institution Info" |
| 278 | 278 | msgstr "Informação da Instituição" |
| 279 | 279 | |
| 280 | -#: plugins/mpog_software/lib/mpog_software_plugin.rb:351 | |
| 280 | +#: plugins/software_communities/lib/software_communities_plugin.rb:351 | |
| 281 | 281 | msgid "Institution" |
| 282 | 282 | msgstr "Instituição" |
| 283 | 283 | |
| 284 | -#: plugins/mpog_software/lib/institution.rb:46 | |
| 284 | +#: plugins/software_communities/lib/institution.rb:46 | |
| 285 | 285 | msgid "invalid, only public and private institutions are allowed." |
| 286 | 286 | msgstr "inválido, somente instituição públicas ou privadas são permitidas." |
| 287 | 287 | |
| 288 | -#: plugins/mpog_software/lib/institution.rb:59 | |
| 289 | -#: plugins/mpog_software/lib/institution.rb:71 | |
| 290 | -#: plugins/mpog_software/lib/institution.rb:86 | |
| 291 | -#: plugins/mpog_software/lib/institution.rb:111 | |
| 292 | -#: plugins/mpog_software/lib/library.rb:5 | |
| 288 | +#: plugins/software_communities/lib/institution.rb:59 | |
| 289 | +#: plugins/software_communities/lib/institution.rb:71 | |
| 290 | +#: plugins/software_communities/lib/institution.rb:86 | |
| 291 | +#: plugins/software_communities/lib/institution.rb:111 | |
| 292 | +#: plugins/software_communities/lib/library.rb:5 | |
| 293 | 293 | msgid "can't be blank" |
| 294 | 294 | msgstr "não pode ser em branco" |
| 295 | 295 | |
| 296 | -#: plugins/mpog_software/lib/institution.rb:103 | |
| 296 | +#: plugins/software_communities/lib/institution.rb:103 | |
| 297 | 297 | msgid "invalid format" |
| 298 | 298 | msgstr "formato inválido" |
| 299 | 299 | |
| 300 | -#: plugins/mpog_software/lib/operating_system.rb:12 | |
| 300 | +#: plugins/software_communities/lib/operating_system.rb:12 | |
| 301 | 301 | msgid "too long (maximum is 20 characters)" |
| 302 | 302 | msgstr "" |
| 303 | 303 | "Sistema operacional contém mais caracteres do que o permitido (máximo é 20 caracteres)" |
| 304 | 304 | |
| 305 | -#: plugins/mpog_software/lib/search_catalog_block.rb:8 | |
| 305 | +#: plugins/software_communities/lib/search_catalog_block.rb:8 | |
| 306 | 306 | msgid "Search Softwares catalog" |
| 307 | 307 | msgstr "Informações Básicas Software" |
| 308 | 308 | |
| 309 | -#: plugins/mpog_software/lib/search_catalog_block.rb:12 | |
| 309 | +#: plugins/software_communities/lib/search_catalog_block.rb:12 | |
| 310 | 310 | msgid "This block displays the search categories field " |
| 311 | 311 | msgstr "Este bloco apresenta a busca por categorias" |
| 312 | 312 | |
| 313 | -#: plugins/mpog_software/lib/library.rb:8 | |
| 313 | +#: plugins/software_communities/lib/library.rb:8 | |
| 314 | 314 | msgid "Too long (maximum is 20 characters)" |
| 315 | 315 | msgstr "" |
| 316 | 316 | "Biblioteca contém mais caracteres do que o permitido (máximo é 20 caracteres)" |
| 317 | 317 | |
| 318 | -#: plugins/mpog_software/lib/categories_software_block.rb:8 | |
| 318 | +#: plugins/software_communities/lib/categories_software_block.rb:8 | |
| 319 | 319 | msgid "Categories Softwares" |
| 320 | 320 | msgstr "Ativar Software" |
| 321 | 321 | |
| 322 | -#: plugins/mpog_software/lib/categories_software_block.rb:12 | |
| 322 | +#: plugins/software_communities/lib/categories_software_block.rb:12 | |
| 323 | 323 | msgid "" |
| 324 | 324 | "This block displays the categories and the amount of softwares for\n" |
| 325 | 325 | " each category." |
| 326 | 326 | msgstr "Este bloco exibe as categorias e a quantidade de softwares por categoria." |
| 327 | 327 | |
| 328 | -#: plugins/mpog_software/lib/ext/user.rb:19 | |
| 328 | +#: plugins/software_communities/lib/ext/user.rb:19 | |
| 329 | 329 | msgid "Email must be different from secondary email." |
| 330 | 330 | msgstr "E-mail deve ser diferente do e-mail secundário." |
| 331 | 331 | |
| 332 | -#: plugins/mpog_software/lib/ext/user.rb:40 | |
| 332 | +#: plugins/software_communities/lib/ext/user.rb:40 | |
| 333 | 333 | msgid "E-mail or secondary e-mail already taken." |
| 334 | 334 | msgstr "E-mail ou e-mail secundário já está sendo utilizado" |
| 335 | 335 | |
| 336 | -#: plugins/mpog_software/lib/ext/user.rb:50 | |
| 336 | +#: plugins/software_communities/lib/ext/user.rb:50 | |
| 337 | 337 | msgid "Invalid secondary email format." |
| 338 | 338 | msgstr "Formato do e-mail secundário inválido." |
| 339 | 339 | |
| 340 | -#: plugins/mpog_software/lib/ext/user.rb:70 | |
| 340 | +#: plugins/software_communities/lib/ext/user.rb:70 | |
| 341 | 341 | msgid "The governamental email must be the primary one." |
| 342 | 342 | msgstr "O e-mail governamental deve ser o e-mail primário." |
| 343 | 343 | |
| 344 | -#: plugins/mpog_software/lib/ext/user.rb:78 | |
| 344 | +#: plugins/software_communities/lib/ext/user.rb:78 | |
| 345 | 345 | msgid "Institution is obligatory if user has a government email." |
| 346 | 346 | msgstr "Instituição é obrigatória se o usuário tiver um e-mail governamental." |
| 347 | 347 | |
| 348 | -#: plugins/mpog_software/lib/ext/category.rb:5 | |
| 348 | +#: plugins/software_communities/lib/ext/category.rb:5 | |
| 349 | 349 | msgid "Agriculture, Fisheries and Extraction" |
| 350 | 350 | msgstr "Agricultura, Extrativismo e Pesca " |
| 351 | 351 | |
| 352 | -#: plugins/mpog_software/lib/ext/category.rb:6 | |
| 352 | +#: plugins/software_communities/lib/ext/category.rb:6 | |
| 353 | 353 | msgid "Science, Information and Communication" |
| 354 | 354 | msgstr "Ciência, Informação e Comunicação " |
| 355 | 355 | |
| 356 | -#: plugins/mpog_software/lib/ext/category.rb:7 | |
| 356 | +#: plugins/software_communities/lib/ext/category.rb:7 | |
| 357 | 357 | msgid "Economy and Finances" |
| 358 | 358 | msgstr "Economia e Finanças " |
| 359 | 359 | |
| 360 | -#: plugins/mpog_software/lib/ext/category.rb:8 | |
| 360 | +#: plugins/software_communities/lib/ext/category.rb:8 | |
| 361 | 361 | msgid "Public Administration" |
| 362 | 362 | msgstr "Administração Pública" |
| 363 | 363 | |
| 364 | -#: plugins/mpog_software/lib/ext/category.rb:9 | |
| 364 | +#: plugins/software_communities/lib/ext/category.rb:9 | |
| 365 | 365 | msgid "Habitation, Sanitation and Urbanism" |
| 366 | 366 | msgstr "Habitação, Saneamento e Urbanismo" |
| 367 | 367 | |
| 368 | -#: plugins/mpog_software/lib/ext/category.rb:10 | |
| 368 | +#: plugins/software_communities/lib/ext/category.rb:10 | |
| 369 | 369 | msgid "Individual, Family and Society" |
| 370 | 370 | msgstr "Pessoa, Família e Sociedade" |
| 371 | 371 | |
| 372 | -#: plugins/mpog_software/lib/ext/category.rb:11 | |
| 372 | +#: plugins/software_communities/lib/ext/category.rb:11 | |
| 373 | 373 | msgid "Health" |
| 374 | 374 | msgstr "Saúde" |
| 375 | 375 | |
| 376 | -#: plugins/mpog_software/lib/ext/category.rb:12 | |
| 376 | +#: plugins/software_communities/lib/ext/category.rb:12 | |
| 377 | 377 | msgid "Social Welfare and Development" |
| 378 | 378 | msgstr "Bem-estar Social e Desenvolvimento" |
| 379 | 379 | |
| 380 | -#: plugins/mpog_software/lib/ext/category.rb:13 | |
| 380 | +#: plugins/software_communities/lib/ext/category.rb:13 | |
| 381 | 381 | msgid "Defense and Security" |
| 382 | 382 | msgstr "Defesa e Segurança" |
| 383 | 383 | |
| 384 | -#: plugins/mpog_software/lib/ext/category.rb:14 | |
| 384 | +#: plugins/software_communities/lib/ext/category.rb:14 | |
| 385 | 385 | msgid "Education" |
| 386 | 386 | msgstr "Educação" |
| 387 | 387 | |
| 388 | -#: plugins/mpog_software/lib/ext/category.rb:15 | |
| 388 | +#: plugins/software_communities/lib/ext/category.rb:15 | |
| 389 | 389 | msgid "Government and Politics" |
| 390 | 390 | msgstr "Governo e Política" |
| 391 | 391 | |
| 392 | -#: plugins/mpog_software/lib/ext/category.rb:16 | |
| 392 | +#: plugins/software_communities/lib/ext/category.rb:16 | |
| 393 | 393 | msgid "Justice and Legislation" |
| 394 | 394 | msgstr "Justiça e Legislação" |
| 395 | 395 | |
| 396 | -#: plugins/mpog_software/lib/ext/category.rb:17 | |
| 396 | +#: plugins/software_communities/lib/ext/category.rb:17 | |
| 397 | 397 | msgid "International Relationships" |
| 398 | 398 | msgstr "Relações Internacionais" |
| 399 | 399 | |
| 400 | -#: plugins/mpog_software/lib/ext/search_controller.rb:15 | |
| 400 | +#: plugins/software_communities/lib/ext/search_controller.rb:15 | |
| 401 | 401 | msgid "Institution Catalog" |
| 402 | 402 | msgstr "Catálogo de Instituição" |
| 403 | 403 | |
| 404 | -#: plugins/mpog_software/lib/ext/search_controller.rb:25 | |
| 404 | +#: plugins/software_communities/lib/ext/search_controller.rb:25 | |
| 405 | 405 | msgid "Software Catalog" |
| 406 | 406 | msgstr "Catálogo de Software" |
| 407 | 407 | |
| 408 | -#: plugins/mpog_software/lib/institutions_block.rb:4 | |
| 409 | -#: plugins/mpog_software/views/person_editor_extras.html.erb:10 | |
| 408 | +#: plugins/software_communities/lib/institutions_block.rb:4 | |
| 409 | +#: plugins/software_communities/views/person_editor_extras.html.erb:10 | |
| 410 | 410 | msgid "Institutions" |
| 411 | 411 | msgstr "Instituições" |
| 412 | 412 | |
| 413 | -#: plugins/mpog_software/lib/institutions_block.rb:12 | |
| 413 | +#: plugins/software_communities/lib/institutions_block.rb:12 | |
| 414 | 414 | msgid "{#} institution" |
| 415 | 415 | msgid_plural "{#} institutions" |
| 416 | 416 | msgstr[0] "{#} intituição" |
| 417 | 417 | msgstr[1] "{#} instituições" |
| 418 | 418 | |
| 419 | -#: plugins/mpog_software/lib/institutions_block.rb:16 | |
| 419 | +#: plugins/software_communities/lib/institutions_block.rb:16 | |
| 420 | 420 | msgid "This block displays the institutions in which the user is a member." |
| 421 | 421 | msgstr "Este bloco mostra as instituições a que o usuário pertence" |
| 422 | 422 | |
| 423 | -#: plugins/mpog_software/lib/institutions_block.rb:24 | |
| 424 | -#: plugins/mpog_software/lib/institutions_block.rb:30 | |
| 423 | +#: plugins/software_communities/lib/institutions_block.rb:24 | |
| 424 | +#: plugins/software_communities/lib/institutions_block.rb:30 | |
| 425 | 425 | msgid "institutions|View all" |
| 426 | 426 | msgstr "instituições|Ver todas" |
| 427 | 427 | |
| 428 | -#: plugins/mpog_software/lib/software_database.rb:12 | |
| 428 | +#: plugins/software_communities/lib/software_database.rb:12 | |
| 429 | 429 | msgid "Software database is too long (maximum is 20 characters)" |
| 430 | 430 | msgstr "" |
| 431 | 431 | "Banco de dados do software contém mais caracteres do que o permitido (máximo " |
| 432 | 432 | "é 20 caracteres)" |
| 433 | 433 | |
| 434 | -#: plugins/mpog_software/views/box_organizer/_download_block.html.erb:2 | |
| 435 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:7 | |
| 434 | +#: plugins/software_communities/views/box_organizer/_download_block.html.erb:2 | |
| 435 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:7 | |
| 436 | 436 | msgid "Name:" |
| 437 | 437 | msgstr "Nome:" |
| 438 | 438 | |
| 439 | -#: plugins/mpog_software/views/box_organizer/_download_block.html.erb:3 | |
| 440 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:21 | |
| 439 | +#: plugins/software_communities/views/box_organizer/_download_block.html.erb:3 | |
| 440 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:21 | |
| 441 | 441 | msgid "Link:" |
| 442 | 442 | msgstr "Endereço:" |
| 443 | 443 | |
| 444 | -#: plugins/mpog_software/views/box_organizer/_download_block.html.erb:4 | |
| 444 | +#: plugins/software_communities/views/box_organizer/_download_block.html.erb:4 | |
| 445 | 445 | msgid "Software Description:" |
| 446 | 446 | msgstr "Descrição do Software" |
| 447 | 447 | |
| 448 | -#: plugins/mpog_software/views/box_organizer/_download_block.html.erb:5 | |
| 448 | +#: plugins/software_communities/views/box_organizer/_download_block.html.erb:5 | |
| 449 | 449 | msgid "Link to Version News:" |
| 450 | 450 | msgstr "Link para as Novidades da Versão:" |
| 451 | 451 | |
| 452 | -#: plugins/mpog_software/views/box_organizer/_download_block.html.erb:6 | |
| 452 | +#: plugins/software_communities/views/box_organizer/_download_block.html.erb:6 | |
| 453 | 453 | msgid "Link to Minimum Requirements:" |
| 454 | 454 | msgstr "Link para Requisitos Mínimos:" |
| 455 | 455 | |
| 456 | -#: plugins/mpog_software/views/box_organizer/_softwares_block.html.erb:2 | |
| 456 | +#: plugins/software_communities/views/box_organizer/_softwares_block.html.erb:2 | |
| 457 | 457 | msgid "Limit of items" |
| 458 | 458 | msgstr "Limite de itens" |
| 459 | 459 | |
| 460 | -#: plugins/mpog_software/views/box_organizer/_softwares_block.html.erb:3 | |
| 460 | +#: plugins/software_communities/views/box_organizer/_softwares_block.html.erb:3 | |
| 461 | 461 | msgid "Software Type:" |
| 462 | 462 | msgstr "Tipo do Software:" |
| 463 | 463 | |
| 464 | -#: plugins/mpog_software/views/person_editor_extras.html.erb:2 | |
| 464 | +#: plugins/software_communities/views/person_editor_extras.html.erb:2 | |
| 465 | 465 | msgid "Secondary e-mail" |
| 466 | 466 | msgstr "E-mail secundário" |
| 467 | 467 | |
| 468 | -#: plugins/mpog_software/views/person_editor_extras.html.erb:20 | |
| 468 | +#: plugins/software_communities/views/person_editor_extras.html.erb:20 | |
| 469 | 469 | msgid "No institution found" |
| 470 | 470 | msgstr "Nenhuma instituição encontrada" |
| 471 | 471 | |
| 472 | -#: plugins/mpog_software/views/person_editor_extras.html.erb:21 | |
| 472 | +#: plugins/software_communities/views/person_editor_extras.html.erb:21 | |
| 473 | 473 | msgid "Add new institution" |
| 474 | 474 | msgstr "Adicionar nova instituição" |
| 475 | 475 | |
| 476 | -#: plugins/mpog_software/views/person_editor_extras.html.erb:22 | |
| 476 | +#: plugins/software_communities/views/person_editor_extras.html.erb:22 | |
| 477 | 477 | msgid "Create new institution" |
| 478 | 478 | msgstr "Criar nova instituição" |
| 479 | 479 | |
| 480 | -#: plugins/mpog_software/views/person_editor_extras.html.erb:38 | |
| 480 | +#: plugins/software_communities/views/person_editor_extras.html.erb:38 | |
| 481 | 481 | msgid "Should begin with a capital letter and no special characters" |
| 482 | 482 | msgstr "Deve começar com uma letra maiúscula e sem caracteres especiais" |
| 483 | 483 | |
| 484 | -#: plugins/mpog_software/views/person_editor_extras.html.erb:39 | |
| 484 | +#: plugins/software_communities/views/person_editor_extras.html.erb:39 | |
| 485 | 485 | msgid "Email should have the following format: name@host.br" |
| 486 | 486 | msgstr "Email deve ter o seguinte formato: nome@host.br" |
| 487 | 487 | |
| 488 | -#: plugins/mpog_software/views/person_editor_extras.html.erb:40 | |
| 488 | +#: plugins/software_communities/views/person_editor_extras.html.erb:40 | |
| 489 | 489 | msgid "Site should have a valid format: http://name.hosts" |
| 490 | 490 | msgstr "Site deve ter um formato válido: http: //name.hosts" |
| 491 | 491 | |
| 492 | -#: plugins/mpog_software/views/person_editor_extras.html.erb:41 | |
| 492 | +#: plugins/software_communities/views/person_editor_extras.html.erb:41 | |
| 493 | 493 | msgid "If you work in a public agency use your government e-Mail" |
| 494 | 494 | msgstr "" |
| 495 | 495 | "Se você trabalhar em uma agência pública utilize o seu e-mail governamental" |
| 496 | 496 | |
| 497 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:3 | |
| 497 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:3 | |
| 498 | 498 | msgid "Institution Information" |
| 499 | 499 | msgstr "Informação da Instituição" |
| 500 | 500 | |
| 501 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:6 | |
| 501 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:6 | |
| 502 | 502 | msgid "Type:" |
| 503 | 503 | msgstr "Tipo:" |
| 504 | 504 | |
| 505 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:7 | |
| 505 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:7 | |
| 506 | 506 | msgid "CNPJ:" |
| 507 | 507 | msgstr "CNPJ:" |
| 508 | 508 | |
| 509 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:8 | |
| 509 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:8 | |
| 510 | 510 | msgid "Last modification:" |
| 511 | 511 | msgstr "Última Modificação" |
| 512 | 512 | |
| 513 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:9 | |
| 513 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:9 | |
| 514 | 514 | msgid "Country:" |
| 515 | 515 | msgstr "País:" |
| 516 | 516 | |
| 517 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:10 | |
| 517 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:10 | |
| 518 | 518 | msgid "State:" |
| 519 | 519 | msgstr "Estado:" |
| 520 | 520 | |
| 521 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:11 | |
| 521 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:11 | |
| 522 | 522 | msgid "City:" |
| 523 | 523 | msgstr "Cidade:" |
| 524 | 524 | |
| 525 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:13 | |
| 525 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:13 | |
| 526 | 526 | msgid "Fantasy Name:" |
| 527 | 527 | msgstr "Nome Fantasia:" |
| 528 | 528 | |
| 529 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:15 | |
| 530 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:15 | |
| 529 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:15 | |
| 530 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:15 | |
| 531 | 531 | msgid "Acronym:" |
| 532 | 532 | msgstr "Sigla:" |
| 533 | 533 | |
| 534 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:16 | |
| 535 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:90 | |
| 536 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:90 | |
| 534 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:16 | |
| 535 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:90 | |
| 536 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:90 | |
| 537 | 537 | msgid "Governmental Power:" |
| 538 | 538 | msgstr "Poder Governamental" |
| 539 | 539 | |
| 540 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:17 | |
| 541 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:83 | |
| 542 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:83 | |
| 540 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:17 | |
| 541 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:83 | |
| 542 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:83 | |
| 543 | 543 | msgid "Governmental Sphere:" |
| 544 | 544 | msgstr "Esfera Governamental:" |
| 545 | 545 | |
| 546 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:18 | |
| 547 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:96 | |
| 548 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:96 | |
| 546 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:18 | |
| 547 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:96 | |
| 548 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:96 | |
| 549 | 549 | msgid "Juridical Nature:" |
| 550 | 550 | msgstr "Natureza Jurídica:" |
| 551 | 551 | |
| 552 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:19 | |
| 552 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:19 | |
| 553 | 553 | msgid "SISP:" |
| 554 | 554 | msgstr "SISP:" |
| 555 | 555 | |
| 556 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:19 | |
| 557 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:8 | |
| 558 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:9 | |
| 559 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:10 | |
| 560 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:11 | |
| 561 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:12 | |
| 562 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:105 | |
| 563 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:105 | |
| 556 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:19 | |
| 557 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:8 | |
| 558 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:9 | |
| 559 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:10 | |
| 560 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:11 | |
| 561 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:12 | |
| 562 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:105 | |
| 563 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:105 | |
| 564 | 564 | msgid "Yes" |
| 565 | 565 | msgstr "Sim" |
| 566 | 566 | |
| 567 | -#: plugins/mpog_software/views/profile/_institution_tab.html.erb:19 | |
| 568 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:8 | |
| 569 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:9 | |
| 570 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:10 | |
| 571 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:11 | |
| 572 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:12 | |
| 573 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:107 | |
| 574 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:110 | |
| 575 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:107 | |
| 576 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:110 | |
| 567 | +#: plugins/software_communities/views/profile/_institution_tab.html.erb:19 | |
| 568 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:8 | |
| 569 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:9 | |
| 570 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:10 | |
| 571 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:11 | |
| 572 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:12 | |
| 573 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:107 | |
| 574 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:110 | |
| 575 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:107 | |
| 576 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:110 | |
| 577 | 577 | msgid "No" |
| 578 | 578 | msgstr "Não" |
| 579 | 579 | |
| 580 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:4 | |
| 581 | -#: plugins/mpog_software/views/_main_software_editor_extras.html.erb:1 | |
| 580 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:4 | |
| 581 | +#: plugins/software_communities/views/_main_software_editor_extras.html.erb:1 | |
| 582 | 582 | msgid "Software Information" |
| 583 | 583 | msgstr "Informação do Software" |
| 584 | 584 | |
| 585 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:8 | |
| 585 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:8 | |
| 586 | 586 | msgid "Adherent to e_mag:" |
| 587 | 587 | msgstr "Aderente ao e-Mag:" |
| 588 | 588 | |
| 589 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:9 | |
| 589 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:9 | |
| 590 | 590 | msgid "Adherent to icp_brasil:" |
| 591 | 591 | msgstr "Adherent ao ICP-Brasil:" |
| 592 | 592 | |
| 593 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:10 | |
| 593 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:10 | |
| 594 | 594 | msgid "Adherent to e_ping:" |
| 595 | 595 | msgstr "Aderente ao e-Ping:" |
| 596 | 596 | |
| 597 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:11 | |
| 597 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:11 | |
| 598 | 598 | msgid "Adherent to e_arq:" |
| 599 | 599 | msgstr "Aderente ao e-Arq:" |
| 600 | 600 | |
| 601 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:12 | |
| 601 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:12 | |
| 602 | 602 | msgid "Internacionalizable:" |
| 603 | 603 | msgstr "Internacionalizável:" |
| 604 | 604 | |
| 605 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:13 | |
| 605 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:13 | |
| 606 | 606 | msgid "Operating Platform:" |
| 607 | 607 | msgstr "Plataforma Operacional:" |
| 608 | 608 | |
| 609 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:14 | |
| 609 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:14 | |
| 610 | 610 | msgid "Demonstration URL:" |
| 611 | 611 | msgstr "URL de demonstração:" |
| 612 | 612 | |
| 613 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:16 | |
| 613 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:16 | |
| 614 | 614 | msgid "Objectives:" |
| 615 | 615 | msgstr "Objetivos:" |
| 616 | 616 | |
| 617 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:17 | |
| 617 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:17 | |
| 618 | 618 | msgid "Features:" |
| 619 | 619 | msgstr "Características:" |
| 620 | 620 | |
| 621 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:20 | |
| 621 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:20 | |
| 622 | 622 | msgid "Version:" |
| 623 | 623 | msgstr "Versão:" |
| 624 | 624 | |
| 625 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:26 | |
| 625 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:26 | |
| 626 | 626 | msgid "Show Libraries" |
| 627 | 627 | msgstr "Mostrar Bibliotecas" |
| 628 | 628 | |
| 629 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:27 | |
| 629 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:27 | |
| 630 | 630 | msgid "Hide Libraries" |
| 631 | 631 | msgstr "Esconder Bibliotecas" |
| 632 | 632 | |
| 633 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:36 | |
| 634 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:14 | |
| 633 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:36 | |
| 634 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:14 | |
| 635 | 635 | msgid "Libraries" |
| 636 | 636 | msgstr "Bibliotecas" |
| 637 | 637 | |
| 638 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:54 | |
| 638 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:54 | |
| 639 | 639 | msgid "Show Database" |
| 640 | 640 | msgstr "Mostrar Banco de Dados" |
| 641 | 641 | |
| 642 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:55 | |
| 642 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:55 | |
| 643 | 643 | msgid "Hide Database" |
| 644 | 644 | msgstr "Esconder Banco de Dados" |
| 645 | 645 | |
| 646 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:64 | |
| 646 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:64 | |
| 647 | 647 | msgid "Software Databases" |
| 648 | 648 | msgstr "Banco de Dados" |
| 649 | 649 | |
| 650 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:82 | |
| 650 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:82 | |
| 651 | 651 | msgid "Show Languages" |
| 652 | 652 | msgstr "Mostrar Linguagens" |
| 653 | 653 | |
| 654 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:83 | |
| 654 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:83 | |
| 655 | 655 | msgid "Hide Languages" |
| 656 | 656 | msgstr "Esconder Linguagens" |
| 657 | 657 | |
| 658 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:92 | |
| 658 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:92 | |
| 659 | 659 | msgid "Software Languages" |
| 660 | 660 | msgstr "Linguagens de Software" |
| 661 | 661 | |
| 662 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:110 | |
| 662 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:110 | |
| 663 | 663 | msgid "Show Operating Systems" |
| 664 | 664 | msgstr "Mostrar Sistemas Operacionais" |
| 665 | 665 | |
| 666 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:111 | |
| 666 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:111 | |
| 667 | 667 | msgid "Hide Operating Systems" |
| 668 | 668 | msgstr "Esconder Sistemas Operacionais" |
| 669 | 669 | |
| 670 | -#: plugins/mpog_software/views/profile/_software_tab.html.erb:121 | |
| 670 | +#: plugins/software_communities/views/profile/_software_tab.html.erb:121 | |
| 671 | 671 | msgid "Operating System" |
| 672 | 672 | msgstr "Sistema Operacional" |
| 673 | 673 | |
| 674 | -#: plugins/mpog_software/views/_main_software_editor_extras.html.erb:10 | |
| 675 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_main_software_editor_extras.html.erb:8 | |
| 676 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/new_software.html.erb:40 | |
| 677 | -#: plugins/mpog_software/views/search/_full_community.html.erb:21 | |
| 674 | +#: plugins/software_communities/views/_main_software_editor_extras.html.erb:10 | |
| 675 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_main_software_editor_extras.html.erb:8 | |
| 676 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/new_software.html.erb:40 | |
| 677 | +#: plugins/software_communities/views/search/_full_community.html.erb:21 | |
| 678 | 678 | msgid "Finality" |
| 679 | 679 | msgstr "Finalidade" |
| 680 | 680 | |
| 681 | -#: plugins/mpog_software/views/_main_software_editor_extras.html.erb:15 | |
| 682 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_main_software_editor_extras.html.erb:13 | |
| 681 | +#: plugins/software_communities/views/_main_software_editor_extras.html.erb:15 | |
| 682 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_main_software_editor_extras.html.erb:13 | |
| 683 | 683 | msgid "Licenses" |
| 684 | 684 | msgstr "Licenças" |
| 685 | 685 | |
| 686 | -#: plugins/mpog_software/views/_main_software_editor_extras.html.erb:20 | |
| 687 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_main_software_editor_extras.html.erb:18 | |
| 688 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/new_software.html.erb:50 | |
| 686 | +#: plugins/software_communities/views/_main_software_editor_extras.html.erb:20 | |
| 687 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_main_software_editor_extras.html.erb:18 | |
| 688 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/new_software.html.erb:50 | |
| 689 | 689 | msgid "License link" |
| 690 | 690 | msgstr "Endereço da licença" |
| 691 | 691 | |
| 692 | -#: plugins/mpog_software/views/_main_software_editor_extras.html.erb:29 | |
| 693 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/new_software.html.erb:62 | |
| 692 | +#: plugins/software_communities/views/_main_software_editor_extras.html.erb:29 | |
| 693 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/new_software.html.erb:62 | |
| 694 | 694 | msgid "Link to Repository: " |
| 695 | 695 | msgstr "Link pro Repositório: " |
| 696 | 696 | |
| 697 | -#: plugins/mpog_software/views/incomplete_registration.html.erb:3 | |
| 697 | +#: plugins/software_communities/views/incomplete_registration.html.erb:3 | |
| 698 | 698 | msgid "Complete Profile" |
| 699 | 699 | msgstr "Complete o Perfil" |
| 700 | 700 | |
| 701 | -#: plugins/mpog_software/views/incomplete_registration.html.erb:6 | |
| 701 | +#: plugins/software_communities/views/incomplete_registration.html.erb:6 | |
| 702 | 702 | msgid "Complete your profile" |
| 703 | 703 | msgstr "Complete o seu perfil" |
| 704 | 704 | |
| 705 | -#: plugins/mpog_software/views/incomplete_registration.html.erb:7 | |
| 705 | +#: plugins/software_communities/views/incomplete_registration.html.erb:7 | |
| 706 | 706 | msgid "Hide" |
| 707 | 707 | msgstr "Esconder" |
| 708 | 708 | |
| 709 | -#: plugins/mpog_software/views/blocks/repository.html.erb:2 | |
| 710 | -#: plugins/mpog_software/views/blocks/download.html.erb:2 | |
| 711 | -#: plugins/mpog_software/views/blocks/software_information.html.erb:4 | |
| 709 | +#: plugins/software_communities/views/blocks/repository.html.erb:2 | |
| 710 | +#: plugins/software_communities/views/blocks/download.html.erb:2 | |
| 711 | +#: plugins/software_communities/views/blocks/software_information.html.erb:4 | |
| 712 | 712 | msgid "This community needs a software to use this block" |
| 713 | 713 | msgstr "Esta comunidade precisa de um software para utilizar este bloco" |
| 714 | 714 | |
| 715 | -#: plugins/mpog_software/views/blocks/repository.html.erb:4 | |
| 715 | +#: plugins/software_communities/views/blocks/repository.html.erb:4 | |
| 716 | 716 | msgid "Repository" |
| 717 | 717 | msgstr "Repositório" |
| 718 | 718 | |
| 719 | -#: plugins/mpog_software/views/blocks/search_catalog.html.erb:2 | |
| 719 | +#: plugins/software_communities/views/blocks/search_catalog.html.erb:2 | |
| 720 | 720 | msgid "Catalog of Public Software" |
| 721 | 721 | msgstr "Software Público" |
| 722 | 722 | |
| 723 | -#: plugins/mpog_software/views/blocks/search_catalog.html.erb:5 | |
| 723 | +#: plugins/software_communities/views/blocks/search_catalog.html.erb:5 | |
| 724 | 724 | msgid "Search" |
| 725 | 725 | msgstr "Pesquisar" |
| 726 | 726 | |
| 727 | -#: plugins/mpog_software/views/blocks/search_catalog.html.erb:9 | |
| 728 | -#: plugins/mpog_software/views/blocks/categories_software.html.erb:24 | |
| 727 | +#: plugins/software_communities/views/blocks/search_catalog.html.erb:9 | |
| 728 | +#: plugins/software_communities/views/blocks/categories_software.html.erb:24 | |
| 729 | 729 | msgid "Access the complete catalog" |
| 730 | 730 | msgstr "Acesse o catálogo completo" |
| 731 | 731 | |
| 732 | -#: plugins/mpog_software/views/blocks/download.html.erb:6 | |
| 732 | +#: plugins/software_communities/views/blocks/download.html.erb:6 | |
| 733 | 733 | msgid "Download" |
| 734 | 734 | msgstr "Baixar" |
| 735 | 735 | |
| 736 | -#: plugins/mpog_software/views/blocks/download.html.erb:19 | |
| 736 | +#: plugins/software_communities/views/blocks/download.html.erb:19 | |
| 737 | 737 | msgid "Minimal Requirements" |
| 738 | 738 | msgstr "Requisitos Mínimos" |
| 739 | 739 | |
| 740 | -#: plugins/mpog_software/views/blocks/download.html.erb:23 | |
| 740 | +#: plugins/software_communities/views/blocks/download.html.erb:23 | |
| 741 | 741 | msgid "Version News" |
| 742 | 742 | msgstr "Novidades da Versão" |
| 743 | 743 | |
| 744 | -#: plugins/mpog_software/views/blocks/download.html.erb:27 | |
| 744 | +#: plugins/software_communities/views/blocks/download.html.erb:27 | |
| 745 | 745 | msgid "Licensed by" |
| 746 | 746 | msgstr "Licenciado por " |
| 747 | 747 | |
| 748 | -#: plugins/mpog_software/views/blocks/categories_software.html.erb:14 | |
| 748 | +#: plugins/software_communities/views/blocks/categories_software.html.erb:14 | |
| 749 | 749 | msgid "Categories:" |
| 750 | 750 | msgstr "Categorias:" |
| 751 | 751 | |
| 752 | -#: plugins/mpog_software/views/blocks/categories_software.html.erb:18 | |
| 752 | +#: plugins/software_communities/views/blocks/categories_software.html.erb:18 | |
| 753 | 753 | msgid "\"#{category.name}\"" |
| 754 | 754 | msgstr "\"#{category.name}\"" |
| 755 | 755 | |
| 756 | -#: plugins/mpog_software/views/blocks/categories_and_tags.html.erb:2 | |
| 756 | +#: plugins/software_communities/views/blocks/categories_and_tags.html.erb:2 | |
| 757 | 757 | msgid "Categories" |
| 758 | 758 | msgstr "Categorias" |
| 759 | 759 | |
| 760 | -#: plugins/mpog_software/views/blocks/categories_and_tags.html.erb:12 | |
| 760 | +#: plugins/software_communities/views/blocks/categories_and_tags.html.erb:12 | |
| 761 | 761 | msgid "Tags" |
| 762 | 762 | msgstr "Tags" |
| 763 | 763 | |
| 764 | -#: plugins/mpog_software/views/blocks/main_area_softwares.html.erb:22 | |
| 764 | +#: plugins/software_communities/views/blocks/main_area_softwares.html.erb:22 | |
| 765 | 765 | msgid "See More" |
| 766 | 766 | msgstr "Veja Mais" |
| 767 | 767 | |
| 768 | -#: plugins/mpog_software/views/blocks/software_information.html.erb:16 | |
| 768 | +#: plugins/software_communities/views/blocks/software_information.html.erb:16 | |
| 769 | 769 | msgid "Control panel" |
| 770 | 770 | msgstr "Painel de controle" |
| 771 | 771 | |
| 772 | -#: plugins/mpog_software/views/blocks/software_information.html.erb:24 | |
| 772 | +#: plugins/software_communities/views/blocks/software_information.html.erb:24 | |
| 773 | 773 | msgid "\"#{block.owner.software_info.acronym} - \"" |
| 774 | 774 | msgstr "\"#{block.owner.software_info.acronym} - \"" |
| 775 | 775 | |
| 776 | -#: plugins/mpog_software/views/blocks/software_information.html.erb:25 | |
| 776 | +#: plugins/software_communities/views/blocks/software_information.html.erb:25 | |
| 777 | 777 | msgid "\"#{block.owner.name}\"" |
| 778 | 778 | msgstr "\"#{block.owner.name}\"" |
| 779 | 779 | |
| 780 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:1 | |
| 780 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:1 | |
| 781 | 781 | msgid "Edit software" |
| 782 | 782 | msgstr "Editar software" |
| 783 | 783 | |
| 784 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:4 | |
| 784 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:4 | |
| 785 | 785 | msgid "Operating Platform" |
| 786 | 786 | msgstr "Plataforma Operacional" |
| 787 | 787 | |
| 788 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:9 | |
| 788 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:9 | |
| 789 | 789 | msgid "Features" |
| 790 | 790 | msgstr "Características" |
| 791 | 791 | |
| 792 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:21 | |
| 792 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:21 | |
| 793 | 793 | msgid "Operating Systems" |
| 794 | 794 | msgstr "Sistemas Operacionais" |
| 795 | 795 | |
| 796 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:29 | |
| 796 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:29 | |
| 797 | 797 | msgid "Programming languages" |
| 798 | 798 | msgstr "Linguagens de Programação" |
| 799 | 799 | |
| 800 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:36 | |
| 800 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:36 | |
| 801 | 801 | msgid "Databases" |
| 802 | 802 | msgstr "Bancos de Dados" |
| 803 | 803 | |
| 804 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:42 | |
| 804 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:42 | |
| 805 | 805 | msgid "Demonstration url" |
| 806 | 806 | msgstr "Url de demonstração" |
| 807 | 807 | |
| 808 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:51 | |
| 809 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:54 | |
| 810 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:57 | |
| 808 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:51 | |
| 809 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:54 | |
| 810 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:57 | |
| 811 | 811 | msgid "Public Software" |
| 812 | 812 | msgstr "Software Público" |
| 813 | 813 | |
| 814 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:51 | |
| 815 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:54 | |
| 814 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:51 | |
| 815 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:54 | |
| 816 | 816 | msgid "Public software" |
| 817 | 817 | msgstr "Software público" |
| 818 | 818 | |
| 819 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:59 | |
| 819 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:59 | |
| 820 | 820 | msgid "Adherent to e-PING ?" |
| 821 | 821 | msgstr "Aderente ao e-PING ?" |
| 822 | 822 | |
| 823 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:68 | |
| 823 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:68 | |
| 824 | 824 | msgid "Adherent to e-MAG ?" |
| 825 | 825 | msgstr "Aderente ao e-MAG ?" |
| 826 | 826 | |
| 827 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:77 | |
| 827 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:77 | |
| 828 | 828 | msgid "Adherent to ICP-Brasil ?" |
| 829 | 829 | msgstr "Aderente ao ICP-Brasil?" |
| 830 | 830 | |
| 831 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:86 | |
| 831 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:86 | |
| 832 | 832 | msgid "Adherent to e-ARQ ?" |
| 833 | 833 | msgstr "Aderente ao e-ARQ?" |
| 834 | 834 | |
| 835 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_public_software_info.html.erb:95 | |
| 835 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_public_software_info.html.erb:95 | |
| 836 | 836 | msgid "Internacionalizable ?" |
| 837 | 837 | msgstr "Internacionalizável?" |
| 838 | 838 | |
| 839 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_main_software_editor_extras.html.erb:1 | |
| 839 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_main_software_editor_extras.html.erb:1 | |
| 840 | 840 | msgid " Information" |
| 841 | 841 | msgstr " Informação" |
| 842 | 842 | |
| 843 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_main_software_editor_extras.html.erb:3 | |
| 844 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:74 | |
| 845 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:76 | |
| 846 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:74 | |
| 847 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:76 | |
| 843 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_main_software_editor_extras.html.erb:3 | |
| 844 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:74 | |
| 845 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:76 | |
| 846 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:74 | |
| 847 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:76 | |
| 848 | 848 | msgid "Acronym" |
| 849 | 849 | msgstr "Sigla" |
| 850 | 850 | |
| 851 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_main_software_editor_extras.html.erb:10 | |
| 852 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/new_software.html.erb:41 | |
| 851 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_main_software_editor_extras.html.erb:10 | |
| 852 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/new_software.html.erb:41 | |
| 853 | 853 | msgid "It is a software of..." |
| 854 | 854 | msgstr "É um software de ..." |
| 855 | 855 | |
| 856 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_main_software_editor_extras.html.erb:26 | |
| 856 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_main_software_editor_extras.html.erb:26 | |
| 857 | 857 | msgid "Link to Repository" |
| 858 | 858 | msgstr "Link pro Repositório" |
| 859 | 859 | |
| 860 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_operating_system_fields.html.erb:11 | |
| 860 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_operating_system_fields.html.erb:11 | |
| 861 | 861 | msgid "New Operating System" |
| 862 | 862 | msgstr "Novo Sistema Operacional" |
| 863 | 863 | |
| 864 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_software.html.erb:10 | |
| 864 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_software.html.erb:10 | |
| 865 | 865 | msgid "Specifications" |
| 866 | 866 | msgstr "Especificações" |
| 867 | 867 | |
| 868 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_software.html.erb:16 | |
| 869 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:116 | |
| 870 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:117 | |
| 871 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:120 | |
| 868 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_software.html.erb:16 | |
| 869 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:116 | |
| 870 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:117 | |
| 871 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:120 | |
| 872 | 872 | msgid "Save" |
| 873 | 873 | msgstr "Salvar" |
| 874 | 874 | |
| 875 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_software.html.erb:18 | |
| 875 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_software.html.erb:18 | |
| 876 | 876 | msgid "Back to control panel" |
| 877 | 877 | msgstr "Voltar para o painel de controle" |
| 878 | 878 | |
| 879 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_library_fields.html.erb:11 | |
| 879 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_library_fields.html.erb:11 | |
| 880 | 880 | msgid "New Library" |
| 881 | 881 | msgstr "Nova Biblioteca" |
| 882 | 882 | |
| 883 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_database_fields.html.erb:11 | |
| 883 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_database_fields.html.erb:11 | |
| 884 | 884 | msgid "New Database" |
| 885 | 885 | msgstr "Novo Banco de Dados" |
| 886 | 886 | |
| 887 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/_language_fields.html.erb:11 | |
| 887 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/_language_fields.html.erb:11 | |
| 888 | 888 | msgid "New language" |
| 889 | 889 | msgstr "Nova linguagem" |
| 890 | 890 | |
| 891 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/new_software.html.erb:4 | |
| 891 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/new_software.html.erb:4 | |
| 892 | 892 | msgid "Step 1/2 - Software Creation" |
| 893 | 893 | msgstr "Passo 1/2 - Criação de Software" |
| 894 | 894 | |
| 895 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/new_software.html.erb:7 | |
| 895 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/new_software.html.erb:7 | |
| 896 | 896 | msgid "Creating new software" |
| 897 | 897 | msgstr "Criando novo software" |
| 898 | 898 | |
| 899 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/new_software.html.erb:11 | |
| 900 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:5 | |
| 901 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:5 | |
| 899 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/new_software.html.erb:11 | |
| 900 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:5 | |
| 901 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:5 | |
| 902 | 902 | msgid "" |
| 903 | 903 | "Note that the creation of communities in this environment is restricted. " |
| 904 | 904 | "Your request to create this new community will be sent to %{environment} " |
| ... | ... | @@ -910,139 +910,139 @@ msgstr "" |
| 910 | 910 | "administradores do %{environment} e será aprovada ou rejeitada de acordo com " |
| 911 | 911 | "seus métodos e critérios. " |
| 912 | 912 | |
| 913 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/new_software.html.erb:17 | |
| 913 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/new_software.html.erb:17 | |
| 914 | 914 | msgid "\"Can`t create new software: #{@errors.length} errors\"" |
| 915 | 915 | msgstr "\"Não é possível criar um novo software: #{@errors.length} erros\"" |
| 916 | 916 | |
| 917 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/new_software.html.erb:47 | |
| 917 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/new_software.html.erb:47 | |
| 918 | 918 | msgid "License Version: " |
| 919 | 919 | msgstr "Versão da Licença: " |
| 920 | 920 | |
| 921 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/new_software.html.erb:70 | |
| 921 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/new_software.html.erb:70 | |
| 922 | 922 | msgid "Create" |
| 923 | 923 | msgstr "Criar" |
| 924 | 924 | |
| 925 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/new_software.html.erb:71 | |
| 925 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/new_software.html.erb:71 | |
| 926 | 926 | msgid "Cancel" |
| 927 | 927 | msgstr "Cancelar" |
| 928 | 928 | |
| 929 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:1 | |
| 929 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:1 | |
| 930 | 930 | msgid "Edit Institution" |
| 931 | 931 | msgstr "Editar Instituição" |
| 932 | 932 | |
| 933 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:11 | |
| 934 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:11 | |
| 933 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:11 | |
| 934 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:11 | |
| 935 | 935 | msgid "\"Can`t create new Institution: #{flash[:errors].length} errors\"" |
| 936 | 936 | msgstr "" |
| 937 | 937 | "\"Não é possível criar nova Instituição: #{flash[: errors].length} erros\"" |
| 938 | 938 | |
| 939 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:24 | |
| 940 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:24 | |
| 939 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:24 | |
| 940 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:24 | |
| 941 | 941 | msgid "All fields with (*) are mandatory" |
| 942 | 942 | msgstr "Todos os campos com (*) são obrigatórios" |
| 943 | 943 | |
| 944 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:32 | |
| 945 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:32 | |
| 944 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:32 | |
| 945 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:32 | |
| 946 | 946 | msgid "Public Institution" |
| 947 | 947 | msgstr "Instituição Pública" |
| 948 | 948 | |
| 949 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:37 | |
| 950 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:37 | |
| 949 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:37 | |
| 950 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:37 | |
| 951 | 951 | msgid "Private Institution" |
| 952 | 952 | msgstr "Instituição Privada" |
| 953 | 953 | |
| 954 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:44 | |
| 955 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:44 | |
| 954 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:44 | |
| 955 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:44 | |
| 956 | 956 | msgid "Institution name already exists" |
| 957 | 957 | msgstr "Nome da instituição já existe" |
| 958 | 958 | |
| 959 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:48 | |
| 960 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:48 | |
| 959 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:48 | |
| 960 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:48 | |
| 961 | 961 | msgid "Corporate Name" |
| 962 | 962 | msgstr "Razão Social" |
| 963 | 963 | |
| 964 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:53 | |
| 965 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:53 | |
| 964 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:53 | |
| 965 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:53 | |
| 966 | 966 | msgid "Country" |
| 967 | 967 | msgstr "País" |
| 968 | 968 | |
| 969 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:57 | |
| 970 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:57 | |
| 969 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:57 | |
| 970 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:57 | |
| 971 | 971 | msgid "State" |
| 972 | 972 | msgstr "Estado" |
| 973 | 973 | |
| 974 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:67 | |
| 975 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:67 | |
| 974 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:67 | |
| 975 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:67 | |
| 976 | 976 | msgid "CNPJ" |
| 977 | 977 | msgstr "CNPJ" |
| 978 | 978 | |
| 979 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:75 | |
| 980 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:75 | |
| 979 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:75 | |
| 980 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:75 | |
| 981 | 981 | msgid "Fantasy name" |
| 982 | 982 | msgstr "Nome Fantasia" |
| 983 | 983 | |
| 984 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:84 | |
| 985 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:84 | |
| 984 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:84 | |
| 985 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:84 | |
| 986 | 986 | msgid "Select a Governmental Sphere" |
| 987 | 987 | msgstr "Selecione uma Esfera Governamental" |
| 988 | 988 | |
| 989 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:91 | |
| 990 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:91 | |
| 989 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:91 | |
| 990 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:91 | |
| 991 | 991 | msgid "Select a Governmental Power" |
| 992 | 992 | msgstr "Selecione um Poder Governamental" |
| 993 | 993 | |
| 994 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:97 | |
| 995 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:97 | |
| 994 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:97 | |
| 995 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:97 | |
| 996 | 996 | msgid "Select a Juridical Nature" |
| 997 | 997 | msgstr "Selecione uma Natureza Jurídica" |
| 998 | 998 | |
| 999 | -#: plugins/mpog_software/views/mpog_software_plugin_myprofile/edit_institution.html.erb:103 | |
| 1000 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:103 | |
| 999 | +#: plugins/software_communities/views/software_communities_plugin_myprofile/edit_institution.html.erb:103 | |
| 1000 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:103 | |
| 1001 | 1001 | msgid "SISP?" |
| 1002 | 1002 | msgstr "SISP?" |
| 1003 | 1003 | |
| 1004 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:1 | |
| 1004 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:1 | |
| 1005 | 1005 | msgid "New Institution" |
| 1006 | 1006 | msgstr "Nova Instituição" |
| 1007 | 1007 | |
| 1008 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:122 | |
| 1008 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:122 | |
| 1009 | 1009 | msgid "Could not send the form data to the server" |
| 1010 | 1010 | msgstr "Não foi possível enviar os dados do formulário para o servidor" |
| 1011 | 1011 | |
| 1012 | -#: plugins/mpog_software/views/mpog_software_plugin/_institution.html.erb:129 | |
| 1012 | +#: plugins/software_communities/views/software_communities_plugin/_institution.html.erb:129 | |
| 1013 | 1013 | msgid "Creating institution" |
| 1014 | 1014 | msgstr "Criando Instituição" |
| 1015 | 1015 | |
| 1016 | -#: plugins/mpog_software/views/search/_catalog_filter.html.erb:15 | |
| 1016 | +#: plugins/software_communities/views/search/_catalog_filter.html.erb:15 | |
| 1017 | 1017 | msgid "Categories filter" |
| 1018 | 1018 | msgstr "Filtro de Categorias" |
| 1019 | 1019 | |
| 1020 | -#: plugins/mpog_software/views/search/_catalog_filter.html.erb:16 | |
| 1020 | +#: plugins/software_communities/views/search/_catalog_filter.html.erb:16 | |
| 1021 | 1021 | msgid "Type a category name here" |
| 1022 | 1022 | msgstr "Escreva uma categoria aqui" |
| 1023 | 1023 | |
| 1024 | -#: plugins/mpog_software/views/search/_full_community.html.erb:30 | |
| 1024 | +#: plugins/software_communities/views/search/_full_community.html.erb:30 | |
| 1025 | 1025 | msgid "Software licence" |
| 1026 | 1026 | msgstr "Licença do Software" |
| 1027 | 1027 | |
| 1028 | -#: plugins/mpog_software/views/search/_full_community.html.erb:39 | |
| 1028 | +#: plugins/software_communities/views/search/_full_community.html.erb:39 | |
| 1029 | 1029 | msgid "Link software repository" |
| 1030 | 1030 | msgstr "Link pro Repositório" |
| 1031 | 1031 | |
| 1032 | -#: plugins/mpog_software/views/search/_full_community.html.erb:48 | |
| 1032 | +#: plugins/software_communities/views/search/_full_community.html.erb:48 | |
| 1033 | 1033 | msgid "Software Categories" |
| 1034 | 1034 | msgstr "Categorias de Software" |
| 1035 | 1035 | |
| 1036 | -#: plugins/mpog_software/views/search/_full_community.html.erb:62 | |
| 1036 | +#: plugins/software_communities/views/search/_full_community.html.erb:62 | |
| 1037 | 1037 | msgid "This software doesn't have categories" |
| 1038 | 1038 | msgstr "Este software não tem categorias" |
| 1039 | 1039 | |
| 1040 | -#: plugins/mpog_software/views/search/software_infos.html.erb:3 | |
| 1041 | -#: plugins/mpog_software/views/search/institutions.html.erb:3 | |
| 1040 | +#: plugins/software_communities/views/search/software_infos.html.erb:3 | |
| 1041 | +#: plugins/software_communities/views/search/institutions.html.erb:3 | |
| 1042 | 1042 | msgid "Type words about the %s you're looking for" |
| 1043 | 1043 | msgstr "Escreva palavras sobre o software que você está procurando" |
| 1044 | 1044 | |
| 1045 | -#: plugins/mpog_software/views/first_edit_software_community_extras.html.erb:2 | |
| 1045 | +#: plugins/software_communities/views/first_edit_software_community_extras.html.erb:2 | |
| 1046 | 1046 | msgid "Step 2/2 - Software Community Configuration" |
| 1047 | 1047 | msgstr "Passo 2/2 - Configuração da Comunidade do Software" |
| 1048 | 1048 | ... | ... |
public/mpog-incomplete-registration.js
public/mpog-institution-validations.js
| 1 | 1 | (function(){ |
| 2 | 2 | var AJAX_URL = { |
| 3 | 3 | create_institution_modal: |
| 4 | - url_with_subdirectory("/plugin/mpog_software/create_institution"), | |
| 4 | + url_with_subdirectory("/plugin/software_communities/create_institution"), | |
| 5 | 5 | new_institution: |
| 6 | - url_with_subdirectory("/plugin/mpog_software/new_institution"), | |
| 6 | + url_with_subdirectory("/plugin/software_communities/new_institution"), | |
| 7 | 7 | institution_already_exists: |
| 8 | - url_with_subdirectory("/plugin/mpog_software/institution_already_exists"), | |
| 8 | + url_with_subdirectory("/plugin/software_communities/institution_already_exists"), | |
| 9 | 9 | get_institutions: |
| 10 | - url_with_subdirectory("/plugin/mpog_software/get_institutions") | |
| 10 | + url_with_subdirectory("/plugin/software_communities/get_institutions") | |
| 11 | 11 | }; |
| 12 | 12 | |
| 13 | 13 | ... | ... |
public/mpog-software-validations.js
| 1 | 1 | (function($){ |
| 2 | 2 | var AJAX_URL = { |
| 3 | 3 | get_field_data: |
| 4 | - url_with_subdirectory("/plugin/mpog_software/get_field_data"), | |
| 4 | + url_with_subdirectory("/plugin/software_communities/get_field_data"), | |
| 5 | 5 | get_license_data: |
| 6 | - url_with_subdirectory("/plugin/mpog_software/get_license_data") | |
| 6 | + url_with_subdirectory("/plugin/software_communities/get_license_data") | |
| 7 | 7 | }; |
| 8 | 8 | |
| 9 | 9 | ... | ... |
public/mpog-user-validations.js
| 1 | 1 | (function(){ |
| 2 | 2 | var AJAX_URL = { |
| 3 | 3 | check_reactivate_account: |
| 4 | - url_with_subdirectory("/plugin/mpog_software/check_reactivate_account") | |
| 4 | + url_with_subdirectory("/plugin/software_communities/check_reactivate_account") | |
| 5 | 5 | }; |
| 6 | 6 | |
| 7 | 7 | |
| ... | ... | @@ -290,7 +290,7 @@ |
| 290 | 290 | jQuery(document).ready(function(){ |
| 291 | 291 | change_edit_fields_order(); // To change the fields order, it MUST be the first function executed |
| 292 | 292 | |
| 293 | - var selectFieldChoices = new SelectFieldChoices("#state_field", "#city_field", "/plugin/mpog_software/get_brazil_states"); | |
| 293 | + var selectFieldChoices = new SelectFieldChoices("#state_field", "#city_field", "/plugin/software_communities/get_brazil_states"); | |
| 294 | 294 | set_initial_form_custom_data(selectFieldChoices); |
| 295 | 295 | |
| 296 | 296 | jQuery('#secondary_email_field').blur(validate_email_format); | ... | ... |
public/style.css
| ... | ... | @@ -72,7 +72,7 @@ |
| 72 | 72 | height: auto; |
| 73 | 73 | } |
| 74 | 74 | |
| 75 | -.mpog_search_form_fields { | |
| 75 | +.software_search_form_fields { | |
| 76 | 76 | margin-top: 10px; |
| 77 | 77 | width: 80%; |
| 78 | 78 | height: auto; |
| ... | ... | @@ -80,16 +80,16 @@ |
| 80 | 80 | float: left; |
| 81 | 81 | } |
| 82 | 82 | |
| 83 | -.mpog_search_form_button { | |
| 83 | +.software_search_form_button { | |
| 84 | 84 | margin-top: 10px; |
| 85 | 85 | } |
| 86 | 86 | |
| 87 | -.mpog_search_form_fields input[type='text'] { | |
| 87 | +.software_search_form_fields input[type='text'] { | |
| 88 | 88 | width: 90%; |
| 89 | 89 | |
| 90 | 90 | } |
| 91 | 91 | |
| 92 | -.mpog_search_form_table tr td:first-child { | |
| 92 | +.software_search_form_table tr td:first-child { | |
| 93 | 93 | width: 22%; |
| 94 | 94 | } |
| 95 | 95 | ... | ... |
script/schedule_institution_update.sh
test/functional/mpog_software_plugin_controller_test.rb
| 1 | 1 | require File.dirname(__FILE__) + '/../../../../test/test_helper' |
| 2 | 2 | require File.dirname(__FILE__) + '/../helpers/institution_test_helper' |
| 3 | -require File.dirname(__FILE__) + '/../../controllers/mpog_software_plugin_controller' | |
| 3 | +require File.dirname(__FILE__) + '/../../controllers/software_communities_plugin_controller' | |
| 4 | 4 | |
| 5 | -class MpogSoftwarePluginController; def rescue_action(e) raise e end; end | |
| 5 | +class SoftwareCommunitiesPluginController; def rescue_action(e) raise e end; end | |
| 6 | 6 | |
| 7 | -class MpogSoftwarePluginControllerTest < ActionController::TestCase | |
| 7 | +class SoftwareCommunitiesPluginControllerTest < ActionController::TestCase | |
| 8 | 8 | |
| 9 | 9 | def setup |
| 10 | 10 | @admin = create_user("adminuser").person |
| ... | ... | @@ -12,7 +12,7 @@ class MpogSoftwarePluginControllerTest < ActionController::TestCase |
| 12 | 12 | @controller.stubs(:current_user).returns(@admin.user) |
| 13 | 13 | |
| 14 | 14 | @environment = Environment.default |
| 15 | - @environment.enabled_plugins = ['MpogSoftwarePlugin'] | |
| 15 | + @environment.enabled_plugins = ['SoftwareCommunitiesPlugin'] | |
| 16 | 16 | @environment.add_admin(@admin) |
| 17 | 17 | @environment.save |
| 18 | 18 | |
| ... | ... | @@ -192,7 +192,7 @@ class MpogSoftwarePluginControllerTest < ActionController::TestCase |
| 192 | 192 | |
| 193 | 193 | post :new_institution, fields |
| 194 | 194 | |
| 195 | - assert_redirected_to(controller: "mpog_software_plugin", action: "create_institution_admin") | |
| 195 | + assert_redirected_to(controller: "software_communities_plugin", action: "create_institution_admin") | |
| 196 | 196 | end |
| 197 | 197 | |
| 198 | 198 | should "Create foreign institution without city, state and cnpj by post" do | ... | ... |
test/functional/mpog_software_plugin_myprofile_controller_test.rb
| ... | ... | @@ -3,16 +3,16 @@ require File.dirname(__FILE__) + '/../helpers/software_test_helper' |
| 3 | 3 | require File.dirname(__FILE__) + '/../helpers/institution_test_helper' |
| 4 | 4 | require( |
| 5 | 5 | File.dirname(__FILE__) + |
| 6 | - '/../../controllers/mpog_software_plugin_myprofile_controller' | |
| 6 | + '/../../controllers/software_communities_plugin_myprofile_controller' | |
| 7 | 7 | ) |
| 8 | 8 | |
| 9 | -class MpogSoftwarePluginMyprofileController; def rescue_action(e) raise e end; | |
| 9 | +class SoftwareCommunitiesPluginMyprofileController; def rescue_action(e) raise e end; | |
| 10 | 10 | end |
| 11 | 11 | |
| 12 | -class MpogSoftwarePluginMyprofileControllerTest < ActionController::TestCase | |
| 12 | +class SoftwareCommunitiesPluginMyprofileControllerTest < ActionController::TestCase | |
| 13 | 13 | include SoftwareTestHelper |
| 14 | 14 | def setup |
| 15 | - @controller = MpogSoftwarePluginMyprofileController.new | |
| 15 | + @controller = SoftwareCommunitiesPluginMyprofileController.new | |
| 16 | 16 | @request = ActionController::TestRequest.new |
| 17 | 17 | @response = ActionController::TestResponse.new |
| 18 | 18 | @person = create_user('person').person |
| ... | ... | @@ -31,7 +31,7 @@ class MpogSoftwarePluginMyprofileControllerTest < ActionController::TestCase |
| 31 | 31 | |
| 32 | 32 | login_as(@person.user_login) |
| 33 | 33 | @environment = Environment.default |
| 34 | - @environment.enable_plugin('MpogSoftwarePlugin') | |
| 34 | + @environment.enable_plugin('SoftwareCommunitiesPlugin') | |
| 35 | 35 | @environment.save! |
| 36 | 36 | end |
| 37 | 37 | |
| ... | ... | @@ -257,4 +257,4 @@ class MpogSoftwarePluginMyprofileControllerTest < ActionController::TestCase |
| 257 | 257 | assert_equal SoftwareInfo.last.license_info.link, another_license_link |
| 258 | 258 | end |
| 259 | 259 | |
| 260 | -end | |
| 261 | 260 | \ No newline at end of file |
| 261 | +end | ... | ... |
test/functional/profile_editor_controller_test.rb
| ... | ... | @@ -22,7 +22,7 @@ class ProfileEditorControllerTest < ActionController::TestCase |
| 22 | 22 | ) |
| 23 | 23 | |
| 24 | 24 | @environment = Environment.default |
| 25 | - @environment.enabled_plugins = ['MpogSoftwarePlugin'] | |
| 25 | + @environment.enabled_plugins = ['SoftwareCommunitiesPlugin'] | |
| 26 | 26 | admin = create_user("adminuser").person |
| 27 | 27 | admin.stubs(:has_permission?).returns("true") |
| 28 | 28 | login_as('adminuser') | ... | ... |
test/functional/search_controller_test.rb
| ... | ... | @@ -12,7 +12,7 @@ class SearchControllerTest < ActionController::TestCase |
| 12 | 12 | |
| 13 | 13 | def setup |
| 14 | 14 | @environment = Environment.default |
| 15 | - @environment.enabled_plugins = ['MpogSoftwarePlugin'] | |
| 15 | + @environment.enabled_plugins = ['SoftwareCommunitiesPlugin'] | |
| 16 | 16 | @environment.save |
| 17 | 17 | |
| 18 | 18 | @controller = SearchController.new | ... | ... |
test/unit/mpog_person_test.rb
| ... | ... | @@ -3,11 +3,11 @@ |
| 3 | 3 | require File.dirname(__FILE__) + '/../../../../test/test_helper' |
| 4 | 4 | require File.dirname(__FILE__) + '/../helpers/plugin_test_helper' |
| 5 | 5 | |
| 6 | -class MpogSoftwarePluginPersonTest < ActiveSupport::TestCase | |
| 6 | +class SoftwareCommunitiesPluginPersonTest < ActiveSupport::TestCase | |
| 7 | 7 | include PluginTestHelper |
| 8 | 8 | |
| 9 | 9 | def setup |
| 10 | - @plugin = MpogSoftwarePlugin.new | |
| 10 | + @plugin = SoftwareCommunitiesPlugin.new | |
| 11 | 11 | |
| 12 | 12 | @user = fast_create(User) |
| 13 | 13 | @person = create_person( | ... | ... |
test/unit/mpog_software_plugin_user_test.rb
| 1 | 1 | require File.dirname(__FILE__) + '/../../../../test/test_helper' |
| 2 | 2 | require File.dirname(__FILE__) + '/../helpers/plugin_test_helper' |
| 3 | 3 | |
| 4 | -class MpogSoftwarePluginUserTest < ActiveSupport::TestCase | |
| 4 | +class SoftwareCommunitiesPluginUserTest < ActiveSupport::TestCase | |
| 5 | 5 | include PluginTestHelper |
| 6 | 6 | |
| 7 | 7 | should 'not save user whose both email and secondary email are the same' do | ... | ... |
test/unit/software_helper_test.rb
| ... | ... | @@ -6,7 +6,7 @@ class SoftwareHelperTest < ActiveSupport::TestCase |
| 6 | 6 | |
| 7 | 7 | should "Create ProgrammingLanguages based on file with languages names" do |
| 8 | 8 | ProgrammingLanguage.delete_all |
| 9 | - PATH_TO_FILE = "plugins/mpog_software/public/static/languages.txt" | |
| 9 | + PATH_TO_FILE = "plugins/software_communities/public/static/languages.txt" | |
| 10 | 10 | |
| 11 | 11 | SoftwareHelper.create_list_with_file(PATH_TO_FILE, ProgrammingLanguage) |
| 12 | 12 | ... | ... |
test/unit/software_registration_test.rb
views/mpog_software_plugin_myprofile/edit_software.html.erb
| ... | ... | @@ -2,7 +2,7 @@ |
| 2 | 2 | |
| 3 | 3 | <%= error_messages_for :software_info %> |
| 4 | 4 | |
| 5 | -<%= labelled_form_for :mpog_software_plugin_myprofile, :html => { :multipart => true, :id => 'edit-form' } do |f| %> | |
| 5 | +<%= labelled_form_for :software_communities_plugin_myprofile, :html => { :multipart => true, :id => 'edit-form' } do |f| %> | |
| 6 | 6 | |
| 7 | 7 | <% tabs << {:title => _("Software"), :id => 'basic-info', |
| 8 | 8 | :content => (render :partial => 'main_software_editor_extras')} %> | ... | ... |
views/mpog_software_plugin_myprofile/new_software.html.erb
views/search/search_forms/_community_fields.html.erb
views/search/search_forms/_institution_fields.html.erb
views/search/search_forms/_software_fields.html.erb
views/search/software_infos.html.erb
| 1 | 1 | <div id="software-search-container"> |
| 2 | 2 | <%= search_page_title( @titles[@asset], @category ) %> |
| 3 | 3 | |
| 4 | - <%= render :partial => 'mpog_search_form', :locals => { :hint => _("Type words about the %s you're looking for") % @asset.to_s.singularize } %> | |
| 4 | + <%= render :partial => 'software_search_form', :locals => { :hint => _("Type words about the %s you're looking for") % @asset.to_s.singularize } %> | |
| 5 | 5 | |
| 6 | 6 | <%= display_results(@searches, @asset) %> |
| 7 | 7 | ... | ... |