Commit aaebddf21a7c799c87b6b53ea1a9fd4c2fd2b958

Authored by MoisesMachado
1 parent e5160e47

ActionItem28: various changes due to utilization of attachment_fu plugin and ini…

…tial implementation of category view functionaluty still withou route. fixed the list_block and enterprises_block to work with the new block system

git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@963 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing 35 changed files with 1103 additions and 767 deletions   Show diff stats
app/controllers/my_profile/manage_products_controller.rb
1 1 class ManageProductsController < ApplicationController
2 2 needs_profile
3 3  
4   - protect 'manage_products', :profile
  4 +# protect 'manage_products', :profile
5 5  
6 6 def index
7 7 @products = @profile.products
... ... @@ -13,6 +13,7 @@ class ManageProductsController &lt; ApplicationController
13 13  
14 14 def new
15 15 @product = @profile.products.build(params[:product])
  16 + @product.build_image unless @product.image
16 17 if request.post?
17 18 if @product.save
18 19 flash[:notice] = _('Product succesfully created')
... ...
app/controllers/my_profile/profile_editor_controller.rb
... ... @@ -11,6 +11,7 @@ class ProfileEditorController &lt; MyProfileController
11 11 %w[
12 12 FavoriteLinksProfile
13 13 ListBlock
  14 + EnterprisesBlock
14 15 ]
15 16 end
16 17  
... ... @@ -34,5 +35,18 @@ class ProfileEditorController &lt; MyProfileController
34 35 render :action => @info.class.name.underscore
35 36 end
36 37 end
  38 +
  39 + def change_image
  40 + @image = @profile.image ? @profile.image : @profile.build_image
  41 + if request.post?
  42 + if @profile.image.update_attributes(params[:image])
  43 + flash[:notice] = _('Image successfully uploaded')
  44 + redirect_to :action => 'index'
  45 + else
  46 + flash[:notice] = _('Could not upload image')
  47 + render :action => 'change_imange'
  48 + end
  49 + end
  50 + end
37 51 end
38 52  
... ...
app/design_blocks/enterprises_block/controllers/enterprises_block_controller.rb 0 → 100644
... ... @@ -0,0 +1,51 @@
  1 +class EnterprisesBlockController < ApplicationController
  2 +
  3 + # This controller always has the object @design_block available to it.
  4 + # The method acts_as_design_block load a before_filter that always load
  5 + # this object.
  6 +
  7 + needs_profile
  8 +
  9 + acts_as_design_block
  10 +
  11 + # You must have a hash on format:
  12 + # {
  13 + # 'action name' => 'How the action will be displayed on menu'
  14 + # }
  15 + #
  16 + # EX:
  17 + # CONTROL_ACTION_OPTIONS = {
  18 + # 'design_edit' => _('Edit'),
  19 + # 'manage_links' => _('Manage Links')
  20 + # }
  21 + #
  22 + # This hash will define the options menu on edit mode.
  23 + CONTROL_ACTION_OPTIONS = {
  24 +# 'edit' => _('Edit')
  25 + }
  26 +
  27 +
  28 + ###########################
  29 + # Mandatory methods
  30 + ###########################
  31 +
  32 + def index
  33 + @enterprises = Enterprise.find(:all)
  34 + design_render
  35 + end
  36 +
  37 + ###########################
  38 + # Other Sample of methods
  39 + ###########################
  40 +
  41 +# def edit
  42 +# design_render_on_edit
  43 +# end
  44 +
  45 +# def save
  46 +# @design_block.update_attributes(params[:design_block])
  47 +# design_render_on_edit :nothing => true
  48 +# end
  49 +
  50 +
  51 +end
... ...
app/design_blocks/enterprises_block/helpers/enterprises_block_helper.rb 0 → 100644
... ... @@ -0,0 +1,3 @@
  1 +module EnterprisesBlockHelper
  2 +
  3 +end
... ...
app/design_blocks/enterprises_block/helpers/list_block_helper.rb 0 → 100644
... ... @@ -0,0 +1,3 @@
  1 +module ListBlockHelper
  2 +
  3 +end
... ...
app/design_blocks/enterprises_block/models/enterprises_block.rb 0 → 100644
... ... @@ -0,0 +1,15 @@
  1 +class EnterprisesBlock < Design::Block
  2 +
  3 + # Define an specific method using the settings hash serialized
  4 + # variable to keep the value desired by method.
  5 + #
  6 + # EX:
  7 + # def max_number_of_element= value
  8 + # self.settings[:limit_number] = value
  9 + # end
  10 +
  11 + def self.description
  12 + _('Enterprises Block')
  13 + end
  14 +
  15 +end
... ...
app/design_blocks/enterprises_block/views/index.rhtml 0 → 100644
... ... @@ -0,0 +1,5 @@
  1 +<ul class='enterprises_list_block'>
  2 + <% @enterprises.each do |e| %>
  3 + <li> <%= link_to_homepage(content_tag('span', e.name), e.identifier) %> </li>
  4 + <% end %>
  5 +</ul>
... ...
app/design_blocks/list_block/controllers/list_block_controller.rb 0 → 100644
... ... @@ -0,0 +1,51 @@
  1 +class ListBlockController < ApplicationController
  2 +
  3 + # This controller always has the object @design_block available to it.
  4 + # The method acts_as_design_block load a before_filter that always load
  5 + # this object.
  6 +
  7 + needs_profile
  8 +
  9 + acts_as_design_block
  10 +
  11 + # You must have a hash on format:
  12 + # {
  13 + # 'action name' => 'How the action will be displayed on menu'
  14 + # }
  15 + #
  16 + # EX:
  17 + # CONTROL_ACTION_OPTIONS = {
  18 + # 'design_edit' => _('Edit'),
  19 + # 'manage_links' => _('Manage Links')
  20 + # }
  21 + #
  22 + # This hash will define the options menu on edit mode.
  23 + CONTROL_ACTION_OPTIONS = {
  24 +# 'edit' => _('Edit')
  25 + }
  26 +
  27 +
  28 + ###########################
  29 + # Mandatory methods
  30 + ###########################
  31 +
  32 + def index
  33 + @people = Person.find(:all)
  34 + design_render
  35 + end
  36 +
  37 + ###########################
  38 + # Other Sample of methods
  39 + ###########################
  40 +
  41 +# def edit
  42 +# design_render_on_edit
  43 +# end
  44 +
  45 +# def save
  46 +# @design_block.update_attributes(params[:design_block])
  47 +# design_render_on_edit :nothing => true
  48 +# end
  49 +
  50 +
  51 +end
... ...
app/design_blocks/list_block/helpers/list_block_helper.rb 0 → 100644
... ... @@ -0,0 +1,3 @@
  1 +module ListBlockHelper
  2 +
  3 +end
... ...
app/design_blocks/list_block/models/list_block.rb 0 → 100644
... ... @@ -0,0 +1,15 @@
  1 +class ListBlock < Design::Block
  2 +
  3 + # Define an specific method using the settings hash serialized
  4 + # variable to keep the value desired by method.
  5 + #
  6 + # EX:
  7 + # def max_number_of_element= value
  8 + # self.settings[:limit_number] = value
  9 + # end
  10 +
  11 + def self.description
  12 + _('List Block')
  13 + end
  14 +
  15 +end
... ...
app/design_blocks/list_block/views/index.rhtml 0 → 100644
... ... @@ -0,0 +1,5 @@
  1 +<ul class='people_list_block'>
  2 + <% @people.each do |p| %>
  3 + <li> <%= link_to_homepage(content_tag('span', p.name), p.identifier) %> </li>
  4 + <% end %>
  5 +</ul>
... ...
app/helpers/application_helper.rb
... ... @@ -244,7 +244,11 @@ module ApplicationHelper
244 244 # Current implementation generates a <label> tag for +label+ and wrap the
245 245 # label and the control with a <div> tag with class 'formfield'
246 246 def display_form_field(label, html_for_field)
247   - content_tag('div', content_tag('div', content_tag('label', label)) +html_for_field, :class => 'formfield')
  247 + content_tag('div', content_tag('div', content_tag('label', label)) + html_for_field, :class => 'formfield')
  248 + end
  249 +
  250 + def display_submit_tag(label)
  251 + content_tag('p', submit_tag( label, :class => 'submit'), :class => 'submitline')
248 252 end
249 253  
250 254 alias_method :labelled_form_field, :display_form_field
... ...
app/models/enterprises_block.rb
... ... @@ -1,20 +0,0 @@
1   -class EnterprisesBlock < Design::Block
2   -
3   - def content
4   -
5   - lambda do
6   - content_tag(
7   - 'ul',
8   - Enterprise.find(:all).map do |p|
9   - content_tag(
10   - 'li',
11   - link_to_homepage(content_tag('span', p.name), p.identifier)
12   - )
13   - end.join("\n"),
14   - :class => 'enterprises_list_block'
15   - )
16   - end
17   -
18   - end
19   -
20   -end
app/models/image.rb 0 → 100644
... ... @@ -0,0 +1,11 @@
  1 +class Image < ActiveRecord::Base
  2 + belongs_to :owner, :polymorphic => true
  3 +
  4 + has_attachment :content_type => :image,
  5 + :storage => :file_system,
  6 + :max_size => 500.kilobytes,
  7 + :resize_to => '320x200>',
  8 + :thumbnails => { :thumb => '100x100>' }
  9 +
  10 + validates_as_attachment
  11 +end
... ...
app/models/list_block.rb
... ... @@ -1,20 +0,0 @@
1   -class ListBlock < Design::Block
2   -
3   - def content
4   -
5   - lambda do
6   - content_tag(
7   - 'ul',
8   - Person.find(:all).map do |p|
9   - content_tag(
10   - 'li',
11   - link_to_homepage(content_tag('span', p.name), p.identifier)
12   - )
13   - end.join("\n"),
14   - :class => 'people_list_block'
15   - )
16   - end
17   -
18   - end
19   -
20   -end
app/models/product.rb
... ... @@ -5,4 +5,20 @@ class Product &lt; ActiveRecord::Base
5 5 validates_presence_of :name
6 6 validates_uniqueness_of :name, :scope => :enterprise_id
7 7 validates_numericality_of :price, :allow_nil => true
  8 +
  9 + has_one :image, :as => :owner
  10 +
  11 + after_update :save_image
  12 +
  13 + def image_builder=(img)
  14 + if image && image.id == img[:id]
  15 + image.attributes = img
  16 + else
  17 + build_image(img)
  18 + end
  19 + end
  20 +
  21 + def save_image
  22 + image.save if image
  23 + end
8 24 end
... ...
app/models/profile.rb
... ... @@ -45,6 +45,8 @@ class Profile &lt; ActiveRecord::Base
45 45 has_many :articles
46 46 belongs_to :home_page, :class_name => Article.name, :foreign_key => 'home_page_id'
47 47  
  48 + has_one :image, :as => :owner
  49 +
48 50 def top_level_articles(reload = false)
49 51 if reload
50 52 @top_level_articles = nil
... ...
app/views/account/signup.rhtml
... ... @@ -18,5 +18,5 @@
18 18 </p>
19 19 <% end %>
20 20  
21   -<p class="submitline"><%= submit_tag 'Sign up', {:class => 'submit'} %></p>
  21 +<%= display_submit_tag _('Sign up') %></p>
22 22 <% end -%>
... ...
app/views/categories/_form.rhtml
... ... @@ -13,6 +13,6 @@
13 13 <%= select_color_for_category %>
14 14  
15 15 <%= f.text_field 'name' %>
16   - <%= submit_tag _('Save') %>
  16 + <%= display_submit_tag _('Save') %>
17 17 <%= link_to _('Cancel'), :action => 'index' %>
18 18 <% end %>
... ...
app/views/environment_role_manager/change_role.rhtml
... ... @@ -8,6 +8,6 @@
8 8 <% end %>
9 9 <%= hidden_field_tag 'person', @admin.id %>
10 10  
11   - <%= submit_tag _('Save changes') %>
  11 + <%= display_submit_tag _('Save changes') %>
12 12 <%= link_to _('Cancel'), :action => 'index' %>
13 13 <% end %>
... ...
app/views/environment_role_manager/make_admin.rhtml
... ... @@ -9,5 +9,5 @@
9 9 <% @roles.each do |r| %>
10 10 <%= labelled_form_field(r.name, (check_box_tag "roles[]", r.id)) %>
11 11 <% end %>
12   -<%= submit_tag _('Make') %>
  12 +<%= display_submit_tag _('Make') %>
13 13 <% end %>
... ...
app/views/manage_products/_form.rhtml
1 1 <%= error_messages_for :product %> <br/>
2 2  
3   -<% form_for :product, @product, :url => {:action => mode} do |f| %>
4   - <%= _('Name:') %> <%= f.text_field :name %><br/>
5   - <%= _('Price:') %> <%= f.text_field :price %><br/>
6   - <%= _('Description:') %><br/> <%= f.text_area :description %><br/>
7   - <%= _('Category:') %> <%= f.select :product_category_id,ProductCategory.find(:all).map{|pc|[pc.name,pc.id]}, {:include_blank => true} %><br/>
8   - <%= submit_tag mode == 'new' ? _('Create product') : _('Save changes') %>
  3 +<% form_for :product, @product, :html => {:multipart => true }, :url => {:action => mode} do |f| %>
  4 + <%= display_form_field( _('Name:'), f.text_field(:name) ) %>
  5 + <%= display_form_field( _('Price:'), f.text_field(:price) ) %>
  6 + <%= display_form_field( _('Description:'), f.text_area(:description) ) %>
  7 + <%= display_form_field( _('Image:'), file_field_tag( "product[image_builder][uploaded_data]" ) ) %>
  8 + <%= display_form_field( _('category:'), f.select( :product_category_id,ProductCategory.find(:all).map{|pc|[pc.name,pc.id]}, {:include_blank => true} )) %>
  9 + <%= display_submit_tag(mode == 'new' ? _('Create product') : _('Save changes')) %>
9 10 <% end %>
... ...
app/views/manage_products/show.rhtml
1 1 <h3> <%= @product.name %> </h3>
2 2  
  3 +<p> <%= image_tag @product.image.public_filename %> </p>
3 4 <p> <%= _('Price: ') %> <%= @product.price %> </p>
4 5 <p> <%= _('Description: ') %> <%= @product.description %> </p>
5 6 <p> <%= _('Category: ') %> <%= @product.product_category ? @product.product_category.name : _('Uncategorized product') %> </p>
... ...
app/views/profile_editor/change_image.rhtml 0 → 100644
... ... @@ -0,0 +1,4 @@
  1 +<% form_for :image, @image, :html => { :multipart => true }, :url => { :action => 'change_image'} do |f| %>
  2 + <%= display_form_field(_('Image'), f.file_field( :uploaded_data ) ) %>
  3 + <%= display_submit_tag(_('Upload')) %>
  4 +<% end %>
... ...
app/views/profile_editor/index.rhtml
1 1 <h2><%= _('My profile') %></h2>
2 2  
  3 +<%= link_to (@profile.image ? image_tag( @profile.image.public_filename(:thumb)) : _('Put image')), :action => 'change_image' %>
  4 +
3 5 <%= display_profile_info(profile) %>
4 6  
5 7  
... ...
app/views/profile_members/change_role.rhtml
... ... @@ -9,6 +9,6 @@
9 9 <% end %>
10 10 <%= hidden_field_tag 'person', @member.id %>
11 11  
12   - <%= submit_tag _('Save changes') %>
  12 + <%= display_submit_tag _('Save changes') %>
13 13 <%= link_to _('Cancel'), :action => 'index' %>
14 14 <% end %>
... ...
app/views/role/_form.rhtml
... ... @@ -9,6 +9,6 @@
9 9 <%= labelled_form_field(permission_name(p), (check_box_tag "role[permissions][]", p, @role.has_permission?(p))) %>
10 10 <% end %>
11 11  
12   - <%= submit_tag (mode == :edit) ? _('Save changes') : _('Create role')%>
  12 + <%= display_submit_tag (mode == :edit) ? _('Save changes') : _('Create role')%>
13 13 <%= link_to _('Cancel'), :action => 'index' %>
14 14 <% end %>
... ...
config/routes.rb
... ... @@ -67,7 +67,7 @@ ActionController::Routing::Routes.draw do |map|
67 67 ## Test controllers.
68 68 ## FIXME: this should not be needed
69 69 ######################################################
70   - map.connect 'test/:controller/:action/:id', :controller => /.*test.*/
  70 + map.connect 'test/:controller/:action/:id' #, :controller => /.*test.*/
71 71  
72 72 # *content viewing*
73 73 # XXX this route must come last so other routes have priority over it.
... ...
db/migrate/016_create_products.rb
... ... @@ -6,6 +6,7 @@ class CreateProducts &lt; ActiveRecord::Migration
6 6 t.column :name, :string
7 7 t.column :price, :decimal
8 8 t.column :description, :text
  9 + t.column :image, :string
9 10 end
10 11 end
11 12  
... ...
db/migrate/017_create_images.rb 0 → 100644
... ... @@ -0,0 +1,20 @@
  1 +class CreateImages < ActiveRecord::Migration
  2 + def self.up
  3 + create_table :images do |t|
  4 + t.column :owner_type, :string
  5 + t.column :owner_id, :integer
  6 +
  7 + t.column :parent_id, :integer
  8 + t.column :content_type, :string
  9 + t.column :filename, :string
  10 + t.column :thumbnail, :string
  11 + t.column :size, :integer
  12 + t.column :width, :integer
  13 + t.column :height, :integer
  14 + end
  15 + end
  16 +
  17 + def self.down
  18 + drop_table :images
  19 + end
  20 +end
... ...
po/noosfero.pot
... ... @@ -6,8 +6,8 @@
6 6 #, fuzzy
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: noosfero 0.3.0\n"
10   -"POT-Creation-Date: 2007-11-09 19:03-0300\n"
  9 +"Project-Id-Version: noosfero 0.4.0\n"
  10 +"POT-Creation-Date: 2007-11-27 13:39-0300\n"
11 11 "PO-Revision-Date: 2007-08-30 18:47-0300\n"
12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 13 "Language-Team: LANGUAGE <LL@li.org>\n"
... ... @@ -16,94 +16,121 @@ msgstr &quot;&quot;
16 16 "Content-Transfer-Encoding: 8bit\n"
17 17 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
18 18  
19   -#: app/design_blocks/favourite_links/controllers/favourite_links_controller.rb:22
20   -msgid "Manage Links"
  19 +#: app/design_blocks/enterprises_block/models/enterprises_block.rb:12
  20 +msgid "Enterprises Block"
  21 +msgstr ""
  22 +
  23 +#: app/design_blocks/list_block/models/list_block.rb:12
  24 +msgid "List Block"
21 25 msgstr ""
22 26  
23   -#: app/design_blocks/favourite_links/controllers/favourite_links_controller.rb:23
  27 +#: app/design_blocks/favorite_links/controllers/favorite_links_controller.rb:4
24 28 #: app/views/role/index.rhtml:6 app/views/content_viewer/view_page.rhtml:7
25   -#: app/views/manage_tags/_a_tag.rhtml:3 app/views/profile_editor/index.rhtml:6
26   -#: app/views/profile_editor/index.rhtml:8
27   -#: app/views/categories/_category.rhtml:8
  29 +#: app/views/manage_tags/_a_tag.rhtml:3 app/views/categories/_category.rhtml:8
28 30 msgid "Edit"
29 31 msgstr ""
30 32  
31   -#: app/design_blocks/favourite_links/models/favourite_links.rb:4
32   -#: app/design_blocks/favourite_links/views/manage_links.rhtml:3
33   -msgid "Favourite Links"
  33 +#: app/design_blocks/favorite_links/controllers/favorite_links_controller.rb:5
  34 +msgid "Manage Links"
34 35 msgstr ""
35 36  
36   -#: app/controllers/environment_admin/manage_tags_controller.rb:26
  37 +#: app/design_blocks/favorite_links/models/favorite_links.rb:4
  38 +#: app/design_blocks/favorite_links_profile/models/favorite_links_profile.rb:4
  39 +#: app/design_blocks/favorite_links/views/manage_links.rhtml:3
  40 +msgid "Favorite Links"
  41 +msgstr ""
  42 +
  43 +#: app/controllers/admin/manage_tags_controller.rb:26
37 44 msgid "Tag was successfully created."
38 45 msgstr ""
39 46  
40   -#: app/controllers/environment_admin/manage_tags_controller.rb:44
  47 +#: app/controllers/admin/manage_tags_controller.rb:44
41 48 msgid "Tag was successfully updated."
42 49 msgstr ""
43 50  
44   -#: app/controllers/environment_admin/manage_tags_controller.rb:56
  51 +#: app/controllers/admin/manage_tags_controller.rb:56
45 52 msgid "Tag was successfuly destroyed"
46 53 msgstr ""
47 54  
48   -#: app/controllers/environment_admin/manage_tags_controller.rb:65
  55 +#: app/controllers/admin/manage_tags_controller.rb:65
49 56 msgid "Tag was successfuly approved"
50 57 msgstr ""
51 58  
52   -#: app/controllers/environment_admin/role_controller.rb:21
  59 +#: app/controllers/admin/role_controller.rb:21
53 60 msgid "Failed to create role"
54 61 msgstr ""
55 62  
56   -#: app/controllers/environment_admin/role_controller.rb:35
57   -#: app/controllers/environment_admin/role_controller.rb:45
  63 +#: app/controllers/admin/role_controller.rb:35
  64 +#: app/controllers/admin/role_controller.rb:45
58 65 msgid "Failed to edit role"
59 66 msgstr ""
60 67  
61   -#: app/controllers/environment_admin/features_controller.rb:13
  68 +#: app/controllers/admin/features_controller.rb:13
62 69 msgid "Features updated successfully."
63 70 msgstr ""
64 71  
65   -#: app/controllers/environment_admin/environment_role_manager_controller.rb:17
66   -#: app/controllers/profile_admin/profile_members_controller.rb:17
  72 +#: app/controllers/admin/environment_role_manager_controller.rb:17
  73 +#: app/controllers/my_profile/profile_members_controller.rb:17
67 74 msgid "Roles successfuly updated"
68 75 msgstr ""
69 76  
70   -#: app/controllers/environment_admin/environment_role_manager_controller.rb:19
71   -#: app/controllers/profile_admin/profile_members_controller.rb:19
  77 +#: app/controllers/admin/environment_role_manager_controller.rb:19
  78 +#: app/controllers/my_profile/profile_members_controller.rb:19
72 79 msgid "Couldn't change the roles"
73 80 msgstr ""
74 81  
75   -#: app/controllers/environment_admin/environment_role_manager_controller.rb:45
76   -#: app/controllers/environment_admin/environment_role_manager_controller.rb:55
  82 +#: app/controllers/admin/environment_role_manager_controller.rb:45
  83 +#: app/controllers/admin/environment_role_manager_controller.rb:55
77 84 msgid "Member succefully unassociated"
78 85 msgstr ""
79 86  
80   -#: app/controllers/environment_admin/environment_role_manager_controller.rb:47
81   -#: app/controllers/environment_admin/environment_role_manager_controller.rb:57
  87 +#: app/controllers/admin/environment_role_manager_controller.rb:47
  88 +#: app/controllers/admin/environment_role_manager_controller.rb:57
82 89 msgid "Failed to unassociate member"
83 90 msgstr ""
84 91  
85   -#: app/controllers/profile_admin_controller.rb:17
86   -msgid "This action is not available for \"%s\"."
87   -msgstr ""
88   -
89   -#: app/controllers/profile_admin/enterprise_editor_controller.rb:21
  92 +#: app/controllers/my_profile/enterprise_editor_controller.rb:21
90 93 msgid "Could not update the enterprise"
91 94 msgstr ""
92 95  
93   -#: app/controllers/profile_admin/enterprise_editor_controller.rb:31
  96 +#: app/controllers/my_profile/enterprise_editor_controller.rb:31
94 97 msgid "Enterprise sucessfully erased from the system"
95 98 msgstr ""
96 99  
97   -#: app/controllers/profile_admin/membership_editor_controller.rb:25
  100 +#: app/controllers/my_profile/membership_editor_controller.rb:25
98 101 msgid ""
99 102 "The enterprise was successfully created, the validation entity will cotact "
100 103 "you as soon as your enterprise is approved"
101 104 msgstr ""
102 105  
103   -#: app/controllers/profile_admin/membership_editor_controller.rb:28
  106 +#: app/controllers/my_profile/membership_editor_controller.rb:28
104 107 msgid "Enterprise was not created"
105 108 msgstr ""
106 109  
  110 +#: app/controllers/my_profile/manage_products_controller.rb:19
  111 +msgid "Product succesfully created"
  112 +msgstr ""
  113 +
  114 +#: app/controllers/my_profile/manage_products_controller.rb:22
  115 +msgid "Could not create the product"
  116 +msgstr ""
  117 +
  118 +#: app/controllers/my_profile/manage_products_controller.rb:31
  119 +msgid "Product succesfully updated"
  120 +msgstr ""
  121 +
  122 +#: app/controllers/my_profile/manage_products_controller.rb:34
  123 +msgid "Could not update the product"
  124 +msgstr ""
  125 +
  126 +#: app/controllers/my_profile/manage_products_controller.rb:42
  127 +msgid "Product succesfully removed"
  128 +msgstr ""
  129 +
  130 +#: app/controllers/my_profile/manage_products_controller.rb:45
  131 +msgid "Could not remove the product"
  132 +msgstr ""
  133 +
107 134 #: app/controllers/public/account_controller.rb:25
108 135 msgid "Logged in successfully"
109 136 msgstr ""
... ... @@ -128,6 +155,38 @@ msgstr &quot;&quot;
128 155 msgid "The supplied current password is incorrect."
129 156 msgstr ""
130 157  
  158 +#: app/controllers/my_profile_controller.rb:17
  159 +msgid "This action is not available for \"%s\"."
  160 +msgstr ""
  161 +
  162 +#: app/models/product.rb:-
  163 +msgid "product"
  164 +msgstr ""
  165 +
  166 +#: app/models/product.rb:-
  167 +msgid "Product|Enterprise"
  168 +msgstr ""
  169 +
  170 +#: app/models/product.rb:-
  171 +msgid "Product|Product category"
  172 +msgstr ""
  173 +
  174 +#: app/models/product.rb:-
  175 +msgid "Product|Name"
  176 +msgstr ""
  177 +
  178 +#: app/models/product.rb:-
  179 +msgid "Product|Price"
  180 +msgstr ""
  181 +
  182 +#: app/models/product.rb:-
  183 +msgid "Product|Description"
  184 +msgstr ""
  185 +
  186 +#: app/models/product.rb:-
  187 +msgid "Product|Image"
  188 +msgstr ""
  189 +
131 190 #: app/models/validation_info.rb:-
132 191 msgid "validation info"
133 192 msgstr ""
... ... @@ -231,7 +290,51 @@ msgstr &quot;&quot;
231 290 msgid "Profile|Region"
232 291 msgstr ""
233 292  
234   -#: app/models/profile.rb:7 app/helpers/application_helper.rb:199
  293 +#: app/models/profile.rb:-
  294 +msgid "article"
  295 +msgstr ""
  296 +
  297 +#: app/models/profile.rb:-
  298 +msgid "Article|Name"
  299 +msgstr ""
  300 +
  301 +#: app/models/profile.rb:-
  302 +msgid "Article|Slug"
  303 +msgstr ""
  304 +
  305 +#: app/models/profile.rb:-
  306 +msgid "Article|Path"
  307 +msgstr ""
  308 +
  309 +#: app/models/profile.rb:-
  310 +msgid "Article|Parent"
  311 +msgstr ""
  312 +
  313 +#: app/models/profile.rb:-
  314 +msgid "Article|Body"
  315 +msgstr ""
  316 +
  317 +#: app/models/profile.rb:-
  318 +msgid "Article|Profile"
  319 +msgstr ""
  320 +
  321 +#: app/models/profile.rb:-
  322 +msgid "Article|Updated on"
  323 +msgstr ""
  324 +
  325 +#: app/models/profile.rb:-
  326 +msgid "Article|Created on"
  327 +msgstr ""
  328 +
  329 +#: app/models/profile.rb:-
  330 +msgid "Article|Version"
  331 +msgstr ""
  332 +
  333 +#: app/models/profile.rb:-
  334 +msgid "Article|Lock version"
  335 +msgstr ""
  336 +
  337 +#: app/models/profile.rb:7 app/helpers/application_helper.rb:188
235 338 msgid "Edit profile"
236 339 msgstr ""
237 340  
... ... @@ -251,7 +354,7 @@ msgstr &quot;&quot;
251 354 msgid "Edit profile design"
252 355 msgstr ""
253 356  
254   -#: app/models/profile.rb:63
  357 +#: app/models/profile.rb:59
255 358 msgid "An existing profile cannot be renamed."
256 359 msgstr ""
257 360  
... ... @@ -389,6 +492,10 @@ msgstr &quot;&quot;
389 492 msgid "%{fn} must not start with www."
390 493 msgstr ""
391 494  
  495 +#: app/models/image.rb:-
  496 +msgid "image"
  497 +msgstr ""
  498 +
392 499 #: app/models/friendship.rb:-
393 500 msgid "friendship"
394 501 msgstr ""
... ... @@ -757,369 +864,108 @@ msgstr &quot;&quot;
757 864 msgid "Close"
758 865 msgstr ""
759 866  
760   -#: app/helpers/application_helper.rb:117 app/helpers/application_helper.rb:134
761   -msgid "My account"
  867 +#: app/helpers/application_helper.rb:117 app/helpers/application_helper.rb:127
  868 +#: app/views/profile_editor/index.rhtml:1
  869 +msgid "My profile"
762 870 msgstr ""
763 871  
764 872 #: app/helpers/application_helper.rb:118
765 873 msgid "My Enterprises"
766 874 msgstr ""
767 875  
768   -#: app/helpers/application_helper.rb:119 app/helpers/application_helper.rb:137
  876 +#: app/helpers/application_helper.rb:119 app/helpers/application_helper.rb:130
769 877 #: app/views/environment_role_manager/make_admin.rhtml:4
770 878 msgid "Admin"
771 879 msgstr ""
772 880  
773   -#: app/helpers/application_helper.rb:120
774   -msgid "About"
775   -msgstr ""
776   -
777   -#: app/helpers/application_helper.rb:126
778   -msgid "about"
779   -msgstr ""
780   -
781   -#: app/helpers/application_helper.rb:138 app/helpers/application_helper.rb:168
  881 +#: app/helpers/application_helper.rb:131 app/helpers/application_helper.rb:157
782 882 msgid "Logout"
783 883 msgstr ""
784 884  
785   -#: app/helpers/application_helper.rb:142 app/helpers/application_helper.rb:160
  885 +#: app/helpers/application_helper.rb:135 app/helpers/application_helper.rb:149
786 886 #: app/views/account/login.rhtml:1
787 887 msgid "Login"
788 888 msgstr ""
789 889  
790   -#: app/helpers/application_helper.rb:164
  890 +#: app/helpers/application_helper.rb:153
791 891 msgid "Not a user yet? Register now!"
792 892 msgstr ""
793 893  
794   -#: app/helpers/application_helper.rb:182
  894 +#: app/helpers/application_helper.rb:171
795 895 msgid "Features"
796 896 msgstr ""
797 897  
798   -#: app/helpers/application_helper.rb:183
  898 +#: app/helpers/application_helper.rb:172
799 899 msgid "Edit visual"
800 900 msgstr ""
801 901  
802   -#: app/helpers/application_helper.rb:184
  902 +#: app/helpers/application_helper.rb:173
803 903 msgid "Manage categories"
804 904 msgstr ""
805 905  
806   -#: app/helpers/application_helper.rb:185
  906 +#: app/helpers/application_helper.rb:174
807 907 msgid "Manage permissions"
808 908 msgstr ""
809 909  
810   -#: app/helpers/application_helper.rb:186
  910 +#: app/helpers/application_helper.rb:175
811 911 msgid "Manage validators"
812 912 msgstr ""
813 913  
814   -#: app/helpers/application_helper.rb:192
  914 +#: app/helpers/application_helper.rb:181
815 915 msgid "New enterprise"
816 916 msgstr ""
817 917  
818   -#: app/helpers/application_helper.rb:198 app/helpers/application_helper.rb:207
  918 +#: app/helpers/application_helper.rb:187 app/helpers/application_helper.rb:196
819 919 msgid "Edit visual design"
820 920 msgstr ""
821 921  
822   -#: app/helpers/application_helper.rb:200 app/helpers/application_helper.rb:209
  922 +#: app/helpers/application_helper.rb:189 app/helpers/application_helper.rb:198
823 923 msgid "Manage content"
824 924 msgstr ""
825 925  
826   -#: app/helpers/application_helper.rb:208
  926 +#: app/helpers/application_helper.rb:197
827 927 msgid "Edit informations"
828 928 msgstr ""
829 929  
830   -#: app/helpers/application_helper.rb:216
  930 +#: app/helpers/application_helper.rb:205
831 931 #: app/views/account/new_password.rhtml:13
832 932 #: app/views/account/change_password.rhtml:1
833 933 #: app/views/account/change_password.rhtml:14
834 934 msgid "Change password"
835 935 msgstr ""
836 936  
837   -#: app/helpers/application_helper.rb:222
838   -msgid "Report bug"
839   -msgstr ""
840   -
841   -#: app/helpers/application_helper.rb:228
  937 +#: app/helpers/application_helper.rb:211
842 938 msgid "Change template"
843 939 msgstr ""
844 940  
845   -#: app/helpers/application_helper.rb:229
  941 +#: app/helpers/application_helper.rb:212
846 942 msgid "Change block theme"
847 943 msgstr ""
848 944  
849   -#: app/helpers/application_helper.rb:230
  945 +#: app/helpers/application_helper.rb:213
850 946 msgid "Change icon theme"
851 947 msgstr ""
852 948  
853   -#: app/helpers/application_helper.rb:268
854   -msgid "accessibility"
855   -msgstr ""
856   -
857   -#: app/helpers/application_helper.rb:271
858   -msgid "Accessibility"
859   -msgstr ""
860   -
861   -#: app/helpers/application_helper.rb:276
  949 +#: app/helpers/application_helper.rb:219
862 950 #: app/views/region_validators/region.rhtml:22
863 951 #: app/views/manage_tags/_search_box.rhtml:4
864 952 #: app/views/membership_editor/index.rhtml:4
865 953 msgid "Search"
866 954 msgstr ""
867 955  
868   -#: app/helpers/application_helper.rb:277
  956 +#: app/helpers/application_helper.rb:220
869 957 msgid " "
870 958 msgstr ""
871 959  
872   -#: app/helpers/application_helper.rb:287
  960 +#: app/helpers/application_helper.rb:230
873 961 msgid "%s, version %s"
874 962 msgstr ""
875 963  
876   -#: app/helpers/application_helper.rb:365
877   -msgid "No Filter at all"
878   -msgstr ""
879   -
880   -#: app/helpers/application_helper.rb:366
881   -msgid "RDoc filter"
882   -msgstr ""
883   -
884   -#: app/helpers/application_helper.rb:367
885   -msgid "Simple"
886   -msgstr ""
887   -
888   -#: app/helpers/application_helper.rb:368
889   -msgid "Textile"
890   -msgstr ""
891   -
892   -#: app/views/cms/new.rhtml:2
893   -msgid "New Page"
894   -msgstr ""
895   -
896   -#: app/views/cms/_page_list_item.rhtml:6
897   -msgid "%d revision"
898   -msgstr ""
899   -
900   -#: app/views/cms/_page_list_item.rhtml:6
901   -msgid "%d revisions"
902   -msgstr ""
903   -
904   -#: app/views/cms/_page_list_item.rhtml:7
905   -msgid "add child document"
906   -msgstr ""
907   -
908   -#: app/views/cms/_page_list_item.rhtml:7
909   -msgid "Add a child to '%s'"
910   -msgstr ""
911   -
912   -#: app/views/cms/_page_list_item.rhtml:8
913   -msgid "reorder children"
914   -msgstr ""
915   -
916   -#: app/views/cms/_page_list_item.rhtml:8
917   -msgid "finished reordering"
918   -msgstr ""
919   -
920   -#: app/views/cms/_page_list_item.rhtml:8
921   -msgid "Reorder children of '%s'"
922   -msgstr ""
923   -
924   -#: app/views/cms/_page_list_item.rhtml:9
925   -msgid "delete"
926   -msgstr ""
927   -
928   -#: app/views/cms/_page_list_item.rhtml:9
929   -msgid "This will delete this page, and any children. Are you sure?"
930   -msgstr ""
931   -
932   -#: app/views/cms/_page_list_item.rhtml:9
933   -msgid "Delete page '%s' and all it's children"
934   -msgstr ""
935   -
936   -#: app/views/cms/_page_list_item.rhtml:26
937   -msgid "DRAG"
938   -msgstr ""
939   -
940   -#: app/views/cms/_form.rhtml:27
941   -#: app/design_blocks/favourite_links/views/add_link.rhtml:6
942   -#: app/design_blocks/favourite_links/views/edit.rhtml:7
943   -msgid "Title"
944   -msgstr ""
945   -
946   -#: app/views/cms/_form.rhtml:28
947   -msgid "More..."
948   -msgstr ""
949   -
950   -#: app/views/cms/_form.rhtml:28
951   -msgid "Less..."
952   -msgstr ""
953   -
954   -#: app/views/cms/_form.rhtml:32
955   -msgid "Slug"
956   -msgstr ""
957   -
958   -#: app/views/cms/_form.rhtml:38
959   -msgid "Keywords"
960   -msgstr ""
961   -
962   -#: app/views/cms/_form.rhtml:45
963   -msgid "Parent"
964   -msgstr ""
965   -
966   -#: app/views/cms/_form.rhtml:47
967   -msgid "%s is a root page"
968   -msgstr ""
969   -
970   -#: app/views/cms/_form.rhtml:55
971   -msgid "Content"
972   -msgstr ""
973   -
974   -#: app/views/cms/_form.rhtml:61
975   -msgid "Filter"
  964 +#: app/views/cms/view.rhtml:23
  965 +msgid "New subitem"
976 966 msgstr ""
977 967  
978   -#: app/views/cms/_form.rhtml:63
979   -msgid "Converts plain text into HTML"
980   -msgstr ""
981   -
982   -#: app/views/cms/_form.rhtml:69
983   -msgid "Created"
984   -msgstr ""
985   -
986   -#: app/views/cms/_form.rhtml:78
987   -msgid "One revision"
988   -msgid_plural "%d revisions"
989   -msgstr[0] ""
990   -msgstr[1] ""
991   -
992   -#: app/views/cms/_form.rhtml:84
993   -msgid "Loading preview ..."
994   -msgstr ""
995   -
996   -#: app/views/cms/_form.rhtml:85
997   -msgid "Save Changes"
998   -msgstr ""
999   -
1000   -#: app/views/cms/_form.rhtml:85
1001   -msgid "Create Page"
1002   -msgstr ""
1003   -
1004   -#: app/views/cms/_form.rhtml:87
1005   -msgid "Revert"
1006   -msgstr ""
1007   -
1008   -#: app/views/cms/_form.rhtml:90
1009   -msgid ""
1010   -"Changes detected. You will lose all the updates you have made if you "
1011   -"proceed..."
1012   -msgstr ""
1013   -
1014   -#: app/views/cms/_form.rhtml:90 app/views/cms/delete.rhtml:16
1015   -#: app/views/cms/versions.rhtml:25 app/views/role/_form.rhtml:13
1016   -#: app/views/profile_members/change_role.rhtml:13
1017   -#: app/views/enterprise_editor/edit.rhtml:8 app/views/manage_tags/new.rhtml:6
1018   -#: app/views/manage_tags/edit.rhtml:6
1019   -#: app/views/membership_editor/new_enterprise.rhtml:13
1020   -#: app/views/enterprise_registration/basic_information.rhtml:33
1021   -#: app/views/environment_role_manager/change_role.rhtml:12
1022   -#: app/views/categories/_form.rhtml:17
1023   -msgid "Cancel"
1024   -msgstr ""
1025   -
1026   -#: app/views/cms/_form.rhtml:96
1027   -msgid "Page Preview"
1028   -msgstr ""
1029   -
1030   -#: app/views/cms/_form.rhtml:98
1031   -msgid "Loading Preview..."
1032   -msgstr ""
1033   -
1034   -#: app/views/cms/_form.rhtml:103
1035   -msgid "Close Preview"
1036   -msgstr ""
1037   -
1038   -#: app/views/cms/_form.rhtml:103 app/views/cms/versions.rhtml:24
1039   -msgid "or"
1040   -msgstr ""
1041   -
1042   -#: app/views/cms/_form.rhtml:103
1043   -msgid "Back to top"
1044   -msgstr ""
1045   -
1046   -#: app/views/cms/reorder.rhtml:1
1047   -msgid "Reorder Pages"
1048   -msgstr ""
1049   -
1050   -#: app/views/cms/reorder.rhtml:3
1051   -msgid "\"%s\" child pages:"
1052   -msgstr ""
1053   -
1054   -#: app/views/cms/reorder.rhtml:19
1055   -msgid "Move Up"
1056   -msgstr ""
1057   -
1058   -#: app/views/cms/reorder.rhtml:20
1059   -msgid "Move Down"
1060   -msgstr ""
1061   -
1062   -#: app/views/cms/reorder.rhtml:29
1063   -msgid "Finished"
1064   -msgstr ""
1065   -
1066   -#: app/views/cms/delete.rhtml:6
1067   -msgid "Are you sure you want to delete the page titled \"%s\"?"
1068   -msgstr ""
1069   -
1070   -#: app/views/cms/delete.rhtml:8
1071   -msgid "It has %s child pages that will also be deleted..."
1072   -msgstr ""
1073   -
1074   -#: app/views/cms/delete.rhtml:14
1075   -msgid "Yes, Delete The Page"
1076   -msgstr ""
1077   -
1078   -#: app/views/cms/versions.rhtml:1
1079   -msgid "Page Revisions"
1080   -msgstr ""
1081   -
1082   -#: app/views/cms/versions.rhtml:7
1083   -msgid "View Version:"
1084   -msgstr ""
1085   -
1086   -#: app/views/cms/versions.rhtml:11
1087   -msgid "Version %s"
1088   -msgstr ""
1089   -
1090   -#: app/views/cms/versions.rhtml:14 app/views/cms/versions.rhtml:35
1091   -msgid "Title:"
1092   -msgstr ""
1093   -
1094   -#: app/views/cms/versions.rhtml:15 app/views/cms/versions.rhtml:36
1095   -msgid "Slug:"
1096   -msgstr ""
1097   -
1098   -#: app/views/cms/versions.rhtml:17 app/views/cms/versions.rhtml:38
1099   -msgid "Keywords:"
1100   -msgstr ""
1101   -
1102   -#: app/views/cms/versions.rhtml:23
1103   -msgid "Set As Current Version"
1104   -msgstr ""
1105   -
1106   -#: app/views/cms/versions.rhtml:32
1107   -msgid "Current Version"
1108   -msgstr ""
1109   -
1110   -#: app/views/cms/edit.rhtml:2
1111   -msgid "Edit Page"
1112   -msgstr ""
1113   -
1114   -#: app/views/cms/index.rhtml:2
1115   -msgid "Clear Page Cache"
1116   -msgstr ""
1117   -
1118   -#: app/views/cms/index.rhtml:6
1119   -msgid "Articles"
1120   -msgstr ""
1121   -
1122   -#: app/views/cms/index.rhtml:17
  968 +#: app/views/cms/view.rhtml:25
1123 969 msgid "New article"
1124 970 msgstr ""
1125 971  
... ... @@ -1133,6 +979,7 @@ msgstr &quot;&quot;
1133 979  
1134 980 #: app/views/role/_form.rhtml:12
1135 981 #: app/views/profile_members/change_role.rhtml:12
  982 +#: app/views/manage_products/_form.rhtml:11
1136 983 #: app/views/features/_features_table.rhtml:15
1137 984 #: app/views/environment_role_manager/change_role.rhtml:11
1138 985 msgid "Save changes"
... ... @@ -1142,6 +989,17 @@ msgstr &quot;&quot;
1142 989 msgid "Create role"
1143 990 msgstr ""
1144 991  
  992 +#: app/views/role/_form.rhtml:13
  993 +#: app/views/profile_members/change_role.rhtml:13
  994 +#: app/views/enterprise_editor/edit.rhtml:8 app/views/manage_tags/new.rhtml:6
  995 +#: app/views/manage_tags/edit.rhtml:6
  996 +#: app/views/membership_editor/new_enterprise.rhtml:13
  997 +#: app/views/enterprise_registration/basic_information.rhtml:33
  998 +#: app/views/environment_role_manager/change_role.rhtml:12
  999 +#: app/views/categories/_form.rhtml:17
  1000 +msgid "Cancel"
  1001 +msgstr ""
  1002 +
1145 1003 #: app/views/role/show.rhtml:3
1146 1004 msgid "Permissions"
1147 1005 msgstr ""
... ... @@ -1250,6 +1108,74 @@ msgstr[1] &quot;&quot;
1250 1108 msgid "Validators by Region"
1251 1109 msgstr ""
1252 1110  
  1111 +#: app/views/manage_products/new.rhtml:1
  1112 +#: app/views/manage_products/index.rhtml:3
  1113 +msgid "New product"
  1114 +msgstr ""
  1115 +
  1116 +#: app/views/manage_products/_form.rhtml:4
  1117 +msgid "Name:"
  1118 +msgstr ""
  1119 +
  1120 +#: app/views/manage_products/_form.rhtml:5
  1121 +msgid "Price:"
  1122 +msgstr ""
  1123 +
  1124 +#: app/views/manage_products/_form.rhtml:6
  1125 +msgid "Description:"
  1126 +msgstr ""
  1127 +
  1128 +#: app/views/manage_products/_form.rhtml:7
  1129 +msgid "Category:"
  1130 +msgstr ""
  1131 +
  1132 +#: app/views/manage_products/_form.rhtml:9
  1133 +msgid "Image:"
  1134 +msgstr ""
  1135 +
  1136 +#: app/views/manage_products/_form.rhtml:11
  1137 +msgid "Create product"
  1138 +msgstr ""
  1139 +
  1140 +#: app/views/manage_products/show.rhtml:4
  1141 +#: app/views/manage_products/index.rhtml:7
  1142 +msgid "Price: "
  1143 +msgstr ""
  1144 +
  1145 +#: app/views/manage_products/show.rhtml:5
  1146 +msgid "Description: "
  1147 +msgstr ""
  1148 +
  1149 +#: app/views/manage_products/show.rhtml:6
  1150 +msgid "Category: "
  1151 +msgstr ""
  1152 +
  1153 +#: app/views/manage_products/show.rhtml:6
  1154 +msgid "Uncategorized product"
  1155 +msgstr ""
  1156 +
  1157 +#: app/views/manage_products/show.rhtml:8
  1158 +#: app/views/manage_products/index.rhtml:8
  1159 +msgid "edit"
  1160 +msgstr ""
  1161 +
  1162 +#: app/views/manage_products/show.rhtml:9
  1163 +#: app/views/manage_products/index.rhtml:9
  1164 +msgid "destroy"
  1165 +msgstr ""
  1166 +
  1167 +#: app/views/manage_products/show.rhtml:11
  1168 +msgid "back"
  1169 +msgstr ""
  1170 +
  1171 +#: app/views/manage_products/edit.rhtml:1
  1172 +msgid "Editing"
  1173 +msgstr ""
  1174 +
  1175 +#: app/views/manage_products/index.rhtml:1
  1176 +msgid "Listing products"
  1177 +msgstr ""
  1178 +
1253 1179 #: app/views/content_viewer/view_page.rhtml:4
1254 1180 #: app/views/manage_tags/list.rhtml:17
1255 1181 msgid "Up"
... ... @@ -1260,14 +1186,14 @@ msgstr &quot;&quot;
1260 1186 msgid "There is no such page: %s"
1261 1187 msgstr ""
1262 1188  
1263   -#: app/views/layouts/application.rhtml:29
1264   -#: app/views/layouts/comatose_admin.rhtml:29
  1189 +#: app/views/layouts/application.rhtml:33
  1190 +#: app/views/layouts/comatose_admin.rhtml:33
1265 1191 msgid "Image for Loading..."
1266 1192 msgstr ""
1267 1193  
1268   -#: app/views/layouts/application.rhtml:34
1269   -#: app/views/layouts/comatose_admin.rhtml:34
1270   -msgid "Go Content"
  1194 +#: app/views/layouts/application.rhtml:39
  1195 +#: app/views/layouts/comatose_admin.rhtml:39
  1196 +msgid "Go to content"
1271 1197 msgstr ""
1272 1198  
1273 1199 #: app/views/layouts/not_found.rhtml:5
... ... @@ -1664,7 +1590,11 @@ msgid &quot;Password&quot;
1664 1590 msgstr ""
1665 1591  
1666 1592 #: app/views/account/login.rhtml:20
1667   -msgid "I forgot my password"
  1593 +msgid "I forgot my password!"
  1594 +msgstr ""
  1595 +
  1596 +#: app/views/account/login.rhtml:24
  1597 +msgid "I want to be an user!"
1668 1598 msgstr ""
1669 1599  
1670 1600 #: app/views/account/password_recovery_sent.rhtml:1
... ... @@ -1842,10 +1772,6 @@ msgstr &quot;&quot;
1842 1772 msgid "Access denied"
1843 1773 msgstr ""
1844 1774  
1845   -#: app/views/shared/categories_menu.rhtml:5
1846   -msgid "Home"
1847   -msgstr ""
1848   -
1849 1775 #: app/views/profile_editor/person_info.rhtml:1
1850 1776 msgid "Edit person info"
1851 1777 msgstr ""
... ... @@ -1856,23 +1782,40 @@ msgstr &quot;&quot;
1856 1782  
1857 1783 #: app/views/profile_editor/person_info.rhtml:11
1858 1784 #: app/views/categories/_form.rhtml:16
1859   -#: app/design_blocks/favourite_links/views/add_link.rhtml:10
1860   -#: app/design_blocks/favourite_links/views/edit.rhtml:26
  1785 +#: app/design_blocks/favorite_links/views/add_link.rhtml:10
  1786 +#: app/design_blocks/favorite_links/views/edit.rhtml:26
1861 1787 msgid "Save"
1862 1788 msgstr ""
1863 1789  
1864   -#: app/views/profile_editor/index.rhtml:1
1865   -msgid "My profile"
  1790 +#: app/views/profile_editor/index.rhtml:8
  1791 +msgid "Edit Profile"
1866 1792 msgstr ""
1867 1793  
1868   -#: app/views/profile_editor/index.rhtml:13
  1794 +#: app/views/profile_editor/index.rhtml:10
  1795 +#: app/views/profile_editor/index.rhtml:21
1869 1796 msgid "Edit Visual Design"
1870 1797 msgstr ""
1871 1798  
1872   -#: app/views/profile_editor/index.rhtml:15
  1799 +#: app/views/profile_editor/index.rhtml:12
  1800 +msgid "Manage Content"
  1801 +msgstr ""
  1802 +
  1803 +#: app/views/profile_editor/index.rhtml:14
  1804 +msgid "Change Password"
  1805 +msgstr ""
  1806 +
  1807 +#: app/views/profile_editor/index.rhtml:16
  1808 +msgid "Manage Products"
  1809 +msgstr ""
  1810 +
  1811 +#: app/views/profile_editor/index.rhtml:22
1873 1812 msgid "Menage content"
1874 1813 msgstr ""
1875 1814  
  1815 +#: app/views/profile_editor/index.rhtml:25
  1816 +msgid "My organizations"
  1817 +msgstr ""
  1818 +
1876 1819 #: app/views/enterprise_registration/basic_information.rhtml:27
1877 1820 msgid "Management information"
1878 1821 msgstr ""
... ... @@ -1937,7 +1880,7 @@ msgid &quot;Add subcategory&quot;
1937 1880 msgstr ""
1938 1881  
1939 1882 #: app/views/categories/_category.rhtml:9
1940   -#: app/design_blocks/favourite_links/views/manage_links.rhtml:18
  1883 +#: app/design_blocks/favorite_links/views/manage_links.rhtml:18
1941 1884 msgid "Remove"
1942 1885 msgstr ""
1943 1886  
... ... @@ -1957,33 +1900,38 @@ msgstr &quot;&quot;
1957 1900 msgid "Categories"
1958 1901 msgstr ""
1959 1902  
1960   -#: app/design_blocks/favourite_links/views/add_link.rhtml:1
1961   -#: app/design_blocks/favourite_links/views/edit.rhtml:2
1962   -msgid "Editing Favourite Links"
  1903 +#: app/design_blocks/favorite_links/views/add_link.rhtml:1
  1904 +#: app/design_blocks/favorite_links/views/edit.rhtml:2
  1905 +msgid "Editing Favorite Links"
  1906 +msgstr ""
  1907 +
  1908 +#: app/design_blocks/favorite_links/views/add_link.rhtml:6
  1909 +#: app/design_blocks/favorite_links/views/edit.rhtml:7
  1910 +msgid "Title"
1963 1911 msgstr ""
1964 1912  
1965   -#: app/design_blocks/favourite_links/views/manage_links.rhtml:4
  1913 +#: app/design_blocks/favorite_links/views/manage_links.rhtml:4
1966 1914 msgid "Add Link"
1967 1915 msgstr ""
1968 1916  
1969   -#: app/design_blocks/favourite_links/views/manage_links.rhtml:8
1970   -#: app/design_blocks/favourite_links/views/index.rhtml:3
  1917 +#: app/design_blocks/favorite_links/views/manage_links.rhtml:8
  1918 +#: app/design_blocks/favorite_links/views/index.rhtml:4
1971 1919 msgid "Previous"
1972 1920 msgstr ""
1973 1921  
1974   -#: app/design_blocks/favourite_links/views/manage_links.rhtml:11
1975   -#: app/design_blocks/favourite_links/views/index.rhtml:6
  1922 +#: app/design_blocks/favorite_links/views/manage_links.rhtml:11
  1923 +#: app/design_blocks/favorite_links/views/index.rhtml:7
1976 1924 msgid "Next"
1977 1925 msgstr ""
1978 1926  
1979   -#: app/design_blocks/favourite_links/views/edit.rhtml:12
  1927 +#: app/design_blocks/favorite_links/views/edit.rhtml:12
1980 1928 msgid "Display header?"
1981 1929 msgstr ""
1982 1930  
1983   -#: app/design_blocks/favourite_links/views/edit.rhtml:17
  1931 +#: app/design_blocks/favorite_links/views/edit.rhtml:17
1984 1932 msgid "Display title?"
1985 1933 msgstr ""
1986 1934  
1987   -#: app/design_blocks/favourite_links/views/edit.rhtml:22
  1935 +#: app/design_blocks/favorite_links/views/edit.rhtml:22
1988 1936 msgid "Max number of links"
1989 1937 msgstr ""
... ...
po/pt_BR/noosfero.po
... ... @@ -8,8 +8,8 @@
8 8 # This file is distributed under the same license as noosfero itself.
9 9 msgid ""
10 10 msgstr ""
11   -"Project-Id-Version: noosfero 0.3.0\n"
12   -"POT-Creation-Date: 2007-11-09 19:03-0300\n"
  11 +"Project-Id-Version: noosfero 0.4.0\n"
  12 +"POT-Creation-Date: 2007-11-27 13:39-0300\n"
13 13 "PO-Revision-Date: 2007-11-09 19:17-0300\n"
14 14 "Last-Translator: Rafael Tavares Bomfim <rafael@colivre.coop.br>\n"
15 15 "Language-Team: \n"
... ... @@ -19,85 +19,90 @@ msgstr &quot;&quot;
19 19 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
20 20 "X-Generator: Pootle 1.0.2\n"
21 21  
22   -#: app/design_blocks/favourite_links/controllers/favourite_links_controller.rb:22
23   -msgid "Manage Links"
24   -msgstr "Gerenciar Links"
  22 +#: app/design_blocks/enterprises_block/models/enterprises_block.rb:12
  23 +#, fuzzy
  24 +msgid "Enterprises Block"
  25 +msgstr "Meus Empreendimentos"
  26 +
  27 +#: app/design_blocks/list_block/models/list_block.rb:12
  28 +msgid "List Block"
  29 +msgstr "Bloco de Lista"
25 30  
26   -#: app/design_blocks/favourite_links/controllers/favourite_links_controller.rb:23
  31 +#: app/design_blocks/favorite_links/controllers/favorite_links_controller.rb:4
27 32 #: app/views/role/index.rhtml:6 app/views/content_viewer/view_page.rhtml:7
28   -#: app/views/manage_tags/_a_tag.rhtml:3 app/views/profile_editor/index.rhtml:6
29   -#: app/views/profile_editor/index.rhtml:8
30   -#: app/views/categories/_category.rhtml:8
  33 +#: app/views/manage_tags/_a_tag.rhtml:3 app/views/categories/_category.rhtml:8
31 34 msgid "Edit"
32 35 msgstr "Editar"
33 36  
34   -#: app/design_blocks/favourite_links/models/favourite_links.rb:4
35   -#: app/design_blocks/favourite_links/views/manage_links.rhtml:3
36   -msgid "Favourite Links"
  37 +#: app/design_blocks/favorite_links/controllers/favorite_links_controller.rb:5
  38 +msgid "Manage Links"
  39 +msgstr "Gerenciar Links"
  40 +
  41 +#: app/design_blocks/favorite_links/models/favorite_links.rb:4
  42 +#: app/design_blocks/favorite_links_profile/models/favorite_links_profile.rb:4
  43 +#: app/design_blocks/favorite_links/views/manage_links.rhtml:3
  44 +#, fuzzy
  45 +msgid "Favorite Links"
37 46 msgstr "Links Favoritos"
38 47  
39   -#: app/controllers/environment_admin/manage_tags_controller.rb:26
  48 +#: app/controllers/admin/manage_tags_controller.rb:26
40 49 msgid "Tag was successfully created."
41 50 msgstr "Marcador criado com sucesso."
42 51  
43   -#: app/controllers/environment_admin/manage_tags_controller.rb:44
  52 +#: app/controllers/admin/manage_tags_controller.rb:44
44 53 msgid "Tag was successfully updated."
45 54 msgstr "Marcador alterado com sucesso"
46 55  
47   -#: app/controllers/environment_admin/manage_tags_controller.rb:56
  56 +#: app/controllers/admin/manage_tags_controller.rb:56
48 57 msgid "Tag was successfuly destroyed"
49 58 msgstr "Marcador removido com sucesso"
50 59  
51   -#: app/controllers/environment_admin/manage_tags_controller.rb:65
  60 +#: app/controllers/admin/manage_tags_controller.rb:65
52 61 msgid "Tag was successfuly approved"
53 62 msgstr "Marcador aprovado com sucesso"
54 63  
55   -#: app/controllers/environment_admin/role_controller.rb:21
  64 +#: app/controllers/admin/role_controller.rb:21
56 65 msgid "Failed to create role"
57 66 msgstr "Falhou em criar papel"
58 67  
59   -#: app/controllers/environment_admin/role_controller.rb:35
60   -#: app/controllers/environment_admin/role_controller.rb:45
  68 +#: app/controllers/admin/role_controller.rb:35
  69 +#: app/controllers/admin/role_controller.rb:45
61 70 msgid "Failed to edit role"
62 71 msgstr "Falhou em editar papel"
63 72  
64   -#: app/controllers/environment_admin/features_controller.rb:13
  73 +#: app/controllers/admin/features_controller.rb:13
65 74 msgid "Features updated successfully."
66 75 msgstr "Funcionalidades alterada com sucesso"
67 76  
68   -#: app/controllers/environment_admin/environment_role_manager_controller.rb:17
69   -#: app/controllers/profile_admin/profile_members_controller.rb:17
  77 +#: app/controllers/admin/environment_role_manager_controller.rb:17
  78 +#: app/controllers/my_profile/profile_members_controller.rb:17
70 79 msgid "Roles successfuly updated"
71 80 msgstr "Papéis alterado com sucesso"
72 81  
73   -#: app/controllers/environment_admin/environment_role_manager_controller.rb:19
74   -#: app/controllers/profile_admin/profile_members_controller.rb:19
  82 +#: app/controllers/admin/environment_role_manager_controller.rb:19
  83 +#: app/controllers/my_profile/profile_members_controller.rb:19
75 84 msgid "Couldn't change the roles"
76 85 msgstr "Não pôde modificar os papéis"
77 86  
78   -#: app/controllers/environment_admin/environment_role_manager_controller.rb:45
79   -#: app/controllers/environment_admin/environment_role_manager_controller.rb:55
  87 +#: app/controllers/admin/environment_role_manager_controller.rb:45
  88 +#: app/controllers/admin/environment_role_manager_controller.rb:55
80 89 msgid "Member succefully unassociated"
81 90 msgstr "Membro desassociado com sucesso"
82 91  
83   -#: app/controllers/environment_admin/environment_role_manager_controller.rb:47
84   -#: app/controllers/environment_admin/environment_role_manager_controller.rb:57
  92 +#: app/controllers/admin/environment_role_manager_controller.rb:47
  93 +#: app/controllers/admin/environment_role_manager_controller.rb:57
85 94 msgid "Failed to unassociate member"
86 95 msgstr "Falhou em desassociar membro"
87 96  
88   -#: app/controllers/profile_admin_controller.rb:17
89   -msgid "This action is not available for \"%s\"."
90   -msgstr "Esta ação não está disponível para \"%s\"."
91   -
92   -#: app/controllers/profile_admin/enterprise_editor_controller.rb:21
  97 +#: app/controllers/my_profile/enterprise_editor_controller.rb:21
93 98 msgid "Could not update the enterprise"
94 99 msgstr "Não pôde modificar o empreendimento"
95 100  
96   -#: app/controllers/profile_admin/enterprise_editor_controller.rb:31
  101 +#: app/controllers/my_profile/enterprise_editor_controller.rb:31
97 102 msgid "Enterprise sucessfully erased from the system"
98 103 msgstr "Empreendimento ativado com sucesso"
99 104  
100   -#: app/controllers/profile_admin/membership_editor_controller.rb:25
  105 +#: app/controllers/my_profile/membership_editor_controller.rb:25
101 106 msgid ""
102 107 "The enterprise was successfully created, the validation entity will cotact "
103 108 "you as soon as your enterprise is approved"
... ... @@ -105,10 +110,40 @@ msgstr &quot;&quot;
105 110 "O empreendimento foi criado com sucesso, a entidade de validação irá entrar "
106 111 "em contato com você assim que seu empreendimento for aprovado"
107 112  
108   -#: app/controllers/profile_admin/membership_editor_controller.rb:28
  113 +#: app/controllers/my_profile/membership_editor_controller.rb:28
109 114 msgid "Enterprise was not created"
110 115 msgstr "Empreendimento não foi criado"
111 116  
  117 +#: app/controllers/my_profile/manage_products_controller.rb:19
  118 +#, fuzzy
  119 +msgid "Product succesfully created"
  120 +msgstr "Marcador criado com sucesso."
  121 +
  122 +#: app/controllers/my_profile/manage_products_controller.rb:22
  123 +#, fuzzy
  124 +msgid "Could not create the product"
  125 +msgstr "Não pôde modificar os papéis"
  126 +
  127 +#: app/controllers/my_profile/manage_products_controller.rb:31
  128 +#, fuzzy
  129 +msgid "Product succesfully updated"
  130 +msgstr "Papéis alterado com sucesso"
  131 +
  132 +#: app/controllers/my_profile/manage_products_controller.rb:34
  133 +#, fuzzy
  134 +msgid "Could not update the product"
  135 +msgstr "Não pôde modificar o empreendimento"
  136 +
  137 +#: app/controllers/my_profile/manage_products_controller.rb:42
  138 +#, fuzzy
  139 +msgid "Product succesfully removed"
  140 +msgstr "Marcador aprovado com sucesso"
  141 +
  142 +#: app/controllers/my_profile/manage_products_controller.rb:45
  143 +#, fuzzy
  144 +msgid "Could not remove the product"
  145 +msgstr "Não pôde modificar o empreendimento"
  146 +
112 147 #: app/controllers/public/account_controller.rb:25
113 148 msgid "Logged in successfully"
114 149 msgstr "Login bem sucedido"
... ... @@ -133,6 +168,42 @@ msgstr &quot;Sua senha foi alterada com sucesso!&quot;
133 168 msgid "The supplied current password is incorrect."
134 169 msgstr "A senha informada está incorreta"
135 170  
  171 +#: app/controllers/my_profile_controller.rb:17
  172 +msgid "This action is not available for \"%s\"."
  173 +msgstr "Esta ação não está disponível para \"%s\"."
  174 +
  175 +#: app/models/product.rb:-
  176 +msgid "product"
  177 +msgstr ""
  178 +
  179 +#: app/models/product.rb:-
  180 +#, fuzzy
  181 +msgid "Product|Enterprise"
  182 +msgstr "Editar empreendimento"
  183 +
  184 +#: app/models/product.rb:-
  185 +#, fuzzy
  186 +msgid "Product|Product category"
  187 +msgstr "Categoria do Produto"
  188 +
  189 +#: app/models/product.rb:-
  190 +#, fuzzy
  191 +msgid "Product|Name"
  192 +msgstr "Nome"
  193 +
  194 +#: app/models/product.rb:-
  195 +msgid "Product|Price"
  196 +msgstr ""
  197 +
  198 +#: app/models/product.rb:-
  199 +msgid "Product|Description"
  200 +msgstr ""
  201 +
  202 +#: app/models/product.rb:-
  203 +#, fuzzy
  204 +msgid "Product|Image"
  205 +msgstr "Categoria do Produto"
  206 +
136 207 #: app/models/validation_info.rb:-
137 208 msgid "validation info"
138 209 msgstr "informação de validação"
... ... @@ -239,7 +310,61 @@ msgstr &quot;Usuário&quot;
239 310 msgid "Profile|Region"
240 311 msgstr "Região"
241 312  
242   -#: app/models/profile.rb:7 app/helpers/application_helper.rb:199
  313 +#: app/models/profile.rb:-
  314 +#, fuzzy
  315 +msgid "article"
  316 +msgstr "Artigos"
  317 +
  318 +#: app/models/profile.rb:-
  319 +#, fuzzy
  320 +msgid "Article|Name"
  321 +msgstr "Nome"
  322 +
  323 +#: app/models/profile.rb:-
  324 +#, fuzzy
  325 +msgid "Article|Slug"
  326 +msgstr "Artigos"
  327 +
  328 +#: app/models/profile.rb:-
  329 +#, fuzzy
  330 +msgid "Article|Path"
  331 +msgstr "Artigos"
  332 +
  333 +#: app/models/profile.rb:-
  334 +#, fuzzy
  335 +msgid "Article|Parent"
  336 +msgstr "Artigos"
  337 +
  338 +#: app/models/profile.rb:-
  339 +#, fuzzy
  340 +msgid "Article|Body"
  341 +msgstr "Artigos"
  342 +
  343 +#: app/models/profile.rb:-
  344 +#, fuzzy
  345 +msgid "Article|Profile"
  346 +msgstr "Artigos"
  347 +
  348 +#: app/models/profile.rb:-
  349 +#, fuzzy
  350 +msgid "Article|Updated on"
  351 +msgstr "Atualizado em"
  352 +
  353 +#: app/models/profile.rb:-
  354 +#, fuzzy
  355 +msgid "Article|Created on"
  356 +msgstr "Criado em"
  357 +
  358 +#: app/models/profile.rb:-
  359 +#, fuzzy
  360 +msgid "Article|Version"
  361 +msgstr "Artigos"
  362 +
  363 +#: app/models/profile.rb:-
  364 +msgid "Article|Lock version"
  365 +msgstr ""
  366 +
  367 +#: app/models/profile.rb:7 app/helpers/application_helper.rb:188
243 368 msgid "Edit profile"
244 369 msgstr "perfil"
245 370  
... ... @@ -259,7 +384,7 @@ msgstr &quot;Conteúdo da postagem&quot;
259 384 msgid "Edit profile design"
260 385 msgstr "Editar design de perfil"
261 386  
262   -#: app/models/profile.rb:63
  387 +#: app/models/profile.rb:59
263 388 msgid "An existing profile cannot be renamed."
264 389 msgstr "Um perfil existente não pode ser renomeado"
265 390  
... ... @@ -399,6 +524,10 @@ msgstr &quot;&quot;
399 524 msgid "%{fn} must not start with www."
400 525 msgstr "%{fn} não pode iniciar com www"
401 526  
  527 +#: app/models/image.rb:-
  528 +msgid "image"
  529 +msgstr ""
  530 +
402 531 #: app/models/friendship.rb:-
403 532 msgid "friendship"
404 533 msgstr "amizade"
... ... @@ -783,371 +912,108 @@ msgstr &quot;Ajuda&quot;
783 912 msgid "Close"
784 913 msgstr "Fechar"
785 914  
786   -#: app/helpers/application_helper.rb:117 app/helpers/application_helper.rb:134
787   -msgid "My account"
788   -msgstr "Minha conta"
  915 +#: app/helpers/application_helper.rb:117 app/helpers/application_helper.rb:127
  916 +#: app/views/profile_editor/index.rhtml:1
  917 +msgid "My profile"
  918 +msgstr "Meu perfil"
789 919  
790 920 #: app/helpers/application_helper.rb:118
791 921 msgid "My Enterprises"
792 922 msgstr "Meus Empreendimentos"
793 923  
794   -#: app/helpers/application_helper.rb:119 app/helpers/application_helper.rb:137
  924 +#: app/helpers/application_helper.rb:119 app/helpers/application_helper.rb:130
795 925 #: app/views/environment_role_manager/make_admin.rhtml:4
796 926 msgid "Admin"
797 927 msgstr "Administrador"
798 928  
799   -#: app/helpers/application_helper.rb:120
800   -msgid "About"
801   -msgstr "Sobre"
802   -
803   -#: app/helpers/application_helper.rb:126
804   -msgid "about"
805   -msgstr "sobre"
806   -
807   -#: app/helpers/application_helper.rb:138 app/helpers/application_helper.rb:168
  929 +#: app/helpers/application_helper.rb:131 app/helpers/application_helper.rb:157
808 930 msgid "Logout"
809 931 msgstr "Sair"
810 932  
811   -#: app/helpers/application_helper.rb:142 app/helpers/application_helper.rb:160
  933 +#: app/helpers/application_helper.rb:135 app/helpers/application_helper.rb:149
812 934 #: app/views/account/login.rhtml:1
813 935 msgid "Login"
814 936 msgstr "Entrar"
815 937  
816   -#: app/helpers/application_helper.rb:164
  938 +#: app/helpers/application_helper.rb:153
817 939 msgid "Not a user yet? Register now!"
818 940 msgstr "Ainda não é usuário? Registre-se agora!"
819 941  
820   -#: app/helpers/application_helper.rb:182
  942 +#: app/helpers/application_helper.rb:171
821 943 msgid "Features"
822 944 msgstr "Funcionalidades"
823 945  
824   -#: app/helpers/application_helper.rb:183
  946 +#: app/helpers/application_helper.rb:172
825 947 msgid "Edit visual"
826 948 msgstr "Editar visual"
827 949  
828   -#: app/helpers/application_helper.rb:184
  950 +#: app/helpers/application_helper.rb:173
829 951 msgid "Manage categories"
830 952 msgstr "Gerenciar categorias"
831 953  
832   -#: app/helpers/application_helper.rb:185
  954 +#: app/helpers/application_helper.rb:174
833 955 msgid "Manage permissions"
834 956 msgstr "Gerenciar permissões"
835 957  
836   -#: app/helpers/application_helper.rb:186
  958 +#: app/helpers/application_helper.rb:175
837 959 msgid "Manage validators"
838 960 msgstr "Gerenciar validadores"
839 961  
840   -#: app/helpers/application_helper.rb:192
  962 +#: app/helpers/application_helper.rb:181
841 963 msgid "New enterprise"
842 964 msgstr "Novo empreendimento"
843 965  
844   -#: app/helpers/application_helper.rb:198 app/helpers/application_helper.rb:207
  966 +#: app/helpers/application_helper.rb:187 app/helpers/application_helper.rb:196
845 967 msgid "Edit visual design"
846 968 msgstr "Editar aparência"
847 969  
848   -#: app/helpers/application_helper.rb:200 app/helpers/application_helper.rb:209
  970 +#: app/helpers/application_helper.rb:189 app/helpers/application_helper.rb:198
849 971 msgid "Manage content"
850 972 msgstr "Gerenciar conteúdo"
851 973  
852   -#: app/helpers/application_helper.rb:208
  974 +#: app/helpers/application_helper.rb:197
853 975 msgid "Edit informations"
854 976 msgstr "Editar informações"
855 977  
856   -#: app/helpers/application_helper.rb:216
  978 +#: app/helpers/application_helper.rb:205
857 979 #: app/views/account/new_password.rhtml:13
858 980 #: app/views/account/change_password.rhtml:1
859 981 #: app/views/account/change_password.rhtml:14
860 982 msgid "Change password"
861 983 msgstr "Alterar senha"
862 984  
863   -#: app/helpers/application_helper.rb:222
864   -msgid "Report bug"
865   -msgstr "Reportar bug"
866   -
867   -#: app/helpers/application_helper.rb:228
  985 +#: app/helpers/application_helper.rb:211
868 986 msgid "Change template"
869 987 msgstr "Mudar template"
870 988  
871   -#: app/helpers/application_helper.rb:229
  989 +#: app/helpers/application_helper.rb:212
872 990 msgid "Change block theme"
873 991 msgstr "Mude o tema de bloco"
874 992  
875   -#: app/helpers/application_helper.rb:230
  993 +#: app/helpers/application_helper.rb:213
876 994 msgid "Change icon theme"
877 995 msgstr "Mudar tema do ícone"
878 996  
879   -#: app/helpers/application_helper.rb:268
880   -msgid "accessibility"
881   -msgstr "acessibilidade"
882   -
883   -#: app/helpers/application_helper.rb:271
884   -msgid "Accessibility"
885   -msgstr "Acessibilidade"
886   -
887   -#: app/helpers/application_helper.rb:276
  997 +#: app/helpers/application_helper.rb:219
888 998 #: app/views/region_validators/region.rhtml:22
889 999 #: app/views/manage_tags/_search_box.rhtml:4
890 1000 #: app/views/membership_editor/index.rhtml:4
891 1001 msgid "Search"
892 1002 msgstr "Busca"
893 1003  
894   -#: app/helpers/application_helper.rb:277
  1004 +#: app/helpers/application_helper.rb:220
895 1005 msgid " "
896 1006 msgstr " "
897 1007  
898   -#: app/helpers/application_helper.rb:287
  1008 +#: app/helpers/application_helper.rb:230
899 1009 msgid "%s, version %s"
900 1010 msgstr "%s, versão %s"
901 1011  
902   -#: app/helpers/application_helper.rb:365
903   -msgid "No Filter at all"
904   -msgstr "Sem qualquer filtro"
905   -
906   -#: app/helpers/application_helper.rb:366
907   -msgid "RDoc filter"
908   -msgstr "Filtro RDoc"
909   -
910   -#: app/helpers/application_helper.rb:367
911   -msgid "Simple"
912   -msgstr "Simples"
913   -
914   -#: app/helpers/application_helper.rb:368
915   -msgid "Textile"
916   -msgstr "Textile"
917   -
918   -#: app/views/cms/new.rhtml:2
919   -msgid "New Page"
920   -msgstr "Nova Página"
921   -
922   -#: app/views/cms/_page_list_item.rhtml:6
923   -msgid "%d revision"
924   -msgstr "%d revisão"
925   -
926   -#: app/views/cms/_page_list_item.rhtml:6
927   -msgid "%d revisions"
928   -msgstr "%d revisões"
929   -
930   -#: app/views/cms/_page_list_item.rhtml:7
931   -msgid "add child document"
932   -msgstr "adicionar document filho"
933   -
934   -#: app/views/cms/_page_list_item.rhtml:7
935   -msgid "Add a child to '%s'"
936   -msgstr "Adicionar um filho a '%s'"
937   -
938   -#: app/views/cms/_page_list_item.rhtml:8
939   -msgid "reorder children"
940   -msgstr "reordenar filhos"
941   -
942   -#: app/views/cms/_page_list_item.rhtml:8
943   -msgid "finished reordering"
944   -msgstr "ordenação terminada"
945   -
946   -#: app/views/cms/_page_list_item.rhtml:8
947   -msgid "Reorder children of '%s'"
948   -msgstr "Reordenar filhos de '%s'"
949   -
950   -#: app/views/cms/_page_list_item.rhtml:9
951   -msgid "delete"
952   -msgstr "excluir"
953   -
954   -#: app/views/cms/_page_list_item.rhtml:9
955   -msgid "This will delete this page, and any children. Are you sure?"
956   -msgstr "Isto vai excluir esta página, e qualquer filho. Tem certeza?"
957   -
958   -#: app/views/cms/_page_list_item.rhtml:9
959   -msgid "Delete page '%s' and all it's children"
960   -msgstr "Excluir página '%s' e todos seus filhos"
961   -
962   -#: app/views/cms/_page_list_item.rhtml:26
963   -msgid "DRAG"
964   -msgstr "ARRASTE"
965   -
966   -#: app/views/cms/_form.rhtml:27
967   -#: app/design_blocks/favourite_links/views/add_link.rhtml:6
968   -#: app/design_blocks/favourite_links/views/edit.rhtml:7
969   -msgid "Title"
970   -msgstr "Título"
971   -
972   -#: app/views/cms/_form.rhtml:28
973   -msgid "More..."
974   -msgstr "Mais..."
975   -
976   -#: app/views/cms/_form.rhtml:28
977   -msgid "Less..."
978   -msgstr "Menos..."
979   -
980   -#: app/views/cms/_form.rhtml:32
981   -msgid "Slug"
982   -msgstr "Atalho"
983   -
984   -#: app/views/cms/_form.rhtml:38
985   -msgid "Keywords"
986   -msgstr "Palvras-chave"
987   -
988   -#: app/views/cms/_form.rhtml:45
989   -msgid "Parent"
990   -msgstr "Pai"
991   -
992   -#: app/views/cms/_form.rhtml:47
993   -msgid "%s is a root page"
994   -msgstr "%s é uma página raiz"
995   -
996   -#: app/views/cms/_form.rhtml:55
997   -msgid "Content"
998   -msgstr "Conteúdo"
999   -
1000   -#: app/views/cms/_form.rhtml:61
1001   -msgid "Filter"
1002   -msgstr "Filtro"
1003   -
1004   -#: app/views/cms/_form.rhtml:63
1005   -msgid "Converts plain text into HTML"
1006   -msgstr "Converte texto plano em HTML"
1007   -
1008   -#: app/views/cms/_form.rhtml:69
1009   -msgid "Created"
1010   -msgstr "Criado"
1011   -
1012   -#: app/views/cms/_form.rhtml:78
1013   -msgid "One revision"
1014   -msgid_plural "%d revisions"
1015   -msgstr[0] "Uma revisão"
1016   -msgstr[1] "%d revisões"
1017   -
1018   -#: app/views/cms/_form.rhtml:84
1019   -msgid "Loading preview ..."
1020   -msgstr "Carregando pré-visualização ..."
1021   -
1022   -#: app/views/cms/_form.rhtml:85
1023   -msgid "Save Changes"
1024   -msgstr "Salvar Mudanças"
1025   -
1026   -#: app/views/cms/_form.rhtml:85
1027   -msgid "Create Page"
1028   -msgstr "Criar Página"
1029   -
1030   -#: app/views/cms/_form.rhtml:87
1031   -msgid "Revert"
1032   -msgstr "Reverter"
1033   -
1034   -#: app/views/cms/_form.rhtml:90
1035   -msgid ""
1036   -"Changes detected. You will lose all the updates you have made if you "
1037   -"proceed..."
  1012 +#: app/views/cms/view.rhtml:23
  1013 +msgid "New subitem"
1038 1014 msgstr ""
1039   -"Mudanças detectadas. Você vai perder todas as atualizações que você fez se "
1040   -"continuar..."
1041   -
1042   -#: app/views/cms/_form.rhtml:90 app/views/cms/delete.rhtml:16
1043   -#: app/views/cms/versions.rhtml:25 app/views/role/_form.rhtml:13
1044   -#: app/views/profile_members/change_role.rhtml:13
1045   -#: app/views/enterprise_editor/edit.rhtml:8 app/views/manage_tags/new.rhtml:6
1046   -#: app/views/manage_tags/edit.rhtml:6
1047   -#: app/views/membership_editor/new_enterprise.rhtml:13
1048   -#: app/views/enterprise_registration/basic_information.rhtml:33
1049   -#: app/views/environment_role_manager/change_role.rhtml:12
1050   -#: app/views/categories/_form.rhtml:17
1051   -msgid "Cancel"
1052   -msgstr "Cancelar"
1053   -
1054   -#: app/views/cms/_form.rhtml:96
1055   -msgid "Page Preview"
1056   -msgstr "Pré-visualização da página"
1057   -
1058   -#: app/views/cms/_form.rhtml:98
1059   -msgid "Loading Preview..."
1060   -msgstr "Carregando Pré-visualzação..."
1061   -
1062   -#: app/views/cms/_form.rhtml:103
1063   -msgid "Close Preview"
1064   -msgstr "Fechar Pré-visualzação"
1065   -
1066   -#: app/views/cms/_form.rhtml:103 app/views/cms/versions.rhtml:24
1067   -msgid "or"
1068   -msgstr "ou"
1069   -
1070   -#: app/views/cms/_form.rhtml:103
1071   -msgid "Back to top"
1072   -msgstr "Voltar ao topo"
1073   -
1074   -#: app/views/cms/reorder.rhtml:1
1075   -msgid "Reorder Pages"
1076   -msgstr "Rordenar Páginas"
1077   -
1078   -#: app/views/cms/reorder.rhtml:3
1079   -msgid "\"%s\" child pages:"
1080   -msgstr "\"%s\" páginas filhas:"
1081   -
1082   -#: app/views/cms/reorder.rhtml:19
1083   -msgid "Move Up"
1084   -msgstr "Mover para cima"
1085 1015  
1086   -#: app/views/cms/reorder.rhtml:20
1087   -msgid "Move Down"
1088   -msgstr "Mover para baixo"
1089   -
1090   -#: app/views/cms/reorder.rhtml:29
1091   -msgid "Finished"
1092   -msgstr "Terminado"
1093   -
1094   -#: app/views/cms/delete.rhtml:6
1095   -msgid "Are you sure you want to delete the page titled \"%s\"?"
1096   -msgstr "Tem certeza que quer excluir a página intitulada \"%s\"?"
1097   -
1098   -#: app/views/cms/delete.rhtml:8
1099   -msgid "It has %s child pages that will also be deleted..."
1100   -msgstr "Existem %s páginas filhas que também serão excluídas..."
1101   -
1102   -#: app/views/cms/delete.rhtml:14
1103   -msgid "Yes, Delete The Page"
1104   -msgstr "Sim, Excluir A Página"
1105   -
1106   -#: app/views/cms/versions.rhtml:1
1107   -msgid "Page Revisions"
1108   -msgstr "Revisões da Página"
1109   -
1110   -#: app/views/cms/versions.rhtml:7
1111   -msgid "View Version:"
1112   -msgstr "Ver Versão:"
1113   -
1114   -#: app/views/cms/versions.rhtml:11
1115   -msgid "Version %s"
1116   -msgstr "Versão %s"
1117   -
1118   -#: app/views/cms/versions.rhtml:14 app/views/cms/versions.rhtml:35
1119   -msgid "Title:"
1120   -msgstr "Título:"
1121   -
1122   -#: app/views/cms/versions.rhtml:15 app/views/cms/versions.rhtml:36
1123   -msgid "Slug:"
1124   -msgstr "Atalho:"
1125   -
1126   -#: app/views/cms/versions.rhtml:17 app/views/cms/versions.rhtml:38
1127   -msgid "Keywords:"
1128   -msgstr "Palavras-chaves"
1129   -
1130   -#: app/views/cms/versions.rhtml:23
1131   -msgid "Set As Current Version"
1132   -msgstr "Tornar versão atual"
1133   -
1134   -#: app/views/cms/versions.rhtml:32
1135   -msgid "Current Version"
1136   -msgstr "Versão Atual"
1137   -
1138   -#: app/views/cms/edit.rhtml:2
1139   -msgid "Edit Page"
1140   -msgstr "Editar Página"
1141   -
1142   -#: app/views/cms/index.rhtml:2
1143   -msgid "Clear Page Cache"
1144   -msgstr "Limpar cache de páginas"
1145   -
1146   -#: app/views/cms/index.rhtml:6
1147   -msgid "Articles"
1148   -msgstr "Artigos"
1149   -
1150   -#: app/views/cms/index.rhtml:17
  1016 +#: app/views/cms/view.rhtml:25
1151 1017 msgid "New article"
1152 1018 msgstr "Novo artigo"
1153 1019  
... ... @@ -1161,6 +1027,7 @@ msgstr &quot;Permissões: &quot;
1161 1027  
1162 1028 #: app/views/role/_form.rhtml:12
1163 1029 #: app/views/profile_members/change_role.rhtml:12
  1030 +#: app/views/manage_products/_form.rhtml:11
1164 1031 #: app/views/features/_features_table.rhtml:15
1165 1032 #: app/views/environment_role_manager/change_role.rhtml:11
1166 1033 msgid "Save changes"
... ... @@ -1170,6 +1037,17 @@ msgstr &quot;Salvar alterações&quot;
1170 1037 msgid "Create role"
1171 1038 msgstr "Criar papel"
1172 1039  
  1040 +#: app/views/role/_form.rhtml:13
  1041 +#: app/views/profile_members/change_role.rhtml:13
  1042 +#: app/views/enterprise_editor/edit.rhtml:8 app/views/manage_tags/new.rhtml:6
  1043 +#: app/views/manage_tags/edit.rhtml:6
  1044 +#: app/views/membership_editor/new_enterprise.rhtml:13
  1045 +#: app/views/enterprise_registration/basic_information.rhtml:33
  1046 +#: app/views/environment_role_manager/change_role.rhtml:12
  1047 +#: app/views/categories/_form.rhtml:17
  1048 +msgid "Cancel"
  1049 +msgstr "Cancelar"
  1050 +
1173 1051 #: app/views/role/show.rhtml:3
1174 1052 msgid "Permissions"
1175 1053 msgstr "Permissões"
... ... @@ -1280,6 +1158,85 @@ msgstr[1] &quot;%{num} validadores.&quot;
1280 1158 msgid "Validators by Region"
1281 1159 msgstr "Validadores por região"
1282 1160  
  1161 +#: app/views/manage_products/new.rhtml:1
  1162 +#: app/views/manage_products/index.rhtml:3
  1163 +#, fuzzy
  1164 +msgid "New product"
  1165 +msgstr "Novo papel"
  1166 +
  1167 +#: app/views/manage_products/_form.rhtml:4
  1168 +#, fuzzy
  1169 +msgid "Name:"
  1170 +msgstr "Nome"
  1171 +
  1172 +#: app/views/manage_products/_form.rhtml:5
  1173 +msgid "Price:"
  1174 +msgstr ""
  1175 +
  1176 +#: app/views/manage_products/_form.rhtml:6
  1177 +msgid "Description:"
  1178 +msgstr ""
  1179 +
  1180 +#: app/views/manage_products/_form.rhtml:7
  1181 +#, fuzzy
  1182 +msgid "Category:"
  1183 +msgstr "Categoria: %s"
  1184 +
  1185 +#: app/views/manage_products/_form.rhtml:9
  1186 +msgid "Image:"
  1187 +msgstr ""
  1188 +
  1189 +#: app/views/manage_products/_form.rhtml:11
  1190 +#, fuzzy
  1191 +msgid "Create product"
  1192 +msgstr "Criar papel"
  1193 +
  1194 +#: app/views/manage_products/show.rhtml:4
  1195 +#: app/views/manage_products/index.rhtml:7
  1196 +msgid "Price: "
  1197 +msgstr ""
  1198 +
  1199 +#: app/views/manage_products/show.rhtml:5
  1200 +#, fuzzy
  1201 +msgid "Description: "
  1202 +msgstr "Permissões: "
  1203 +
  1204 +#: app/views/manage_products/show.rhtml:6
  1205 +#, fuzzy
  1206 +msgid "Category: "
  1207 +msgstr "Categoria: %s"
  1208 +
  1209 +#: app/views/manage_products/show.rhtml:6
  1210 +msgid "Uncategorized product"
  1211 +msgstr ""
  1212 +
  1213 +#: app/views/manage_products/show.rhtml:8
  1214 +#: app/views/manage_products/index.rhtml:8
  1215 +#, fuzzy
  1216 +msgid "edit"
  1217 +msgstr "Editar"
  1218 +
  1219 +#: app/views/manage_products/show.rhtml:9
  1220 +#: app/views/manage_products/index.rhtml:9
  1221 +#, fuzzy
  1222 +msgid "destroy"
  1223 +msgstr "Destruir"
  1224 +
  1225 +#: app/views/manage_products/show.rhtml:11
  1226 +#, fuzzy
  1227 +msgid "back"
  1228 +msgstr "Voltar"
  1229 +
  1230 +#: app/views/manage_products/edit.rhtml:1
  1231 +#, fuzzy
  1232 +msgid "Editing"
  1233 +msgstr "Editando %s"
  1234 +
  1235 +#: app/views/manage_products/index.rhtml:1
  1236 +#, fuzzy
  1237 +msgid "Listing products"
  1238 +msgstr "Listando tags"
  1239 +
1283 1240 #: app/views/content_viewer/view_page.rhtml:4
1284 1241 #: app/views/manage_tags/list.rhtml:17
1285 1242 msgid "Up"
... ... @@ -1290,15 +1247,16 @@ msgstr &quot;Acima&quot;
1290 1247 msgid "There is no such page: %s"
1291 1248 msgstr "Não há página: %s"
1292 1249  
1293   -#: app/views/layouts/application.rhtml:29
1294   -#: app/views/layouts/comatose_admin.rhtml:29
  1250 +#: app/views/layouts/application.rhtml:33
  1251 +#: app/views/layouts/comatose_admin.rhtml:33
1295 1252 msgid "Image for Loading..."
1296 1253 msgstr "Imagem para Carregamento..."
1297 1254  
1298   -#: app/views/layouts/application.rhtml:34
1299   -#: app/views/layouts/comatose_admin.rhtml:34
1300   -msgid "Go Content"
1301   -msgstr "Conteúdo"
  1255 +#: app/views/layouts/application.rhtml:39
  1256 +#: app/views/layouts/comatose_admin.rhtml:39
  1257 +#, fuzzy
  1258 +msgid "Go to content"
  1259 +msgstr "Conteúdo da postagem"
1302 1260  
1303 1261 #: app/views/layouts/not_found.rhtml:5
1304 1262 msgid "Page not found"
... ... @@ -1711,9 +1669,14 @@ msgid &quot;Password&quot;
1711 1669 msgstr "Senha"
1712 1670  
1713 1671 #: app/views/account/login.rhtml:20
1714   -msgid "I forgot my password"
  1672 +#, fuzzy
  1673 +msgid "I forgot my password!"
1715 1674 msgstr "Eu esqueci a minha senha"
1716 1675  
  1676 +#: app/views/account/login.rhtml:24
  1677 +msgid "I want to be an user!"
  1678 +msgstr ""
  1679 +
1717 1680 #: app/views/account/password_recovery_sent.rhtml:1
1718 1681 #: app/views/account/forgot_password.rhtml:1
1719 1682 msgid "Password recovery"
... ... @@ -1907,10 +1870,6 @@ msgstr &quot;&quot;
1907 1870 msgid "Access denied"
1908 1871 msgstr "Acesso negado"
1909 1872  
1910   -#: app/views/shared/categories_menu.rhtml:5
1911   -msgid "Home"
1912   -msgstr "Início"
1913   -
1914 1873 #: app/views/profile_editor/person_info.rhtml:1
1915 1874 msgid "Edit person info"
1916 1875 msgstr "Editar dados pessoais"
... ... @@ -1921,23 +1880,45 @@ msgstr &quot;Informação de contato&quot;
1921 1880  
1922 1881 #: app/views/profile_editor/person_info.rhtml:11
1923 1882 #: app/views/categories/_form.rhtml:16
1924   -#: app/design_blocks/favourite_links/views/add_link.rhtml:10
1925   -#: app/design_blocks/favourite_links/views/edit.rhtml:26
  1883 +#: app/design_blocks/favorite_links/views/add_link.rhtml:10
  1884 +#: app/design_blocks/favorite_links/views/edit.rhtml:26
1926 1885 msgid "Save"
1927 1886 msgstr "Salvar"
1928 1887  
1929   -#: app/views/profile_editor/index.rhtml:1
1930   -msgid "My profile"
1931   -msgstr "Meu perfil"
  1888 +#: app/views/profile_editor/index.rhtml:8
  1889 +#, fuzzy
  1890 +msgid "Edit Profile"
  1891 +msgstr "perfil"
1932 1892  
1933   -#: app/views/profile_editor/index.rhtml:13
  1893 +#: app/views/profile_editor/index.rhtml:10
  1894 +#: app/views/profile_editor/index.rhtml:21
1934 1895 msgid "Edit Visual Design"
1935 1896 msgstr "Editar Aparência"
1936 1897  
1937   -#: app/views/profile_editor/index.rhtml:15
  1898 +#: app/views/profile_editor/index.rhtml:12
  1899 +#, fuzzy
  1900 +msgid "Manage Content"
  1901 +msgstr "Gerenciar conteúdo"
  1902 +
  1903 +#: app/views/profile_editor/index.rhtml:14
  1904 +#, fuzzy
  1905 +msgid "Change Password"
  1906 +msgstr "Alterar senha"
  1907 +
  1908 +#: app/views/profile_editor/index.rhtml:16
  1909 +#, fuzzy
  1910 +msgid "Manage Products"
  1911 +msgstr "Gerenciar o seu conteúdo"
  1912 +
  1913 +#: app/views/profile_editor/index.rhtml:22
1938 1914 msgid "Menage content"
1939 1915 msgstr "Garenciar conteúdo"
1940 1916  
  1917 +#: app/views/profile_editor/index.rhtml:25
  1918 +#, fuzzy
  1919 +msgid "My organizations"
  1920 +msgstr "informação da organização"
  1921 +
1941 1922 #: app/views/enterprise_registration/basic_information.rhtml:27
1942 1923 msgid "Management information"
1943 1924 msgstr "Gerenciamento de informação"
... ... @@ -2008,7 +1989,7 @@ msgid &quot;Add subcategory&quot;
2008 1989 msgstr "Adicionar subcategoria"
2009 1990  
2010 1991 #: app/views/categories/_category.rhtml:9
2011   -#: app/design_blocks/favourite_links/views/manage_links.rhtml:18
  1992 +#: app/design_blocks/favorite_links/views/manage_links.rhtml:18
2012 1993 msgid "Remove"
2013 1994 msgstr "Remover"
2014 1995  
... ... @@ -2028,39 +2009,237 @@ msgstr &quot;Editando %s&quot;
2028 2009 msgid "Categories"
2029 2010 msgstr "Categorias"
2030 2011  
2031   -#: app/design_blocks/favourite_links/views/add_link.rhtml:1
2032   -#: app/design_blocks/favourite_links/views/edit.rhtml:2
2033   -msgid "Editing Favourite Links"
  2012 +#: app/design_blocks/favorite_links/views/add_link.rhtml:1
  2013 +#: app/design_blocks/favorite_links/views/edit.rhtml:2
  2014 +#, fuzzy
  2015 +msgid "Editing Favorite Links"
2034 2016 msgstr "Editar Links Favoritos"
2035 2017  
2036   -#: app/design_blocks/favourite_links/views/manage_links.rhtml:4
  2018 +#: app/design_blocks/favorite_links/views/add_link.rhtml:6
  2019 +#: app/design_blocks/favorite_links/views/edit.rhtml:7
  2020 +msgid "Title"
  2021 +msgstr "Título"
  2022 +
  2023 +#: app/design_blocks/favorite_links/views/manage_links.rhtml:4
2037 2024 msgid "Add Link"
2038 2025 msgstr "Adicionar Link"
2039 2026  
2040   -#: app/design_blocks/favourite_links/views/manage_links.rhtml:8
2041   -#: app/design_blocks/favourite_links/views/index.rhtml:3
  2027 +#: app/design_blocks/favorite_links/views/manage_links.rhtml:8
  2028 +#: app/design_blocks/favorite_links/views/index.rhtml:4
2042 2029 msgid "Previous"
2043 2030 msgstr "Anterior"
2044 2031  
2045   -#: app/design_blocks/favourite_links/views/manage_links.rhtml:11
2046   -#: app/design_blocks/favourite_links/views/index.rhtml:6
  2032 +#: app/design_blocks/favorite_links/views/manage_links.rhtml:11
  2033 +#: app/design_blocks/favorite_links/views/index.rhtml:7
2047 2034 msgid "Next"
2048 2035 msgstr "Próximo"
2049 2036  
2050   -#: app/design_blocks/favourite_links/views/edit.rhtml:12
  2037 +#: app/design_blocks/favorite_links/views/edit.rhtml:12
2051 2038 msgid "Display header?"
2052 2039 msgstr "Mostrar menu?"
2053 2040  
2054   -#: app/design_blocks/favourite_links/views/edit.rhtml:17
  2041 +#: app/design_blocks/favorite_links/views/edit.rhtml:17
2055 2042 msgid "Display title?"
2056 2043 msgstr "Mostrar título?"
2057 2044  
2058   -#: app/design_blocks/favourite_links/views/edit.rhtml:22
  2045 +#: app/design_blocks/favorite_links/views/edit.rhtml:22
2059 2046 msgid "Max number of links"
2060 2047 msgstr "Número máximo de links"
2061 2048  
2062   -#~ msgid "List Block"
2063   -#~ msgstr "Bloco de Lista"
  2049 +#~ msgid "My account"
  2050 +#~ msgstr "Minha conta"
  2051 +
  2052 +#~ msgid "About"
  2053 +#~ msgstr "Sobre"
  2054 +
  2055 +#~ msgid "about"
  2056 +#~ msgstr "sobre"
  2057 +
  2058 +#~ msgid "Report bug"
  2059 +#~ msgstr "Reportar bug"
  2060 +
  2061 +#~ msgid "accessibility"
  2062 +#~ msgstr "acessibilidade"
  2063 +
  2064 +#~ msgid "Accessibility"
  2065 +#~ msgstr "Acessibilidade"
  2066 +
  2067 +#~ msgid "No Filter at all"
  2068 +#~ msgstr "Sem qualquer filtro"
  2069 +
  2070 +#~ msgid "RDoc filter"
  2071 +#~ msgstr "Filtro RDoc"
  2072 +
  2073 +#~ msgid "Simple"
  2074 +#~ msgstr "Simples"
  2075 +
  2076 +#~ msgid "Textile"
  2077 +#~ msgstr "Textile"
  2078 +
  2079 +#~ msgid "New Page"
  2080 +#~ msgstr "Nova Página"
  2081 +
  2082 +#~ msgid "%d revision"
  2083 +#~ msgstr "%d revisão"
  2084 +
  2085 +#~ msgid "%d revisions"
  2086 +#~ msgstr "%d revisões"
  2087 +
  2088 +#~ msgid "add child document"
  2089 +#~ msgstr "adicionar document filho"
  2090 +
  2091 +#~ msgid "Add a child to '%s'"
  2092 +#~ msgstr "Adicionar um filho a '%s'"
  2093 +
  2094 +#~ msgid "reorder children"
  2095 +#~ msgstr "reordenar filhos"
  2096 +
  2097 +#~ msgid "finished reordering"
  2098 +#~ msgstr "ordenação terminada"
  2099 +
  2100 +#~ msgid "Reorder children of '%s'"
  2101 +#~ msgstr "Reordenar filhos de '%s'"
  2102 +
  2103 +#~ msgid "delete"
  2104 +#~ msgstr "excluir"
  2105 +
  2106 +#~ msgid "This will delete this page, and any children. Are you sure?"
  2107 +#~ msgstr "Isto vai excluir esta página, e qualquer filho. Tem certeza?"
  2108 +
  2109 +#~ msgid "Delete page '%s' and all it's children"
  2110 +#~ msgstr "Excluir página '%s' e todos seus filhos"
  2111 +
  2112 +#~ msgid "DRAG"
  2113 +#~ msgstr "ARRASTE"
  2114 +
  2115 +#~ msgid "More..."
  2116 +#~ msgstr "Mais..."
  2117 +
  2118 +#~ msgid "Less..."
  2119 +#~ msgstr "Menos..."
  2120 +
  2121 +#~ msgid "Slug"
  2122 +#~ msgstr "Atalho"
  2123 +
  2124 +#~ msgid "Keywords"
  2125 +#~ msgstr "Palvras-chave"
  2126 +
  2127 +#~ msgid "Parent"
  2128 +#~ msgstr "Pai"
  2129 +
  2130 +#~ msgid "%s is a root page"
  2131 +#~ msgstr "%s é uma página raiz"
  2132 +
  2133 +#~ msgid "Content"
  2134 +#~ msgstr "Conteúdo"
  2135 +
  2136 +#~ msgid "Filter"
  2137 +#~ msgstr "Filtro"
  2138 +
  2139 +#~ msgid "Converts plain text into HTML"
  2140 +#~ msgstr "Converte texto plano em HTML"
  2141 +
  2142 +#~ msgid "Created"
  2143 +#~ msgstr "Criado"
  2144 +
  2145 +#~ msgid "One revision"
  2146 +#~ msgid_plural "%d revisions"
  2147 +#~ msgstr[0] "Uma revisão"
  2148 +#~ msgstr[1] "%d revisões"
  2149 +
  2150 +#~ msgid "Loading preview ..."
  2151 +#~ msgstr "Carregando pré-visualização ..."
  2152 +
  2153 +#~ msgid "Save Changes"
  2154 +#~ msgstr "Salvar Mudanças"
  2155 +
  2156 +#~ msgid "Create Page"
  2157 +#~ msgstr "Criar Página"
  2158 +
  2159 +#~ msgid "Revert"
  2160 +#~ msgstr "Reverter"
  2161 +
  2162 +#~ msgid ""
  2163 +#~ "Changes detected. You will lose all the updates you have made if you "
  2164 +#~ "proceed..."
  2165 +#~ msgstr ""
  2166 +#~ "Mudanças detectadas. Você vai perder todas as atualizações que você fez "
  2167 +#~ "se continuar..."
  2168 +
  2169 +#~ msgid "Page Preview"
  2170 +#~ msgstr "Pré-visualização da página"
  2171 +
  2172 +#~ msgid "Loading Preview..."
  2173 +#~ msgstr "Carregando Pré-visualzação..."
  2174 +
  2175 +#~ msgid "Close Preview"
  2176 +#~ msgstr "Fechar Pré-visualzação"
  2177 +
  2178 +#~ msgid "or"
  2179 +#~ msgstr "ou"
  2180 +
  2181 +#~ msgid "Back to top"
  2182 +#~ msgstr "Voltar ao topo"
  2183 +
  2184 +#~ msgid "Reorder Pages"
  2185 +#~ msgstr "Rordenar Páginas"
  2186 +
  2187 +#~ msgid "\"%s\" child pages:"
  2188 +#~ msgstr "\"%s\" páginas filhas:"
  2189 +
  2190 +#~ msgid "Move Up"
  2191 +#~ msgstr "Mover para cima"
  2192 +
  2193 +#~ msgid "Move Down"
  2194 +#~ msgstr "Mover para baixo"
  2195 +
  2196 +#~ msgid "Finished"
  2197 +#~ msgstr "Terminado"
  2198 +
  2199 +#~ msgid "Are you sure you want to delete the page titled \"%s\"?"
  2200 +#~ msgstr "Tem certeza que quer excluir a página intitulada \"%s\"?"
  2201 +
  2202 +#~ msgid "It has %s child pages that will also be deleted..."
  2203 +#~ msgstr "Existem %s páginas filhas que também serão excluídas..."
  2204 +
  2205 +#~ msgid "Yes, Delete The Page"
  2206 +#~ msgstr "Sim, Excluir A Página"
  2207 +
  2208 +#~ msgid "Page Revisions"
  2209 +#~ msgstr "Revisões da Página"
  2210 +
  2211 +#~ msgid "View Version:"
  2212 +#~ msgstr "Ver Versão:"
  2213 +
  2214 +#~ msgid "Version %s"
  2215 +#~ msgstr "Versão %s"
  2216 +
  2217 +#~ msgid "Title:"
  2218 +#~ msgstr "Título:"
  2219 +
  2220 +#~ msgid "Slug:"
  2221 +#~ msgstr "Atalho:"
  2222 +
  2223 +#~ msgid "Keywords:"
  2224 +#~ msgstr "Palavras-chaves"
  2225 +
  2226 +#~ msgid "Set As Current Version"
  2227 +#~ msgstr "Tornar versão atual"
  2228 +
  2229 +#~ msgid "Current Version"
  2230 +#~ msgstr "Versão Atual"
  2231 +
  2232 +#~ msgid "Edit Page"
  2233 +#~ msgstr "Editar Página"
  2234 +
  2235 +#~ msgid "Clear Page Cache"
  2236 +#~ msgstr "Limpar cache de páginas"
  2237 +
  2238 +#~ msgid "Go Content"
  2239 +#~ msgstr "Conteúdo"
  2240 +
  2241 +#~ msgid "Home"
  2242 +#~ msgstr "Início"
2064 2243  
2065 2244 #~ msgid "Link Block"
2066 2245 #~ msgstr "Bloco de Link"
... ...
public/designs/templates/default/stylesheets/style.css
... ... @@ -111,3 +111,9 @@ div#notice .button a {
111 111 div#notice .button a:hover {
112 112 background-color: #ffd;
113 113 }
  114 +
  115 +
  116 +#design_editor .design_box{
  117 + border: 1px solid black;
  118 + height: 400px;
  119 +}
... ...
test/fixtures/images.yml 0 → 100644
... ... @@ -0,0 +1,5 @@
  1 +# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
  2 +one:
  3 + id: 1
  4 +two:
  5 + id: 2
... ...
test/unit/image_test.rb 0 → 100644
... ... @@ -0,0 +1,10 @@
  1 +require File.dirname(__FILE__) + '/../test_helper'
  2 +
  3 +class ImageTest < Test::Unit::TestCase
  4 + fixtures :images
  5 +
  6 + # Replace this with your real tests.
  7 + def test_truth
  8 + assert true
  9 + end
  10 +end
... ...