Commit 700b7cf760f061e524ca2bccd01dd984c5e37606
1 parent
8374b600
Exists in
master
and in
56 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,7 +16,7 @@ Enable Plugin | ||
| 16 | Also, you need to enable MPOG Software Plugin on your Noosfero: | 16 | Also, you need to enable MPOG Software Plugin on your Noosfero: |
| 17 | 17 | ||
| 18 | cd <your_noosfero_dir> | 18 | cd <your_noosfero_dir> |
| 19 | -./script/noosfero-plugins enable mpog_software | 19 | +./script/noosfero-plugins enable software_communities |
| 20 | 20 | ||
| 21 | Activate Plugin | 21 | Activate Plugin |
| 22 | --------------- | 22 | --------------- |
| @@ -31,7 +31,7 @@ As a Noosfero administrator user, go to administrator panel: | @@ -31,7 +31,7 @@ As a Noosfero administrator user, go to administrator panel: | ||
| 31 | Schedule Institutions Update | 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 | Create Categories | 37 | Create Categories |
| @@ -59,8 +59,8 @@ rake noosfero:translations:compile | @@ -59,8 +59,8 @@ rake noosfero:translations:compile | ||
| 59 | 59 | ||
| 60 | Running MPOG Software tests | 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 | Get Involved | 65 | Get Involved |
| 66 | ============ | 66 | ============ |
controllers/mpog_software_plugin_controller.rb
| 1 | require 'csv' | 1 | require 'csv' |
| 2 | -class MpogSoftwarePluginController < ApplicationController | 2 | +class SoftwareCommunitiesPluginController < ApplicationController |
| 3 | 3 | ||
| 4 | def check_reactivate_account | 4 | def check_reactivate_account |
| 5 | if request.xhr? && params[:email] | 5 | if request.xhr? && params[:email] |
| @@ -242,7 +242,7 @@ class MpogSoftwarePluginController < ApplicationController | @@ -242,7 +242,7 @@ class MpogSoftwarePluginController < ApplicationController | ||
| 242 | redirect_to :controller => "/admin_panel", :action => "index" | 242 | redirect_to :controller => "/admin_panel", :action => "index" |
| 243 | else | 243 | else |
| 244 | flash[:errors] = response_message[:errors] | 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 | end | 246 | end |
| 247 | end | 247 | end |
| 248 | 248 |
controllers/mpog_software_plugin_myprofile_controller.rb
| 1 | -class MpogSoftwarePluginMyprofileController < MyProfileController | 1 | +class SoftwareCommunitiesPluginMyprofileController < MyProfileController |
| 2 | append_view_path File.join(File.dirname(__FILE__) + '/../views') | 2 | append_view_path File.join(File.dirname(__FILE__) + '/../views') |
| 3 | 3 | ||
| 4 | def index | 4 | def index |
db/migrate/20140528193956_create_programming_languages_table.rb
| @@ -4,7 +4,7 @@ class CreateProgrammingLanguagesTable < ActiveRecord::Migration | @@ -4,7 +4,7 @@ class CreateProgrammingLanguagesTable < ActiveRecord::Migration | ||
| 4 | t.string :name | 4 | t.string :name |
| 5 | end | 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 | end | 8 | end |
| 9 | 9 | ||
| 10 | def self.down | 10 | def self.down |
db/migrate/20140528194044_create_database_descriptions_table.rb
| @@ -4,7 +4,7 @@ class CreateDatabaseDescriptionsTable < ActiveRecord::Migration | @@ -4,7 +4,7 @@ class CreateDatabaseDescriptionsTable < ActiveRecord::Migration | ||
| 4 | t.string :name | 4 | t.string :name |
| 5 | end | 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 | SoftwareHelper.create_list_with_file(path_to_file, DatabaseDescription) | 8 | SoftwareHelper.create_list_with_file(path_to_file, DatabaseDescription) |
| 9 | end | 9 | end |
| 10 | 10 |
db/migrate/20140617132133_create_governmental_spheres.rb
| @@ -6,7 +6,7 @@ class CreateGovernmentalSpheres < ActiveRecord::Migration | @@ -6,7 +6,7 @@ class CreateGovernmentalSpheres < ActiveRecord::Migration | ||
| 6 | t.timestamps | 6 | t.timestamps |
| 7 | end | 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 | SoftwareHelper.create_list_with_file(path_to_file, GovernmentalSphere) | 10 | SoftwareHelper.create_list_with_file(path_to_file, GovernmentalSphere) |
| 11 | end | 11 | end |
| 12 | end | 12 | end |
db/migrate/20140617132451_create_governmental_powers.rb
| @@ -6,7 +6,7 @@ class CreateGovernmentalPowers < ActiveRecord::Migration | @@ -6,7 +6,7 @@ class CreateGovernmentalPowers < ActiveRecord::Migration | ||
| 6 | t.timestamps | 6 | t.timestamps |
| 7 | end | 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 | SoftwareHelper.create_list_with_file(path_to_file, GovernmentalPower) | 10 | SoftwareHelper.create_list_with_file(path_to_file, GovernmentalPower) |
| 11 | end | 11 | end |
| 12 | end | 12 | end |
db/migrate/20140714133901_create_operating_name_table.rb
| @@ -4,7 +4,7 @@ class CreateOperatingNameTable < ActiveRecord::Migration | @@ -4,7 +4,7 @@ class CreateOperatingNameTable < ActiveRecord::Migration | ||
| 4 | t.string :name | 4 | t.string :name |
| 5 | end | 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 | SoftwareHelper.create_list_with_file(path_to_file, OperatingSystemName) | 8 | SoftwareHelper.create_list_with_file(path_to_file, OperatingSystemName) |
| 9 | end | 9 | end |
| 10 | 10 |
db/migrate/20140814131606_create_juridical_natures_table.rb
| @@ -4,7 +4,7 @@ class CreateJuridicalNaturesTable < ActiveRecord::Migration | @@ -4,7 +4,7 @@ class CreateJuridicalNaturesTable < ActiveRecord::Migration | ||
| 4 | t.string :name | 4 | t.string :name |
| 5 | end | 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 | SoftwareHelper.create_list_with_file(path_to_file, JuridicalNature) | 8 | SoftwareHelper.create_list_with_file(path_to_file, JuridicalNature) |
| 9 | end | 9 | end |
| 10 | 10 |
features/deactivate_user.feature
| @@ -4,10 +4,10 @@ Feature: deactivate user | @@ -4,10 +4,10 @@ Feature: deactivate user | ||
| 4 | So that user data remains persisted and allows the reactivation of the account | 4 | So that user data remains persisted and allows the reactivation of the account |
| 5 | 5 | ||
| 6 | Background: | 6 | Background: |
| 7 | - Given "MpogSoftwarePlugin" plugin is enabled | 7 | + Given "SoftwareCommunitiesPlugin" plugin is enabled |
| 8 | And I am logged in as mpog_admin | 8 | And I am logged in as mpog_admin |
| 9 | And I go to /admin/plugins | 9 | And I go to /admin/plugins |
| 10 | - And I check "MpogSoftwarePlugin" | 10 | + And I check "SoftwareCommunitiesPlugin" |
| 11 | And I press "Save changes" | 11 | And I press "Save changes" |
| 12 | And I go to /account/logout | 12 | And I go to /account/logout |
| 13 | And the following users | 13 | And the following users |
features/institution_registration.feature
| @@ -4,10 +4,10 @@ Feature: Institution Field | @@ -4,10 +4,10 @@ Feature: Institution Field | ||
| 4 | So others users can use it | 4 | So others users can use it |
| 5 | 5 | ||
| 6 | Background: | 6 | Background: |
| 7 | - Given "MpogSoftwarePlugin" plugin is enabled | 7 | + Given "SoftwareCommunitiesPlugin" plugin is enabled |
| 8 | And I am logged in as mpog_admin | 8 | And I am logged in as mpog_admin |
| 9 | And I go to /admin/plugins | 9 | And I go to /admin/plugins |
| 10 | - And I check "MpogSoftwarePlugin" | 10 | + And I check "SoftwareCommunitiesPlugin" |
| 11 | And I press "Save changes" | 11 | And I press "Save changes" |
| 12 | And Institutions has initial default values on database | 12 | And Institutions has initial default values on database |
| 13 | And I am logged in as mpog_admin | 13 | And I am logged in as mpog_admin |
features/public_software_validation.feature
| @@ -4,7 +4,7 @@ Feature: edit adherent fields | @@ -4,7 +4,7 @@ Feature: edit adherent fields | ||
| 4 | to mantain my public software up to date. | 4 | to mantain my public software up to date. |
| 5 | 5 | ||
| 6 | Background: | 6 | Background: |
| 7 | - Given "MpogSoftwarePlugin" plugin is enabled | 7 | + Given "SoftwareCommunitiesPlugin" plugin is enabled |
| 8 | And the following users | 8 | And the following users |
| 9 | | login | name | email | | 9 | | login | name | email | |
| 10 | | joaosilva | Joao Silva | joaosilva@example.com | | 10 | | joaosilva | Joao Silva | joaosilva@example.com | |
| @@ -12,7 +12,7 @@ Feature: edit adherent fields | @@ -12,7 +12,7 @@ Feature: edit adherent fields | ||
| 12 | And SoftwareInfo has initial default values on database | 12 | And SoftwareInfo has initial default values on database |
| 13 | And I am logged in as mpog_admin | 13 | And I am logged in as mpog_admin |
| 14 | And I go to /admin/plugins | 14 | And I go to /admin/plugins |
| 15 | - And I check "MpogSoftwarePlugin" | 15 | + And I check "SoftwareCommunitiesPlugin" |
| 16 | And I press "Save changes" | 16 | And I press "Save changes" |
| 17 | And I go to /myprofile/mpog-admin | 17 | And I go to /myprofile/mpog-admin |
| 18 | And I follow "Create a new software" | 18 | And I follow "Create a new software" |
| @@ -22,20 +22,20 @@ Feature: edit adherent fields | @@ -22,20 +22,20 @@ Feature: edit adherent fields | ||
| 22 | 22 | ||
| 23 | Scenario: Disable public software checkbox to non admin users | 23 | Scenario: Disable public software checkbox to non admin users |
| 24 | Given I am logged in as "joaosilva" | 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 | And I follow "Specifications" | 26 | And I follow "Specifications" |
| 27 | Then I should see "Public software" within ".public_software_disabled" | 27 | Then I should see "Public software" within ".public_software_disabled" |
| 28 | 28 | ||
| 29 | Scenario: Enable public software checkbox to admin users | 29 | Scenario: Enable public software checkbox to admin users |
| 30 | Given I am logged in as mpog_admin | 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 | And I follow "Specifications" | 32 | And I follow "Specifications" |
| 33 | Then I should see "Public software" within ".public_software_enabled" | 33 | Then I should see "Public software" within ".public_software_enabled" |
| 34 | 34 | ||
| 35 | @selenium | 35 | @selenium |
| 36 | Scenario: Show adherent fields when checkbox are checked | 36 | Scenario: Show adherent fields when checkbox are checked |
| 37 | Given I am logged in as mpog_admin | 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 | And I follow "Specifications" | 39 | And I follow "Specifications" |
| 40 | And I uncheck "software[public_software]" | 40 | And I uncheck "software[public_software]" |
| 41 | And I check "software[public_software]" | 41 | And I check "software[public_software]" |
| @@ -44,7 +44,7 @@ Feature: edit adherent fields | @@ -44,7 +44,7 @@ Feature: edit adherent fields | ||
| 44 | @selenium | 44 | @selenium |
| 45 | Scenario: Don't show adherent fields when checkbox are not checked | 45 | Scenario: Don't show adherent fields when checkbox are not checked |
| 46 | Given I am logged in as mpog_admin | 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 | And I follow "Specifications" | 48 | And I follow "Specifications" |
| 49 | And I check "software[public_software]" | 49 | And I check "software[public_software]" |
| 50 | And I uncheck "software[public_software]" | 50 | And I uncheck "software[public_software]" |
features/software_block.feature
| @@ -4,10 +4,10 @@ Feature: edit adherent fields | @@ -4,10 +4,10 @@ Feature: edit adherent fields | ||
| 4 | to mantain my public software up to date. | 4 | to mantain my public software up to date. |
| 5 | 5 | ||
| 6 | Background: | 6 | Background: |
| 7 | - Given "MpogSoftwarePlugin" plugin is enabled | 7 | + Given "SoftwareCommunitiesPlugin" plugin is enabled |
| 8 | And I am logged in as mpog_admin | 8 | And I am logged in as mpog_admin |
| 9 | And I go to /admin/plugins | 9 | And I go to /admin/plugins |
| 10 | - And I check "MpogSoftwarePlugin" | 10 | + And I check "SoftwareCommunitiesPlugin" |
| 11 | And I press "Save changes" | 11 | And I press "Save changes" |
| 12 | And the following softwares | 12 | And the following softwares |
| 13 | | name | public_software | | 13 | | name | public_software | |
features/software_catalog.feature
| @@ -3,10 +3,10 @@ Feature: Search software | @@ -3,10 +3,10 @@ Feature: Search software | ||
| 3 | I want to be able to search catalogued software | 3 | I want to be able to search catalogued software |
| 4 | So that I find a software that fit my needs | 4 | So that I find a software that fit my needs |
| 5 | Background: | 5 | Background: |
| 6 | - Given "MpogSoftwarePlugin" plugin is enabled | 6 | + Given "SoftwareCommunitiesPlugin" plugin is enabled |
| 7 | And I am logged in as mpog_admin | 7 | And I am logged in as mpog_admin |
| 8 | And I go to /admin/plugins | 8 | And I go to /admin/plugins |
| 9 | - And I check "MpogSoftwarePlugin" | 9 | + And I check "SoftwareCommunitiesPlugin" |
| 10 | And I press "Save changes" | 10 | And I press "Save changes" |
| 11 | And I go to /account/logout | 11 | And I go to /account/logout |
| 12 | And the following categories | 12 | And the following categories |
features/software_registration.feature
| 1 | -A | ||
| 2 | Feature: edit public software information | 1 | Feature: edit public software information |
| 3 | As a user | 2 | As a user |
| 4 | I want to add public software information to a software | 3 | I want to add public software information to a software |
| 5 | So that I can have software communities on my network | 4 | So that I can have software communities on my network |
| 6 | 5 | ||
| 7 | Background: | 6 | Background: |
| 8 | - Given "MpogSoftwarePlugin" plugin is enabled | 7 | + Given "SoftwareCommunitiesPlugin" plugin is enabled |
| 9 | And SoftwareInfo has initial default values on database | 8 | And SoftwareInfo has initial default values on database |
| 10 | And I am logged in as mpog_admin | 9 | And I am logged in as mpog_admin |
| 11 | And I go to /admin/plugins | 10 | And I go to /admin/plugins |
| 12 | - And I check "MpogSoftwarePlugin" | 11 | + And I check "SoftwareCommunitiesPlugin" |
| 13 | And I press "Save changes" | 12 | And I press "Save changes" |
| 14 | And I go to /myprofile/mpog-admin | 13 | And I go to /myprofile/mpog-admin |
| 15 | And I follow "Create a new software" | 14 | And I follow "Create a new software" |
| @@ -20,7 +19,7 @@ Feature: edit public software information | @@ -20,7 +19,7 @@ Feature: edit public software information | ||
| 20 | 19 | ||
| 21 | @selenium | 20 | @selenium |
| 22 | Scenario: Show SoftwareLangue fields when click in New Language | 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 | When I follow "Specifications" | 23 | When I follow "Specifications" |
| 25 | And I follow "New language" | 24 | And I follow "New language" |
| 26 | And I should see "3" of this selector ".software-language-table" | 25 | And I should see "3" of this selector ".software-language-table" |
| @@ -30,7 +29,7 @@ Feature: edit public software information | @@ -30,7 +29,7 @@ Feature: edit public software information | ||
| 30 | 29 | ||
| 31 | @selenium | 30 | @selenium |
| 32 | Scenario: Show databasefields when click in New database | 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 | When I follow "Specifications" | 33 | When I follow "Specifications" |
| 35 | And I follow "New Database" | 34 | And I follow "New Database" |
| 36 | And I should see "3" of this selector ".database-table" | 35 | And I should see "3" of this selector ".database-table" |
| @@ -40,7 +39,7 @@ Feature: edit public software information | @@ -40,7 +39,7 @@ Feature: edit public software information | ||
| 40 | 39 | ||
| 41 | @selenium | 40 | @selenium |
| 42 | Scenario: Software database name should be an autocomplete | 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 | When I follow "Specifications" | 43 | When I follow "Specifications" |
| 45 | And I follow "New Database" | 44 | And I follow "New Database" |
| 46 | And I type in "my" in autocomplete list ".database_autocomplete" and I choose "MySQL" | 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,7 +47,7 @@ Feature: edit public software information | ||
| 48 | 47 | ||
| 49 | @selenium | 48 | @selenium |
| 50 | Scenario: Software database name should be an autocomplete | 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 | When I follow "Specifications" | 51 | When I follow "Specifications" |
| 53 | And I follow "New language" | 52 | And I follow "New language" |
| 54 | And I type in "py" in autocomplete list ".language_autocomplete" and I choose "Python" | 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,7 +55,7 @@ Feature: edit public software information | ||
| 56 | 55 | ||
| 57 | @selenium | 56 | @selenium |
| 58 | Scenario: Create software with all dynamic table fields filled | 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 | When I follow "Specifications" | 59 | When I follow "Specifications" |
| 61 | And I follow "New language" | 60 | And I follow "New language" |
| 62 | And I type in "py" in autocomplete list ".language_autocomplete" and I choose "Python" | 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,10 +4,10 @@ Feature: Institution Field | ||
| 4 | So I can maintain my personal data updated | 4 | So I can maintain my personal data updated |
| 5 | 5 | ||
| 6 | Background: | 6 | Background: |
| 7 | - Given "MpogSoftwarePlugin" plugin is enabled | 7 | + Given "SoftwareCommunitiesPlugin" plugin is enabled |
| 8 | And I am logged in as mpog_admin | 8 | And I am logged in as mpog_admin |
| 9 | And I go to /admin/plugins | 9 | And I go to /admin/plugins |
| 10 | - And I check "MpogSoftwarePlugin" | 10 | + And I check "SoftwareCommunitiesPlugin" |
| 11 | And I press "Save changes" | 11 | And I press "Save changes" |
| 12 | And feature "skip_new_user_email_confirmation" is enabled on environment | 12 | And feature "skip_new_user_email_confirmation" is enabled on environment |
| 13 | And I go to /admin/features/manage_fields | 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 | include ActionView::Helpers::TagHelper | 2 | include ActionView::Helpers::TagHelper |
| 3 | include ActionView::Helpers::FormTagHelper | 3 | include ActionView::Helpers::FormTagHelper |
| 4 | include ActionView::Helpers::FormOptionsHelper | 4 | include ActionView::Helpers::FormOptionsHelper |
| @@ -10,7 +10,7 @@ class MpogSoftwarePlugin < Noosfero::Plugin | @@ -10,7 +10,7 @@ class MpogSoftwarePlugin < Noosfero::Plugin | ||
| 10 | include Rails.application.routes.url_helpers | 10 | include Rails.application.routes.url_helpers |
| 11 | 11 | ||
| 12 | def self.plugin_name | 12 | def self.plugin_name |
| 13 | - 'MpogSoftwarePlugin' | 13 | + 'SoftwareCommunitiesPlugin' |
| 14 | end | 14 | end |
| 15 | 15 | ||
| 16 | def self.plugin_description | 16 | def self.plugin_description |
| @@ -166,7 +166,7 @@ class MpogSoftwarePlugin < Noosfero::Plugin | @@ -166,7 +166,7 @@ class MpogSoftwarePlugin < Noosfero::Plugin | ||
| 166 | { | 166 | { |
| 167 | :title => _('Create Institution'), | 167 | :title => _('Create Institution'), |
| 168 | :url => { | 168 | :url => { |
| 169 | - :controller => 'mpog_software_plugin', | 169 | + :controller => 'software_communities_plugin', |
| 170 | :action => 'create_institution_admin' | 170 | :action => 'create_institution_admin' |
| 171 | } | 171 | } |
| 172 | } | 172 | } |
| @@ -297,7 +297,7 @@ class MpogSoftwarePlugin < Noosfero::Plugin | @@ -297,7 +297,7 @@ class MpogSoftwarePlugin < Noosfero::Plugin | ||
| 297 | :title => _('Software Info'), | 297 | :title => _('Software Info'), |
| 298 | :icon => 'edit-profile-group control-panel-software-link', | 298 | :icon => 'edit-profile-group control-panel-software-link', |
| 299 | :url => { | 299 | :url => { |
| 300 | - :controller => 'mpog_software_plugin_myprofile', | 300 | + :controller => 'software_communities_plugin_myprofile', |
| 301 | :action => 'edit_software' | 301 | :action => 'edit_software' |
| 302 | } | 302 | } |
| 303 | } | 303 | } |
| @@ -308,7 +308,7 @@ class MpogSoftwarePlugin < Noosfero::Plugin | @@ -308,7 +308,7 @@ class MpogSoftwarePlugin < Noosfero::Plugin | ||
| 308 | :title => _('Create a new software'), | 308 | :title => _('Create a new software'), |
| 309 | :icon => 'design-editor', | 309 | :icon => 'design-editor', |
| 310 | :url => { | 310 | :url => { |
| 311 | - :controller => 'mpog_software_plugin_myprofile', | 311 | + :controller => 'software_communities_plugin_myprofile', |
| 312 | :action => 'new_software' | 312 | :action => 'new_software' |
| 313 | } | 313 | } |
| 314 | } | 314 | } |
| @@ -319,7 +319,7 @@ class MpogSoftwarePlugin < Noosfero::Plugin | @@ -319,7 +319,7 @@ class MpogSoftwarePlugin < Noosfero::Plugin | ||
| 319 | :title => _('Institution Info'), | 319 | :title => _('Institution Info'), |
| 320 | :icon => 'edit-profile-group control-panel-instituton-link', | 320 | :icon => 'edit-profile-group control-panel-instituton-link', |
| 321 | :url => { | 321 | :url => { |
| 322 | - :controller => 'mpog_software_plugin_myprofile', | 322 | + :controller => 'software_communities_plugin_myprofile', |
| 323 | :action => 'edit_institution' | 323 | :action => 'edit_institution' |
| 324 | } | 324 | } |
| 325 | } | 325 | } |
lib/tasks/create_categories.rake
| @@ -2,7 +2,7 @@ namespace :software do | @@ -2,7 +2,7 @@ namespace :software do | ||
| 2 | desc "Create software categories" | 2 | desc "Create software categories" |
| 3 | task :create_categories => :environment do | 3 | task :create_categories => :environment do |
| 4 | Environment.all.each do |env| | 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 | software = Category.create(:name => _("Software"), :environment => env) | 6 | software = Category.create(:name => _("Software"), :environment => env) |
| 7 | Category::SOFTWARE_CATEGORIES.each do |category_name| | 7 | Category::SOFTWARE_CATEGORIES.each do |category_name| |
| 8 | Category.create(:name => category_name, :environment => env, :parent => software) | 8 | Category.create(:name => category_name, :environment => env, :parent => software) |
lib/tasks/create_lincences.rake
| @@ -3,8 +3,8 @@ namespace :software do | @@ -3,8 +3,8 @@ namespace :software do | ||
| 3 | 3 | ||
| 4 | task :create_licenses => :environment do | 4 | task :create_licenses => :environment do |
| 5 | Environment.all.each do |env| | 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 | version_or_link = 'version' | 9 | version_or_link = 'version' |
| 10 | can_save = true | 10 | can_save = true |
lib/tasks/create_sample_softwares.rake
| @@ -4,7 +4,7 @@ namespace :software do | @@ -4,7 +4,7 @@ namespace :software do | ||
| 4 | desc "Create sample softwares" | 4 | desc "Create sample softwares" |
| 5 | task :create_sample_softwares => :environment do | 5 | task :create_sample_softwares => :environment do |
| 6 | Environment.all.each do |env| | 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 | print "Creating softwares: " | 9 | print "Creating softwares: " |
| 10 | 10 |
lib/tasks/main_data.rake
| @@ -19,7 +19,7 @@ namespace :main_data do | @@ -19,7 +19,7 @@ namespace :main_data do | ||
| 19 | desc "Create the main community" | 19 | desc "Create the main community" |
| 20 | task :community => :environment do | 20 | task :community => :environment do |
| 21 | Environment.all.each do |env| | 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 | identifier = "spb" | 23 | identifier = "spb" |
| 24 | community = Community.create!(:name => "SPB", :identifier => identifier) | 24 | community = Community.create!(:name => "SPB", :identifier => identifier) |
| 25 | community.layout_template = "leftbar" | 25 | community.layout_template = "leftbar" |
| @@ -58,7 +58,7 @@ namespace :main_data do | @@ -58,7 +58,7 @@ namespace :main_data do | ||
| 58 | desc "Create the home page blocks" | 58 | desc "Create the home page blocks" |
| 59 | task :home => :environment do | 59 | task :home => :environment do |
| 60 | Environment.all.each do |env| | 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 | identifier = "spb" | 62 | identifier = "spb" |
| 63 | 63 | ||
| 64 | box2 = env.boxes.where(:position => 2).first | 64 | box2 = env.boxes.where(:position => 2).first |
| @@ -72,7 +72,7 @@ namespace :main_data do | @@ -72,7 +72,7 @@ namespace :main_data do | ||
| 72 | desc "Destroy all main content created by this namespace" | 72 | desc "Destroy all main content created by this namespace" |
| 73 | task :destroy => :environment do | 73 | task :destroy => :environment do |
| 74 | Environment.all.each do |env| | 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 | Community["spb"].destroy unless Community["spb"].nil? | 76 | Community["spb"].destroy unless Community["spb"].nil? |
| 77 | puts "Main Community destoyed with success!" | 77 | puts "Main Community destoyed with success!" |
| 78 | end | 78 | end |
lib/tasks/templates.rake
| @@ -15,7 +15,7 @@ namespace :templates do | @@ -15,7 +15,7 @@ namespace :templates do | ||
| 15 | desc "Create new templates of software" | 15 | desc "Create new templates of software" |
| 16 | task :software => :environment do | 16 | task :software => :environment do |
| 17 | Environment.all.each do |env| | 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 | software = Community["software"] | 19 | software = Community["software"] |
| 20 | 20 | ||
| 21 | if software.nil? | 21 | if software.nil? |
| @@ -172,7 +172,7 @@ namespace :templates do | @@ -172,7 +172,7 @@ namespace :templates do | ||
| 172 | desc "Create new templates of people" | 172 | desc "Create new templates of people" |
| 173 | task :people => :environment do | 173 | task :people => :environment do |
| 174 | Environment.all.each do |env| | 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 | person = Person.where(:identifier => "noosfero_person_template").first | 176 | person = Person.where(:identifier => "noosfero_person_template").first |
| 177 | 177 | ||
| 178 | if person.nil? | 178 | if person.nil? |
| @@ -224,7 +224,7 @@ namespace :templates do | @@ -224,7 +224,7 @@ namespace :templates do | ||
| 224 | desc "Create new templates of community" | 224 | desc "Create new templates of community" |
| 225 | task :community => :environment do | 225 | task :community => :environment do |
| 226 | Environment.all.each do |env| | 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 | puts "Community successfully created!" | 228 | puts "Community successfully created!" |
| 229 | end | 229 | end |
| 230 | end | 230 | end |
| @@ -233,7 +233,7 @@ namespace :templates do | @@ -233,7 +233,7 @@ namespace :templates do | ||
| 233 | desc "Create new templates of intitution" | 233 | desc "Create new templates of intitution" |
| 234 | task :institution => :environment do | 234 | task :institution => :environment do |
| 235 | Environment.all.each do |env| | 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 | community = Community.create!(:name => "institution", :is_template => true, :moderated_articles => true, :environment => env) | 237 | community = Community.create!(:name => "institution", :is_template => true, :moderated_articles => true, :environment => env) |
| 238 | community.layout_template = "leftbar" | 238 | community.layout_template = "leftbar" |
| 239 | 239 | ||
| @@ -278,7 +278,7 @@ namespace :templates do | @@ -278,7 +278,7 @@ namespace :templates do | ||
| 278 | desc "Destroy all templates created by this namespace" | 278 | desc "Destroy all templates created by this namespace" |
| 279 | task :destroy => :environment do | 279 | task :destroy => :environment do |
| 280 | Environment.all.each do |env| | 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 | Community["institution"].destroy unless Community["institution"].nil? | 282 | Community["institution"].destroy unless Community["institution"].nil? |
| 283 | puts "Institution template destoyed with success!" | 283 | puts "Institution template destoyed with success!" |
| 284 | 284 |
po/mpog_software.pot
| @@ -16,48 +16,48 @@ msgstr "" | @@ -16,48 +16,48 @@ msgstr "" | ||
| 16 | "Content-Transfer-Encoding: 8bit\n" | 16 | "Content-Transfer-Encoding: 8bit\n" |
| 17 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" | 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 | msgid "Name Should begin with a capital letter and no special characters" | 21 | msgid "Name Should begin with a capital letter and no special characters" |
| 22 | msgstr "Deve começar com uma letra maiúscula e sem caracteres especiais" | 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 | msgid "Features is too long (maximum is 4000 characters)" | 25 | msgid "Features is too long (maximum is 4000 characters)" |
| 26 | msgstr "" | 26 | msgstr "" |
| 27 | "Funcionalidade contém mais caracteres do que o permitido(máximo é 4000 " | 27 | "Funcionalidade contém mais caracteres do que o permitido(máximo é 4000 " |
| 28 | "caracteres)" | 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 | msgid "Objectives is too long (maximum is 4000 characters)" | 31 | msgid "Objectives is too long (maximum is 4000 characters)" |
| 32 | msgstr "" | 32 | msgstr "" |
| 33 | "Objetivos contém mais caracteres do que o permitido (máximo é 4000 " | 33 | "Objetivos contém mais caracteres do que o permitido (máximo é 4000 " |
| 34 | "caracteres)" | 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 | msgid "Software" | 39 | msgid "Software" |
| 40 | msgstr "Software" | 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 | msgid "Save and Configure Community" | 44 | msgid "Save and Configure Community" |
| 45 | msgstr "Salvar e Configurar Comunidade" | 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 | msgid "Software updated sucessefuly" | 48 | msgid "Software updated sucessefuly" |
| 49 | msgstr "Software atualizado com sucesso" | 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 | msgid "Could not update software" | 52 | msgid "Could not update software" |
| 53 | msgstr "Não foi possível atualizar o software" | 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 | msgid "Could not find Governmental Power or Governmental Sphere" | 57 | msgid "Could not find Governmental Power or Governmental Sphere" |
| 58 | msgstr "Não foi possível encontrar Poder Governamental ou Esfera Governamental" | 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 | msgid "" | 61 | msgid "" |
| 62 | "Your new software request will be evaluated by anadministrator. You will be " | 62 | "Your new software request will be evaluated by anadministrator. You will be " |
| 63 | "notified." | 63 | "notified." |
| @@ -65,128 +65,128 @@ msgstr "" | @@ -65,128 +65,128 @@ msgstr "" | ||
| 65 | "Sua requisição para criação de um novo software será avaliada por um " | 65 | "Sua requisição para criação de um novo software será avaliada por um " |
| 66 | "administrador. Você será noficado." | 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 | msgid "Institution successful created!" | 69 | msgid "Institution successful created!" |
| 70 | msgstr "Instituição criada com sucesso!" | 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 | msgid "Institution could not be created!" | 73 | msgid "Institution could not be created!" |
| 74 | msgstr "Instituição não pode ser criada!" | 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 | msgid "Name is too long (maximum is %{count} characters)" | 77 | msgid "Name is too long (maximum is %{count} characters)" |
| 78 | msgstr "" | 78 | msgstr "" |
| 79 | "Nome contém mais caracteres do que o permitido (máximo é %{count} caracteres)" | 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 | msgid "can't have more than 10 characteres" | 82 | msgid "can't have more than 10 characteres" |
| 83 | msgstr "não pode ter mais de 10 caracteres" | 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 | msgid "can't have whitespaces" | 86 | msgid "can't have whitespaces" |
| 87 | msgstr "não pode ter espaços" | 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 | msgid ": at least one must be filled" | 92 | msgid ": at least one must be filled" |
| 93 | msgstr ": pelo menos um deve ser preenchido" | 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 | msgid "Name" | 98 | msgid "Name" |
| 99 | msgstr "Nome" | 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 | msgid "Version" | 102 | msgid "Version" |
| 103 | msgstr "Versão" | 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 | msgid "License" | 107 | msgid "License" |
| 108 | msgstr "Licença" | 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 | msgid "Autocomplete field, type something" | 111 | msgid "Autocomplete field, type something" |
| 112 | msgstr "Campo automático, digite algo" | 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 | msgid "Delete" | 115 | msgid "Delete" |
| 116 | msgstr "Excluir" | 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 | msgid "Categories and Tags" | 119 | msgid "Categories and Tags" |
| 120 | msgstr "Categorias e Tags" | 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 | msgid "This block displays the categories and tags of a software." | 123 | msgid "This block displays the categories and tags of a software." |
| 124 | msgstr "" | 124 | msgstr "" |
| 125 | "Este bloco exibe as informações de categorias e tags de um perfil de " | 125 | "Este bloco exibe as informações de categorias e tags de um perfil de " |
| 126 | "software." | 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 | msgid "Basic Software Information" | 129 | msgid "Basic Software Information" |
| 130 | msgstr "Informações Básicas Software" | 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 | msgid "This block displays the basic information of a software profile." | 133 | msgid "This block displays the basic information of a software profile." |
| 134 | msgstr "Este bloco exibe as informações básicas de um perfil de software." | 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 | msgid "Softwares" | 137 | msgid "Softwares" |
| 138 | msgstr "Softwares" | 138 | msgstr "Softwares" |
| 139 | 139 | ||
| 140 | -#: plugins/mpog_software/lib/softwares_block.rb:13 | 140 | +#: plugins/software_communities/lib/softwares_block.rb:13 |
| 141 | msgid "{#} generic software" | 141 | msgid "{#} generic software" |
| 142 | msgid_plural "{#} generic softwares" | 142 | msgid_plural "{#} generic softwares" |
| 143 | msgstr[0] "{#} software genérico" | 143 | msgstr[0] "{#} software genérico" |
| 144 | msgstr[1] "{#} softwares genéricos" | 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 | msgid "{#} public software" | 147 | msgid "{#} public software" |
| 148 | msgid_plural "{#} public softwares" | 148 | msgid_plural "{#} public softwares" |
| 149 | msgstr[0] "{#} software público" | 149 | msgstr[0] "{#} software público" |
| 150 | msgstr[1] "{#} software públicos" | 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 | msgid "{#} software" | 153 | msgid "{#} software" |
| 154 | msgid_plural "{#} softwares" | 154 | msgid_plural "{#} softwares" |
| 155 | msgstr[0] "{#} software" | 155 | msgstr[0] "{#} software" |
| 156 | msgstr[1] "{#} softwares" | 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 | msgid "This block displays the softwares in which the user is a member." | 159 | msgid "This block displays the softwares in which the user is a member." |
| 160 | msgstr "Este bloco apresenta os softwares no qual o usuário é membro." | 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 | msgid "softwares|View all" | 164 | msgid "softwares|View all" |
| 165 | msgstr "Ver todos" | 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 | msgid "New software" | 168 | msgid "New software" |
| 169 | msgstr "Novo software" | 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 | msgid "%{requestor} wants to create software %{subject} with" | 172 | msgid "%{requestor} wants to create software %{subject} with" |
| 173 | msgstr "%{requestor} deseja criar o software %{subject}" | 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 | msgid " no finality." | 176 | msgid " no finality." |
| 177 | msgstr " sem finalidade" | 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 | msgid " this finality:<p><em>%{finality}</em></p>" | 180 | msgid " this finality:<p><em>%{finality}</em></p>" |
| 181 | msgstr "" | 181 | msgstr "" |
| 182 | " com esta finalidade:<p><em>" | 182 | " com esta finalidade:<p><em>" |
| 183 | "%{finality}</em></p>" | 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 | msgid "%{requestor} wants to create software %{subject}" | 186 | msgid "%{requestor} wants to create software %{subject}" |
| 187 | msgstr "%{requestor} deseja criar o software %{subject}" | 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 | msgid "" | 190 | msgid "" |
| 191 | "User \"%{user}\" just requested to create software %{software}.\n" | 191 | "User \"%{user}\" just requested to create software %{software}.\n" |
| 192 | " You have to approve or reject it through the \"Pending Validations\"\n" | 192 | " You have to approve or reject it through the \"Pending Validations\"\n" |
| @@ -196,7 +196,7 @@ msgstr "" | @@ -196,7 +196,7 @@ msgstr "" | ||
| 196 | "deve aprovar ou rejeitar pela seção \"Validações pendentes\" no seu painel " | 196 | "deve aprovar ou rejeitar pela seção \"Validações pendentes\" no seu painel " |
| 197 | "de controle.\n" | 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 | msgid "" | 200 | msgid "" |
| 201 | "Your request for registering software %{software} at %{environment} was\n" | 201 | "Your request for registering software %{software} at %{environment} was\n" |
| 202 | " just sent. Environment administrator will receive it and will approve " | 202 | " just sent. Environment administrator will receive it and will approve " |
| @@ -212,7 +212,7 @@ msgstr "" | @@ -212,7 +212,7 @@ msgstr "" | ||
| 212 | "rejeitar sua requisição de acordo com seus métodos e critérios.\n Você será " | 212 | "rejeitar sua requisição de acordo com seus métodos e critérios.\n Você será " |
| 213 | "notificado assim que o administrador tenha uma posição sobre sua requisição." | 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 | msgid "" | 216 | msgid "" |
| 217 | "Your request for registering software %{software} at %{environment} was\n" | 217 | "Your request for registering software %{software} at %{environment} was\n" |
| 218 | " not approved by the environment administrator. The following " | 218 | " not approved by the environment administrator. The following " |
| @@ -227,7 +227,7 @@ msgstr "" | @@ -227,7 +227,7 @@ msgstr "" | ||
| 227 | "\n" | 227 | "\n" |
| 228 | "%{explanation}" | 228 | "%{explanation}" |
| 229 | 229 | ||
| 230 | -#: plugins/mpog_software/lib/create_software.rb:99 | 230 | +#: plugins/software_communities/lib/create_software.rb:99 |
| 231 | msgid "" | 231 | msgid "" |
| 232 | "Your request for registering the software \"%{software}\" was approved.\n" | 232 | "Your request for registering the software \"%{software}\" was approved.\n" |
| 233 | " You can access %{url} and finish the registration of your software." | 233 | " You can access %{url} and finish the registration of your software." |
| @@ -235,670 +235,670 @@ msgstr "" | @@ -235,670 +235,670 @@ msgstr "" | ||
| 235 | "Sua requisição para registro do software \"%{software}\" foi aprovada. \n Você " | 235 | "Sua requisição para registro do software \"%{software}\" foi aprovada. \n Você " |
| 236 | "pode acessá-la %{url} e finalizar o registro do seu software." | 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 | msgid "Repository Link" | 239 | msgid "Repository Link" |
| 240 | msgstr "Link para o Repositório:" | 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 | msgid "This block displays the repository link of a software." | 243 | msgid "This block displays the repository link of a software." |
| 244 | msgstr "Este bloco exibe o link para o repositório de um perfil de software." | 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 | msgid "Software language is too long (maximum is 20 characters)" | 247 | msgid "Software language is too long (maximum is 20 characters)" |
| 248 | msgstr "" | 248 | msgstr "" |
| 249 | "Linguagem de programação do software contém mais caracteres do que o " | 249 | "Linguagem de programação do software contém mais caracteres do que o " |
| 250 | "permitido (máximo é 20 caracteres)" | 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 | msgid "Download Stable Version" | 253 | msgid "Download Stable Version" |
| 254 | msgstr "Baixar Versão Estável" | 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 | msgid "This block displays the stable version of a software." | 257 | msgid "This block displays the stable version of a software." |
| 258 | msgstr "Este bloco exibe as informações básicas de um perfil de software." | 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 | msgid "Add Public Software and MPOG features." | 261 | msgid "Add Public Software and MPOG features." |
| 262 | msgstr "Adicionar funcionalidades referentes ao Software Público e MPOG" | 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 | msgid "Create Institution" | 265 | msgid "Create Institution" |
| 266 | msgstr "Criar Instituição" | 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 | msgid "Software Info" | 269 | msgid "Software Info" |
| 270 | msgstr "Informação de Software" | 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 | msgid "Create a new software" | 273 | msgid "Create a new software" |
| 274 | msgstr "Criar um novo software" | 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 | msgid "Institution Info" | 277 | msgid "Institution Info" |
| 278 | msgstr "Informação da Instituição" | 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 | msgid "Institution" | 281 | msgid "Institution" |
| 282 | msgstr "Instituição" | 282 | msgstr "Instituição" |
| 283 | 283 | ||
| 284 | -#: plugins/mpog_software/lib/institution.rb:46 | 284 | +#: plugins/software_communities/lib/institution.rb:46 |
| 285 | msgid "invalid, only public and private institutions are allowed." | 285 | msgid "invalid, only public and private institutions are allowed." |
| 286 | msgstr "inválido, somente instituição públicas ou privadas são permitidas." | 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 | msgid "can't be blank" | 293 | msgid "can't be blank" |
| 294 | msgstr "não pode ser em branco" | 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 | msgid "invalid format" | 297 | msgid "invalid format" |
| 298 | msgstr "formato inválido" | 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 | msgid "too long (maximum is 20 characters)" | 301 | msgid "too long (maximum is 20 characters)" |
| 302 | msgstr "" | 302 | msgstr "" |
| 303 | "Sistema operacional contém mais caracteres do que o permitido (máximo é 20 caracteres)" | 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 | msgid "Search Softwares catalog" | 306 | msgid "Search Softwares catalog" |
| 307 | msgstr "Informações Básicas Software" | 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 | msgid "This block displays the search categories field " | 310 | msgid "This block displays the search categories field " |
| 311 | msgstr "Este bloco apresenta a busca por categorias" | 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 | msgid "Too long (maximum is 20 characters)" | 314 | msgid "Too long (maximum is 20 characters)" |
| 315 | msgstr "" | 315 | msgstr "" |
| 316 | "Biblioteca contém mais caracteres do que o permitido (máximo é 20 caracteres)" | 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 | msgid "Categories Softwares" | 319 | msgid "Categories Softwares" |
| 320 | msgstr "Ativar Software" | 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 | msgid "" | 323 | msgid "" |
| 324 | "This block displays the categories and the amount of softwares for\n" | 324 | "This block displays the categories and the amount of softwares for\n" |
| 325 | " each category." | 325 | " each category." |
| 326 | msgstr "Este bloco exibe as categorias e a quantidade de softwares por categoria." | 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 | msgid "Email must be different from secondary email." | 329 | msgid "Email must be different from secondary email." |
| 330 | msgstr "E-mail deve ser diferente do e-mail secundário." | 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 | msgid "E-mail or secondary e-mail already taken." | 333 | msgid "E-mail or secondary e-mail already taken." |
| 334 | msgstr "E-mail ou e-mail secundário já está sendo utilizado" | 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 | msgid "Invalid secondary email format." | 337 | msgid "Invalid secondary email format." |
| 338 | msgstr "Formato do e-mail secundário inválido." | 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 | msgid "The governamental email must be the primary one." | 341 | msgid "The governamental email must be the primary one." |
| 342 | msgstr "O e-mail governamental deve ser o e-mail primário." | 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 | msgid "Institution is obligatory if user has a government email." | 345 | msgid "Institution is obligatory if user has a government email." |
| 346 | msgstr "Instituição é obrigatória se o usuário tiver um e-mail governamental." | 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 | msgid "Agriculture, Fisheries and Extraction" | 349 | msgid "Agriculture, Fisheries and Extraction" |
| 350 | msgstr "Agricultura, Extrativismo e Pesca " | 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 | msgid "Science, Information and Communication" | 353 | msgid "Science, Information and Communication" |
| 354 | msgstr "Ciência, Informação e Comunicação " | 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 | msgid "Economy and Finances" | 357 | msgid "Economy and Finances" |
| 358 | msgstr "Economia e Finanças " | 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 | msgid "Public Administration" | 361 | msgid "Public Administration" |
| 362 | msgstr "Administração Pública" | 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 | msgid "Habitation, Sanitation and Urbanism" | 365 | msgid "Habitation, Sanitation and Urbanism" |
| 366 | msgstr "Habitação, Saneamento e Urbanismo" | 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 | msgid "Individual, Family and Society" | 369 | msgid "Individual, Family and Society" |
| 370 | msgstr "Pessoa, Família e Sociedade" | 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 | msgid "Health" | 373 | msgid "Health" |
| 374 | msgstr "Saúde" | 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 | msgid "Social Welfare and Development" | 377 | msgid "Social Welfare and Development" |
| 378 | msgstr "Bem-estar Social e Desenvolvimento" | 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 | msgid "Defense and Security" | 381 | msgid "Defense and Security" |
| 382 | msgstr "Defesa e Segurança" | 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 | msgid "Education" | 385 | msgid "Education" |
| 386 | msgstr "Educação" | 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 | msgid "Government and Politics" | 389 | msgid "Government and Politics" |
| 390 | msgstr "Governo e Política" | 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 | msgid "Justice and Legislation" | 393 | msgid "Justice and Legislation" |
| 394 | msgstr "Justiça e Legislação" | 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 | msgid "International Relationships" | 397 | msgid "International Relationships" |
| 398 | msgstr "Relações Internacionais" | 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 | msgid "Institution Catalog" | 401 | msgid "Institution Catalog" |
| 402 | msgstr "Catálogo de Instituição" | 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 | msgid "Software Catalog" | 405 | msgid "Software Catalog" |
| 406 | msgstr "Catálogo de Software" | 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 | msgid "Institutions" | 410 | msgid "Institutions" |
| 411 | msgstr "Instituições" | 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 | msgid "{#} institution" | 414 | msgid "{#} institution" |
| 415 | msgid_plural "{#} institutions" | 415 | msgid_plural "{#} institutions" |
| 416 | msgstr[0] "{#} intituição" | 416 | msgstr[0] "{#} intituição" |
| 417 | msgstr[1] "{#} instituições" | 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 | msgid "This block displays the institutions in which the user is a member." | 420 | msgid "This block displays the institutions in which the user is a member." |
| 421 | msgstr "Este bloco mostra as instituições a que o usuário pertence" | 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 | msgid "institutions|View all" | 425 | msgid "institutions|View all" |
| 426 | msgstr "instituições|Ver todas" | 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 | msgid "Software database is too long (maximum is 20 characters)" | 429 | msgid "Software database is too long (maximum is 20 characters)" |
| 430 | msgstr "" | 430 | msgstr "" |
| 431 | "Banco de dados do software contém mais caracteres do que o permitido (máximo " | 431 | "Banco de dados do software contém mais caracteres do que o permitido (máximo " |
| 432 | "é 20 caracteres)" | 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 | msgid "Name:" | 436 | msgid "Name:" |
| 437 | msgstr "Nome:" | 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 | msgid "Link:" | 441 | msgid "Link:" |
| 442 | msgstr "Endereço:" | 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 | msgid "Software Description:" | 445 | msgid "Software Description:" |
| 446 | msgstr "Descrição do Software" | 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 | msgid "Link to Version News:" | 449 | msgid "Link to Version News:" |
| 450 | msgstr "Link para as Novidades da Versão:" | 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 | msgid "Link to Minimum Requirements:" | 453 | msgid "Link to Minimum Requirements:" |
| 454 | msgstr "Link para Requisitos Mínimos:" | 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 | msgid "Limit of items" | 457 | msgid "Limit of items" |
| 458 | msgstr "Limite de itens" | 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 | msgid "Software Type:" | 461 | msgid "Software Type:" |
| 462 | msgstr "Tipo do Software:" | 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 | msgid "Secondary e-mail" | 465 | msgid "Secondary e-mail" |
| 466 | msgstr "E-mail secundário" | 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 | msgid "No institution found" | 469 | msgid "No institution found" |
| 470 | msgstr "Nenhuma instituição encontrada" | 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 | msgid "Add new institution" | 473 | msgid "Add new institution" |
| 474 | msgstr "Adicionar nova instituição" | 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 | msgid "Create new institution" | 477 | msgid "Create new institution" |
| 478 | msgstr "Criar nova instituição" | 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 | msgid "Should begin with a capital letter and no special characters" | 481 | msgid "Should begin with a capital letter and no special characters" |
| 482 | msgstr "Deve começar com uma letra maiúscula e sem caracteres especiais" | 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 | msgid "Email should have the following format: name@host.br" | 485 | msgid "Email should have the following format: name@host.br" |
| 486 | msgstr "Email deve ter o seguinte formato: nome@host.br" | 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 | msgid "Site should have a valid format: http://name.hosts" | 489 | msgid "Site should have a valid format: http://name.hosts" |
| 490 | msgstr "Site deve ter um formato válido: http: //name.hosts" | 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 | msgid "If you work in a public agency use your government e-Mail" | 493 | msgid "If you work in a public agency use your government e-Mail" |
| 494 | msgstr "" | 494 | msgstr "" |
| 495 | "Se você trabalhar em uma agência pública utilize o seu e-mail governamental" | 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 | msgid "Institution Information" | 498 | msgid "Institution Information" |
| 499 | msgstr "Informação da Instituição" | 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 | msgid "Type:" | 502 | msgid "Type:" |
| 503 | msgstr "Tipo:" | 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 | msgid "CNPJ:" | 506 | msgid "CNPJ:" |
| 507 | msgstr "CNPJ:" | 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 | msgid "Last modification:" | 510 | msgid "Last modification:" |
| 511 | msgstr "Última Modificação" | 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 | msgid "Country:" | 514 | msgid "Country:" |
| 515 | msgstr "País:" | 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 | msgid "State:" | 518 | msgid "State:" |
| 519 | msgstr "Estado:" | 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 | msgid "City:" | 522 | msgid "City:" |
| 523 | msgstr "Cidade:" | 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 | msgid "Fantasy Name:" | 526 | msgid "Fantasy Name:" |
| 527 | msgstr "Nome Fantasia:" | 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 | msgid "Acronym:" | 531 | msgid "Acronym:" |
| 532 | msgstr "Sigla:" | 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 | msgid "Governmental Power:" | 537 | msgid "Governmental Power:" |
| 538 | msgstr "Poder Governamental" | 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 | msgid "Governmental Sphere:" | 543 | msgid "Governmental Sphere:" |
| 544 | msgstr "Esfera Governamental:" | 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 | msgid "Juridical Nature:" | 549 | msgid "Juridical Nature:" |
| 550 | msgstr "Natureza Jurídica:" | 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 | msgid "SISP:" | 553 | msgid "SISP:" |
| 554 | msgstr "SISP:" | 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 | msgid "Yes" | 564 | msgid "Yes" |
| 565 | msgstr "Sim" | 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 | msgid "No" | 577 | msgid "No" |
| 578 | msgstr "Não" | 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 | msgid "Software Information" | 582 | msgid "Software Information" |
| 583 | msgstr "Informação do Software" | 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 | msgid "Adherent to e_mag:" | 586 | msgid "Adherent to e_mag:" |
| 587 | msgstr "Aderente ao e-Mag:" | 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 | msgid "Adherent to icp_brasil:" | 590 | msgid "Adherent to icp_brasil:" |
| 591 | msgstr "Adherent ao ICP-Brasil:" | 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 | msgid "Adherent to e_ping:" | 594 | msgid "Adherent to e_ping:" |
| 595 | msgstr "Aderente ao e-Ping:" | 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 | msgid "Adherent to e_arq:" | 598 | msgid "Adherent to e_arq:" |
| 599 | msgstr "Aderente ao e-Arq:" | 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 | msgid "Internacionalizable:" | 602 | msgid "Internacionalizable:" |
| 603 | msgstr "Internacionalizável:" | 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 | msgid "Operating Platform:" | 606 | msgid "Operating Platform:" |
| 607 | msgstr "Plataforma Operacional:" | 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 | msgid "Demonstration URL:" | 610 | msgid "Demonstration URL:" |
| 611 | msgstr "URL de demonstração:" | 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 | msgid "Objectives:" | 614 | msgid "Objectives:" |
| 615 | msgstr "Objetivos:" | 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 | msgid "Features:" | 618 | msgid "Features:" |
| 619 | msgstr "Características:" | 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 | msgid "Version:" | 622 | msgid "Version:" |
| 623 | msgstr "Versão:" | 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 | msgid "Show Libraries" | 626 | msgid "Show Libraries" |
| 627 | msgstr "Mostrar Bibliotecas" | 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 | msgid "Hide Libraries" | 630 | msgid "Hide Libraries" |
| 631 | msgstr "Esconder Bibliotecas" | 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 | msgid "Libraries" | 635 | msgid "Libraries" |
| 636 | msgstr "Bibliotecas" | 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 | msgid "Show Database" | 639 | msgid "Show Database" |
| 640 | msgstr "Mostrar Banco de Dados" | 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 | msgid "Hide Database" | 643 | msgid "Hide Database" |
| 644 | msgstr "Esconder Banco de Dados" | 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 | msgid "Software Databases" | 647 | msgid "Software Databases" |
| 648 | msgstr "Banco de Dados" | 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 | msgid "Show Languages" | 651 | msgid "Show Languages" |
| 652 | msgstr "Mostrar Linguagens" | 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 | msgid "Hide Languages" | 655 | msgid "Hide Languages" |
| 656 | msgstr "Esconder Linguagens" | 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 | msgid "Software Languages" | 659 | msgid "Software Languages" |
| 660 | msgstr "Linguagens de Software" | 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 | msgid "Show Operating Systems" | 663 | msgid "Show Operating Systems" |
| 664 | msgstr "Mostrar Sistemas Operacionais" | 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 | msgid "Hide Operating Systems" | 667 | msgid "Hide Operating Systems" |
| 668 | msgstr "Esconder Sistemas Operacionais" | 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 | msgid "Operating System" | 671 | msgid "Operating System" |
| 672 | msgstr "Sistema Operacional" | 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 | msgid "Finality" | 678 | msgid "Finality" |
| 679 | msgstr "Finalidade" | 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 | msgid "Licenses" | 683 | msgid "Licenses" |
| 684 | msgstr "Licenças" | 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 | msgid "License link" | 689 | msgid "License link" |
| 690 | msgstr "Endereço da licença" | 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 | msgid "Link to Repository: " | 694 | msgid "Link to Repository: " |
| 695 | msgstr "Link pro Repositório: " | 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 | msgid "Complete Profile" | 698 | msgid "Complete Profile" |
| 699 | msgstr "Complete o Perfil" | 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 | msgid "Complete your profile" | 702 | msgid "Complete your profile" |
| 703 | msgstr "Complete o seu perfil" | 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 | msgid "Hide" | 706 | msgid "Hide" |
| 707 | msgstr "Esconder" | 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 | msgid "This community needs a software to use this block" | 712 | msgid "This community needs a software to use this block" |
| 713 | msgstr "Esta comunidade precisa de um software para utilizar este bloco" | 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 | msgid "Repository" | 716 | msgid "Repository" |
| 717 | msgstr "Repositório" | 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 | msgid "Catalog of Public Software" | 720 | msgid "Catalog of Public Software" |
| 721 | msgstr "Software Público" | 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 | msgid "Search" | 724 | msgid "Search" |
| 725 | msgstr "Pesquisar" | 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 | msgid "Access the complete catalog" | 729 | msgid "Access the complete catalog" |
| 730 | msgstr "Acesse o catálogo completo" | 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 | msgid "Download" | 733 | msgid "Download" |
| 734 | msgstr "Baixar" | 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 | msgid "Minimal Requirements" | 737 | msgid "Minimal Requirements" |
| 738 | msgstr "Requisitos Mínimos" | 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 | msgid "Version News" | 741 | msgid "Version News" |
| 742 | msgstr "Novidades da Versão" | 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 | msgid "Licensed by" | 745 | msgid "Licensed by" |
| 746 | msgstr "Licenciado por " | 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 | msgid "Categories:" | 749 | msgid "Categories:" |
| 750 | msgstr "Categorias:" | 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 | msgid "\"#{category.name}\"" | 753 | msgid "\"#{category.name}\"" |
| 754 | msgstr "\"#{category.name}\"" | 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 | msgid "Categories" | 757 | msgid "Categories" |
| 758 | msgstr "Categorias" | 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 | msgid "Tags" | 761 | msgid "Tags" |
| 762 | msgstr "Tags" | 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 | msgid "See More" | 765 | msgid "See More" |
| 766 | msgstr "Veja Mais" | 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 | msgid "Control panel" | 769 | msgid "Control panel" |
| 770 | msgstr "Painel de controle" | 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 | msgid "\"#{block.owner.software_info.acronym} - \"" | 773 | msgid "\"#{block.owner.software_info.acronym} - \"" |
| 774 | msgstr "\"#{block.owner.software_info.acronym} - \"" | 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 | msgid "\"#{block.owner.name}\"" | 777 | msgid "\"#{block.owner.name}\"" |
| 778 | msgstr "\"#{block.owner.name}\"" | 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 | msgid "Edit software" | 781 | msgid "Edit software" |
| 782 | msgstr "Editar software" | 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 | msgid "Operating Platform" | 785 | msgid "Operating Platform" |
| 786 | msgstr "Plataforma Operacional" | 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 | msgid "Features" | 789 | msgid "Features" |
| 790 | msgstr "Características" | 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 | msgid "Operating Systems" | 793 | msgid "Operating Systems" |
| 794 | msgstr "Sistemas Operacionais" | 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 | msgid "Programming languages" | 797 | msgid "Programming languages" |
| 798 | msgstr "Linguagens de Programação" | 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 | msgid "Databases" | 801 | msgid "Databases" |
| 802 | msgstr "Bancos de Dados" | 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 | msgid "Demonstration url" | 805 | msgid "Demonstration url" |
| 806 | msgstr "Url de demonstração" | 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 | msgid "Public Software" | 811 | msgid "Public Software" |
| 812 | msgstr "Software Público" | 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 | msgid "Public software" | 816 | msgid "Public software" |
| 817 | msgstr "Software público" | 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 | msgid "Adherent to e-PING ?" | 820 | msgid "Adherent to e-PING ?" |
| 821 | msgstr "Aderente ao e-PING ?" | 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 | msgid "Adherent to e-MAG ?" | 824 | msgid "Adherent to e-MAG ?" |
| 825 | msgstr "Aderente ao e-MAG ?" | 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 | msgid "Adherent to ICP-Brasil ?" | 828 | msgid "Adherent to ICP-Brasil ?" |
| 829 | msgstr "Aderente ao ICP-Brasil?" | 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 | msgid "Adherent to e-ARQ ?" | 832 | msgid "Adherent to e-ARQ ?" |
| 833 | msgstr "Aderente ao e-ARQ?" | 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 | msgid "Internacionalizable ?" | 836 | msgid "Internacionalizable ?" |
| 837 | msgstr "Internacionalizável?" | 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 | msgid " Information" | 840 | msgid " Information" |
| 841 | msgstr " Informação" | 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 | msgid "Acronym" | 848 | msgid "Acronym" |
| 849 | msgstr "Sigla" | 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 | msgid "It is a software of..." | 853 | msgid "It is a software of..." |
| 854 | msgstr "É um software de ..." | 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 | msgid "Link to Repository" | 857 | msgid "Link to Repository" |
| 858 | msgstr "Link pro Repositório" | 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 | msgid "New Operating System" | 861 | msgid "New Operating System" |
| 862 | msgstr "Novo Sistema Operacional" | 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 | msgid "Specifications" | 865 | msgid "Specifications" |
| 866 | msgstr "Especificações" | 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 | msgid "Save" | 872 | msgid "Save" |
| 873 | msgstr "Salvar" | 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 | msgid "Back to control panel" | 876 | msgid "Back to control panel" |
| 877 | msgstr "Voltar para o painel de controle" | 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 | msgid "New Library" | 880 | msgid "New Library" |
| 881 | msgstr "Nova Biblioteca" | 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 | msgid "New Database" | 884 | msgid "New Database" |
| 885 | msgstr "Novo Banco de Dados" | 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 | msgid "New language" | 888 | msgid "New language" |
| 889 | msgstr "Nova linguagem" | 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 | msgid "Step 1/2 - Software Creation" | 892 | msgid "Step 1/2 - Software Creation" |
| 893 | msgstr "Passo 1/2 - Criação de Software" | 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 | msgid "Creating new software" | 896 | msgid "Creating new software" |
| 897 | msgstr "Criando novo software" | 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 | msgid "" | 902 | msgid "" |
| 903 | "Note that the creation of communities in this environment is restricted. " | 903 | "Note that the creation of communities in this environment is restricted. " |
| 904 | "Your request to create this new community will be sent to %{environment} " | 904 | "Your request to create this new community will be sent to %{environment} " |
| @@ -910,139 +910,139 @@ msgstr "" | @@ -910,139 +910,139 @@ msgstr "" | ||
| 910 | "administradores do %{environment} e será aprovada ou rejeitada de acordo com " | 910 | "administradores do %{environment} e será aprovada ou rejeitada de acordo com " |
| 911 | "seus métodos e critérios. " | 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 | msgid "\"Can`t create new software: #{@errors.length} errors\"" | 914 | msgid "\"Can`t create new software: #{@errors.length} errors\"" |
| 915 | msgstr "\"Não é possível criar um novo software: #{@errors.length} erros\"" | 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 | msgid "License Version: " | 918 | msgid "License Version: " |
| 919 | msgstr "Versão da Licença: " | 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 | msgid "Create" | 922 | msgid "Create" |
| 923 | msgstr "Criar" | 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 | msgid "Cancel" | 926 | msgid "Cancel" |
| 927 | msgstr "Cancelar" | 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 | msgid "Edit Institution" | 930 | msgid "Edit Institution" |
| 931 | msgstr "Editar Instituição" | 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 | msgid "\"Can`t create new Institution: #{flash[:errors].length} errors\"" | 935 | msgid "\"Can`t create new Institution: #{flash[:errors].length} errors\"" |
| 936 | msgstr "" | 936 | msgstr "" |
| 937 | "\"Não é possível criar nova Instituição: #{flash[: errors].length} erros\"" | 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 | msgid "All fields with (*) are mandatory" | 941 | msgid "All fields with (*) are mandatory" |
| 942 | msgstr "Todos os campos com (*) são obrigatórios" | 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 | msgid "Public Institution" | 946 | msgid "Public Institution" |
| 947 | msgstr "Instituição Pública" | 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 | msgid "Private Institution" | 951 | msgid "Private Institution" |
| 952 | msgstr "Instituição Privada" | 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 | msgid "Institution name already exists" | 956 | msgid "Institution name already exists" |
| 957 | msgstr "Nome da instituição já existe" | 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 | msgid "Corporate Name" | 961 | msgid "Corporate Name" |
| 962 | msgstr "Razão Social" | 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 | msgid "Country" | 966 | msgid "Country" |
| 967 | msgstr "País" | 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 | msgid "State" | 971 | msgid "State" |
| 972 | msgstr "Estado" | 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 | msgid "CNPJ" | 976 | msgid "CNPJ" |
| 977 | msgstr "CNPJ" | 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 | msgid "Fantasy name" | 981 | msgid "Fantasy name" |
| 982 | msgstr "Nome Fantasia" | 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 | msgid "Select a Governmental Sphere" | 986 | msgid "Select a Governmental Sphere" |
| 987 | msgstr "Selecione uma Esfera Governamental" | 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 | msgid "Select a Governmental Power" | 991 | msgid "Select a Governmental Power" |
| 992 | msgstr "Selecione um Poder Governamental" | 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 | msgid "Select a Juridical Nature" | 996 | msgid "Select a Juridical Nature" |
| 997 | msgstr "Selecione uma Natureza Jurídica" | 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 | msgid "SISP?" | 1001 | msgid "SISP?" |
| 1002 | msgstr "SISP?" | 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 | msgid "New Institution" | 1005 | msgid "New Institution" |
| 1006 | msgstr "Nova Instituição" | 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 | msgid "Could not send the form data to the server" | 1009 | msgid "Could not send the form data to the server" |
| 1010 | msgstr "Não foi possível enviar os dados do formulário para o servidor" | 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 | msgid "Creating institution" | 1013 | msgid "Creating institution" |
| 1014 | msgstr "Criando Instituição" | 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 | msgid "Categories filter" | 1017 | msgid "Categories filter" |
| 1018 | msgstr "Filtro de Categorias" | 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 | msgid "Type a category name here" | 1021 | msgid "Type a category name here" |
| 1022 | msgstr "Escreva uma categoria aqui" | 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 | msgid "Software licence" | 1025 | msgid "Software licence" |
| 1026 | msgstr "Licença do Software" | 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 | msgid "Link software repository" | 1029 | msgid "Link software repository" |
| 1030 | msgstr "Link pro Repositório" | 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 | msgid "Software Categories" | 1033 | msgid "Software Categories" |
| 1034 | msgstr "Categorias de Software" | 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 | msgid "This software doesn't have categories" | 1037 | msgid "This software doesn't have categories" |
| 1038 | msgstr "Este software não tem categorias" | 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 | msgid "Type words about the %s you're looking for" | 1042 | msgid "Type words about the %s you're looking for" |
| 1043 | msgstr "Escreva palavras sobre o software que você está procurando" | 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 | msgid "Step 2/2 - Software Community Configuration" | 1046 | msgid "Step 2/2 - Software Community Configuration" |
| 1047 | msgstr "Passo 2/2 - Configuração da Comunidade do Software" | 1047 | msgstr "Passo 2/2 - Configuração da Comunidade do Software" |
| 1048 | 1048 |
po/pt/mpog_software.po
| @@ -16,48 +16,48 @@ msgstr "" | @@ -16,48 +16,48 @@ msgstr "" | ||
| 16 | "Content-Transfer-Encoding: 8bit\n" | 16 | "Content-Transfer-Encoding: 8bit\n" |
| 17 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" | 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 | msgid "Name Should begin with a capital letter and no special characters" | 21 | msgid "Name Should begin with a capital letter and no special characters" |
| 22 | msgstr "Deve começar com uma letra maiúscula e sem caracteres especiais" | 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 | msgid "Features is too long (maximum is 4000 characters)" | 25 | msgid "Features is too long (maximum is 4000 characters)" |
| 26 | msgstr "" | 26 | msgstr "" |
| 27 | "Funcionalidade contém mais caracteres do que o permitido(máximo é 4000 " | 27 | "Funcionalidade contém mais caracteres do que o permitido(máximo é 4000 " |
| 28 | "caracteres)" | 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 | msgid "Objectives is too long (maximum is 4000 characters)" | 31 | msgid "Objectives is too long (maximum is 4000 characters)" |
| 32 | msgstr "" | 32 | msgstr "" |
| 33 | "Objetivos contém mais caracteres do que o permitido (máximo é 4000 " | 33 | "Objetivos contém mais caracteres do que o permitido (máximo é 4000 " |
| 34 | "caracteres)" | 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 | msgid "Software" | 39 | msgid "Software" |
| 40 | msgstr "Software" | 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 | msgid "Save and Configure Community" | 44 | msgid "Save and Configure Community" |
| 45 | msgstr "Salvar e Configurar Comunidade" | 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 | msgid "Software updated sucessefuly" | 48 | msgid "Software updated sucessefuly" |
| 49 | msgstr "Software atualizado com sucesso" | 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 | msgid "Could not update software" | 52 | msgid "Could not update software" |
| 53 | msgstr "Não foi possível atualizar o software" | 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 | msgid "Could not find Governmental Power or Governmental Sphere" | 57 | msgid "Could not find Governmental Power or Governmental Sphere" |
| 58 | msgstr "Não foi possível encontrar Poder Governamental ou Esfera Governamental" | 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 | msgid "" | 61 | msgid "" |
| 62 | "Your new software request will be evaluated by anadministrator. You will be " | 62 | "Your new software request will be evaluated by anadministrator. You will be " |
| 63 | "notified." | 63 | "notified." |
| @@ -65,128 +65,128 @@ msgstr "" | @@ -65,128 +65,128 @@ msgstr "" | ||
| 65 | "Sua requisição para criação de um novo software será avaliada por um " | 65 | "Sua requisição para criação de um novo software será avaliada por um " |
| 66 | "administrador. Você será noficado." | 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 | msgid "Institution successful created!" | 69 | msgid "Institution successful created!" |
| 70 | msgstr "Instituição criada com sucesso!" | 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 | msgid "Institution could not be created!" | 73 | msgid "Institution could not be created!" |
| 74 | msgstr "Instituição não pode ser criada!" | 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 | msgid "Name is too long (maximum is %{count} characters)" | 77 | msgid "Name is too long (maximum is %{count} characters)" |
| 78 | msgstr "" | 78 | msgstr "" |
| 79 | "Nome contém mais caracteres do que o permitido (máximo é %{count} caracteres)" | 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 | msgid "can't have more than 10 characteres" | 82 | msgid "can't have more than 10 characteres" |
| 83 | msgstr "não pode ter mais de 10 caracteres" | 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 | msgid "can't have whitespaces" | 86 | msgid "can't have whitespaces" |
| 87 | msgstr "não pode ter espaços" | 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 | msgid ": at least one must be filled" | 92 | msgid ": at least one must be filled" |
| 93 | msgstr ": pelo menos um deve ser preenchido" | 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 | msgid "Name" | 98 | msgid "Name" |
| 99 | msgstr "Nome" | 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 | msgid "Version" | 102 | msgid "Version" |
| 103 | msgstr "Versão" | 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 | msgid "License" | 107 | msgid "License" |
| 108 | msgstr "Licença" | 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 | msgid "Autocomplete field, type something" | 111 | msgid "Autocomplete field, type something" |
| 112 | msgstr "Campo automático, digite algo" | 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 | msgid "Delete" | 115 | msgid "Delete" |
| 116 | msgstr "Excluir" | 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 | msgid "Categories and Tags" | 119 | msgid "Categories and Tags" |
| 120 | msgstr "Categorias e Tags" | 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 | msgid "This block displays the categories and tags of a software." | 123 | msgid "This block displays the categories and tags of a software." |
| 124 | msgstr "" | 124 | msgstr "" |
| 125 | "Este bloco exibe as informações de categorias e tags de um perfil de " | 125 | "Este bloco exibe as informações de categorias e tags de um perfil de " |
| 126 | "software." | 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 | msgid "Basic Software Information" | 129 | msgid "Basic Software Information" |
| 130 | msgstr "Informações Básicas Software" | 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 | msgid "This block displays the basic information of a software profile." | 133 | msgid "This block displays the basic information of a software profile." |
| 134 | msgstr "Este bloco exibe as informações básicas de um perfil de software." | 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 | msgid "Softwares" | 137 | msgid "Softwares" |
| 138 | msgstr "Softwares" | 138 | msgstr "Softwares" |
| 139 | 139 | ||
| 140 | -#: plugins/mpog_software/lib/softwares_block.rb:13 | 140 | +#: plugins/software_communities/lib/softwares_block.rb:13 |
| 141 | msgid "{#} generic software" | 141 | msgid "{#} generic software" |
| 142 | msgid_plural "{#} generic softwares" | 142 | msgid_plural "{#} generic softwares" |
| 143 | msgstr[0] "{#} software genérico" | 143 | msgstr[0] "{#} software genérico" |
| 144 | msgstr[1] "{#} softwares genéricos" | 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 | msgid "{#} public software" | 147 | msgid "{#} public software" |
| 148 | msgid_plural "{#} public softwares" | 148 | msgid_plural "{#} public softwares" |
| 149 | msgstr[0] "{#} software público" | 149 | msgstr[0] "{#} software público" |
| 150 | msgstr[1] "{#} software públicos" | 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 | msgid "{#} software" | 153 | msgid "{#} software" |
| 154 | msgid_plural "{#} softwares" | 154 | msgid_plural "{#} softwares" |
| 155 | msgstr[0] "{#} software" | 155 | msgstr[0] "{#} software" |
| 156 | msgstr[1] "{#} softwares" | 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 | msgid "This block displays the softwares in which the user is a member." | 159 | msgid "This block displays the softwares in which the user is a member." |
| 160 | msgstr "Este bloco apresenta os softwares no qual o usuário é membro." | 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 | msgid "softwares|View all" | 164 | msgid "softwares|View all" |
| 165 | msgstr "Ver todos" | 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 | msgid "New software" | 168 | msgid "New software" |
| 169 | msgstr "Novo software" | 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 | msgid "%{requestor} wants to create software %{subject} with" | 172 | msgid "%{requestor} wants to create software %{subject} with" |
| 173 | msgstr "%{requestor} deseja criar o software %{subject}" | 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 | msgid " no finality." | 176 | msgid " no finality." |
| 177 | msgstr " sem finalidade" | 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 | msgid " this finality:<p><em>%{finality}</em></p>" | 180 | msgid " this finality:<p><em>%{finality}</em></p>" |
| 181 | msgstr "" | 181 | msgstr "" |
| 182 | " com esta finalidade:<p><em>" | 182 | " com esta finalidade:<p><em>" |
| 183 | "%{finality}</em></p>" | 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 | msgid "%{requestor} wants to create software %{subject}" | 186 | msgid "%{requestor} wants to create software %{subject}" |
| 187 | msgstr "%{requestor} deseja criar o software %{subject}" | 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 | msgid "" | 190 | msgid "" |
| 191 | "User \"%{user}\" just requested to create software %{software}.\n" | 191 | "User \"%{user}\" just requested to create software %{software}.\n" |
| 192 | " You have to approve or reject it through the \"Pending Validations\"\n" | 192 | " You have to approve or reject it through the \"Pending Validations\"\n" |
| @@ -196,7 +196,7 @@ msgstr "" | @@ -196,7 +196,7 @@ msgstr "" | ||
| 196 | "deve aprovar ou rejeitar pela seção \"Validações pendentes\" no seu painel " | 196 | "deve aprovar ou rejeitar pela seção \"Validações pendentes\" no seu painel " |
| 197 | "de controle.\n" | 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 | msgid "" | 200 | msgid "" |
| 201 | "Your request for registering software %{software} at %{environment} was\n" | 201 | "Your request for registering software %{software} at %{environment} was\n" |
| 202 | " just sent. Environment administrator will receive it and will approve " | 202 | " just sent. Environment administrator will receive it and will approve " |
| @@ -212,7 +212,7 @@ msgstr "" | @@ -212,7 +212,7 @@ msgstr "" | ||
| 212 | "rejeitar sua requisição de acordo com seus métodos e critérios.\n Você será " | 212 | "rejeitar sua requisição de acordo com seus métodos e critérios.\n Você será " |
| 213 | "notificado assim que o administrador tenha uma posição sobre sua requisição." | 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 | msgid "" | 216 | msgid "" |
| 217 | "Your request for registering software %{software} at %{environment} was\n" | 217 | "Your request for registering software %{software} at %{environment} was\n" |
| 218 | " not approved by the environment administrator. The following " | 218 | " not approved by the environment administrator. The following " |
| @@ -227,7 +227,7 @@ msgstr "" | @@ -227,7 +227,7 @@ msgstr "" | ||
| 227 | "\n" | 227 | "\n" |
| 228 | "%{explanation}" | 228 | "%{explanation}" |
| 229 | 229 | ||
| 230 | -#: plugins/mpog_software/lib/create_software.rb:99 | 230 | +#: plugins/software_communities/lib/create_software.rb:99 |
| 231 | msgid "" | 231 | msgid "" |
| 232 | "Your request for registering the software \"%{software}\" was approved.\n" | 232 | "Your request for registering the software \"%{software}\" was approved.\n" |
| 233 | " You can access %{url} and finish the registration of your software." | 233 | " You can access %{url} and finish the registration of your software." |
| @@ -235,670 +235,670 @@ msgstr "" | @@ -235,670 +235,670 @@ msgstr "" | ||
| 235 | "Sua requisição para registro do software \"%{software}\" foi aprovada. \n Você " | 235 | "Sua requisição para registro do software \"%{software}\" foi aprovada. \n Você " |
| 236 | "pode acessá-la %{url} e finalizar o registro do seu software." | 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 | msgid "Repository Link" | 239 | msgid "Repository Link" |
| 240 | msgstr "Link para o Repositório:" | 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 | msgid "This block displays the repository link of a software." | 243 | msgid "This block displays the repository link of a software." |
| 244 | msgstr "Este bloco exibe o link para o repositório de um perfil de software." | 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 | msgid "Software language is too long (maximum is 20 characters)" | 247 | msgid "Software language is too long (maximum is 20 characters)" |
| 248 | msgstr "" | 248 | msgstr "" |
| 249 | "Linguagem de programação do software contém mais caracteres do que o " | 249 | "Linguagem de programação do software contém mais caracteres do que o " |
| 250 | "permitido (máximo é 20 caracteres)" | 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 | msgid "Download Stable Version" | 253 | msgid "Download Stable Version" |
| 254 | msgstr "Baixar Versão Estável" | 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 | msgid "This block displays the stable version of a software." | 257 | msgid "This block displays the stable version of a software." |
| 258 | msgstr "Este bloco exibe as informações básicas de um perfil de software." | 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 | msgid "Add Public Software and MPOG features." | 261 | msgid "Add Public Software and MPOG features." |
| 262 | msgstr "Adicionar funcionalidades referentes ao Software Público e MPOG" | 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 | msgid "Create Institution" | 265 | msgid "Create Institution" |
| 266 | msgstr "Criar Instituição" | 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 | msgid "Software Info" | 269 | msgid "Software Info" |
| 270 | msgstr "Informação de Software" | 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 | msgid "Create a new software" | 273 | msgid "Create a new software" |
| 274 | msgstr "Criar um novo software" | 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 | msgid "Institution Info" | 277 | msgid "Institution Info" |
| 278 | msgstr "Informação da Instituição" | 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 | msgid "Institution" | 281 | msgid "Institution" |
| 282 | msgstr "Instituição" | 282 | msgstr "Instituição" |
| 283 | 283 | ||
| 284 | -#: plugins/mpog_software/lib/institution.rb:46 | 284 | +#: plugins/software_communities/lib/institution.rb:46 |
| 285 | msgid "invalid, only public and private institutions are allowed." | 285 | msgid "invalid, only public and private institutions are allowed." |
| 286 | msgstr "inválido, somente instituição públicas ou privadas são permitidas." | 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 | msgid "can't be blank" | 293 | msgid "can't be blank" |
| 294 | msgstr "não pode ser em branco" | 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 | msgid "invalid format" | 297 | msgid "invalid format" |
| 298 | msgstr "formato inválido" | 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 | msgid "too long (maximum is 20 characters)" | 301 | msgid "too long (maximum is 20 characters)" |
| 302 | msgstr "" | 302 | msgstr "" |
| 303 | "Sistema operacional contém mais caracteres do que o permitido (máximo é 20 caracteres)" | 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 | msgid "Search Softwares catalog" | 306 | msgid "Search Softwares catalog" |
| 307 | msgstr "Informações Básicas Software" | 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 | msgid "This block displays the search categories field " | 310 | msgid "This block displays the search categories field " |
| 311 | msgstr "Este bloco apresenta a busca por categorias" | 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 | msgid "Too long (maximum is 20 characters)" | 314 | msgid "Too long (maximum is 20 characters)" |
| 315 | msgstr "" | 315 | msgstr "" |
| 316 | "Biblioteca contém mais caracteres do que o permitido (máximo é 20 caracteres)" | 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 | msgid "Categories Softwares" | 319 | msgid "Categories Softwares" |
| 320 | msgstr "Ativar Software" | 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 | msgid "" | 323 | msgid "" |
| 324 | "This block displays the categories and the amount of softwares for\n" | 324 | "This block displays the categories and the amount of softwares for\n" |
| 325 | " each category." | 325 | " each category." |
| 326 | msgstr "Este bloco exibe as categorias e a quantidade de softwares por categoria." | 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 | msgid "Email must be different from secondary email." | 329 | msgid "Email must be different from secondary email." |
| 330 | msgstr "E-mail deve ser diferente do e-mail secundário." | 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 | msgid "E-mail or secondary e-mail already taken." | 333 | msgid "E-mail or secondary e-mail already taken." |
| 334 | msgstr "E-mail ou e-mail secundário já está sendo utilizado" | 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 | msgid "Invalid secondary email format." | 337 | msgid "Invalid secondary email format." |
| 338 | msgstr "Formato do e-mail secundário inválido." | 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 | msgid "The governamental email must be the primary one." | 341 | msgid "The governamental email must be the primary one." |
| 342 | msgstr "O e-mail governamental deve ser o e-mail primário." | 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 | msgid "Institution is obligatory if user has a government email." | 345 | msgid "Institution is obligatory if user has a government email." |
| 346 | msgstr "Instituição é obrigatória se o usuário tiver um e-mail governamental." | 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 | msgid "Agriculture, Fisheries and Extraction" | 349 | msgid "Agriculture, Fisheries and Extraction" |
| 350 | msgstr "Agricultura, Extrativismo e Pesca " | 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 | msgid "Science, Information and Communication" | 353 | msgid "Science, Information and Communication" |
| 354 | msgstr "Ciência, Informação e Comunicação " | 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 | msgid "Economy and Finances" | 357 | msgid "Economy and Finances" |
| 358 | msgstr "Economia e Finanças " | 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 | msgid "Public Administration" | 361 | msgid "Public Administration" |
| 362 | msgstr "Administração Pública" | 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 | msgid "Habitation, Sanitation and Urbanism" | 365 | msgid "Habitation, Sanitation and Urbanism" |
| 366 | msgstr "Habitação, Saneamento e Urbanismo" | 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 | msgid "Individual, Family and Society" | 369 | msgid "Individual, Family and Society" |
| 370 | msgstr "Pessoa, Família e Sociedade" | 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 | msgid "Health" | 373 | msgid "Health" |
| 374 | msgstr "Saúde" | 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 | msgid "Social Welfare and Development" | 377 | msgid "Social Welfare and Development" |
| 378 | msgstr "Bem-estar Social e Desenvolvimento" | 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 | msgid "Defense and Security" | 381 | msgid "Defense and Security" |
| 382 | msgstr "Defesa e Segurança" | 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 | msgid "Education" | 385 | msgid "Education" |
| 386 | msgstr "Educação" | 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 | msgid "Government and Politics" | 389 | msgid "Government and Politics" |
| 390 | msgstr "Governo e Política" | 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 | msgid "Justice and Legislation" | 393 | msgid "Justice and Legislation" |
| 394 | msgstr "Justiça e Legislação" | 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 | msgid "International Relationships" | 397 | msgid "International Relationships" |
| 398 | msgstr "Relações Internacionais" | 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 | msgid "Institution Catalog" | 401 | msgid "Institution Catalog" |
| 402 | msgstr "Catálogo de Instituição" | 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 | msgid "Software Catalog" | 405 | msgid "Software Catalog" |
| 406 | msgstr "Catálogo de Software" | 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 | msgid "Institutions" | 410 | msgid "Institutions" |
| 411 | msgstr "Instituições" | 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 | msgid "{#} institution" | 414 | msgid "{#} institution" |
| 415 | msgid_plural "{#} institutions" | 415 | msgid_plural "{#} institutions" |
| 416 | msgstr[0] "{#} intituição" | 416 | msgstr[0] "{#} intituição" |
| 417 | msgstr[1] "{#} instituições" | 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 | msgid "This block displays the institutions in which the user is a member." | 420 | msgid "This block displays the institutions in which the user is a member." |
| 421 | msgstr "Este bloco mostra as instituições a que o usuário pertence" | 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 | msgid "institutions|View all" | 425 | msgid "institutions|View all" |
| 426 | msgstr "instituições|Ver todas" | 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 | msgid "Software database is too long (maximum is 20 characters)" | 429 | msgid "Software database is too long (maximum is 20 characters)" |
| 430 | msgstr "" | 430 | msgstr "" |
| 431 | "Banco de dados do software contém mais caracteres do que o permitido (máximo " | 431 | "Banco de dados do software contém mais caracteres do que o permitido (máximo " |
| 432 | "é 20 caracteres)" | 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 | msgid "Name:" | 436 | msgid "Name:" |
| 437 | msgstr "Nome:" | 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 | msgid "Link:" | 441 | msgid "Link:" |
| 442 | msgstr "Endereço:" | 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 | msgid "Software Description:" | 445 | msgid "Software Description:" |
| 446 | msgstr "Descrição do Software" | 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 | msgid "Link to Version News:" | 449 | msgid "Link to Version News:" |
| 450 | msgstr "Link para as Novidades da Versão:" | 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 | msgid "Link to Minimum Requirements:" | 453 | msgid "Link to Minimum Requirements:" |
| 454 | msgstr "Link para Requisitos Mínimos:" | 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 | msgid "Limit of items" | 457 | msgid "Limit of items" |
| 458 | msgstr "Limite de itens" | 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 | msgid "Software Type:" | 461 | msgid "Software Type:" |
| 462 | msgstr "Tipo do Software:" | 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 | msgid "Secondary e-mail" | 465 | msgid "Secondary e-mail" |
| 466 | msgstr "E-mail secundário" | 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 | msgid "No institution found" | 469 | msgid "No institution found" |
| 470 | msgstr "Nenhuma instituição encontrada" | 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 | msgid "Add new institution" | 473 | msgid "Add new institution" |
| 474 | msgstr "Adicionar nova instituição" | 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 | msgid "Create new institution" | 477 | msgid "Create new institution" |
| 478 | msgstr "Criar nova instituição" | 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 | msgid "Should begin with a capital letter and no special characters" | 481 | msgid "Should begin with a capital letter and no special characters" |
| 482 | msgstr "Deve começar com uma letra maiúscula e sem caracteres especiais" | 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 | msgid "Email should have the following format: name@host.br" | 485 | msgid "Email should have the following format: name@host.br" |
| 486 | msgstr "Email deve ter o seguinte formato: nome@host.br" | 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 | msgid "Site should have a valid format: http://name.hosts" | 489 | msgid "Site should have a valid format: http://name.hosts" |
| 490 | msgstr "Site deve ter um formato válido: http: //name.hosts" | 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 | msgid "If you work in a public agency use your government e-Mail" | 493 | msgid "If you work in a public agency use your government e-Mail" |
| 494 | msgstr "" | 494 | msgstr "" |
| 495 | "Se você trabalhar em uma agência pública utilize o seu e-mail governamental" | 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 | msgid "Institution Information" | 498 | msgid "Institution Information" |
| 499 | msgstr "Informação da Instituição" | 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 | msgid "Type:" | 502 | msgid "Type:" |
| 503 | msgstr "Tipo:" | 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 | msgid "CNPJ:" | 506 | msgid "CNPJ:" |
| 507 | msgstr "CNPJ:" | 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 | msgid "Last modification:" | 510 | msgid "Last modification:" |
| 511 | msgstr "Última Modificação" | 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 | msgid "Country:" | 514 | msgid "Country:" |
| 515 | msgstr "País:" | 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 | msgid "State:" | 518 | msgid "State:" |
| 519 | msgstr "Estado:" | 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 | msgid "City:" | 522 | msgid "City:" |
| 523 | msgstr "Cidade:" | 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 | msgid "Fantasy Name:" | 526 | msgid "Fantasy Name:" |
| 527 | msgstr "Nome Fantasia:" | 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 | msgid "Acronym:" | 531 | msgid "Acronym:" |
| 532 | msgstr "Sigla:" | 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 | msgid "Governmental Power:" | 537 | msgid "Governmental Power:" |
| 538 | msgstr "Poder Governamental" | 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 | msgid "Governmental Sphere:" | 543 | msgid "Governmental Sphere:" |
| 544 | msgstr "Esfera Governamental:" | 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 | msgid "Juridical Nature:" | 549 | msgid "Juridical Nature:" |
| 550 | msgstr "Natureza Jurídica:" | 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 | msgid "SISP:" | 553 | msgid "SISP:" |
| 554 | msgstr "SISP:" | 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 | msgid "Yes" | 564 | msgid "Yes" |
| 565 | msgstr "Sim" | 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 | msgid "No" | 577 | msgid "No" |
| 578 | msgstr "Não" | 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 | msgid "Software Information" | 582 | msgid "Software Information" |
| 583 | msgstr "Informação do Software" | 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 | msgid "Adherent to e_mag:" | 586 | msgid "Adherent to e_mag:" |
| 587 | msgstr "Aderente ao e-Mag:" | 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 | msgid "Adherent to icp_brasil:" | 590 | msgid "Adherent to icp_brasil:" |
| 591 | msgstr "Adherent ao ICP-Brasil:" | 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 | msgid "Adherent to e_ping:" | 594 | msgid "Adherent to e_ping:" |
| 595 | msgstr "Aderente ao e-Ping:" | 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 | msgid "Adherent to e_arq:" | 598 | msgid "Adherent to e_arq:" |
| 599 | msgstr "Aderente ao e-Arq:" | 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 | msgid "Internacionalizable:" | 602 | msgid "Internacionalizable:" |
| 603 | msgstr "Internacionalizável:" | 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 | msgid "Operating Platform:" | 606 | msgid "Operating Platform:" |
| 607 | msgstr "Plataforma Operacional:" | 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 | msgid "Demonstration URL:" | 610 | msgid "Demonstration URL:" |
| 611 | msgstr "URL de demonstração:" | 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 | msgid "Objectives:" | 614 | msgid "Objectives:" |
| 615 | msgstr "Objetivos:" | 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 | msgid "Features:" | 618 | msgid "Features:" |
| 619 | msgstr "Características:" | 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 | msgid "Version:" | 622 | msgid "Version:" |
| 623 | msgstr "Versão:" | 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 | msgid "Show Libraries" | 626 | msgid "Show Libraries" |
| 627 | msgstr "Mostrar Bibliotecas" | 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 | msgid "Hide Libraries" | 630 | msgid "Hide Libraries" |
| 631 | msgstr "Esconder Bibliotecas" | 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 | msgid "Libraries" | 635 | msgid "Libraries" |
| 636 | msgstr "Bibliotecas" | 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 | msgid "Show Database" | 639 | msgid "Show Database" |
| 640 | msgstr "Mostrar Banco de Dados" | 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 | msgid "Hide Database" | 643 | msgid "Hide Database" |
| 644 | msgstr "Esconder Banco de Dados" | 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 | msgid "Software Databases" | 647 | msgid "Software Databases" |
| 648 | msgstr "Banco de Dados" | 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 | msgid "Show Languages" | 651 | msgid "Show Languages" |
| 652 | msgstr "Mostrar Linguagens" | 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 | msgid "Hide Languages" | 655 | msgid "Hide Languages" |
| 656 | msgstr "Esconder Linguagens" | 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 | msgid "Software Languages" | 659 | msgid "Software Languages" |
| 660 | msgstr "Linguagens de Software" | 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 | msgid "Show Operating Systems" | 663 | msgid "Show Operating Systems" |
| 664 | msgstr "Mostrar Sistemas Operacionais" | 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 | msgid "Hide Operating Systems" | 667 | msgid "Hide Operating Systems" |
| 668 | msgstr "Esconder Sistemas Operacionais" | 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 | msgid "Operating System" | 671 | msgid "Operating System" |
| 672 | msgstr "Sistema Operacional" | 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 | msgid "Finality" | 678 | msgid "Finality" |
| 679 | msgstr "Finalidade" | 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 | msgid "Licenses" | 683 | msgid "Licenses" |
| 684 | msgstr "Licenças" | 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 | msgid "License link" | 689 | msgid "License link" |
| 690 | msgstr "Endereço da licença" | 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 | msgid "Link to Repository: " | 694 | msgid "Link to Repository: " |
| 695 | msgstr "Link pro Repositório: " | 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 | msgid "Complete Profile" | 698 | msgid "Complete Profile" |
| 699 | msgstr "Complete o Perfil" | 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 | msgid "Complete your profile" | 702 | msgid "Complete your profile" |
| 703 | msgstr "Complete o seu perfil" | 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 | msgid "Hide" | 706 | msgid "Hide" |
| 707 | msgstr "Esconder" | 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 | msgid "This community needs a software to use this block" | 712 | msgid "This community needs a software to use this block" |
| 713 | msgstr "Esta comunidade precisa de um software para utilizar este bloco" | 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 | msgid "Repository" | 716 | msgid "Repository" |
| 717 | msgstr "Repositório" | 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 | msgid "Catalog of Public Software" | 720 | msgid "Catalog of Public Software" |
| 721 | msgstr "Software Público" | 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 | msgid "Search" | 724 | msgid "Search" |
| 725 | msgstr "Pesquisar" | 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 | msgid "Access the complete catalog" | 729 | msgid "Access the complete catalog" |
| 730 | msgstr "Acesse o catálogo completo" | 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 | msgid "Download" | 733 | msgid "Download" |
| 734 | msgstr "Baixar" | 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 | msgid "Minimal Requirements" | 737 | msgid "Minimal Requirements" |
| 738 | msgstr "Requisitos Mínimos" | 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 | msgid "Version News" | 741 | msgid "Version News" |
| 742 | msgstr "Novidades da Versão" | 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 | msgid "Licensed by" | 745 | msgid "Licensed by" |
| 746 | msgstr "Licenciado por " | 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 | msgid "Categories:" | 749 | msgid "Categories:" |
| 750 | msgstr "Categorias:" | 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 | msgid "\"#{category.name}\"" | 753 | msgid "\"#{category.name}\"" |
| 754 | msgstr "\"#{category.name}\"" | 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 | msgid "Categories" | 757 | msgid "Categories" |
| 758 | msgstr "Categorias" | 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 | msgid "Tags" | 761 | msgid "Tags" |
| 762 | msgstr "Tags" | 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 | msgid "See More" | 765 | msgid "See More" |
| 766 | msgstr "Veja Mais" | 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 | msgid "Control panel" | 769 | msgid "Control panel" |
| 770 | msgstr "Painel de controle" | 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 | msgid "\"#{block.owner.software_info.acronym} - \"" | 773 | msgid "\"#{block.owner.software_info.acronym} - \"" |
| 774 | msgstr "\"#{block.owner.software_info.acronym} - \"" | 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 | msgid "\"#{block.owner.name}\"" | 777 | msgid "\"#{block.owner.name}\"" |
| 778 | msgstr "\"#{block.owner.name}\"" | 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 | msgid "Edit software" | 781 | msgid "Edit software" |
| 782 | msgstr "Editar software" | 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 | msgid "Operating Platform" | 785 | msgid "Operating Platform" |
| 786 | msgstr "Plataforma Operacional" | 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 | msgid "Features" | 789 | msgid "Features" |
| 790 | msgstr "Características" | 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 | msgid "Operating Systems" | 793 | msgid "Operating Systems" |
| 794 | msgstr "Sistemas Operacionais" | 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 | msgid "Programming languages" | 797 | msgid "Programming languages" |
| 798 | msgstr "Linguagens de Programação" | 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 | msgid "Databases" | 801 | msgid "Databases" |
| 802 | msgstr "Bancos de Dados" | 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 | msgid "Demonstration url" | 805 | msgid "Demonstration url" |
| 806 | msgstr "Url de demonstração" | 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 | msgid "Public Software" | 811 | msgid "Public Software" |
| 812 | msgstr "Software Público" | 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 | msgid "Public software" | 816 | msgid "Public software" |
| 817 | msgstr "Software público" | 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 | msgid "Adherent to e-PING ?" | 820 | msgid "Adherent to e-PING ?" |
| 821 | msgstr "Aderente ao e-PING ?" | 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 | msgid "Adherent to e-MAG ?" | 824 | msgid "Adherent to e-MAG ?" |
| 825 | msgstr "Aderente ao e-MAG ?" | 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 | msgid "Adherent to ICP-Brasil ?" | 828 | msgid "Adherent to ICP-Brasil ?" |
| 829 | msgstr "Aderente ao ICP-Brasil?" | 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 | msgid "Adherent to e-ARQ ?" | 832 | msgid "Adherent to e-ARQ ?" |
| 833 | msgstr "Aderente ao e-ARQ?" | 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 | msgid "Internacionalizable ?" | 836 | msgid "Internacionalizable ?" |
| 837 | msgstr "Internacionalizável?" | 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 | msgid " Information" | 840 | msgid " Information" |
| 841 | msgstr " Informação" | 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 | msgid "Acronym" | 848 | msgid "Acronym" |
| 849 | msgstr "Sigla" | 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 | msgid "It is a software of..." | 853 | msgid "It is a software of..." |
| 854 | msgstr "É um software de ..." | 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 | msgid "Link to Repository" | 857 | msgid "Link to Repository" |
| 858 | msgstr "Link pro Repositório" | 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 | msgid "New Operating System" | 861 | msgid "New Operating System" |
| 862 | msgstr "Novo Sistema Operacional" | 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 | msgid "Specifications" | 865 | msgid "Specifications" |
| 866 | msgstr "Especificações" | 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 | msgid "Save" | 872 | msgid "Save" |
| 873 | msgstr "Salvar" | 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 | msgid "Back to control panel" | 876 | msgid "Back to control panel" |
| 877 | msgstr "Voltar para o painel de controle" | 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 | msgid "New Library" | 880 | msgid "New Library" |
| 881 | msgstr "Nova Biblioteca" | 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 | msgid "New Database" | 884 | msgid "New Database" |
| 885 | msgstr "Novo Banco de Dados" | 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 | msgid "New language" | 888 | msgid "New language" |
| 889 | msgstr "Nova linguagem" | 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 | msgid "Step 1/2 - Software Creation" | 892 | msgid "Step 1/2 - Software Creation" |
| 893 | msgstr "Passo 1/2 - Criação de Software" | 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 | msgid "Creating new software" | 896 | msgid "Creating new software" |
| 897 | msgstr "Criando novo software" | 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 | msgid "" | 902 | msgid "" |
| 903 | "Note that the creation of communities in this environment is restricted. " | 903 | "Note that the creation of communities in this environment is restricted. " |
| 904 | "Your request to create this new community will be sent to %{environment} " | 904 | "Your request to create this new community will be sent to %{environment} " |
| @@ -910,139 +910,139 @@ msgstr "" | @@ -910,139 +910,139 @@ msgstr "" | ||
| 910 | "administradores do %{environment} e será aprovada ou rejeitada de acordo com " | 910 | "administradores do %{environment} e será aprovada ou rejeitada de acordo com " |
| 911 | "seus métodos e critérios. " | 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 | msgid "\"Can`t create new software: #{@errors.length} errors\"" | 914 | msgid "\"Can`t create new software: #{@errors.length} errors\"" |
| 915 | msgstr "\"Não é possível criar um novo software: #{@errors.length} erros\"" | 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 | msgid "License Version: " | 918 | msgid "License Version: " |
| 919 | msgstr "Versão da Licença: " | 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 | msgid "Create" | 922 | msgid "Create" |
| 923 | msgstr "Criar" | 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 | msgid "Cancel" | 926 | msgid "Cancel" |
| 927 | msgstr "Cancelar" | 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 | msgid "Edit Institution" | 930 | msgid "Edit Institution" |
| 931 | msgstr "Editar Instituição" | 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 | msgid "\"Can`t create new Institution: #{flash[:errors].length} errors\"" | 935 | msgid "\"Can`t create new Institution: #{flash[:errors].length} errors\"" |
| 936 | msgstr "" | 936 | msgstr "" |
| 937 | "\"Não é possível criar nova Instituição: #{flash[: errors].length} erros\"" | 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 | msgid "All fields with (*) are mandatory" | 941 | msgid "All fields with (*) are mandatory" |
| 942 | msgstr "Todos os campos com (*) são obrigatórios" | 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 | msgid "Public Institution" | 946 | msgid "Public Institution" |
| 947 | msgstr "Instituição Pública" | 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 | msgid "Private Institution" | 951 | msgid "Private Institution" |
| 952 | msgstr "Instituição Privada" | 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 | msgid "Institution name already exists" | 956 | msgid "Institution name already exists" |
| 957 | msgstr "Nome da instituição já existe" | 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 | msgid "Corporate Name" | 961 | msgid "Corporate Name" |
| 962 | msgstr "Razão Social" | 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 | msgid "Country" | 966 | msgid "Country" |
| 967 | msgstr "País" | 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 | msgid "State" | 971 | msgid "State" |
| 972 | msgstr "Estado" | 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 | msgid "CNPJ" | 976 | msgid "CNPJ" |
| 977 | msgstr "CNPJ" | 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 | msgid "Fantasy name" | 981 | msgid "Fantasy name" |
| 982 | msgstr "Nome Fantasia" | 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 | msgid "Select a Governmental Sphere" | 986 | msgid "Select a Governmental Sphere" |
| 987 | msgstr "Selecione uma Esfera Governamental" | 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 | msgid "Select a Governmental Power" | 991 | msgid "Select a Governmental Power" |
| 992 | msgstr "Selecione um Poder Governamental" | 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 | msgid "Select a Juridical Nature" | 996 | msgid "Select a Juridical Nature" |
| 997 | msgstr "Selecione uma Natureza Jurídica" | 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 | msgid "SISP?" | 1001 | msgid "SISP?" |
| 1002 | msgstr "SISP?" | 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 | msgid "New Institution" | 1005 | msgid "New Institution" |
| 1006 | msgstr "Nova Instituição" | 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 | msgid "Could not send the form data to the server" | 1009 | msgid "Could not send the form data to the server" |
| 1010 | msgstr "Não foi possível enviar os dados do formulário para o servidor" | 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 | msgid "Creating institution" | 1013 | msgid "Creating institution" |
| 1014 | msgstr "Criando Instituição" | 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 | msgid "Categories filter" | 1017 | msgid "Categories filter" |
| 1018 | msgstr "Filtro de Categorias" | 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 | msgid "Type a category name here" | 1021 | msgid "Type a category name here" |
| 1022 | msgstr "Escreva uma categoria aqui" | 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 | msgid "Software licence" | 1025 | msgid "Software licence" |
| 1026 | msgstr "Licença do Software" | 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 | msgid "Link software repository" | 1029 | msgid "Link software repository" |
| 1030 | msgstr "Link pro Repositório" | 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 | msgid "Software Categories" | 1033 | msgid "Software Categories" |
| 1034 | msgstr "Categorias de Software" | 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 | msgid "This software doesn't have categories" | 1037 | msgid "This software doesn't have categories" |
| 1038 | msgstr "Este software não tem categorias" | 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 | msgid "Type words about the %s you're looking for" | 1042 | msgid "Type words about the %s you're looking for" |
| 1043 | msgstr "Escreva palavras sobre o software que você está procurando" | 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 | msgid "Step 2/2 - Software Community Configuration" | 1046 | msgid "Step 2/2 - Software Community Configuration" |
| 1047 | msgstr "Passo 2/2 - Configuração da Comunidade do Software" | 1047 | msgstr "Passo 2/2 - Configuração da Comunidade do Software" |
| 1048 | 1048 |
public/mpog-incomplete-registration.js
| 1 | (function() { | 1 | (function() { |
| 2 | var AJAX_URL = { | 2 | var AJAX_URL = { |
| 3 | hide_registration_incomplete_percentage: | 3 | hide_registration_incomplete_percentage: |
| 4 | - url_with_subdirectory("/plugin/mpog_software/hide_registration_incomplete_percentage") | 4 | + url_with_subdirectory("/plugin/software_communities/hide_registration_incomplete_percentage") |
| 5 | }; | 5 | }; |
| 6 | 6 | ||
| 7 | 7 |
public/mpog-institution-validations.js
| 1 | (function(){ | 1 | (function(){ |
| 2 | var AJAX_URL = { | 2 | var AJAX_URL = { |
| 3 | create_institution_modal: | 3 | create_institution_modal: |
| 4 | - url_with_subdirectory("/plugin/mpog_software/create_institution"), | 4 | + url_with_subdirectory("/plugin/software_communities/create_institution"), |
| 5 | new_institution: | 5 | new_institution: |
| 6 | - url_with_subdirectory("/plugin/mpog_software/new_institution"), | 6 | + url_with_subdirectory("/plugin/software_communities/new_institution"), |
| 7 | institution_already_exists: | 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 | get_institutions: | 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 | (function($){ | 1 | (function($){ |
| 2 | var AJAX_URL = { | 2 | var AJAX_URL = { |
| 3 | get_field_data: | 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 | get_license_data: | 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 | (function(){ | 1 | (function(){ |
| 2 | var AJAX_URL = { | 2 | var AJAX_URL = { |
| 3 | check_reactivate_account: | 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,7 +290,7 @@ | ||
| 290 | jQuery(document).ready(function(){ | 290 | jQuery(document).ready(function(){ |
| 291 | change_edit_fields_order(); // To change the fields order, it MUST be the first function executed | 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 | set_initial_form_custom_data(selectFieldChoices); | 294 | set_initial_form_custom_data(selectFieldChoices); |
| 295 | 295 | ||
| 296 | jQuery('#secondary_email_field').blur(validate_email_format); | 296 | jQuery('#secondary_email_field').blur(validate_email_format); |
public/style.css
| @@ -72,7 +72,7 @@ | @@ -72,7 +72,7 @@ | ||
| 72 | height: auto; | 72 | height: auto; |
| 73 | } | 73 | } |
| 74 | 74 | ||
| 75 | -.mpog_search_form_fields { | 75 | +.software_search_form_fields { |
| 76 | margin-top: 10px; | 76 | margin-top: 10px; |
| 77 | width: 80%; | 77 | width: 80%; |
| 78 | height: auto; | 78 | height: auto; |
| @@ -80,16 +80,16 @@ | @@ -80,16 +80,16 @@ | ||
| 80 | float: left; | 80 | float: left; |
| 81 | } | 81 | } |
| 82 | 82 | ||
| 83 | -.mpog_search_form_button { | 83 | +.software_search_form_button { |
| 84 | margin-top: 10px; | 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 | width: 90%; | 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 | width: 22%; | 93 | width: 22%; |
| 94 | } | 94 | } |
| 95 | 95 |
script/schedule_institution_update.sh
| 1 | #!/bin/bash | 1 | #!/bin/bash |
| 2 | 2 | ||
| 3 | -cp plugins/mpog_software/config/institutions_update.example /etc/cron.d/institutions_update | 3 | +cp plugins/software_communities/config/institutions_update.example /etc/cron.d/institutions_update |
| 4 | echo "Created crontab file in /etc/cron.d/institution_update..." | 4 | echo "Created crontab file in /etc/cron.d/institution_update..." |
test/functional/mpog_software_plugin_controller_test.rb
| 1 | require File.dirname(__FILE__) + '/../../../../test/test_helper' | 1 | require File.dirname(__FILE__) + '/../../../../test/test_helper' |
| 2 | require File.dirname(__FILE__) + '/../helpers/institution_test_helper' | 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 | def setup | 9 | def setup |
| 10 | @admin = create_user("adminuser").person | 10 | @admin = create_user("adminuser").person |
| @@ -12,7 +12,7 @@ class MpogSoftwarePluginControllerTest < ActionController::TestCase | @@ -12,7 +12,7 @@ class MpogSoftwarePluginControllerTest < ActionController::TestCase | ||
| 12 | @controller.stubs(:current_user).returns(@admin.user) | 12 | @controller.stubs(:current_user).returns(@admin.user) |
| 13 | 13 | ||
| 14 | @environment = Environment.default | 14 | @environment = Environment.default |
| 15 | - @environment.enabled_plugins = ['MpogSoftwarePlugin'] | 15 | + @environment.enabled_plugins = ['SoftwareCommunitiesPlugin'] |
| 16 | @environment.add_admin(@admin) | 16 | @environment.add_admin(@admin) |
| 17 | @environment.save | 17 | @environment.save |
| 18 | 18 | ||
| @@ -192,7 +192,7 @@ class MpogSoftwarePluginControllerTest < ActionController::TestCase | @@ -192,7 +192,7 @@ class MpogSoftwarePluginControllerTest < ActionController::TestCase | ||
| 192 | 192 | ||
| 193 | post :new_institution, fields | 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 | end | 196 | end |
| 197 | 197 | ||
| 198 | should "Create foreign institution without city, state and cnpj by post" do | 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,16 +3,16 @@ require File.dirname(__FILE__) + '/../helpers/software_test_helper' | ||
| 3 | require File.dirname(__FILE__) + '/../helpers/institution_test_helper' | 3 | require File.dirname(__FILE__) + '/../helpers/institution_test_helper' |
| 4 | require( | 4 | require( |
| 5 | File.dirname(__FILE__) + | 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 | end | 10 | end |
| 11 | 11 | ||
| 12 | -class MpogSoftwarePluginMyprofileControllerTest < ActionController::TestCase | 12 | +class SoftwareCommunitiesPluginMyprofileControllerTest < ActionController::TestCase |
| 13 | include SoftwareTestHelper | 13 | include SoftwareTestHelper |
| 14 | def setup | 14 | def setup |
| 15 | - @controller = MpogSoftwarePluginMyprofileController.new | 15 | + @controller = SoftwareCommunitiesPluginMyprofileController.new |
| 16 | @request = ActionController::TestRequest.new | 16 | @request = ActionController::TestRequest.new |
| 17 | @response = ActionController::TestResponse.new | 17 | @response = ActionController::TestResponse.new |
| 18 | @person = create_user('person').person | 18 | @person = create_user('person').person |
| @@ -31,7 +31,7 @@ class MpogSoftwarePluginMyprofileControllerTest < ActionController::TestCase | @@ -31,7 +31,7 @@ class MpogSoftwarePluginMyprofileControllerTest < ActionController::TestCase | ||
| 31 | 31 | ||
| 32 | login_as(@person.user_login) | 32 | login_as(@person.user_login) |
| 33 | @environment = Environment.default | 33 | @environment = Environment.default |
| 34 | - @environment.enable_plugin('MpogSoftwarePlugin') | 34 | + @environment.enable_plugin('SoftwareCommunitiesPlugin') |
| 35 | @environment.save! | 35 | @environment.save! |
| 36 | end | 36 | end |
| 37 | 37 | ||
| @@ -257,4 +257,4 @@ class MpogSoftwarePluginMyprofileControllerTest < ActionController::TestCase | @@ -257,4 +257,4 @@ class MpogSoftwarePluginMyprofileControllerTest < ActionController::TestCase | ||
| 257 | assert_equal SoftwareInfo.last.license_info.link, another_license_link | 257 | assert_equal SoftwareInfo.last.license_info.link, another_license_link |
| 258 | end | 258 | end |
| 259 | 259 | ||
| 260 | -end | ||
| 261 | \ No newline at end of file | 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,7 +22,7 @@ class ProfileEditorControllerTest < ActionController::TestCase | ||
| 22 | ) | 22 | ) |
| 23 | 23 | ||
| 24 | @environment = Environment.default | 24 | @environment = Environment.default |
| 25 | - @environment.enabled_plugins = ['MpogSoftwarePlugin'] | 25 | + @environment.enabled_plugins = ['SoftwareCommunitiesPlugin'] |
| 26 | admin = create_user("adminuser").person | 26 | admin = create_user("adminuser").person |
| 27 | admin.stubs(:has_permission?).returns("true") | 27 | admin.stubs(:has_permission?).returns("true") |
| 28 | login_as('adminuser') | 28 | login_as('adminuser') |
test/functional/search_controller_test.rb
| @@ -12,7 +12,7 @@ class SearchControllerTest < ActionController::TestCase | @@ -12,7 +12,7 @@ class SearchControllerTest < ActionController::TestCase | ||
| 12 | 12 | ||
| 13 | def setup | 13 | def setup |
| 14 | @environment = Environment.default | 14 | @environment = Environment.default |
| 15 | - @environment.enabled_plugins = ['MpogSoftwarePlugin'] | 15 | + @environment.enabled_plugins = ['SoftwareCommunitiesPlugin'] |
| 16 | @environment.save | 16 | @environment.save |
| 17 | 17 | ||
| 18 | @controller = SearchController.new | 18 | @controller = SearchController.new |
test/unit/mpog_person_test.rb
| @@ -3,11 +3,11 @@ | @@ -3,11 +3,11 @@ | ||
| 3 | require File.dirname(__FILE__) + '/../../../../test/test_helper' | 3 | require File.dirname(__FILE__) + '/../../../../test/test_helper' |
| 4 | require File.dirname(__FILE__) + '/../helpers/plugin_test_helper' | 4 | require File.dirname(__FILE__) + '/../helpers/plugin_test_helper' |
| 5 | 5 | ||
| 6 | -class MpogSoftwarePluginPersonTest < ActiveSupport::TestCase | 6 | +class SoftwareCommunitiesPluginPersonTest < ActiveSupport::TestCase |
| 7 | include PluginTestHelper | 7 | include PluginTestHelper |
| 8 | 8 | ||
| 9 | def setup | 9 | def setup |
| 10 | - @plugin = MpogSoftwarePlugin.new | 10 | + @plugin = SoftwareCommunitiesPlugin.new |
| 11 | 11 | ||
| 12 | @user = fast_create(User) | 12 | @user = fast_create(User) |
| 13 | @person = create_person( | 13 | @person = create_person( |
test/unit/mpog_software_plugin_user_test.rb
| 1 | require File.dirname(__FILE__) + '/../../../../test/test_helper' | 1 | require File.dirname(__FILE__) + '/../../../../test/test_helper' |
| 2 | require File.dirname(__FILE__) + '/../helpers/plugin_test_helper' | 2 | require File.dirname(__FILE__) + '/../helpers/plugin_test_helper' |
| 3 | 3 | ||
| 4 | -class MpogSoftwarePluginUserTest < ActiveSupport::TestCase | 4 | +class SoftwareCommunitiesPluginUserTest < ActiveSupport::TestCase |
| 5 | include PluginTestHelper | 5 | include PluginTestHelper |
| 6 | 6 | ||
| 7 | should 'not save user whose both email and secondary email are the same' do | 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,7 +6,7 @@ class SoftwareHelperTest < ActiveSupport::TestCase | ||
| 6 | 6 | ||
| 7 | should "Create ProgrammingLanguages based on file with languages names" do | 7 | should "Create ProgrammingLanguages based on file with languages names" do |
| 8 | ProgrammingLanguage.delete_all | 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 | SoftwareHelper.create_list_with_file(PATH_TO_FILE, ProgrammingLanguage) | 11 | SoftwareHelper.create_list_with_file(PATH_TO_FILE, ProgrammingLanguage) |
| 12 | 12 |
test/unit/software_registration_test.rb
| @@ -4,7 +4,7 @@ class SoftwareRegistrationTest < ActiveSupport::TestCase | @@ -4,7 +4,7 @@ class SoftwareRegistrationTest < ActiveSupport::TestCase | ||
| 4 | 4 | ||
| 5 | def setup | 5 | def setup |
| 6 | @environment = Environment.default | 6 | @environment = Environment.default |
| 7 | - @environment.enable_plugin(MpogSoftwarePlugin) | 7 | + @environment.enable_plugin(SoftwareCommunitiesPlugin) |
| 8 | end | 8 | end |
| 9 | 9 | ||
| 10 | def teardown | 10 | def teardown |
views/mpog_software_plugin_myprofile/edit_software.html.erb
| @@ -2,7 +2,7 @@ | @@ -2,7 +2,7 @@ | ||
| 2 | 2 | ||
| 3 | <%= error_messages_for :software_info %> | 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 | <% tabs << {:title => _("Software"), :id => 'basic-info', | 7 | <% tabs << {:title => _("Software"), :id => 'basic-info', |
| 8 | :content => (render :partial => 'main_software_editor_extras')} %> | 8 | :content => (render :partial => 'main_software_editor_extras')} %> |
views/mpog_software_plugin_myprofile/new_software.html.erb
| 1 | -<%= stylesheet_link_tag('plugins/mpog_software/mpog-software') %> | 1 | +<%= stylesheet_link_tag('plugins/software_communities/mpog-software') %> |
| 2 | 2 | ||
| 3 | <div class="software-step-info"> | 3 | <div class="software-step-info"> |
| 4 | <h3><%= _("Step 1/2 - Software Creation")%></h3> | 4 | <h3><%= _("Step 1/2 - Software Creation")%></h3> |
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 | <div id="software-search-container"> | 1 | <div id="software-search-container"> |
| 2 | <%= search_page_title( @titles[@asset], @category ) %> | 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 | <%= display_results(@searches, @asset) %> | 6 | <%= display_results(@searches, @asset) %> |
| 7 | 7 |