Commit f7761e0d4c4d123ce354c16982c31b53dab47575

Authored by Antonio Terceiro
2 parents 63963974 0a4185e8

Merge branch 'master' into rails4

Showing 259 changed files with 75804 additions and 74526 deletions   Show diff stats

Too many changes.

To preserve performance only 100 of 259 files displayed.

AUTHORS.md
... ... @@ -64,6 +64,7 @@ Isaac Canan <isaac@intelletto.com.br>
64 64 Italo Valcy <italo@dcc.ufba.br>
65 65 Jefferson Fernandes <jeffs.fernandes@gmail.com>
66 66 Jérôme Jutteau <j.jutteau@gmail.com>
  67 +Jéssica Cristina <jessica.cris1127@gmail.com>
67 68 João Machini
68 69 João M. M. da Silva <jaodsilv@linux.ime.usp.br>
69 70 Joenio Costa <joenio@colivre.coop.br>
... ... @@ -115,6 +116,7 @@ Renan Costa &lt;renan2727@hotmail.com&gt;
115 116 Renan Teruo <renanteruoc@gmail.com>
116 117 Rodrigo Medeiros <rodrigo.mss01@gmail.com>
117 118 Rodrigo Souto <rodrigo@colivre.coop.br>
  119 +Ronnie Simon <ronniesimonf@gmail.com>
118 120 Ronny Kursawe <kursawe.ronny@googlemail.com>
119 121 Samuel R. C. Vale <srcvale@holoscopio.com>
120 122 Simião Carvalho <simiaosimis@gmail.com>
... ... @@ -128,7 +130,7 @@ TWS &lt;tablettws@gmail.com&gt;
128 130 Valessio Brito <contato@valessiobrito.com.br>
129 131 Victor Costa <vfcosta@gmail.com>
130 132 Victor Hugo Alves de Carvalho <victorhugodf.ac@gmail.com>
131   -Victor Matias Navarro <victor.matias.navarro@gmail.com>
  133 +Victor Navarro <victor.matias.navarro@gmail.com>
132 134 Vinicius Cubas Brand <viniciuscb@gmail.com>
133 135 Vitor Barbosa <vitornga15@gmail.com>
134 136 Wilton Rodrigues <braynwilton@gmail.com>
... ...
Gemfile
... ... @@ -33,6 +33,7 @@ gem &#39;rack-contrib&#39;
33 33 # asset pipeline
34 34 gem 'uglifier', '>= 1.0.3'
35 35 gem 'sass-rails'
  36 +gem 'sass', '~> 3.1.19'
36 37  
37 38 # gems to enable rails3 behaviour
38 39 gem 'protected_attributes'
... ...
app/controllers/my_profile/cms_controller.rb
... ... @@ -27,7 +27,7 @@ class CmsController &lt; MyProfileController
27 27  
28 28 helper_method :file_types
29 29  
30   - protect_if :except => [:suggest_an_article, :set_home_page, :edit, :destroy, :publish, :upload_files, :new] do |c, user, profile|
  30 + protect_if :except => [:suggest_an_article, :set_home_page, :edit, :destroy, :publish, :publish_on_portal_community, :publish_on_communities, :search_communities_to_publish, :upload_files, :new] do |c, user, profile|
31 31 user && (user.has_permission?('post_content', profile) || user.has_permission?('publish_content', profile))
32 32 end
33 33  
... ... @@ -281,7 +281,7 @@ class CmsController &lt; MyProfileController
281 281 task.cancel
282 282 end
283 283 if @failed.blank?
284   - session[:notice] = _("Your publish request was sent successfully")
  284 + session[:notice] = _("You published this content successfully")
285 285 if @back_to
286 286 redirect_to @back_to
287 287 else
... ...
app/helpers/article_helper.rb
... ... @@ -23,13 +23,11 @@ module ArticleHelper
23 23 ) :
24 24 '') +
25 25  
26   - (article.parent && article.parent.forum? && controller.action_name == 'new' ?
27   - hidden_field_tag('article[accept_comments]', 1) :
28 26 content_tag(
29 27 'div',
30 28 check_box(:article, :accept_comments) +
31 29 content_tag('label', (article.parent && article.parent.forum? ? _('This topic is opened for replies') : _('I want to receive comments about this article')), :for => 'article_accept_comments')
32   - )) +
  30 + ) +
33 31  
34 32 content_tag(
35 33 'div',
... ...
app/models/add_member.rb
... ... @@ -29,8 +29,10 @@ class AddMember &lt; Task
29 29 end
30 30  
31 31 def information
32   - {:message => _("%{requestor} wants to be a member of '%{organization}'."),
33   - variables: {requestor: requestor.name, organization: organization.name}}
  32 + requestor_email = " (#{requestor.email})" if requestor.may_display_field_to?("email")
  33 +
  34 + {:message => _("%{requestor}%{requestor_email} wants to be a member of '%{organization}'."),
  35 + variables: {requestor: requestor.name, requestor_email: requestor_email, organization: organization.name}}
34 36 end
35 37  
36 38 def accept_details
... ... @@ -46,7 +48,9 @@ class AddMember &lt; Task
46 48 end
47 49  
48 50 def target_notification_description
49   - _("%{requestor} wants to be a member of '%{organization}'.") % {:requestor => requestor.name, :organization => organization.name}
  51 + requestor_email = " (#{requestor.email})" if requestor.may_display_field_to?("email")
  52 +
  53 + _("%{requestor}%{requestor_email} wants to be a member of '%{organization}'.") % {:requestor => requestor.name, :requestor_email => requestor_email, :organization => organization.name}
50 54 end
51 55  
52 56 def target_notification_message
... ...
app/models/highlights_block.rb
... ... @@ -12,7 +12,9 @@ class HighlightsBlock &lt; Block
12 12 block.images.each do |i|
13 13 i[:image_id] = i[:image_id].to_i
14 14 i[:position] = i[:position].to_i
15   - i[:address] = Noosfero.root + i[:address] unless Noosfero.root.nil?
  15 + if !Noosfero.root.nil? and !i[:address].start_with?(Noosfero.root + '/')
  16 + i[:address] = Noosfero.root + i[:address]
  17 + end
16 18 begin
17 19 file = UploadedFile.find(i[:image_id])
18 20 i[:image_src] = file.public_filename
... ...
app/views/content_viewer/view_page.html.erb
... ... @@ -31,7 +31,7 @@
31 31 <% cache(@page.cache_key(params, user, language)) do %>
32 32 <div class="<%="article-body article-body-" + @page.css_class_name %>">
33 33 <% options = @page.image? ? {:gallery_view => true} : {} %>
34   - <% if @page.image.present? && !@page.event? %>
  34 + <% if @page.image.present? && !@page.event? && !@page.blog? %>
35 35 <div class="article-body-img">
36 36 <%= image_tag(@page.image.public_filename) %>
37 37 <p><%= @page.image.label%></p>
... ...
debian/changelog
1   -noosfero (1.3~0.0) UNRELEASED; urgency=medium
  1 +noosfero (1.3~rc2) wheezy-test; urgency=low
2 2  
3   - * Noosfero 1.3 ALPHA 0
  3 + * Noosfero 1.3 RC2
4 4  
5   - -- Antonio Terceiro <terceiro@debian.org> Wed, 09 Sep 2015 21:27:05 -0300
  5 + -- Antonio Terceiro <terceiro@softwarelivre.org> Fri, 30 Oct 2015 15:57:14 -0300
  6 +
  7 +noosfero (1.3~rc1) wheezy-test; urgency=medium
  8 +
  9 + * Noosfero 1.3 RC1
  10 +
  11 + -- Antonio Terceiro <terceiro@colivre.coop.br> Fri, 09 Oct 2015 10:24:13 -0300
6 12  
7 13 noosfero (1.2) wheezy; urgency=low
8 14  
... ...
etc/init.d/noosfero
... ... @@ -7,7 +7,7 @@
7 7 # Should-Stop: postgresql
8 8 # Default-Start: 2 3 4 5
9 9 # Default-Stop: 0 1 6
10   -# Short-Description: Example initscript
  10 +# Short-Description: Noosfero
11 11 # Description: This file should be used to construct scripts to be
12 12 # placed in /etc/init.d.
13 13 ### END INIT INFO
... ...
lib/noosfero/version.rb
1 1 module Noosfero
2 2 PROJECT = 'noosfero'
3   - VERSION = '1.3~0.0'
  3 + VERSION = '1.3~rc2'
4 4 end
5 5  
6 6 root = File.expand_path(File.dirname(__FILE__) + '/../..')
7 7 if File.exist?(File.join(root, '.git'))
8   - Noosfero::VERSION.clear << Dir.chdir(root) { `git describe --tags`.strip.sub('-rc', '~rc') }
  8 + git_version = Dir.chdir(root) { `git describe --tags`.strip.sub('-rc', '~rc') }
  9 + if git_version > Noosfero::VERSION
  10 + Noosfero::VERSION.clear << git_version
  11 + end
9 12 end
... ...
plugins/analytics/po/pt/analytics.po
... ... @@ -11,8 +11,8 @@
11 11 #
12 12 msgid ""
13 13 msgstr ""
14   -"Project-Id-Version: 1.1-882-g0c116ba\n"
15   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  14 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  15 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
16 16 "PO-Revision-Date: 2015-07-21 09:23-0300\n"
17 17 "Last-Translator: Michal Čihař <michal@cihar.com>\n"
18 18 "Language-Team: Portuguese <https://hosted.weblate.org/projects/noosfero/"
... ...
plugins/anti_spam/po/anti_spam.pot
... ... @@ -6,8 +6,8 @@
6 6 #, fuzzy
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.1-882-g0c116ba\n"
10   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
11 11 "PO-Revision-Date: 2015-08-06 17:21-0300\n"
12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 13 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...
plugins/anti_spam/po/de/anti_spam.po
... ... @@ -6,8 +6,8 @@
6 6 #
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.1-882-g0c116ba\n"
10   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
11 11 "PO-Revision-Date: 2014-12-12 14:23+0200\n"
12 12 "Last-Translator: Michal Čihař <michal@cihar.com>\n"
13 13 "Language-Team: German <https://hosted.weblate.org/projects/noosfero/noosfero/"
... ...
plugins/anti_spam/po/pt/anti_spam.po
... ... @@ -11,8 +11,8 @@
11 11 #
12 12 msgid ""
13 13 msgstr ""
14   -"Project-Id-Version: 1.1-882-g0c116ba\n"
15   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  14 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  15 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
16 16 "PO-Revision-Date: 2014-12-18 18:40-0200\n"
17 17 "Last-Translator: Luciano Prestes Cavalcanti <lucianopcbr@gmail.com>\n"
18 18 "Language-Team: Portuguese <https://hosted.weblate.org/projects/noosfero/"
... ...
plugins/breadcrumbs/po/breadcrumbs.pot
... ... @@ -6,8 +6,8 @@
6 6 #, fuzzy
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.1-882-g0c116ba\n"
10   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
11 11 "PO-Revision-Date: 2015-08-06 17:21-0300\n"
12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 13 "Language-Team: LANGUAGE <LL@li.org>\n"
... ... @@ -17,6 +17,10 @@ msgstr &quot;&quot;
17 17 "Content-Transfer-Encoding: 8bit\n"
18 18 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
19 19  
  20 +#: plugins/breadcrumbs/lib/breadcrumbs_plugin.rb:8
  21 +msgid "A plugin that add a block to display breadcrumbs."
  22 +msgstr ""
  23 +
20 24 #: plugins/breadcrumbs/lib/breadcrumbs_plugin/content_breadcrumbs_block.rb:10
21 25 msgid "Content Breadcrumbs"
22 26 msgstr ""
... ... @@ -29,10 +33,6 @@ msgstr &quot;&quot;
29 33 msgid "Upload Files"
30 34 msgstr ""
31 35  
32   -#: plugins/breadcrumbs/lib/breadcrumbs_plugin.rb:8
33   -msgid "A plugin that add a block to display breadcrumbs."
34   -msgstr ""
35   -
36 36 #: plugins/breadcrumbs/views/box_organizer/breadcrumbs_plugin/_content_breadcrumbs_block.html.erb:2
37 37 msgid "Show cms action"
38 38 msgstr ""
... ...
plugins/breadcrumbs/po/pt/breadcrumbs.po
... ... @@ -11,8 +11,8 @@
11 11 #
12 12 msgid ""
13 13 msgstr ""
14   -"Project-Id-Version: 1.1-882-g0c116ba\n"
15   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  14 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  15 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
16 16 "PO-Revision-Date: 2014-12-18 18:40-0200\n"
17 17 "Last-Translator: Luciano Prestes Cavalcanti <lucianopcbr@gmail.com>\n"
18 18 "Language-Team: Portuguese <https://hosted.weblate.org/projects/noosfero/"
... ... @@ -24,6 +24,10 @@ msgstr &quot;&quot;
24 24 "Plural-Forms: nplurals=2; plural=n != 1;\n"
25 25 "X-Generator: Weblate 2.0\n"
26 26  
  27 +#: plugins/breadcrumbs/lib/breadcrumbs_plugin.rb:8
  28 +msgid "A plugin that add a block to display breadcrumbs."
  29 +msgstr "Um plugin que adiciona um bloco que mostra caminhos de pão."
  30 +
27 31 #: plugins/breadcrumbs/lib/breadcrumbs_plugin/content_breadcrumbs_block.rb:10
28 32 msgid "Content Breadcrumbs"
29 33 msgstr "Conteúdo de Caminho de Pão"
... ... @@ -36,10 +40,6 @@ msgstr &quot;Esse bloco mostra o rastro de caminho de pão.&quot;
36 40 msgid "Upload Files"
37 41 msgstr "Enviar Arquivos"
38 42  
39   -#: plugins/breadcrumbs/lib/breadcrumbs_plugin.rb:8
40   -msgid "A plugin that add a block to display breadcrumbs."
41   -msgstr "Um plugin que adiciona um bloco que mostra caminhos de pão."
42   -
43 43 #: plugins/breadcrumbs/views/box_organizer/breadcrumbs_plugin/_content_breadcrumbs_block.html.erb:2
44 44 msgid "Show cms action"
45 45 msgstr "Mostrar cms"
... ...
plugins/classify_members/po/classify_members.pot
... ... @@ -6,8 +6,8 @@
6 6 #, fuzzy
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.1-882-g0c116ba\n"
10   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
11 11 "PO-Revision-Date: 2015-08-06 17:21-0300\n"
12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 13 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...
plugins/comment_classification/po/comment_classification.pot
... ... @@ -6,8 +6,8 @@
6 6 #, fuzzy
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.1-882-g0c116ba\n"
10   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:34-0300\n"
11 11 "PO-Revision-Date: 2015-08-06 17:21-0300\n"
12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 13 "Language-Team: LANGUAGE <LL@li.org>\n"
... ... @@ -17,6 +17,10 @@ msgstr &quot;&quot;
17 17 "Content-Transfer-Encoding: 8bit\n"
18 18 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
19 19  
  20 +#: plugins/comment_classification/lib/comment_classification_plugin.rb:11
  21 +msgid "A plugin that allow classification of comments."
  22 +msgstr ""
  23 +
20 24 #: plugins/comment_classification/controllers/admin/comment_classification_plugin_labels_controller.rb:16
21 25 msgid "Label created"
22 26 msgstr ""
... ... @@ -67,8 +71,61 @@ msgstr &quot;&quot;
67 71 msgid "Status could not be removed"
68 72 msgstr ""
69 73  
70   -#: plugins/comment_classification/lib/comment_classification_plugin.rb:11
71   -msgid "A plugin that allow classification of comments."
  74 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/_status_form.html.erb:6
  75 +#: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:9
  76 +#: plugins/comment_classification/views/comment/comment_extra.html.erb:12
  77 +msgid "Status"
  78 +msgstr ""
  79 +
  80 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/_status_form.html.erb:7
  81 +msgid "Reason:"
  82 +msgstr ""
  83 +
  84 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:1
  85 +msgid "Status for comment"
  86 +msgstr ""
  87 +
  88 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:16
  89 +msgid ""
  90 +"<i>%{user}</i> added the status <i>%{status_name}</i> at <i>%{created_at}</"
  91 +"i>."
  92 +msgstr ""
  93 +
  94 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:18
  95 +msgid "<i>Reason:</i> %s"
  96 +msgstr ""
  97 +
  98 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:24
  99 +#: plugins/comment_classification/views/comment_classification_plugin_status/create.html.erb:1
  100 +#: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:29
  101 +msgid "Add a new status"
  102 +msgstr ""
  103 +
  104 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/index.html.erb:1
  105 +msgid "Manage comment classification"
  106 +msgstr ""
  107 +
  108 +#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:6
  109 +#: plugins/comment_classification/views/comment_classification_plugin_status/_form.html.erb:6
  110 +msgid "Name"
  111 +msgstr ""
  112 +
  113 +#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:7
  114 +#: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:10
  115 +msgid "Color"
  116 +msgstr ""
  117 +
  118 +#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:8
  119 +msgid "Enable this label?"
  120 +msgstr ""
  121 +
  122 +#: plugins/comment_classification/views/comment_classification_plugin_labels/edit.html.erb:1
  123 +msgid "Editing label %s"
  124 +msgstr ""
  125 +
  126 +#: plugins/comment_classification/views/comment_classification_plugin_labels/create.html.erb:1
  127 +#: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:29
  128 +msgid "Add a new label"
72 129 msgstr ""
73 130  
74 131 #: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:1
... ... @@ -84,11 +141,6 @@ msgstr &quot;&quot;
84 141 msgid "Label"
85 142 msgstr ""
86 143  
87   -#: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:10
88   -#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:7
89   -msgid "Color"
90   -msgstr ""
91   -
92 144 #: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:11
93 145 #: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:10
94 146 msgid "Enabled"
... ... @@ -103,32 +155,12 @@ msgstr &quot;&quot;
103 155 msgid "Are you sure you want to remove this label?"
104 156 msgstr ""
105 157  
106   -#: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:29
107   -#: plugins/comment_classification/views/comment_classification_plugin_labels/create.html.erb:1
108   -msgid "Add a new label"
109   -msgstr ""
110   -
111   -#: plugins/comment_classification/views/comment_classification_plugin_labels/edit.html.erb:1
112   -msgid "Editing label %s"
113   -msgstr ""
114   -
115   -#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:6
116   -#: plugins/comment_classification/views/comment_classification_plugin_status/_form.html.erb:6
117   -msgid "Name"
118   -msgstr ""
119   -
120   -#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:8
121   -msgid "Enable this label?"
122   -msgstr ""
123   -
124   -#: plugins/comment_classification/views/comment/comments_labels_select.html.erb:3
125   -msgid "[Select ...]"
  158 +#: plugins/comment_classification/views/comment_classification_plugin_status/_form.html.erb:7
  159 +msgid "Enable this status?"
126 160 msgstr ""
127 161  
128   -#: plugins/comment_classification/views/comment/comment_extra.html.erb:12
129   -#: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:9
130   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/_status_form.html.erb:6
131   -msgid "Status"
  162 +#: plugins/comment_classification/views/comment_classification_plugin_status/edit.html.erb:1
  163 +msgid "Editing status %s"
132 164 msgstr ""
133 165  
134 166 #: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:1
... ... @@ -147,18 +179,8 @@ msgstr &quot;&quot;
147 179 msgid "Are you sure you want to remove this status?"
148 180 msgstr ""
149 181  
150   -#: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:29
151   -#: plugins/comment_classification/views/comment_classification_plugin_status/create.html.erb:1
152   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:24
153   -msgid "Add a new status"
154   -msgstr ""
155   -
156   -#: plugins/comment_classification/views/comment_classification_plugin_status/edit.html.erb:1
157   -msgid "Editing status %s"
158   -msgstr ""
159   -
160   -#: plugins/comment_classification/views/comment_classification_plugin_status/_form.html.erb:7
161   -msgid "Enable this status?"
  182 +#: plugins/comment_classification/views/comment/comments_labels_select.html.erb:3
  183 +msgid "[Select ...]"
162 184 msgstr ""
163 185  
164 186 #: plugins/comment_classification/views/comment_classification_plugin_admin/index.html.erb:1
... ... @@ -172,25 +194,3 @@ msgstr &quot;&quot;
172 194 #: plugins/comment_classification/views/comment_classification_plugin_admin/index.html.erb:5
173 195 msgid "Manage Status"
174 196 msgstr ""
175   -
176   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/index.html.erb:1
177   -msgid "Manage comment classification"
178   -msgstr ""
179   -
180   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:1
181   -msgid "Status for comment"
182   -msgstr ""
183   -
184   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:16
185   -msgid ""
186   -"<i>%{user}</i> added the status <i>%{status_name}</i> at <i>%{created_at}</"
187   -"i>."
188   -msgstr ""
189   -
190   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:18
191   -msgid "<i>Reason:</i> %s"
192   -msgstr ""
193   -
194   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/_status_form.html.erb:7
195   -msgid "Reason:"
196   -msgstr ""
... ...
plugins/comment_classification/po/de/comment_classification.po
... ... @@ -6,8 +6,8 @@
6 6 #
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.1-882-g0c116ba\n"
10   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:34-0300\n"
11 11 "PO-Revision-Date: 2015-02-23 11:38+0200\n"
12 12 "Last-Translator: Michal Čihař <michal@cihar.com>\n"
13 13 "Language-Team: German <https://hosted.weblate.org/projects/noosfero/plugin-"
... ... @@ -19,6 +19,11 @@ msgstr &quot;&quot;
19 19 "Plural-Forms: nplurals=2; plural=n != 1;\n"
20 20 "X-Generator: Weblate 2.3-dev\n"
21 21  
  22 +#: plugins/comment_classification/lib/comment_classification_plugin.rb:11
  23 +#, fuzzy
  24 +msgid "A plugin that allow classification of comments."
  25 +msgstr "Ein Block, der Ihre Gruppen anzeigt"
  26 +
22 27 #: plugins/comment_classification/controllers/admin/comment_classification_plugin_labels_controller.rb:16
23 28 #, fuzzy
24 29 msgid "Label created"
... ... @@ -81,10 +86,69 @@ msgstr &quot;Vertrag entfernt.&quot;
81 86 msgid "Status could not be removed"
82 87 msgstr "Das Formular konnte nicht entfernt werden"
83 88  
84   -#: plugins/comment_classification/lib/comment_classification_plugin.rb:11
  89 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/_status_form.html.erb:6
  90 +#: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:9
  91 +#: plugins/comment_classification/views/comment/comment_extra.html.erb:12
  92 +msgid "Status"
  93 +msgstr "Status"
  94 +
  95 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/_status_form.html.erb:7
85 96 #, fuzzy
86   -msgid "A plugin that allow classification of comments."
87   -msgstr "Ein Block, der Ihre Gruppen anzeigt"
  97 +msgid "Reason:"
  98 +msgstr "Grund"
  99 +
  100 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:1
  101 +#, fuzzy
  102 +msgid "Status for comment"
  103 +msgstr "Spam auf Kommentaren"
  104 +
  105 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:16
  106 +msgid ""
  107 +"<i>%{user}</i> added the status <i>%{status_name}</i> at <i>%{created_at}</"
  108 +"i>."
  109 +msgstr ""
  110 +
  111 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:18
  112 +msgid "<i>Reason:</i> %s"
  113 +msgstr ""
  114 +
  115 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:24
  116 +#: plugins/comment_classification/views/comment_classification_plugin_status/create.html.erb:1
  117 +#: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:29
  118 +#, fuzzy
  119 +msgid "Add a new status"
  120 +msgstr "Neue Option hinzufügen"
  121 +
  122 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/index.html.erb:1
  123 +#, fuzzy
  124 +msgid "Manage comment classification"
  125 +msgstr "Verwaltungsinformationen"
  126 +
  127 +#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:6
  128 +#: plugins/comment_classification/views/comment_classification_plugin_status/_form.html.erb:6
  129 +msgid "Name"
  130 +msgstr "Name"
  131 +
  132 +#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:7
  133 +#: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:10
  134 +msgid "Color"
  135 +msgstr ""
  136 +
  137 +#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:8
  138 +#, fuzzy
  139 +msgid "Enable this label?"
  140 +msgstr "Unternehmen aktivieren"
  141 +
  142 +#: plugins/comment_classification/views/comment_classification_plugin_labels/edit.html.erb:1
  143 +#, fuzzy
  144 +msgid "Editing label %s"
  145 +msgstr "Ändere %s"
  146 +
  147 +#: plugins/comment_classification/views/comment_classification_plugin_labels/create.html.erb:1
  148 +#: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:29
  149 +#, fuzzy
  150 +msgid "Add a new label"
  151 +msgstr "Neues Feld hinzufügen"
88 152  
89 153 #: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:1
90 154 #, fuzzy
... ... @@ -101,11 +165,6 @@ msgstr &quot;(bisher kein Produkt registriert)&quot;
101 165 msgid "Label"
102 166 msgstr ""
103 167  
104   -#: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:10
105   -#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:7
106   -msgid "Color"
107   -msgstr ""
108   -
109 168 #: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:11
110 169 #: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:10
111 170 msgid "Enabled"
... ... @@ -121,37 +180,16 @@ msgstr &quot;Aktionen&quot;
121 180 msgid "Are you sure you want to remove this label?"
122 181 msgstr "Sind Sie sicher, dass Sie diesen Block löschen wollen?"
123 182  
124   -#: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:29
125   -#: plugins/comment_classification/views/comment_classification_plugin_labels/create.html.erb:1
  183 +#: plugins/comment_classification/views/comment_classification_plugin_status/_form.html.erb:7
126 184 #, fuzzy
127   -msgid "Add a new label"
128   -msgstr "Neues Feld hinzufügen"
  185 +msgid "Enable this status?"
  186 +msgstr "\"Kontaktieren Sie uns\" aktivieren"
129 187  
130   -#: plugins/comment_classification/views/comment_classification_plugin_labels/edit.html.erb:1
  188 +#: plugins/comment_classification/views/comment_classification_plugin_status/edit.html.erb:1
131 189 #, fuzzy
132   -msgid "Editing label %s"
  190 +msgid "Editing status %s"
133 191 msgstr "Ändere %s"
134 192  
135   -#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:6
136   -#: plugins/comment_classification/views/comment_classification_plugin_status/_form.html.erb:6
137   -msgid "Name"
138   -msgstr "Name"
139   -
140   -#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:8
141   -#, fuzzy
142   -msgid "Enable this label?"
143   -msgstr "Unternehmen aktivieren"
144   -
145   -#: plugins/comment_classification/views/comment/comments_labels_select.html.erb:3
146   -msgid "[Select ...]"
147   -msgstr "[Auswahl...]"
148   -
149   -#: plugins/comment_classification/views/comment/comment_extra.html.erb:12
150   -#: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:9
151   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/_status_form.html.erb:6
152   -msgid "Status"
153   -msgstr "Status"
154   -
155 193 #: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:1
156 194 #, fuzzy
157 195 msgid "Manage comments status"
... ... @@ -172,22 +210,9 @@ msgstr &quot;facets|Nicht aktiviert&quot;
172 210 msgid "Are you sure you want to remove this status?"
173 211 msgstr "Sind Sie sicher, dass Sie diesen Eintrag entfernen möchten?"
174 212  
175   -#: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:29
176   -#: plugins/comment_classification/views/comment_classification_plugin_status/create.html.erb:1
177   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:24
178   -#, fuzzy
179   -msgid "Add a new status"
180   -msgstr "Neue Option hinzufügen"
181   -
182   -#: plugins/comment_classification/views/comment_classification_plugin_status/edit.html.erb:1
183   -#, fuzzy
184   -msgid "Editing status %s"
185   -msgstr "Ändere %s"
186   -
187   -#: plugins/comment_classification/views/comment_classification_plugin_status/_form.html.erb:7
188   -#, fuzzy
189   -msgid "Enable this status?"
190   -msgstr "\"Kontaktieren Sie uns\" aktivieren"
  213 +#: plugins/comment_classification/views/comment/comments_labels_select.html.erb:3
  214 +msgid "[Select ...]"
  215 +msgstr "[Auswahl...]"
191 216  
192 217 #: plugins/comment_classification/views/comment_classification_plugin_admin/index.html.erb:1
193 218 #, fuzzy
... ... @@ -203,28 +228,3 @@ msgstr &quot;Felder verwalten&quot;
203 228 #, fuzzy
204 229 msgid "Manage Status"
205 230 msgstr "Kontakte verwalten"
206   -
207   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/index.html.erb:1
208   -#, fuzzy
209   -msgid "Manage comment classification"
210   -msgstr "Verwaltungsinformationen"
211   -
212   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:1
213   -#, fuzzy
214   -msgid "Status for comment"
215   -msgstr "Spam auf Kommentaren"
216   -
217   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:16
218   -msgid ""
219   -"<i>%{user}</i> added the status <i>%{status_name}</i> at <i>%{created_at}</"
220   -"i>."
221   -msgstr ""
222   -
223   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:18
224   -msgid "<i>Reason:</i> %s"
225   -msgstr ""
226   -
227   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/_status_form.html.erb:7
228   -#, fuzzy
229   -msgid "Reason:"
230   -msgstr "Grund"
... ...
plugins/comment_classification/po/es/comment_classification.po
... ... @@ -5,8 +5,8 @@
5 5 #
6 6 msgid ""
7 7 msgstr ""
8   -"Project-Id-Version: 1.1-882-g0c116ba\n"
9   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  8 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  9 +"POT-Creation-Date: 2015-10-30 16:34-0300\n"
10 10 "PO-Revision-Date: 2015-02-24 20:46+0200\n"
11 11 "Last-Translator: Gonzalo Exequiel Pedone <hipersayan.x@gmail.com>\n"
12 12 "Language-Team: Spanish <https://hosted.weblate.org/projects/noosfero/plugin-"
... ... @@ -18,6 +18,10 @@ msgstr &quot;&quot;
18 18 "Plural-Forms: nplurals=2; plural=n != 1;\n"
19 19 "X-Generator: Weblate 2.3-dev\n"
20 20  
  21 +#: plugins/comment_classification/lib/comment_classification_plugin.rb:11
  22 +msgid "A plugin that allow classification of comments."
  23 +msgstr "Un plugin que permite clasificar comentarios."
  24 +
21 25 #: plugins/comment_classification/controllers/admin/comment_classification_plugin_labels_controller.rb:16
22 26 msgid "Label created"
23 27 msgstr "Etiqueta creada"
... ... @@ -68,9 +72,64 @@ msgstr &quot;Estado eliminado&quot;
68 72 msgid "Status could not be removed"
69 73 msgstr "No se puede eliminar el estado"
70 74  
71   -#: plugins/comment_classification/lib/comment_classification_plugin.rb:11
72   -msgid "A plugin that allow classification of comments."
73   -msgstr "Un plugin que permite clasificar comentarios."
  75 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/_status_form.html.erb:6
  76 +#: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:9
  77 +#: plugins/comment_classification/views/comment/comment_extra.html.erb:12
  78 +msgid "Status"
  79 +msgstr "Estado"
  80 +
  81 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/_status_form.html.erb:7
  82 +msgid "Reason:"
  83 +msgstr "Razón:"
  84 +
  85 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:1
  86 +msgid "Status for comment"
  87 +msgstr "Estado del comentario"
  88 +
  89 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:16
  90 +msgid ""
  91 +"<i>%{user}</i> added the status <i>%{status_name}</i> at <i>%{created_at}</"
  92 +"i>."
  93 +msgstr ""
  94 +"<i>%{user}</i> ha agregado el estado <i>%{status_name}</i> en <i>"
  95 +"%{created_at}</i>."
  96 +
  97 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:18
  98 +msgid "<i>Reason:</i> %s"
  99 +msgstr "<i>Razón:</i> %s"
  100 +
  101 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:24
  102 +#: plugins/comment_classification/views/comment_classification_plugin_status/create.html.erb:1
  103 +#: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:29
  104 +msgid "Add a new status"
  105 +msgstr "Agregar nuevo estado"
  106 +
  107 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/index.html.erb:1
  108 +msgid "Manage comment classification"
  109 +msgstr "Gestionar la clasificación de comentarios"
  110 +
  111 +#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:6
  112 +#: plugins/comment_classification/views/comment_classification_plugin_status/_form.html.erb:6
  113 +msgid "Name"
  114 +msgstr "Nombre"
  115 +
  116 +#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:7
  117 +#: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:10
  118 +msgid "Color"
  119 +msgstr "Color"
  120 +
  121 +#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:8
  122 +msgid "Enable this label?"
  123 +msgstr "¿Habilitar esta etiqueta?"
  124 +
  125 +#: plugins/comment_classification/views/comment_classification_plugin_labels/edit.html.erb:1
  126 +msgid "Editing label %s"
  127 +msgstr "Editar etiqueta %s"
  128 +
  129 +#: plugins/comment_classification/views/comment_classification_plugin_labels/create.html.erb:1
  130 +#: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:29
  131 +msgid "Add a new label"
  132 +msgstr "Agregar una nueva etiqueta"
74 133  
75 134 # pendiente
76 135 #: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:1
... ... @@ -87,11 +146,6 @@ msgstr &quot;(todavía no se ha registrado una etiqueta)&quot;
87 146 msgid "Label"
88 147 msgstr "Etiqueta"
89 148  
90   -#: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:10
91   -#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:7
92   -msgid "Color"
93   -msgstr "Color"
94   -
95 149 #: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:11
96 150 #: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:10
97 151 msgid "Enabled"
... ... @@ -106,33 +160,13 @@ msgstr &quot;Acciones&quot;
106 160 msgid "Are you sure you want to remove this label?"
107 161 msgstr "¿Estás seguro de que deseas eliminar esta etiqueta?"
108 162  
109   -#: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:29
110   -#: plugins/comment_classification/views/comment_classification_plugin_labels/create.html.erb:1
111   -msgid "Add a new label"
112   -msgstr "Agregar una nueva etiqueta"
113   -
114   -#: plugins/comment_classification/views/comment_classification_plugin_labels/edit.html.erb:1
115   -msgid "Editing label %s"
116   -msgstr "Editar etiqueta %s"
117   -
118   -#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:6
119   -#: plugins/comment_classification/views/comment_classification_plugin_status/_form.html.erb:6
120   -msgid "Name"
121   -msgstr "Nombre"
122   -
123   -#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:8
124   -msgid "Enable this label?"
125   -msgstr "¿Habilitar esta etiqueta?"
126   -
127   -#: plugins/comment_classification/views/comment/comments_labels_select.html.erb:3
128   -msgid "[Select ...]"
129   -msgstr "[Seleccione ...]"
  163 +#: plugins/comment_classification/views/comment_classification_plugin_status/_form.html.erb:7
  164 +msgid "Enable this status?"
  165 +msgstr "¿Habilitar este estado?"
130 166  
131   -#: plugins/comment_classification/views/comment/comment_extra.html.erb:12
132   -#: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:9
133   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/_status_form.html.erb:6
134   -msgid "Status"
135   -msgstr "Estado"
  167 +#: plugins/comment_classification/views/comment_classification_plugin_status/edit.html.erb:1
  168 +msgid "Editing status %s"
  169 +msgstr "Editando el estado %s"
136 170  
137 171 #: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:1
138 172 msgid "Manage comments status"
... ... @@ -152,19 +186,9 @@ msgstr &quot;¿Razón habilitada?&quot;
152 186 msgid "Are you sure you want to remove this status?"
153 187 msgstr "¿Estás seguro de que deseas eliminar este estado?"
154 188  
155   -#: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:29
156   -#: plugins/comment_classification/views/comment_classification_plugin_status/create.html.erb:1
157   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:24
158   -msgid "Add a new status"
159   -msgstr "Agregar nuevo estado"
160   -
161   -#: plugins/comment_classification/views/comment_classification_plugin_status/edit.html.erb:1
162   -msgid "Editing status %s"
163   -msgstr "Editando el estado %s"
164   -
165   -#: plugins/comment_classification/views/comment_classification_plugin_status/_form.html.erb:7
166   -msgid "Enable this status?"
167   -msgstr "¿Habilitar este estado?"
  189 +#: plugins/comment_classification/views/comment/comments_labels_select.html.erb:3
  190 +msgid "[Select ...]"
  191 +msgstr "[Seleccione ...]"
168 192  
169 193 #: plugins/comment_classification/views/comment_classification_plugin_admin/index.html.erb:1
170 194 msgid "Comments classification options"
... ... @@ -177,27 +201,3 @@ msgstr &quot;Gestionar Etiquetas&quot;
177 201 #: plugins/comment_classification/views/comment_classification_plugin_admin/index.html.erb:5
178 202 msgid "Manage Status"
179 203 msgstr "Gestionar Estados"
180   -
181   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/index.html.erb:1
182   -msgid "Manage comment classification"
183   -msgstr "Gestionar la clasificación de comentarios"
184   -
185   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:1
186   -msgid "Status for comment"
187   -msgstr "Estado del comentario"
188   -
189   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:16
190   -msgid ""
191   -"<i>%{user}</i> added the status <i>%{status_name}</i> at <i>%{created_at}</"
192   -"i>."
193   -msgstr ""
194   -"<i>%{user}</i> ha agregado el estado <i>%{status_name}</i> en <i>"
195   -"%{created_at}</i>."
196   -
197   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:18
198   -msgid "<i>Reason:</i> %s"
199   -msgstr "<i>Razón:</i> %s"
200   -
201   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/_status_form.html.erb:7
202   -msgid "Reason:"
203   -msgstr "Razón:"
... ...
plugins/comment_classification/po/fr/comment_classification.po
... ... @@ -4,9 +4,9 @@
4 4 # , 2009.
5 5 msgid ""
6 6 msgstr ""
7   -"Project-Id-Version: 1.1-882-g0c116ba\n"
  7 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
8 8 "Report-Msgid-Bugs-To: \n"
9   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"POT-Creation-Date: 2015-10-30 16:34-0300\n"
10 10 "PO-Revision-Date: 2015-07-03 00:34+0200\n"
11 11 "Last-Translator: Christophe DANIEL <papaeng@gmail.com>\n"
12 12 "Language-Team: French <https://hosted.weblate.org/projects/noosfero/plugin-"
... ... @@ -18,6 +18,10 @@ msgstr &quot;&quot;
18 18 "Plural-Forms: nplurals=2; plural=n > 1;\n"
19 19 "X-Generator: Weblate 2.4-dev\n"
20 20  
  21 +#: plugins/comment_classification/lib/comment_classification_plugin.rb:11
  22 +msgid "A plugin that allow classification of comments."
  23 +msgstr "Un greffon qui permet de ranger du contenue."
  24 +
21 25 #: plugins/comment_classification/controllers/admin/comment_classification_plugin_labels_controller.rb:16
22 26 msgid "Label created"
23 27 msgstr "Label crée"
... ... @@ -68,9 +72,66 @@ msgstr &quot;Les statuts ont été supprimés&quot;
68 72 msgid "Status could not be removed"
69 73 msgstr "Les statuts ne peuvent pas êtres supprimés"
70 74  
71   -#: plugins/comment_classification/lib/comment_classification_plugin.rb:11
72   -msgid "A plugin that allow classification of comments."
73   -msgstr "Un greffon qui permet de ranger du contenue."
  75 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/_status_form.html.erb:6
  76 +#: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:9
  77 +#: plugins/comment_classification/views/comment/comment_extra.html.erb:12
  78 +msgid "Status"
  79 +msgstr "Statuts"
  80 +
  81 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/_status_form.html.erb:7
  82 +msgid "Reason:"
  83 +msgstr "Raison :"
  84 +
  85 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:1
  86 +msgid "Status for comment"
  87 +msgstr "Statuts pour le commentaire"
  88 +
  89 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:16
  90 +msgid ""
  91 +"<i>%{user}</i> added the status <i>%{status_name}</i> at <i>%{created_at}</"
  92 +"i>."
  93 +msgstr ""
  94 +"<i>%{utilisateur}</i> ajout des statuts <i>%{nom_ du_statut}</i> à <i>"
  95 +"%{creer_a}</i>."
  96 +
  97 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:18
  98 +msgid "<i>Reason:</i> %s"
  99 +msgstr "<i>Raison:</i> %s"
  100 +
  101 +# (second try of this knid of contents)
  102 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:24
  103 +#: plugins/comment_classification/views/comment_classification_plugin_status/create.html.erb:1
  104 +#: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:29
  105 +msgid "Add a new status"
  106 +msgstr "Ajouter un nouveau statut"
  107 +
  108 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/index.html.erb:1
  109 +msgid "Manage comment classification"
  110 +msgstr "Manager le rangement de commentaire"
  111 +
  112 +#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:6
  113 +#: plugins/comment_classification/views/comment_classification_plugin_status/_form.html.erb:6
  114 +msgid "Name"
  115 +msgstr "Nom"
  116 +
  117 +#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:7
  118 +#: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:10
  119 +msgid "Color"
  120 +msgstr "Couleur"
  121 +
  122 +#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:8
  123 +msgid "Enable this label?"
  124 +msgstr "Activer ce label ?"
  125 +
  126 +#: plugins/comment_classification/views/comment_classification_plugin_labels/edit.html.erb:1
  127 +msgid "Editing label %s"
  128 +msgstr "Édition du label %s"
  129 +
  130 +# (second try of this knid of contents)
  131 +#: plugins/comment_classification/views/comment_classification_plugin_labels/create.html.erb:1
  132 +#: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:29
  133 +msgid "Add a new label"
  134 +msgstr "Ajouter un nouveau label"
74 135  
75 136 #: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:1
76 137 msgid "Manage comments labels"
... ... @@ -85,11 +146,6 @@ msgstr &quot;(pour le moment aucun label n&#39;est enregistré)&quot;
85 146 msgid "Label"
86 147 msgstr "Label"
87 148  
88   -#: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:10
89   -#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:7
90   -msgid "Color"
91   -msgstr "Couleur"
92   -
93 149 #: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:11
94 150 #: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:10
95 151 msgid "Enabled"
... ... @@ -104,34 +160,13 @@ msgstr &quot;Actions&quot;
104 160 msgid "Are you sure you want to remove this label?"
105 161 msgstr "Êtes-vous sûr(e) que vous voulez retirer ce label ?"
106 162  
107   -# (second try of this knid of contents)
108   -#: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:29
109   -#: plugins/comment_classification/views/comment_classification_plugin_labels/create.html.erb:1
110   -msgid "Add a new label"
111   -msgstr "Ajouter un nouveau label"
112   -
113   -#: plugins/comment_classification/views/comment_classification_plugin_labels/edit.html.erb:1
114   -msgid "Editing label %s"
115   -msgstr "Édition du label %s"
116   -
117   -#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:6
118   -#: plugins/comment_classification/views/comment_classification_plugin_status/_form.html.erb:6
119   -msgid "Name"
120   -msgstr "Nom"
121   -
122   -#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:8
123   -msgid "Enable this label?"
124   -msgstr "Activer ce label ?"
125   -
126   -#: plugins/comment_classification/views/comment/comments_labels_select.html.erb:3
127   -msgid "[Select ...]"
128   -msgstr "[Choisir...]"
  163 +#: plugins/comment_classification/views/comment_classification_plugin_status/_form.html.erb:7
  164 +msgid "Enable this status?"
  165 +msgstr "Activer ce statut ?"
129 166  
130   -#: plugins/comment_classification/views/comment/comment_extra.html.erb:12
131   -#: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:9
132   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/_status_form.html.erb:6
133   -msgid "Status"
134   -msgstr "Statuts"
  167 +#: plugins/comment_classification/views/comment_classification_plugin_status/edit.html.erb:1
  168 +msgid "Editing status %s"
  169 +msgstr "Édition du statut %s"
135 170  
136 171 #: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:1
137 172 msgid "Manage comments status"
... ... @@ -149,20 +184,9 @@ msgstr &quot;Raison activée ?&quot;
149 184 msgid "Are you sure you want to remove this status?"
150 185 msgstr "Êtes-vous sûr(e) de vouloir supprimer ce statut ?"
151 186  
152   -# (second try of this knid of contents)
153   -#: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:29
154   -#: plugins/comment_classification/views/comment_classification_plugin_status/create.html.erb:1
155   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:24
156   -msgid "Add a new status"
157   -msgstr "Ajouter un nouveau statut"
158   -
159   -#: plugins/comment_classification/views/comment_classification_plugin_status/edit.html.erb:1
160   -msgid "Editing status %s"
161   -msgstr "Édition du statut %s"
162   -
163   -#: plugins/comment_classification/views/comment_classification_plugin_status/_form.html.erb:7
164   -msgid "Enable this status?"
165   -msgstr "Activer ce statut ?"
  187 +#: plugins/comment_classification/views/comment/comments_labels_select.html.erb:3
  188 +msgid "[Select ...]"
  189 +msgstr "[Choisir...]"
166 190  
167 191 #: plugins/comment_classification/views/comment_classification_plugin_admin/index.html.erb:1
168 192 msgid "Comments classification options"
... ... @@ -175,27 +199,3 @@ msgstr &quot;Gérer les labels&quot;
175 199 #: plugins/comment_classification/views/comment_classification_plugin_admin/index.html.erb:5
176 200 msgid "Manage Status"
177 201 msgstr "Gérer les statuts"
178   -
179   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/index.html.erb:1
180   -msgid "Manage comment classification"
181   -msgstr "Manager le rangement de commentaire"
182   -
183   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:1
184   -msgid "Status for comment"
185   -msgstr "Statuts pour le commentaire"
186   -
187   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:16
188   -msgid ""
189   -"<i>%{user}</i> added the status <i>%{status_name}</i> at <i>%{created_at}</"
190   -"i>."
191   -msgstr ""
192   -"<i>%{utilisateur}</i> ajout des statuts <i>%{nom_ du_statut}</i> à <i>"
193   -"%{creer_a}</i>."
194   -
195   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:18
196   -msgid "<i>Reason:</i> %s"
197   -msgstr "<i>Raison:</i> %s"
198   -
199   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/_status_form.html.erb:7
200   -msgid "Reason:"
201   -msgstr "Raison :"
... ...
plugins/comment_classification/po/hy/comment_classification.po
... ... @@ -5,8 +5,8 @@
5 5 #
6 6 msgid ""
7 7 msgstr ""
8   -"Project-Id-Version: 1.1-882-g0c116ba\n"
9   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  8 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  9 +"POT-Creation-Date: 2015-10-30 16:34-0300\n"
10 10 "PO-Revision-Date: 2015-02-23 11:37+0200\n"
11 11 "Last-Translator: Michal Čihař <michal@cihar.com>\n"
12 12 "Language-Team: Armenian <https://hosted.weblate.org/projects/noosfero/plugin-"
... ... @@ -18,6 +18,11 @@ msgstr &quot;&quot;
18 18 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19 19 "X-Generator: Weblate 2.3-dev\n"
20 20  
  21 +#: plugins/comment_classification/lib/comment_classification_plugin.rb:11
  22 +#, fuzzy
  23 +msgid "A plugin that allow classification of comments."
  24 +msgstr "Ձեր խմբերը ցուցադրող բաժին"
  25 +
21 26 #: plugins/comment_classification/controllers/admin/comment_classification_plugin_labels_controller.rb:16
22 27 #, fuzzy
23 28 msgid "Label created"
... ... @@ -80,10 +85,69 @@ msgstr &quot;Բուն հոդված&quot;
80 85 msgid "Status could not be removed"
81 86 msgstr "Սկզբնական նյութի թարմացումը ձախողված է"
82 87  
83   -#: plugins/comment_classification/lib/comment_classification_plugin.rb:11
  88 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/_status_form.html.erb:6
  89 +#: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:9
  90 +#: plugins/comment_classification/views/comment/comment_extra.html.erb:12
  91 +msgid "Status"
  92 +msgstr "Կարգավիճակ"
  93 +
  94 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/_status_form.html.erb:7
84 95 #, fuzzy
85   -msgid "A plugin that allow classification of comments."
86   -msgstr "Ձեր խմբերը ցուցադրող բաժին"
  96 +msgid "Reason:"
  97 +msgstr "Տարածաշրջան"
  98 +
  99 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:1
  100 +#, fuzzy
  101 +msgid "Status for comment"
  102 +msgstr "Մեկ մեկնաբանություն"
  103 +
  104 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:16
  105 +msgid ""
  106 +"<i>%{user}</i> added the status <i>%{status_name}</i> at <i>%{created_at}</"
  107 +"i>."
  108 +msgstr ""
  109 +
  110 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:18
  111 +msgid "<i>Reason:</i> %s"
  112 +msgstr ""
  113 +
  114 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:24
  115 +#: plugins/comment_classification/views/comment_classification_plugin_status/create.html.erb:1
  116 +#: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:29
  117 +#, fuzzy
  118 +msgid "Add a new status"
  119 +msgstr "Մեկ ձեռնարկություն"
  120 +
  121 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/index.html.erb:1
  122 +#, fuzzy
  123 +msgid "Manage comment classification"
  124 +msgstr "Տեղեկություններ ղեկավարության մասին"
  125 +
  126 +#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:6
  127 +#: plugins/comment_classification/views/comment_classification_plugin_status/_form.html.erb:6
  128 +msgid "Name"
  129 +msgstr "Անվանում"
  130 +
  131 +#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:7
  132 +#: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:10
  133 +msgid "Color"
  134 +msgstr ""
  135 +
  136 +#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:8
  137 +#, fuzzy
  138 +msgid "Enable this label?"
  139 +msgstr "Ակտիվացնել ձեռնարկությունը"
  140 +
  141 +#: plugins/comment_classification/views/comment_classification_plugin_labels/edit.html.erb:1
  142 +#, fuzzy
  143 +msgid "Editing label %s"
  144 +msgstr "Փոփոխում %s"
  145 +
  146 +#: plugins/comment_classification/views/comment_classification_plugin_labels/create.html.erb:1
  147 +#: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:29
  148 +#, fuzzy
  149 +msgid "Add a new label"
  150 +msgstr "Մեկ ձեռնարկություն"
87 151  
88 152 #: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:1
89 153 #, fuzzy
... ... @@ -100,11 +164,6 @@ msgstr &quot;սեռը գրանցված չէ&quot;
100 164 msgid "Label"
101 165 msgstr ""
102 166  
103   -#: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:10
104   -#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:7
105   -msgid "Color"
106   -msgstr ""
107   -
108 167 #: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:11
109 168 #: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:10
110 169 msgid "Enabled"
... ... @@ -120,37 +179,16 @@ msgstr &quot;Գործողություններ&quot;
120 179 msgid "Are you sure you want to remove this label?"
121 180 msgstr "Ցանկանո՞ւմ եք արդյոք հեռացնել այս մեկնաբանությունը:"
122 181  
123   -#: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:29
124   -#: plugins/comment_classification/views/comment_classification_plugin_labels/create.html.erb:1
  182 +#: plugins/comment_classification/views/comment_classification_plugin_status/_form.html.erb:7
125 183 #, fuzzy
126   -msgid "Add a new label"
127   -msgstr "Մեկ ձեռնարկություն"
  184 +msgid "Enable this status?"
  185 +msgstr "Հատկություններ ակտիվացնել/դիզակտիվացնել"
128 186  
129   -#: plugins/comment_classification/views/comment_classification_plugin_labels/edit.html.erb:1
  187 +#: plugins/comment_classification/views/comment_classification_plugin_status/edit.html.erb:1
130 188 #, fuzzy
131   -msgid "Editing label %s"
  189 +msgid "Editing status %s"
132 190 msgstr "Փոփոխում %s"
133 191  
134   -#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:6
135   -#: plugins/comment_classification/views/comment_classification_plugin_status/_form.html.erb:6
136   -msgid "Name"
137   -msgstr "Անվանում"
138   -
139   -#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:8
140   -#, fuzzy
141   -msgid "Enable this label?"
142   -msgstr "Ակտիվացնել ձեռնարկությունը"
143   -
144   -#: plugins/comment_classification/views/comment/comments_labels_select.html.erb:3
145   -msgid "[Select ...]"
146   -msgstr ""
147   -
148   -#: plugins/comment_classification/views/comment/comment_extra.html.erb:12
149   -#: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:9
150   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/_status_form.html.erb:6
151   -msgid "Status"
152   -msgstr "Կարգավիճակ"
153   -
154 192 #: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:1
155 193 #, fuzzy
156 194 msgid "Manage comments status"
... ... @@ -171,22 +209,9 @@ msgstr &quot;%s ակտիվացված չէ:&quot;
171 209 msgid "Are you sure you want to remove this status?"
172 210 msgstr "Վստա՞ք եք, որ ցականում եք այն հեռացնել:"
173 211  
174   -#: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:29
175   -#: plugins/comment_classification/views/comment_classification_plugin_status/create.html.erb:1
176   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:24
177   -#, fuzzy
178   -msgid "Add a new status"
179   -msgstr "Մեկ ձեռնարկություն"
180   -
181   -#: plugins/comment_classification/views/comment_classification_plugin_status/edit.html.erb:1
182   -#, fuzzy
183   -msgid "Editing status %s"
184   -msgstr "Փոփոխում %s"
185   -
186   -#: plugins/comment_classification/views/comment_classification_plugin_status/_form.html.erb:7
187   -#, fuzzy
188   -msgid "Enable this status?"
189   -msgstr "Հատկություններ ակտիվացնել/դիզակտիվացնել"
  212 +#: plugins/comment_classification/views/comment/comments_labels_select.html.erb:3
  213 +msgid "[Select ...]"
  214 +msgstr ""
190 215  
191 216 #: plugins/comment_classification/views/comment_classification_plugin_admin/index.html.erb:1
192 217 #, fuzzy
... ... @@ -202,28 +227,3 @@ msgstr &quot;Կառավարել անդամներին&quot;
202 227 #, fuzzy
203 228 msgid "Manage Status"
204 229 msgstr "Կառավարել բովանդակությունը:"
205   -
206   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/index.html.erb:1
207   -#, fuzzy
208   -msgid "Manage comment classification"
209   -msgstr "Տեղեկություններ ղեկավարության մասին"
210   -
211   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:1
212   -#, fuzzy
213   -msgid "Status for comment"
214   -msgstr "Մեկ մեկնաբանություն"
215   -
216   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:16
217   -msgid ""
218   -"<i>%{user}</i> added the status <i>%{status_name}</i> at <i>%{created_at}</"
219   -"i>."
220   -msgstr ""
221   -
222   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:18
223   -msgid "<i>Reason:</i> %s"
224   -msgstr ""
225   -
226   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/_status_form.html.erb:7
227   -#, fuzzy
228   -msgid "Reason:"
229   -msgstr "Տարածաշրջան"
... ...
plugins/comment_classification/po/pt/comment_classification.po
... ... @@ -11,8 +11,8 @@
11 11 #
12 12 msgid ""
13 13 msgstr ""
14   -"Project-Id-Version: 1.1-882-g0c116ba\n"
15   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  14 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  15 +"POT-Creation-Date: 2015-10-30 16:34-0300\n"
16 16 "PO-Revision-Date: 2015-02-23 11:38+0200\n"
17 17 "Last-Translator: Michal Čihař <michal@cihar.com>\n"
18 18 "Language-Team: Portuguese <https://hosted.weblate.org/projects/noosfero/"
... ... @@ -24,6 +24,10 @@ msgstr &quot;&quot;
24 24 "Plural-Forms: nplurals=2; plural=n != 1;\n"
25 25 "X-Generator: Weblate 2.3-dev\n"
26 26  
  27 +#: plugins/comment_classification/lib/comment_classification_plugin.rb:11
  28 +msgid "A plugin that allow classification of comments."
  29 +msgstr "Um plugin que permite a classificação de comentários."
  30 +
27 31 #: plugins/comment_classification/controllers/admin/comment_classification_plugin_labels_controller.rb:16
28 32 msgid "Label created"
29 33 msgstr "Marcador criado"
... ... @@ -74,9 +78,64 @@ msgstr &quot;Status removido&quot;
74 78 msgid "Status could not be removed"
75 79 msgstr "Status não pôde ser removido"
76 80  
77   -#: plugins/comment_classification/lib/comment_classification_plugin.rb:11
78   -msgid "A plugin that allow classification of comments."
79   -msgstr "Um plugin que permite a classificação de comentários."
  81 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/_status_form.html.erb:6
  82 +#: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:9
  83 +#: plugins/comment_classification/views/comment/comment_extra.html.erb:12
  84 +msgid "Status"
  85 +msgstr "Estado"
  86 +
  87 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/_status_form.html.erb:7
  88 +msgid "Reason:"
  89 +msgstr "Razão:"
  90 +
  91 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:1
  92 +msgid "Status for comment"
  93 +msgstr "Status para comentário"
  94 +
  95 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:16
  96 +msgid ""
  97 +"<i>%{user}</i> added the status <i>%{status_name}</i> at <i>%{created_at}</"
  98 +"i>."
  99 +msgstr ""
  100 +"<i>%{user}</i> adicionou o status <i>%{status_name}</i> às <i>%{created_at}</"
  101 +"i>."
  102 +
  103 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:18
  104 +msgid "<i>Reason:</i> %s"
  105 +msgstr "<i>Razão:</i> %s"
  106 +
  107 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:24
  108 +#: plugins/comment_classification/views/comment_classification_plugin_status/create.html.erb:1
  109 +#: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:29
  110 +msgid "Add a new status"
  111 +msgstr "Adicionar novo status"
  112 +
  113 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/index.html.erb:1
  114 +msgid "Manage comment classification"
  115 +msgstr "Gerenciar classificação de comentário"
  116 +
  117 +#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:6
  118 +#: plugins/comment_classification/views/comment_classification_plugin_status/_form.html.erb:6
  119 +msgid "Name"
  120 +msgstr "Nome"
  121 +
  122 +#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:7
  123 +#: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:10
  124 +msgid "Color"
  125 +msgstr "Cor"
  126 +
  127 +#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:8
  128 +msgid "Enable this label?"
  129 +msgstr "Habilitar esse marcador?"
  130 +
  131 +#: plugins/comment_classification/views/comment_classification_plugin_labels/edit.html.erb:1
  132 +msgid "Editing label %s"
  133 +msgstr "Editando marcador %s"
  134 +
  135 +#: plugins/comment_classification/views/comment_classification_plugin_labels/create.html.erb:1
  136 +#: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:29
  137 +msgid "Add a new label"
  138 +msgstr "Adicionar um novo marcador"
80 139  
81 140 #: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:1
82 141 msgid "Manage comments labels"
... ... @@ -91,11 +150,6 @@ msgstr &quot;(nenhum marcador registrado ainda)&quot;
91 150 msgid "Label"
92 151 msgstr "Marcador"
93 152  
94   -#: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:10
95   -#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:7
96   -msgid "Color"
97   -msgstr "Cor"
98   -
99 153 #: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:11
100 154 #: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:10
101 155 msgid "Enabled"
... ... @@ -110,33 +164,13 @@ msgstr &quot;Ações&quot;
110 164 msgid "Are you sure you want to remove this label?"
111 165 msgstr "Tem certeza que quer excluir este marcador?"
112 166  
113   -#: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:29
114   -#: plugins/comment_classification/views/comment_classification_plugin_labels/create.html.erb:1
115   -msgid "Add a new label"
116   -msgstr "Adicionar um novo marcador"
117   -
118   -#: plugins/comment_classification/views/comment_classification_plugin_labels/edit.html.erb:1
119   -msgid "Editing label %s"
120   -msgstr "Editando marcador %s"
121   -
122   -#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:6
123   -#: plugins/comment_classification/views/comment_classification_plugin_status/_form.html.erb:6
124   -msgid "Name"
125   -msgstr "Nome"
126   -
127   -#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:8
128   -msgid "Enable this label?"
129   -msgstr "Habilitar esse marcador?"
130   -
131   -#: plugins/comment_classification/views/comment/comments_labels_select.html.erb:3
132   -msgid "[Select ...]"
133   -msgstr "[Selecione ...]"
  167 +#: plugins/comment_classification/views/comment_classification_plugin_status/_form.html.erb:7
  168 +msgid "Enable this status?"
  169 +msgstr "Habilitar esse status?"
134 170  
135   -#: plugins/comment_classification/views/comment/comment_extra.html.erb:12
136   -#: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:9
137   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/_status_form.html.erb:6
138   -msgid "Status"
139   -msgstr "Estado"
  171 +#: plugins/comment_classification/views/comment_classification_plugin_status/edit.html.erb:1
  172 +msgid "Editing status %s"
  173 +msgstr "Editando status %s"
140 174  
141 175 #: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:1
142 176 msgid "Manage comments status"
... ... @@ -154,19 +188,9 @@ msgstr &quot;Razão habilitada?&quot;
154 188 msgid "Are you sure you want to remove this status?"
155 189 msgstr "Tem certeza de que quer excluir este status?"
156 190  
157   -#: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:29
158   -#: plugins/comment_classification/views/comment_classification_plugin_status/create.html.erb:1
159   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:24
160   -msgid "Add a new status"
161   -msgstr "Adicionar novo status"
162   -
163   -#: plugins/comment_classification/views/comment_classification_plugin_status/edit.html.erb:1
164   -msgid "Editing status %s"
165   -msgstr "Editando status %s"
166   -
167   -#: plugins/comment_classification/views/comment_classification_plugin_status/_form.html.erb:7
168   -msgid "Enable this status?"
169   -msgstr "Habilitar esse status?"
  191 +#: plugins/comment_classification/views/comment/comments_labels_select.html.erb:3
  192 +msgid "[Select ...]"
  193 +msgstr "[Selecione ...]"
170 194  
171 195 #: plugins/comment_classification/views/comment_classification_plugin_admin/index.html.erb:1
172 196 msgid "Comments classification options"
... ... @@ -179,27 +203,3 @@ msgstr &quot;Gerenciar Marcadores&quot;
179 203 #: plugins/comment_classification/views/comment_classification_plugin_admin/index.html.erb:5
180 204 msgid "Manage Status"
181 205 msgstr "Gerenciar Status"
182   -
183   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/index.html.erb:1
184   -msgid "Manage comment classification"
185   -msgstr "Gerenciar classificação de comentário"
186   -
187   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:1
188   -msgid "Status for comment"
189   -msgstr "Status para comentário"
190   -
191   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:16
192   -msgid ""
193   -"<i>%{user}</i> added the status <i>%{status_name}</i> at <i>%{created_at}</"
194   -"i>."
195   -msgstr ""
196   -"<i>%{user}</i> adicionou o status <i>%{status_name}</i> às <i>%{created_at}</"
197   -"i>."
198   -
199   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:18
200   -msgid "<i>Reason:</i> %s"
201   -msgstr "<i>Razão:</i> %s"
202   -
203   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/_status_form.html.erb:7
204   -msgid "Reason:"
205   -msgstr "Razão:"
... ...
plugins/comment_classification/po/ru/comment_classification.po
... ... @@ -5,8 +5,8 @@
5 5 #
6 6 msgid ""
7 7 msgstr ""
8   -"Project-Id-Version: 1.1-882-g0c116ba\n"
9   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  8 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  9 +"POT-Creation-Date: 2015-10-30 16:34-0300\n"
10 10 "PO-Revision-Date: 2015-02-23 11:37+0200\n"
11 11 "Last-Translator: Michal Čihař <michal@cihar.com>\n"
12 12 "Language-Team: Russian <https://hosted.weblate.org/projects/noosfero/plugin-"
... ... @@ -19,6 +19,11 @@ msgstr &quot;&quot;
19 19 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
20 20 "X-Generator: Weblate 2.3-dev\n"
21 21  
  22 +#: plugins/comment_classification/lib/comment_classification_plugin.rb:11
  23 +#, fuzzy
  24 +msgid "A plugin that allow classification of comments."
  25 +msgstr "Блок, отображающий группы"
  26 +
22 27 #: plugins/comment_classification/controllers/admin/comment_classification_plugin_labels_controller.rb:16
23 28 #, fuzzy
24 29 msgid "Label created"
... ... @@ -81,10 +86,69 @@ msgstr &quot;Тело статьи&quot;
81 86 msgid "Status could not be removed"
82 87 msgstr "Адрес не может быть сохранен"
83 88  
84   -#: plugins/comment_classification/lib/comment_classification_plugin.rb:11
  89 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/_status_form.html.erb:6
  90 +#: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:9
  91 +#: plugins/comment_classification/views/comment/comment_extra.html.erb:12
  92 +msgid "Status"
  93 +msgstr "Статус"
  94 +
  95 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/_status_form.html.erb:7
85 96 #, fuzzy
86   -msgid "A plugin that allow classification of comments."
87   -msgstr "Блок, отображающий группы"
  97 +msgid "Reason:"
  98 +msgstr "Регион"
  99 +
  100 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:1
  101 +#, fuzzy
  102 +msgid "Status for comment"
  103 +msgstr "Комментарий"
  104 +
  105 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:16
  106 +msgid ""
  107 +"<i>%{user}</i> added the status <i>%{status_name}</i> at <i>%{created_at}</"
  108 +"i>."
  109 +msgstr ""
  110 +
  111 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:18
  112 +msgid "<i>Reason:</i> %s"
  113 +msgstr ""
  114 +
  115 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:24
  116 +#: plugins/comment_classification/views/comment_classification_plugin_status/create.html.erb:1
  117 +#: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:29
  118 +#, fuzzy
  119 +msgid "Add a new status"
  120 +msgstr "Одна компания"
  121 +
  122 +#: plugins/comment_classification/views/comment_classification_plugin_myprofile/index.html.erb:1
  123 +#, fuzzy
  124 +msgid "Manage comment classification"
  125 +msgstr "Информация о менеджменте"
  126 +
  127 +#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:6
  128 +#: plugins/comment_classification/views/comment_classification_plugin_status/_form.html.erb:6
  129 +msgid "Name"
  130 +msgstr "Имя"
  131 +
  132 +#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:7
  133 +#: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:10
  134 +msgid "Color"
  135 +msgstr ""
  136 +
  137 +#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:8
  138 +#, fuzzy
  139 +msgid "Enable this label?"
  140 +msgstr "Включить компанию"
  141 +
  142 +#: plugins/comment_classification/views/comment_classification_plugin_labels/edit.html.erb:1
  143 +#, fuzzy
  144 +msgid "Editing label %s"
  145 +msgstr "Редактирование %s"
  146 +
  147 +#: plugins/comment_classification/views/comment_classification_plugin_labels/create.html.erb:1
  148 +#: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:29
  149 +#, fuzzy
  150 +msgid "Add a new label"
  151 +msgstr "Одна компания"
88 152  
89 153 #: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:1
90 154 #, fuzzy
... ... @@ -101,11 +165,6 @@ msgstr &quot;(продукты не зарегистрированы)&quot;
101 165 msgid "Label"
102 166 msgstr ""
103 167  
104   -#: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:10
105   -#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:7
106   -msgid "Color"
107   -msgstr ""
108   -
109 168 #: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:11
110 169 #: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:10
111 170 msgid "Enabled"
... ... @@ -121,37 +180,16 @@ msgstr &quot;Действия&quot;
121 180 msgid "Are you sure you want to remove this label?"
122 181 msgstr "Вы уверены что хотите удалить блок?"
123 182  
124   -#: plugins/comment_classification/views/comment_classification_plugin_labels/index.html.erb:29
125   -#: plugins/comment_classification/views/comment_classification_plugin_labels/create.html.erb:1
  183 +#: plugins/comment_classification/views/comment_classification_plugin_status/_form.html.erb:7
126 184 #, fuzzy
127   -msgid "Add a new label"
128   -msgstr "Одна компания"
  185 +msgid "Enable this status?"
  186 +msgstr "Активировать \"Контакты\""
129 187  
130   -#: plugins/comment_classification/views/comment_classification_plugin_labels/edit.html.erb:1
  188 +#: plugins/comment_classification/views/comment_classification_plugin_status/edit.html.erb:1
131 189 #, fuzzy
132   -msgid "Editing label %s"
  190 +msgid "Editing status %s"
133 191 msgstr "Редактирование %s"
134 192  
135   -#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:6
136   -#: plugins/comment_classification/views/comment_classification_plugin_status/_form.html.erb:6
137   -msgid "Name"
138   -msgstr "Имя"
139   -
140   -#: plugins/comment_classification/views/comment_classification_plugin_labels/_form.html.erb:8
141   -#, fuzzy
142   -msgid "Enable this label?"
143   -msgstr "Включить компанию"
144   -
145   -#: plugins/comment_classification/views/comment/comments_labels_select.html.erb:3
146   -msgid "[Select ...]"
147   -msgstr "[Выберите...]"
148   -
149   -#: plugins/comment_classification/views/comment/comment_extra.html.erb:12
150   -#: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:9
151   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/_status_form.html.erb:6
152   -msgid "Status"
153   -msgstr "Статус"
154   -
155 193 #: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:1
156 194 #, fuzzy
157 195 msgid "Manage comments status"
... ... @@ -172,22 +210,9 @@ msgstr &quot;%s не позволено&quot;
172 210 msgid "Are you sure you want to remove this status?"
173 211 msgstr "Вы уверены что хотите удалить этот элемент?"
174 212  
175   -#: plugins/comment_classification/views/comment_classification_plugin_status/index.html.erb:29
176   -#: plugins/comment_classification/views/comment_classification_plugin_status/create.html.erb:1
177   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:24
178   -#, fuzzy
179   -msgid "Add a new status"
180   -msgstr "Одна компания"
181   -
182   -#: plugins/comment_classification/views/comment_classification_plugin_status/edit.html.erb:1
183   -#, fuzzy
184   -msgid "Editing status %s"
185   -msgstr "Редактирование %s"
186   -
187   -#: plugins/comment_classification/views/comment_classification_plugin_status/_form.html.erb:7
188   -#, fuzzy
189   -msgid "Enable this status?"
190   -msgstr "Активировать \"Контакты\""
  213 +#: plugins/comment_classification/views/comment/comments_labels_select.html.erb:3
  214 +msgid "[Select ...]"
  215 +msgstr "[Выберите...]"
191 216  
192 217 #: plugins/comment_classification/views/comment_classification_plugin_admin/index.html.erb:1
193 218 #, fuzzy
... ... @@ -203,28 +228,3 @@ msgstr &quot;Управлять списком друзей&quot;
203 228 #, fuzzy
204 229 msgid "Manage Status"
205 230 msgstr "Управлять контактами"
206   -
207   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/index.html.erb:1
208   -#, fuzzy
209   -msgid "Manage comment classification"
210   -msgstr "Информация о менеджменте"
211   -
212   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:1
213   -#, fuzzy
214   -msgid "Status for comment"
215   -msgstr "Комментарий"
216   -
217   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:16
218   -msgid ""
219   -"<i>%{user}</i> added the status <i>%{status_name}</i> at <i>%{created_at}</"
220   -"i>."
221   -msgstr ""
222   -
223   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/add_status.html.erb:18
224   -msgid "<i>Reason:</i> %s"
225   -msgstr ""
226   -
227   -#: plugins/comment_classification/views/comment_classification_plugin_myprofile/_status_form.html.erb:7
228   -#, fuzzy
229   -msgid "Reason:"
230   -msgstr "Регион"
... ...
plugins/comment_group/po/comment_group.pot
... ... @@ -6,8 +6,8 @@
6 6 #, fuzzy
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.1-882-g0c116ba\n"
10   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
11 11 "PO-Revision-Date: 2015-08-06 17:21-0300\n"
12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 13 "Language-Team: LANGUAGE <LL@li.org>\n"
... ... @@ -17,10 +17,10 @@ msgstr &quot;&quot;
17 17 "Content-Transfer-Encoding: 8bit\n"
18 18 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
19 19  
20   -#: plugins/comment_group/lib/comment_group_plugin.rb:8
21   -msgid "A plugin that display comment groups."
22   -msgstr ""
23   -
24 20 #: plugins/comment_group/lib/ext/article.rb:13
25 21 msgid "Not empty group comment cannot be removed"
26 22 msgstr ""
  23 +
  24 +#: plugins/comment_group/lib/comment_group_plugin.rb:8
  25 +msgid "A plugin that display comment groups."
  26 +msgstr ""
... ...
plugins/comment_group/po/pt/comment_group.po
... ... @@ -11,8 +11,8 @@
11 11 #
12 12 msgid ""
13 13 msgstr ""
14   -"Project-Id-Version: 1.1-882-g0c116ba\n"
15   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  14 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  15 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
16 16 "PO-Revision-Date: 2014-12-18 18:40-0200\n"
17 17 "Last-Translator: Luciano Prestes Cavalcanti <lucianopcbr@gmail.com>\n"
18 18 "Language-Team: Portuguese <https://hosted.weblate.org/projects/noosfero/"
... ... @@ -24,10 +24,10 @@ msgstr &quot;&quot;
24 24 "Plural-Forms: nplurals=2; plural=n != 1;\n"
25 25 "X-Generator: Weblate 2.0\n"
26 26  
27   -#: plugins/comment_group/lib/comment_group_plugin.rb:8
28   -msgid "A plugin that display comment groups."
29   -msgstr "Um plugin que mostra grupos de comentários."
30   -
31 27 #: plugins/comment_group/lib/ext/article.rb:13
32 28 msgid "Not empty group comment cannot be removed"
33 29 msgstr "Grupo de comentário vazio não pode ser removido"
  30 +
  31 +#: plugins/comment_group/lib/comment_group_plugin.rb:8
  32 +msgid "A plugin that display comment groups."
  33 +msgstr "Um plugin que mostra grupos de comentários."
... ...
plugins/comment_paragraph/po/comment_paragraph.pot
... ... @@ -5,8 +5,8 @@
5 5 #
6 6 msgid ""
7 7 msgstr ""
8   -"Project-Id-Version: 1.2~rc1-2843-g999a037\n"
9   -"POT-Creation-Date: 2015-08-06 08:53-0300\n"
  8 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  9 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
10 10 "PO-Revision-Date: 2015-03-03 07:41-0300\n"
11 11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 12 "Language-Team: LANGUAGE <LL@li.org>\n"
... ... @@ -16,22 +16,30 @@ msgstr &quot;&quot;
16 16 "Content-Transfer-Encoding: 8bit\n"
17 17 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
18 18  
19   -#: plugins/comment_paragraph/controllers/comment_paragraph_plugin_admin_controller.rb:8
20   -msgid "Settings successfuly saved"
21   -msgstr ""
22   -
23 19 #: plugins/comment_paragraph/lib/comment_paragraph_plugin.rb:8
24 20 msgid "A plugin that display comments divided by paragraphs."
25 21 msgstr ""
26 22  
27   -#: plugins/comment_paragraph/lib/comment_paragraph_plugin.rb:50
  23 +#: plugins/comment_paragraph/lib/comment_paragraph_plugin.rb:51
28 24 msgid "Deactivate Comments"
29 25 msgstr ""
30 26  
31   -#: plugins/comment_paragraph/lib/comment_paragraph_plugin.rb:50
  27 +#: plugins/comment_paragraph/lib/comment_paragraph_plugin.rb:51
32 28 msgid "Activate Comments"
33 29 msgstr ""
34 30  
  31 +#: plugins/comment_paragraph/controllers/comment_paragraph_plugin_admin_controller.rb:8
  32 +msgid "Settings successfuly saved"
  33 +msgstr ""
  34 +
  35 +#: plugins/comment_paragraph/views/tasks/_approve_comment_accept_details.html.erb:2
  36 +msgid "Title: "
  37 +msgstr ""
  38 +
  39 +#: plugins/comment_paragraph/views/tasks/_approve_comment_accept_details.html.erb:11
  40 +msgid "Paragraph: "
  41 +msgstr ""
  42 +
35 43 #: plugins/comment_paragraph/views/comment_paragraph_plugin_admin/index.html.erb:2
36 44 msgid "Comment Paragraph Plugin Settings"
37 45 msgstr ""
... ... @@ -59,11 +67,3 @@ msgstr &quot;&quot;
59 67 #: plugins/comment_paragraph/views/comment_paragraph_plugin_admin/index.html.erb:21
60 68 msgid "Save"
61 69 msgstr ""
62   -
63   -#: plugins/comment_paragraph/views/tasks/_approve_comment_accept_details.html.erb:2
64   -msgid "Title: "
65   -msgstr ""
66   -
67   -#: plugins/comment_paragraph/views/tasks/_approve_comment_accept_details.html.erb:11
68   -msgid "Paragraph: "
69   -msgstr ""
... ...
plugins/comment_paragraph/po/pt/comment_paragraph.po
... ... @@ -5,8 +5,8 @@
5 5 #
6 6 msgid ""
7 7 msgstr ""
8   -"Project-Id-Version: 1.2~rc1-2843-g999a037\n"
9   -"POT-Creation-Date: 2015-08-06 08:53-0300\n"
  8 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  9 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
10 10 "PO-Revision-Date: 2015-03-03 07:41-0300\n"
11 11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 12 "Language-Team: LANGUAGE <LL@li.org>\n"
... ... @@ -16,22 +16,30 @@ msgstr &quot;&quot;
16 16 "Content-Transfer-Encoding: 8bit\n"
17 17 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
18 18  
19   -#: plugins/comment_paragraph/controllers/comment_paragraph_plugin_admin_controller.rb:8
20   -msgid "Settings successfuly saved"
21   -msgstr "Configurações salvas com sucesso"
22   -
23 19 #: plugins/comment_paragraph/lib/comment_paragraph_plugin.rb:8
24 20 msgid "A plugin that display comments divided by paragraphs."
25 21 msgstr "Um plugin que mostra os comentários por paragráfos"
26 22  
27   -#: plugins/comment_paragraph/lib/comment_paragraph_plugin.rb:50
  23 +#: plugins/comment_paragraph/lib/comment_paragraph_plugin.rb:51
28 24 msgid "Deactivate Comments"
29 25 msgstr "Desativar Comentários"
30 26  
31   -#: plugins/comment_paragraph/lib/comment_paragraph_plugin.rb:50
  27 +#: plugins/comment_paragraph/lib/comment_paragraph_plugin.rb:51
32 28 msgid "Activate Comments"
33 29 msgstr "Ativar Comentários"
34 30  
  31 +#: plugins/comment_paragraph/controllers/comment_paragraph_plugin_admin_controller.rb:8
  32 +msgid "Settings successfuly saved"
  33 +msgstr "Configurações salvas com sucesso"
  34 +
  35 +#: plugins/comment_paragraph/views/tasks/_approve_comment_accept_details.html.erb:2
  36 +msgid "Title: "
  37 +msgstr "Título: "
  38 +
  39 +#: plugins/comment_paragraph/views/tasks/_approve_comment_accept_details.html.erb:11
  40 +msgid "Paragraph: "
  41 +msgstr "Parágrafo: "
  42 +
35 43 #: plugins/comment_paragraph/views/comment_paragraph_plugin_admin/index.html.erb:2
36 44 msgid "Comment Paragraph Plugin Settings"
37 45 msgstr "Configurações do Plugin de Comentário por Parágrafos"
... ... @@ -59,11 +67,3 @@ msgstr &quot;(clicar em \&quot;Ativar Comentário por Parágrafo\&quot;)&quot;
59 67 #: plugins/comment_paragraph/views/comment_paragraph_plugin_admin/index.html.erb:21
60 68 msgid "Save"
61 69 msgstr "Salvar"
62   -
63   -#: plugins/comment_paragraph/views/tasks/_approve_comment_accept_details.html.erb:2
64   -msgid "Title: "
65   -msgstr "Título: "
66   -
67   -#: plugins/comment_paragraph/views/tasks/_approve_comment_accept_details.html.erb:11
68   -msgid "Paragraph: "
69   -msgstr "Parágrafo: "
... ...
plugins/community_block/po/community_block.pot
... ... @@ -6,8 +6,8 @@
6 6 #, fuzzy
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.1-882-g0c116ba\n"
10   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:34-0300\n"
11 11 "PO-Revision-Date: 2015-08-06 17:21-0300\n"
12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 13 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...
plugins/community_block/po/pt/community_block.po
... ... @@ -11,8 +11,8 @@
11 11 #
12 12 msgid ""
13 13 msgstr ""
14   -"Project-Id-Version: 1.1-882-g0c116ba\n"
15   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  14 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  15 +"POT-Creation-Date: 2015-10-30 16:34-0300\n"
16 16 "PO-Revision-Date: 2014-12-18 18:40-0200\n"
17 17 "Last-Translator: Luciano Prestes Cavalcanti <lucianopcbr@gmail.com>\n"
18 18 "Language-Team: Portuguese <https://hosted.weblate.org/projects/noosfero/"
... ...
plugins/community_track/po/community_track.pot
... ... @@ -6,8 +6,8 @@
6 6 #, fuzzy
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.1-882-g0c116ba\n"
10   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
11 11 "PO-Revision-Date: 2015-08-06 17:21-0300\n"
12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 13 "Language-Team: LANGUAGE <LL@li.org>\n"
... ... @@ -17,20 +17,24 @@ msgstr &quot;&quot;
17 17 "Content-Transfer-Encoding: 8bit\n"
18 18 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
19 19  
20   -#: plugins/community_track/controllers/public/community_track_plugin_public_controller.rb:39
21   -msgid "Select one community to proceed"
  20 +#: plugins/community_track/lib/community_track_plugin.rb:8
  21 +msgid "New kind of content for communities."
22 22 msgstr ""
23 23  
24   -#: plugins/community_track/lib/community_track_plugin/track.rb:11
25   -msgid "should not be blank."
  24 +#: plugins/community_track/lib/community_track_plugin/step.rb:13
  25 +msgid "Step not allowed at this parent."
26 26 msgstr ""
27 27  
28   -#: plugins/community_track/lib/community_track_plugin/track.rb:19
29   -msgid "Track"
  28 +#: plugins/community_track/lib/community_track_plugin/step.rb:47
  29 +msgid "must be equal or after start date."
30 30 msgstr ""
31 31  
32   -#: plugins/community_track/lib/community_track_plugin/track.rb:23
33   -msgid "Defines a track."
  32 +#: plugins/community_track/lib/community_track_plugin/step.rb:52
  33 +msgid "Step"
  34 +msgstr ""
  35 +
  36 +#: plugins/community_track/lib/community_track_plugin/step.rb:56
  37 +msgid "Defines a step."
34 38 msgstr ""
35 39  
36 40 #: plugins/community_track/lib/community_track_plugin/track_card_list_block.rb:4
... ... @@ -54,20 +58,16 @@ msgstr &quot;&quot;
54 58 msgid "Soon"
55 59 msgstr ""
56 60  
57   -#: plugins/community_track/lib/community_track_plugin/step.rb:13
58   -msgid "Step not allowed at this parent."
59   -msgstr ""
60   -
61   -#: plugins/community_track/lib/community_track_plugin/step.rb:47
62   -msgid "must be equal or after start date."
  61 +#: plugins/community_track/lib/community_track_plugin/track.rb:11
  62 +msgid "should not be blank."
63 63 msgstr ""
64 64  
65   -#: plugins/community_track/lib/community_track_plugin/step.rb:52
66   -msgid "Step"
  65 +#: plugins/community_track/lib/community_track_plugin/track.rb:19
  66 +msgid "Track"
67 67 msgstr ""
68 68  
69   -#: plugins/community_track/lib/community_track_plugin/step.rb:56
70   -msgid "Defines a step."
  69 +#: plugins/community_track/lib/community_track_plugin/track.rb:23
  70 +msgid "Defines a track."
71 71 msgstr ""
72 72  
73 73 #: plugins/community_track/lib/community_track_plugin/track_list_block.rb:10
... ... @@ -78,63 +78,71 @@ msgstr &quot;&quot;
78 78 msgid "This block displays a list of most relevant tracks."
79 79 msgstr ""
80 80  
81   -#: plugins/community_track/lib/community_track_plugin.rb:8
82   -msgid "New kind of content for communities."
  81 +#: plugins/community_track/controllers/public/community_track_plugin_public_controller.rb:39
  82 +msgid "Select one community to proceed"
83 83 msgstr ""
84 84  
85   -#: plugins/community_track/views/community_track_plugin_public/all_tracks.html.erb:1
86   -msgid "Tracks"
  85 +#: plugins/community_track/views/content_viewer/step.html.erb:13
  86 +#: plugins/community_track/views/content_viewer/step.html.erb:19
  87 +msgid "Tool"
87 88 msgstr ""
88 89  
89   -#: plugins/community_track/views/community_track_plugin_public/select_community.html.erb:3
90   -msgid "Select Community"
  90 +#: plugins/community_track/views/content_viewer/step.html.erb:15
  91 +#: plugins/community_track/views/content_viewer/_step_item.html.erb:23
  92 +msgid "Create %s"
91 93 msgstr ""
92 94  
93   -#: plugins/community_track/views/community_track_plugin_public/select_community.html.erb:39
94   -msgid "New Track"
  95 +#: plugins/community_track/views/content_viewer/track.html.erb:9
  96 +#: plugins/community_track/views/blocks/_track.html.erb:12
  97 +msgid "Steps"
95 98 msgstr ""
96 99  
97   -#: plugins/community_track/views/box_organizer/community_track_plugin/_track_list_block.html.erb:3
98   -msgid "Show more at another page"
  100 +#: plugins/community_track/views/content_viewer/track.html.erb:16
  101 +msgid "Reorder Steps"
99 102 msgstr ""
100 103  
101   -#: plugins/community_track/views/box_organizer/community_track_plugin/_track_list_block.html.erb:4
102   -msgid "Select Categories"
  104 +#: plugins/community_track/views/content_viewer/track.html.erb:17
  105 +msgid "Save Order"
103 106 msgstr ""
104 107  
105   -#: plugins/community_track/views/content_viewer/_step_item.html.erb:16
106   -msgid "Tool: "
  108 +#: plugins/community_track/views/content_viewer/track.html.erb:35
  109 +msgid "Hidden Steps"
107 110 msgstr ""
108 111  
109   -#: plugins/community_track/views/content_viewer/_step_item.html.erb:23
110   -#: plugins/community_track/views/content_viewer/step.html.erb:15
111   -msgid "Create %s"
  112 +#: plugins/community_track/views/content_viewer/_step_item.html.erb:16
  113 +msgid "Tool: "
112 114 msgstr ""
113 115  
114 116 #: plugins/community_track/views/content_viewer/_step_item.html.erb:32
115 117 msgid "View"
116 118 msgstr ""
117 119  
118   -#: plugins/community_track/views/content_viewer/track.html.erb:9
119   -#: plugins/community_track/views/blocks/_track.html.erb:12
120   -msgid "Steps"
  120 +#: plugins/community_track/views/box_organizer/community_track_plugin/_track_list_block.html.erb:3
  121 +msgid "Show more at another page"
121 122 msgstr ""
122 123  
123   -#: plugins/community_track/views/content_viewer/track.html.erb:16
124   -msgid "Reorder Steps"
  124 +#: plugins/community_track/views/box_organizer/community_track_plugin/_track_list_block.html.erb:4
  125 +msgid "Select Categories"
125 126 msgstr ""
126 127  
127   -#: plugins/community_track/views/content_viewer/track.html.erb:17
128   -msgid "Save Order"
  128 +#: plugins/community_track/views/community_track_plugin_public/select_community.html.erb:3
  129 +msgid "Select Community"
129 130 msgstr ""
130 131  
131   -#: plugins/community_track/views/content_viewer/track.html.erb:35
132   -msgid "Hidden Steps"
  132 +#: plugins/community_track/views/community_track_plugin_public/select_community.html.erb:39
  133 +msgid "New Track"
133 134 msgstr ""
134 135  
135   -#: plugins/community_track/views/content_viewer/step.html.erb:13
136   -#: plugins/community_track/views/content_viewer/step.html.erb:19
137   -msgid "Tool"
  136 +#: plugins/community_track/views/community_track_plugin_public/all_tracks.html.erb:1
  137 +msgid "Tracks"
  138 +msgstr ""
  139 +
  140 +#: plugins/community_track/views/cms/community_track_plugin/_track.html.erb:13
  141 +msgid "Goals:"
  142 +msgstr ""
  143 +
  144 +#: plugins/community_track/views/cms/community_track_plugin/_track.html.erb:14
  145 +msgid "Expected Results:"
138 146 msgstr ""
139 147  
140 148 #: plugins/community_track/views/cms/community_track_plugin/_step.html.erb:7
... ... @@ -149,14 +157,6 @@ msgstr &quot;&quot;
149 157 msgid "Hidden Step"
150 158 msgstr ""
151 159  
152   -#: plugins/community_track/views/cms/community_track_plugin/_track.html.erb:13
153   -msgid "Goals:"
154   -msgstr ""
155   -
156   -#: plugins/community_track/views/cms/community_track_plugin/_track.html.erb:14
157   -msgid "Expected Results:"
158   -msgstr ""
159   -
160 160 #: plugins/community_track/views/blocks/_track_card.html.erb:25
161 161 msgid "hits"
162 162 msgstr ""
... ...
plugins/community_track/po/de/community_track.po
... ... @@ -6,8 +6,8 @@
6 6 #
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.1-882-g0c116ba\n"
10   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
11 11 "PO-Revision-Date: 2014-12-12 14:23+0200\n"
12 12 "Last-Translator: Michal Čihař <michal@cihar.com>\n"
13 13 "Language-Team: German <https://hosted.weblate.org/projects/noosfero/noosfero/"
... ... @@ -19,22 +19,26 @@ msgstr &quot;&quot;
19 19 "Plural-Forms: nplurals=2; plural=n != 1;\n"
20 20 "X-Generator: Weblate 2.2-dev\n"
21 21  
22   -#: plugins/community_track/controllers/public/community_track_plugin_public_controller.rb:39
  22 +#: plugins/community_track/lib/community_track_plugin.rb:8
23 23 #, fuzzy
24   -msgid "Select one community to proceed"
25   -msgstr "Community-Vorlage anlegen"
  24 +msgid "New kind of content for communities."
  25 +msgstr "Neue Art von Beiträgen für Organisationen."
26 26  
27   -#: plugins/community_track/lib/community_track_plugin/track.rb:11
  27 +#: plugins/community_track/lib/community_track_plugin/step.rb:13
28 28 #, fuzzy
29   -msgid "should not be blank."
30   -msgstr "%s konnte nicht hochgeladen werden"
  29 +msgid "Step not allowed at this parent."
  30 +msgstr "Es ist Ihnen nicht erlaubt, diese Seite anzusehen."
31 31  
32   -#: plugins/community_track/lib/community_track_plugin/track.rb:19
33   -msgid "Track"
  32 +#: plugins/community_track/lib/community_track_plugin/step.rb:47
  33 +msgid "must be equal or after start date."
34 34 msgstr ""
35 35  
36   -#: plugins/community_track/lib/community_track_plugin/track.rb:23
37   -msgid "Defines a track."
  36 +#: plugins/community_track/lib/community_track_plugin/step.rb:52
  37 +msgid "Step"
  38 +msgstr ""
  39 +
  40 +#: plugins/community_track/lib/community_track_plugin/step.rb:56
  41 +msgid "Defines a step."
38 42 msgstr ""
39 43  
40 44 #: plugins/community_track/lib/community_track_plugin/track_card_list_block.rb:4
... ... @@ -60,21 +64,17 @@ msgstr &quot;Betreten&quot;
60 64 msgid "Soon"
61 65 msgstr ""
62 66  
63   -#: plugins/community_track/lib/community_track_plugin/step.rb:13
  67 +#: plugins/community_track/lib/community_track_plugin/track.rb:11
64 68 #, fuzzy
65   -msgid "Step not allowed at this parent."
66   -msgstr "Es ist Ihnen nicht erlaubt, diese Seite anzusehen."
67   -
68   -#: plugins/community_track/lib/community_track_plugin/step.rb:47
69   -msgid "must be equal or after start date."
70   -msgstr ""
  69 +msgid "should not be blank."
  70 +msgstr "%s konnte nicht hochgeladen werden"
71 71  
72   -#: plugins/community_track/lib/community_track_plugin/step.rb:52
73   -msgid "Step"
  72 +#: plugins/community_track/lib/community_track_plugin/track.rb:19
  73 +msgid "Track"
74 74 msgstr ""
75 75  
76   -#: plugins/community_track/lib/community_track_plugin/step.rb:56
77   -msgid "Defines a step."
  76 +#: plugins/community_track/lib/community_track_plugin/track.rb:23
  77 +msgid "Defines a track."
78 78 msgstr ""
79 79  
80 80 #: plugins/community_track/lib/community_track_plugin/track_list_block.rb:10
... ... @@ -86,49 +86,22 @@ msgstr &quot;&quot;
86 86 msgid "This block displays a list of most relevant tracks."
87 87 msgstr "Dieser Block stellt eine Liste Ihrer Produkte dar."
88 88  
89   -#: plugins/community_track/lib/community_track_plugin.rb:8
90   -#, fuzzy
91   -msgid "New kind of content for communities."
92   -msgstr "Neue Art von Beiträgen für Organisationen."
93   -
94   -#: plugins/community_track/views/community_track_plugin_public/all_tracks.html.erb:1
95   -msgid "Tracks"
96   -msgstr ""
97   -
98   -#: plugins/community_track/views/community_track_plugin_public/select_community.html.erb:3
99   -#, fuzzy
100   -msgid "Select Community"
101   -msgstr "Community"
102   -
103   -#: plugins/community_track/views/community_track_plugin_public/select_community.html.erb:39
104   -#, fuzzy
105   -msgid "New Track"
106   -msgstr "Neuer Vertrag"
107   -
108   -#: plugins/community_track/views/box_organizer/community_track_plugin/_track_list_block.html.erb:3
109   -msgid "Show more at another page"
110   -msgstr ""
111   -
112   -#: plugins/community_track/views/box_organizer/community_track_plugin/_track_list_block.html.erb:4
  89 +#: plugins/community_track/controllers/public/community_track_plugin_public_controller.rb:39
113 90 #, fuzzy
114   -msgid "Select Categories"
115   -msgstr "Produktkategorien"
  91 +msgid "Select one community to proceed"
  92 +msgstr "Community-Vorlage anlegen"
116 93  
117   -#: plugins/community_track/views/content_viewer/_step_item.html.erb:16
118   -msgid "Tool: "
  94 +#: plugins/community_track/views/content_viewer/step.html.erb:13
  95 +#: plugins/community_track/views/content_viewer/step.html.erb:19
  96 +msgid "Tool"
119 97 msgstr ""
120 98  
121   -#: plugins/community_track/views/content_viewer/_step_item.html.erb:23
122 99 #: plugins/community_track/views/content_viewer/step.html.erb:15
  100 +#: plugins/community_track/views/content_viewer/_step_item.html.erb:23
123 101 #, fuzzy
124 102 msgid "Create %s"
125 103 msgstr "Bsc erstellen"
126 104  
127   -#: plugins/community_track/views/content_viewer/_step_item.html.erb:32
128   -#, fuzzy
129   -msgid "View"
130   -msgstr "Zeige alle"
131   -
132 105 #: plugins/community_track/views/content_viewer/track.html.erb:9
133 106 #: plugins/community_track/views/blocks/_track.html.erb:12
134 107 msgid "Steps"
... ... @@ -147,24 +120,37 @@ msgstr &quot;&quot;
147 120 msgid "Hidden Steps"
148 121 msgstr "Versteckt"
149 122  
150   -#: plugins/community_track/views/content_viewer/step.html.erb:13
151   -#: plugins/community_track/views/content_viewer/step.html.erb:19
152   -msgid "Tool"
  123 +#: plugins/community_track/views/content_viewer/_step_item.html.erb:16
  124 +msgid "Tool: "
153 125 msgstr ""
154 126  
155   -#: plugins/community_track/views/cms/community_track_plugin/_step.html.erb:7
156   -msgid "Period"
157   -msgstr "Intervall"
  127 +#: plugins/community_track/views/content_viewer/_step_item.html.erb:32
  128 +#, fuzzy
  129 +msgid "View"
  130 +msgstr "Zeige alle"
158 131  
159   -#: plugins/community_track/views/cms/community_track_plugin/_step.html.erb:15
  132 +#: plugins/community_track/views/box_organizer/community_track_plugin/_track_list_block.html.erb:3
  133 +msgid "Show more at another page"
  134 +msgstr ""
  135 +
  136 +#: plugins/community_track/views/box_organizer/community_track_plugin/_track_list_block.html.erb:4
160 137 #, fuzzy
161   -msgid "Tool type"
162   -msgstr "Ordnertyp"
  138 +msgid "Select Categories"
  139 +msgstr "Produktkategorien"
163 140  
164   -#: plugins/community_track/views/cms/community_track_plugin/_step.html.erb:19
  141 +#: plugins/community_track/views/community_track_plugin_public/select_community.html.erb:3
165 142 #, fuzzy
166   -msgid "Hidden Step"
167   -msgstr "Versteckt"
  143 +msgid "Select Community"
  144 +msgstr "Community"
  145 +
  146 +#: plugins/community_track/views/community_track_plugin_public/select_community.html.erb:39
  147 +#, fuzzy
  148 +msgid "New Track"
  149 +msgstr "Neuer Vertrag"
  150 +
  151 +#: plugins/community_track/views/community_track_plugin_public/all_tracks.html.erb:1
  152 +msgid "Tracks"
  153 +msgstr ""
168 154  
169 155 #: plugins/community_track/views/cms/community_track_plugin/_track.html.erb:13
170 156 msgid "Goals:"
... ... @@ -175,6 +161,20 @@ msgstr &quot;&quot;
175 161 msgid "Expected Results:"
176 162 msgstr "Suchresultate"
177 163  
  164 +#: plugins/community_track/views/cms/community_track_plugin/_step.html.erb:7
  165 +msgid "Period"
  166 +msgstr "Intervall"
  167 +
  168 +#: plugins/community_track/views/cms/community_track_plugin/_step.html.erb:15
  169 +#, fuzzy
  170 +msgid "Tool type"
  171 +msgstr "Ordnertyp"
  172 +
  173 +#: plugins/community_track/views/cms/community_track_plugin/_step.html.erb:19
  174 +#, fuzzy
  175 +msgid "Hidden Step"
  176 +msgstr "Versteckt"
  177 +
178 178 #: plugins/community_track/views/blocks/_track_card.html.erb:25
179 179 msgid "hits"
180 180 msgstr ""
... ...
plugins/community_track/po/es/community_track.po
... ... @@ -5,8 +5,8 @@
5 5 #
6 6 msgid ""
7 7 msgstr ""
8   -"Project-Id-Version: 1.1-882-g0c116ba\n"
9   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  8 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  9 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
10 10 "PO-Revision-Date: 2015-02-24 19:06+0200\n"
11 11 "Last-Translator: Gonzalo Exequiel Pedone <hipersayan.x@gmail.com>\n"
12 12 "Language-Team: Spanish <https://hosted.weblate.org/projects/noosfero/plugin-"
... ... @@ -18,24 +18,27 @@ msgstr &quot;&quot;
18 18 "Plural-Forms: nplurals=2; plural=n != 1;\n"
19 19 "X-Generator: Weblate 2.3-dev\n"
20 20  
21   -#: plugins/community_track/controllers/public/community_track_plugin_public_controller.rb:39
22   -#, fuzzy
23   -msgid "Select one community to proceed"
24   -msgstr "Editar plantilla de comunidad"
25   -
26   -#: plugins/community_track/lib/community_track_plugin/track.rb:11
27   -msgid "should not be blank."
28   -msgstr "no debe estar vacío."
  21 +#: plugins/community_track/lib/community_track_plugin.rb:8
  22 +msgid "New kind of content for communities."
  23 +msgstr "Nuevo tipo de contenido para las comunidades."
29 24  
30   -#: plugins/community_track/lib/community_track_plugin/track.rb:19
  25 +#: plugins/community_track/lib/community_track_plugin/step.rb:13
31 26 #, fuzzy
32   -msgid "Track"
33   -msgstr "Seguir"
  27 +msgid "Step not allowed at this parent."
  28 +msgstr "No tienes permitido ver esta página."
34 29  
35   -#: plugins/community_track/lib/community_track_plugin/track.rb:23
36   -msgid "Defines a track."
  30 +#: plugins/community_track/lib/community_track_plugin/step.rb:47
  31 +msgid "must be equal or after start date."
37 32 msgstr ""
38 33  
  34 +#: plugins/community_track/lib/community_track_plugin/step.rb:52
  35 +msgid "Step"
  36 +msgstr "Paso"
  37 +
  38 +#: plugins/community_track/lib/community_track_plugin/step.rb:56
  39 +msgid "Defines a step."
  40 +msgstr "Definir un paso."
  41 +
39 42 #: plugins/community_track/lib/community_track_plugin/track_card_list_block.rb:4
40 43 msgid "Track Card List"
41 44 msgstr "Seguimiento de Lista de Tarjetas"
... ... @@ -58,23 +61,19 @@ msgstr &quot;Unete!&quot;
58 61 msgid "Soon"
59 62 msgstr "Pronto"
60 63  
61   -#: plugins/community_track/lib/community_track_plugin/step.rb:13
  64 +#: plugins/community_track/lib/community_track_plugin/track.rb:11
  65 +msgid "should not be blank."
  66 +msgstr "no debe estar vacío."
  67 +
  68 +#: plugins/community_track/lib/community_track_plugin/track.rb:19
62 69 #, fuzzy
63   -msgid "Step not allowed at this parent."
64   -msgstr "No tienes permitido ver esta página."
  70 +msgid "Track"
  71 +msgstr "Seguir"
65 72  
66   -#: plugins/community_track/lib/community_track_plugin/step.rb:47
67   -msgid "must be equal or after start date."
  73 +#: plugins/community_track/lib/community_track_plugin/track.rb:23
  74 +msgid "Defines a track."
68 75 msgstr ""
69 76  
70   -#: plugins/community_track/lib/community_track_plugin/step.rb:52
71   -msgid "Step"
72   -msgstr "Paso"
73   -
74   -#: plugins/community_track/lib/community_track_plugin/step.rb:56
75   -msgid "Defines a step."
76   -msgstr "Definir un paso."
77   -
78 77 #: plugins/community_track/lib/community_track_plugin/track_list_block.rb:10
79 78 msgid "Track List"
80 79 msgstr ""
... ... @@ -84,48 +83,22 @@ msgstr &quot;&quot;
84 83 msgid "This block displays a list of most relevant tracks."
85 84 msgstr "Este bloque presenta una lista de tus productos."
86 85  
87   -#: plugins/community_track/lib/community_track_plugin.rb:8
88   -msgid "New kind of content for communities."
89   -msgstr "Nuevo tipo de contenido para las comunidades."
90   -
91   -#: plugins/community_track/views/community_track_plugin_public/all_tracks.html.erb:1
92   -msgid "Tracks"
93   -msgstr ""
94   -
95   -#: plugins/community_track/views/community_track_plugin_public/select_community.html.erb:3
96   -#, fuzzy
97   -msgid "Select Community"
98   -msgstr "Comunidad"
99   -
100   -#: plugins/community_track/views/community_track_plugin_public/select_community.html.erb:39
101   -#, fuzzy
102   -msgid "New Track"
103   -msgstr "Nuevo contrato"
104   -
105   -#: plugins/community_track/views/box_organizer/community_track_plugin/_track_list_block.html.erb:3
106   -msgid "Show more at another page"
107   -msgstr ""
108   -
109   -#: plugins/community_track/views/box_organizer/community_track_plugin/_track_list_block.html.erb:4
  86 +#: plugins/community_track/controllers/public/community_track_plugin_public_controller.rb:39
110 87 #, fuzzy
111   -msgid "Select Categories"
112   -msgstr "Categorías de los productos"
  88 +msgid "Select one community to proceed"
  89 +msgstr "Editar plantilla de comunidad"
113 90  
114   -#: plugins/community_track/views/content_viewer/_step_item.html.erb:16
115   -msgid "Tool: "
  91 +#: plugins/community_track/views/content_viewer/step.html.erb:13
  92 +#: plugins/community_track/views/content_viewer/step.html.erb:19
  93 +msgid "Tool"
116 94 msgstr ""
117 95  
118   -#: plugins/community_track/views/content_viewer/_step_item.html.erb:23
119 96 #: plugins/community_track/views/content_viewer/step.html.erb:15
  97 +#: plugins/community_track/views/content_viewer/_step_item.html.erb:23
120 98 #, fuzzy
121 99 msgid "Create %s"
122 100 msgstr "Crear Bsc"
123 101  
124   -#: plugins/community_track/views/content_viewer/_step_item.html.erb:32
125   -#, fuzzy
126   -msgid "View"
127   -msgstr "Ver todos"
128   -
129 102 #: plugins/community_track/views/content_viewer/track.html.erb:9
130 103 #: plugins/community_track/views/blocks/_track.html.erb:12
131 104 msgid "Steps"
... ... @@ -144,24 +117,37 @@ msgstr &quot;&quot;
144 117 msgid "Hidden Steps"
145 118 msgstr "Oculto"
146 119  
147   -#: plugins/community_track/views/content_viewer/step.html.erb:13
148   -#: plugins/community_track/views/content_viewer/step.html.erb:19
149   -msgid "Tool"
  120 +#: plugins/community_track/views/content_viewer/_step_item.html.erb:16
  121 +msgid "Tool: "
150 122 msgstr ""
151 123  
152   -#: plugins/community_track/views/cms/community_track_plugin/_step.html.erb:7
153   -msgid "Period"
  124 +#: plugins/community_track/views/content_viewer/_step_item.html.erb:32
  125 +#, fuzzy
  126 +msgid "View"
  127 +msgstr "Ver todos"
  128 +
  129 +#: plugins/community_track/views/box_organizer/community_track_plugin/_track_list_block.html.erb:3
  130 +msgid "Show more at another page"
154 131 msgstr ""
155 132  
156   -#: plugins/community_track/views/cms/community_track_plugin/_step.html.erb:15
  133 +#: plugins/community_track/views/box_organizer/community_track_plugin/_track_list_block.html.erb:4
157 134 #, fuzzy
158   -msgid "Tool type"
159   -msgstr "Tipo de etiquetable"
  135 +msgid "Select Categories"
  136 +msgstr "Categorías de los productos"
160 137  
161   -#: plugins/community_track/views/cms/community_track_plugin/_step.html.erb:19
  138 +#: plugins/community_track/views/community_track_plugin_public/select_community.html.erb:3
162 139 #, fuzzy
163   -msgid "Hidden Step"
164   -msgstr "Oculto"
  140 +msgid "Select Community"
  141 +msgstr "Comunidad"
  142 +
  143 +#: plugins/community_track/views/community_track_plugin_public/select_community.html.erb:39
  144 +#, fuzzy
  145 +msgid "New Track"
  146 +msgstr "Nuevo contrato"
  147 +
  148 +#: plugins/community_track/views/community_track_plugin_public/all_tracks.html.erb:1
  149 +msgid "Tracks"
  150 +msgstr ""
165 151  
166 152 #: plugins/community_track/views/cms/community_track_plugin/_track.html.erb:13
167 153 msgid "Goals:"
... ... @@ -172,6 +158,20 @@ msgstr &quot;&quot;
172 158 msgid "Expected Results:"
173 159 msgstr "Buscar resultados"
174 160  
  161 +#: plugins/community_track/views/cms/community_track_plugin/_step.html.erb:7
  162 +msgid "Period"
  163 +msgstr ""
  164 +
  165 +#: plugins/community_track/views/cms/community_track_plugin/_step.html.erb:15
  166 +#, fuzzy
  167 +msgid "Tool type"
  168 +msgstr "Tipo de etiquetable"
  169 +
  170 +#: plugins/community_track/views/cms/community_track_plugin/_step.html.erb:19
  171 +#, fuzzy
  172 +msgid "Hidden Step"
  173 +msgstr "Oculto"
  174 +
175 175 #: plugins/community_track/views/blocks/_track_card.html.erb:25
176 176 msgid "hits"
177 177 msgstr "aciertos"
... ...
plugins/community_track/po/pt/community_track.po
... ... @@ -11,8 +11,8 @@
11 11 #
12 12 msgid ""
13 13 msgstr ""
14   -"Project-Id-Version: 1.1-882-g0c116ba\n"
15   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  14 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  15 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
16 16 "PO-Revision-Date: 2014-12-18 18:40-0200\n"
17 17 "Last-Translator: Luciano Prestes Cavalcanti <lucianopcbr@gmail.com>\n"
18 18 "Language-Team: Portuguese <https://hosted.weblate.org/projects/noosfero/"
... ... @@ -24,21 +24,25 @@ msgstr &quot;&quot;
24 24 "Plural-Forms: nplurals=2; plural=n != 1;\n"
25 25 "X-Generator: Weblate 2.0\n"
26 26  
27   -#: plugins/community_track/controllers/public/community_track_plugin_public_controller.rb:39
28   -msgid "Select one community to proceed"
29   -msgstr "Selecione uma comunidade para prosseguir"
  27 +#: plugins/community_track/lib/community_track_plugin.rb:8
  28 +msgid "New kind of content for communities."
  29 +msgstr "Novo tipo de conteúdo para comunidades."
30 30  
31   -#: plugins/community_track/lib/community_track_plugin/track.rb:11
32   -msgid "should not be blank."
33   -msgstr "não deve ser nulo."
  31 +#: plugins/community_track/lib/community_track_plugin/step.rb:13
  32 +msgid "Step not allowed at this parent."
  33 +msgstr "Passo não permitido nesse pai."
34 34  
35   -#: plugins/community_track/lib/community_track_plugin/track.rb:19
36   -msgid "Track"
37   -msgstr "Trilha"
  35 +#: plugins/community_track/lib/community_track_plugin/step.rb:47
  36 +msgid "must be equal or after start date."
  37 +msgstr "deve ser igual ou após a data de ínicio."
38 38  
39   -#: plugins/community_track/lib/community_track_plugin/track.rb:23
40   -msgid "Defines a track."
41   -msgstr "Define uma trilha."
  39 +#: plugins/community_track/lib/community_track_plugin/step.rb:52
  40 +msgid "Step"
  41 +msgstr "Passo"
  42 +
  43 +#: plugins/community_track/lib/community_track_plugin/step.rb:56
  44 +msgid "Defines a step."
  45 +msgstr "Define uma etapa."
42 46  
43 47 #: plugins/community_track/lib/community_track_plugin/track_card_list_block.rb:4
44 48 msgid "Track Card List"
... ... @@ -61,21 +65,17 @@ msgstr &quot;Entrar!&quot;
61 65 msgid "Soon"
62 66 msgstr "Logo"
63 67  
64   -#: plugins/community_track/lib/community_track_plugin/step.rb:13
65   -msgid "Step not allowed at this parent."
66   -msgstr "Passo não permitido nesse pai."
67   -
68   -#: plugins/community_track/lib/community_track_plugin/step.rb:47
69   -msgid "must be equal or after start date."
70   -msgstr "deve ser igual ou após a data de ínicio."
  68 +#: plugins/community_track/lib/community_track_plugin/track.rb:11
  69 +msgid "should not be blank."
  70 +msgstr "não deve ser nulo."
71 71  
72   -#: plugins/community_track/lib/community_track_plugin/step.rb:52
73   -msgid "Step"
74   -msgstr "Passo"
  72 +#: plugins/community_track/lib/community_track_plugin/track.rb:19
  73 +msgid "Track"
  74 +msgstr "Trilha"
75 75  
76   -#: plugins/community_track/lib/community_track_plugin/step.rb:56
77   -msgid "Defines a step."
78   -msgstr "Define uma etapa."
  76 +#: plugins/community_track/lib/community_track_plugin/track.rb:23
  77 +msgid "Defines a track."
  78 +msgstr "Define uma trilha."
79 79  
80 80 #: plugins/community_track/lib/community_track_plugin/track_list_block.rb:10
81 81 msgid "Track List"
... ... @@ -85,43 +85,20 @@ msgstr &quot;Lista de Trilhas&quot;
85 85 msgid "This block displays a list of most relevant tracks."
86 86 msgstr "Este bloco apresenta a lista das trilhas mais relevantes."
87 87  
88   -#: plugins/community_track/lib/community_track_plugin.rb:8
89   -msgid "New kind of content for communities."
90   -msgstr "Novo tipo de conteúdo para comunidades."
91   -
92   -#: plugins/community_track/views/community_track_plugin_public/all_tracks.html.erb:1
93   -msgid "Tracks"
94   -msgstr "Trilhas"
95   -
96   -#: plugins/community_track/views/community_track_plugin_public/select_community.html.erb:3
97   -msgid "Select Community"
98   -msgstr "Selecionar Comunidade"
99   -
100   -#: plugins/community_track/views/community_track_plugin_public/select_community.html.erb:39
101   -msgid "New Track"
102   -msgstr "Nova Trilha"
103   -
104   -#: plugins/community_track/views/box_organizer/community_track_plugin/_track_list_block.html.erb:3
105   -msgid "Show more at another page"
106   -msgstr "Mostrar mais em outra página"
107   -
108   -#: plugins/community_track/views/box_organizer/community_track_plugin/_track_list_block.html.erb:4
109   -msgid "Select Categories"
110   -msgstr "Selecionar Categorias"
  88 +#: plugins/community_track/controllers/public/community_track_plugin_public_controller.rb:39
  89 +msgid "Select one community to proceed"
  90 +msgstr "Selecione uma comunidade para prosseguir"
111 91  
112   -#: plugins/community_track/views/content_viewer/_step_item.html.erb:16
113   -msgid "Tool: "
114   -msgstr "Ferramenta: "
  92 +#: plugins/community_track/views/content_viewer/step.html.erb:13
  93 +#: plugins/community_track/views/content_viewer/step.html.erb:19
  94 +msgid "Tool"
  95 +msgstr "Ferramenta"
115 96  
116   -#: plugins/community_track/views/content_viewer/_step_item.html.erb:23
117 97 #: plugins/community_track/views/content_viewer/step.html.erb:15
  98 +#: plugins/community_track/views/content_viewer/_step_item.html.erb:23
118 99 msgid "Create %s"
119 100 msgstr "Criar %s"
120 101  
121   -#: plugins/community_track/views/content_viewer/_step_item.html.erb:32
122   -msgid "View"
123   -msgstr "Ver"
124   -
125 102 #: plugins/community_track/views/content_viewer/track.html.erb:9
126 103 #: plugins/community_track/views/blocks/_track.html.erb:12
127 104 msgid "Steps"
... ... @@ -139,10 +116,41 @@ msgstr &quot;Salvar Ordem&quot;
139 116 msgid "Hidden Steps"
140 117 msgstr "Passos Ocultos"
141 118  
142   -#: plugins/community_track/views/content_viewer/step.html.erb:13
143   -#: plugins/community_track/views/content_viewer/step.html.erb:19
144   -msgid "Tool"
145   -msgstr "Ferramenta"
  119 +#: plugins/community_track/views/content_viewer/_step_item.html.erb:16
  120 +msgid "Tool: "
  121 +msgstr "Ferramenta: "
  122 +
  123 +#: plugins/community_track/views/content_viewer/_step_item.html.erb:32
  124 +msgid "View"
  125 +msgstr "Ver"
  126 +
  127 +#: plugins/community_track/views/box_organizer/community_track_plugin/_track_list_block.html.erb:3
  128 +msgid "Show more at another page"
  129 +msgstr "Mostrar mais em outra página"
  130 +
  131 +#: plugins/community_track/views/box_organizer/community_track_plugin/_track_list_block.html.erb:4
  132 +msgid "Select Categories"
  133 +msgstr "Selecionar Categorias"
  134 +
  135 +#: plugins/community_track/views/community_track_plugin_public/select_community.html.erb:3
  136 +msgid "Select Community"
  137 +msgstr "Selecionar Comunidade"
  138 +
  139 +#: plugins/community_track/views/community_track_plugin_public/select_community.html.erb:39
  140 +msgid "New Track"
  141 +msgstr "Nova Trilha"
  142 +
  143 +#: plugins/community_track/views/community_track_plugin_public/all_tracks.html.erb:1
  144 +msgid "Tracks"
  145 +msgstr "Trilhas"
  146 +
  147 +#: plugins/community_track/views/cms/community_track_plugin/_track.html.erb:13
  148 +msgid "Goals:"
  149 +msgstr "Metas:"
  150 +
  151 +#: plugins/community_track/views/cms/community_track_plugin/_track.html.erb:14
  152 +msgid "Expected Results:"
  153 +msgstr "Resultados Esperados:"
146 154  
147 155 #: plugins/community_track/views/cms/community_track_plugin/_step.html.erb:7
148 156 msgid "Period"
... ... @@ -156,14 +164,6 @@ msgstr &quot;Tipo de ferramenta&quot;
156 164 msgid "Hidden Step"
157 165 msgstr "Passo Oculto"
158 166  
159   -#: plugins/community_track/views/cms/community_track_plugin/_track.html.erb:13
160   -msgid "Goals:"
161   -msgstr "Metas:"
162   -
163   -#: plugins/community_track/views/cms/community_track_plugin/_track.html.erb:14
164   -msgid "Expected Results:"
165   -msgstr "Resultados Esperados:"
166   -
167 167 #: plugins/community_track/views/blocks/_track_card.html.erb:25
168 168 msgid "hits"
169 169 msgstr "acessos"
... ...
plugins/container_block/po/container_block.pot
... ... @@ -6,8 +6,8 @@
6 6 #, fuzzy
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.1-882-g0c116ba\n"
10   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
11 11 "PO-Revision-Date: 2015-08-06 17:21-0300\n"
12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 13 "Language-Team: LANGUAGE <LL@li.org>\n"
... ... @@ -17,10 +17,6 @@ msgstr &quot;&quot;
17 17 "Content-Transfer-Encoding: 8bit\n"
18 18 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
19 19  
20   -#: plugins/container_block/controllers/container_block_plugin_controller.rb:14
21   -msgid "Block successfully saved."
22   -msgstr ""
23   -
24 20 #: plugins/container_block/lib/container_block_plugin.rb:8
25 21 msgid "A plugin that add a container block."
26 22 msgstr ""
... ... @@ -32,3 +28,7 @@ msgstr &quot;&quot;
32 28 #: plugins/container_block/lib/container_block_plugin/container_block.rb:25
33 29 msgid "This block acts as a container for another blocks"
34 30 msgstr ""
  31 +
  32 +#: plugins/container_block/controllers/container_block_plugin_controller.rb:14
  33 +msgid "Block successfully saved."
  34 +msgstr ""
... ...
plugins/container_block/po/pt/container_block.po
... ... @@ -11,8 +11,8 @@
11 11 #
12 12 msgid ""
13 13 msgstr ""
14   -"Project-Id-Version: 1.1-882-g0c116ba\n"
15   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  14 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  15 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
16 16 "PO-Revision-Date: 2014-12-18 18:40-0200\n"
17 17 "Last-Translator: Luciano Prestes Cavalcanti <lucianopcbr@gmail.com>\n"
18 18 "Language-Team: Portuguese <https://hosted.weblate.org/projects/noosfero/"
... ... @@ -24,10 +24,6 @@ msgstr &quot;&quot;
24 24 "Plural-Forms: nplurals=2; plural=n != 1;\n"
25 25 "X-Generator: Weblate 2.0\n"
26 26  
27   -#: plugins/container_block/controllers/container_block_plugin_controller.rb:14
28   -msgid "Block successfully saved."
29   -msgstr "Bloco salvo com sucesso."
30   -
31 27 #: plugins/container_block/lib/container_block_plugin.rb:8
32 28 msgid "A plugin that add a container block."
33 29 msgstr "Um plugin que adiciona um bloco container."
... ... @@ -39,3 +35,7 @@ msgstr &quot;Container&quot;
39 35 #: plugins/container_block/lib/container_block_plugin/container_block.rb:25
40 36 msgid "This block acts as a container for another blocks"
41 37 msgstr "Este bloco age como um container para outros blocos"
  38 +
  39 +#: plugins/container_block/controllers/container_block_plugin_controller.rb:14
  40 +msgid "Block successfully saved."
  41 +msgstr "Bloco salvo com sucesso."
... ...
plugins/context_content/po/context_content.pot
... ... @@ -6,8 +6,8 @@
6 6 #, fuzzy
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.1-882-g0c116ba\n"
10   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
11 11 "PO-Revision-Date: 2015-08-06 17:21-0300\n"
12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 13 "Language-Team: LANGUAGE <LL@li.org>\n"
... ... @@ -17,6 +17,10 @@ msgstr &quot;&quot;
17 17 "Content-Transfer-Encoding: 8bit\n"
18 18 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
19 19  
  20 +#: plugins/context_content/lib/context_content_plugin.rb:8
  21 +msgid "A plugin that display content based on page context."
  22 +msgstr ""
  23 +
20 24 #: plugins/context_content/lib/context_content_plugin/context_content_block.rb:16
21 25 msgid "Display context content"
22 26 msgstr ""
... ... @@ -25,10 +29,6 @@ msgstr &quot;&quot;
25 29 msgid "This block displays content based on context."
26 30 msgstr ""
27 31  
28   -#: plugins/context_content/lib/context_content_plugin.rb:8
29   -msgid "A plugin that display content based on page context."
30   -msgstr ""
31   -
32 32 #: plugins/context_content/views/box_organizer/context_content_plugin/_context_content_block.html.erb:3
33 33 msgid "Show content name"
34 34 msgstr ""
... ...
plugins/context_content/po/pt/context_content.po
... ... @@ -11,8 +11,8 @@
11 11 #
12 12 msgid ""
13 13 msgstr ""
14   -"Project-Id-Version: 1.1-882-g0c116ba\n"
15   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  14 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  15 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
16 16 "PO-Revision-Date: 2014-12-18 18:40-0200\n"
17 17 "Last-Translator: Luciano Prestes Cavalcanti <lucianopcbr@gmail.com>\n"
18 18 "Language-Team: Portuguese <https://hosted.weblate.org/projects/noosfero/"
... ... @@ -24,6 +24,10 @@ msgstr &quot;&quot;
24 24 "Plural-Forms: nplurals=2; plural=n != 1;\n"
25 25 "X-Generator: Weblate 2.0\n"
26 26  
  27 +#: plugins/context_content/lib/context_content_plugin.rb:8
  28 +msgid "A plugin that display content based on page context."
  29 +msgstr "Um plugin que mostra conteúdo baseado do contexto da página."
  30 +
27 31 #: plugins/context_content/lib/context_content_plugin/context_content_block.rb:16
28 32 msgid "Display context content"
29 33 msgstr "Mostrar conteúdo contextual"
... ... @@ -32,10 +36,6 @@ msgstr &quot;Mostrar conteúdo contextual&quot;
32 36 msgid "This block displays content based on context."
33 37 msgstr "Este bloco apresenta conteúdo baseado no contexto."
34 38  
35   -#: plugins/context_content/lib/context_content_plugin.rb:8
36   -msgid "A plugin that display content based on page context."
37   -msgstr "Um plugin que mostra conteúdo baseado do contexto da página."
38   -
39 39 #: plugins/context_content/views/box_organizer/context_content_plugin/_context_content_block.html.erb:3
40 40 msgid "Show content name"
41 41 msgstr "Mostrar o nome do conteúdo"
... ...
plugins/custom_forms/lib/custom_forms_plugin/answer.rb
... ... @@ -14,10 +14,14 @@ class CustomFormsPlugin::Answer &lt; ActiveRecord::Base
14 14 end
15 15 end
16 16  
17   - def to_s
18   - return value if value.blank? || field.alternatives.blank?
  17 + def to_text_list
  18 + return [value] if value.blank? || field.alternatives.blank?
19 19 selected = value.split(',')
20   - field.alternatives.select {|alt| selected.include? alt.id.to_s }.map(&:label).join(';')
  20 + field.alternatives.select {|alt| selected.include? alt.id.to_s }.map(&:label)
  21 + end
  22 +
  23 + def to_s
  24 + to_text_list.join(';')
21 25 end
22 26 end
23 27  
... ...
plugins/custom_forms/lib/custom_forms_plugin/helper.rb
... ... @@ -69,12 +69,13 @@ module CustomFormsPlugin::Helper
69 69 end
70 70  
71 71 def display_custom_field(field, submission, form)
  72 + sanitized_name = ActionView::Base.white_list_sanitizer.sanitize field.name
72 73 answer = submission.answers.select{|answer| answer.field == field}.first
73 74 field_tag = send("display_#{type_for_options(field.class)}",field, answer, form)
74 75 if field.mandatory? && submission.id.nil?
75   - required(labelled_form_field(field.name, field_tag))
  76 + required(labelled_form_field(sanitized_name, field_tag))
76 77 else
77   - labelled_form_field(field.name, field_tag)
  78 + labelled_form_field(sanitized_name, field_tag)
78 79 end
79 80 end
80 81  
... ...
plugins/custom_forms/lib/custom_forms_plugin/submission.rb
... ... @@ -50,6 +50,14 @@ class CustomFormsPlugin::Submission &lt; ActiveRecord::Base
50 50 self.answers
51 51 end
52 52  
  53 + def q_and_a
  54 + qa = {}
  55 + form.fields.each do |f|
  56 + self.answers.select{|a| a.field == f}.map{|answer| qa[f] = answer }
  57 + end
  58 + qa
  59 + end
  60 +
53 61 protected
54 62  
55 63 def check_answers
... ...
plugins/custom_forms/po/custom_forms.pot
... ... @@ -6,8 +6,8 @@
6 6 #, fuzzy
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.1-882-g0c116ba\n"
10   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
11 11 "PO-Revision-Date: 2015-08-06 17:21-0300\n"
12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 13 "Language-Team: LANGUAGE <LL@li.org>\n"
... ... @@ -17,60 +17,6 @@ msgstr &quot;&quot;
17 17 "Content-Transfer-Encoding: 8bit\n"
18 18 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
19 19  
20   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:26
21   -msgid "Custom form %s was successfully created."
22   -msgstr ""
23   -
24   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:46
25   -msgid "Custom form %s was successfully updated."
26   -msgstr ""
27   -
28   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:49
29   -msgid "Form could not be updated"
30   -msgstr ""
31   -
32   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:59
33   -msgid "Form removed"
34   -msgstr ""
35   -
36   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:61
37   -msgid "Form could not be removed"
38   -msgstr ""
39   -
40   -#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:31
41   -msgid "Submission saved"
42   -msgstr ""
43   -
44   -#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:34
45   -msgid "Submission could not be saved"
46   -msgstr ""
47   -
48   -#: plugins/custom_forms/lib/custom_forms_plugin.rb:8
49   -msgid "Enables the creation of forms."
50   -msgstr ""
51   -
52   -#: plugins/custom_forms/lib/custom_forms_plugin.rb:16
53   -msgid "Manage Forms"
54   -msgstr ""
55   -
56   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:9
57   -msgid "Admission survey"
58   -msgstr ""
59   -
60   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:13
61   -msgid "%{requestor} wants you to fill in some information before joining."
62   -msgstr ""
63   -
64   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:17
65   -msgid ""
66   -"Before joining %{requestor}, the administrators of this organization\n"
67   -" wants you to fill in some further information."
68   -msgstr ""
69   -
70   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:22
71   -msgid "%{requestor} wants you to fill in some further information."
72   -msgstr ""
73   -
74 20 #: plugins/custom_forms/lib/custom_forms_plugin/form.rb:67
75 21 msgid "Invalid string format of access."
76 22 msgstr ""
... ... @@ -106,6 +52,10 @@ msgstr &quot;&quot;
106 52 msgid "%{requestor} wants to fill in some further information."
107 53 msgstr ""
108 54  
  55 +#: plugins/custom_forms/lib/custom_forms_plugin/answer.rb:13
  56 +msgid "is mandatory."
  57 +msgstr ""
  58 +
109 59 #: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:14
110 60 #: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:47
111 61 msgid "Logged users"
... ... @@ -139,115 +89,115 @@ msgstr &quot;&quot;
139 89 msgid "Select field"
140 90 msgstr ""
141 91  
142   -#: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:101
  92 +#: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:102
143 93 msgid "Hold down Ctrl to select options"
144 94 msgstr ""
145 95  
146   -#: plugins/custom_forms/lib/custom_forms_plugin/answer.rb:13
147   -msgid "is mandatory."
  96 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:9
  97 +msgid "Admission survey"
148 98 msgstr ""
149 99  
150   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:7
151   -#: plugins/custom_forms/views/tasks/custom_forms_plugin/_membership_survey_accept_details.html.erb:8
152   -msgid "Sorry, you can't fill this form yet"
  100 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:13
  101 +msgid "%{requestor} wants you to fill in some information before joining."
153 102 msgstr ""
154 103  
155   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:9
156   -#: plugins/custom_forms/views/tasks/custom_forms_plugin/_membership_survey_accept_details.html.erb:10
157   -msgid "Sorry, you can't fill this form anymore"
  104 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:17
  105 +msgid ""
  106 +"Before joining %{requestor}, the administrators of this organization\n"
  107 +" wants you to fill in some further information."
158 108 msgstr ""
159 109  
160   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:17
161   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:6
162   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:5
163   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:32
164   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:5
165   -msgid "Name"
  110 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:22
  111 +msgid "%{requestor} wants you to fill in some further information."
166 112 msgstr ""
167 113  
168   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:18
169   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:41
170   -msgid "Email"
  114 +#: plugins/custom_forms/lib/custom_forms_plugin.rb:8
  115 +msgid "Enables the creation of forms."
171 116 msgstr ""
172 117  
173   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:3
174   -msgid "Submissions for %s"
  118 +#: plugins/custom_forms/lib/custom_forms_plugin.rb:16
  119 +msgid "Manage Forms"
175 120 msgstr ""
176 121  
177   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:6
178   -msgid "There are no submissions for this form."
  122 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:26
  123 +msgid "Custom form %s was successfully created."
179 124 msgstr ""
180 125  
181   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:9
182   -msgid "Download all form responses as"
  126 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:46
  127 +msgid "Custom form %s was successfully updated."
183 128 msgstr ""
184 129  
185   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
186   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
187   -msgid "Sort by"
  130 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:49
  131 +msgid "Form could not be updated"
188 132 msgstr ""
189 133  
190   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
191   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:18
192   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
193   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:14
194   -msgid "Time"
  134 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:59
  135 +msgid "Form removed"
195 136 msgstr ""
196 137  
197   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:31
198   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:26
199   -msgid "Back to forms"
  138 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:61
  139 +msgid "Form could not be removed"
200 140 msgstr ""
201 141  
202   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:3
203   -msgid "Manage forms"
  142 +#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:31
  143 +msgid "Submission saved"
204 144 msgstr ""
205 145  
206   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:7
207   -msgid "Period"
  146 +#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:34
  147 +msgid "Submission could not be saved"
208 148 msgstr ""
209 149  
210   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:8
211   -msgid "Submissions"
  150 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:9
  151 +#: plugins/custom_forms/views/tasks/custom_forms_plugin/_membership_survey_accept_details.html.erb:8
  152 +msgid "Sorry, you can't fill this form yet"
212 153 msgstr ""
213 154  
214   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:9
215   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:13
216   -msgid "Access"
  155 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:11
  156 +#: plugins/custom_forms/views/tasks/custom_forms_plugin/_membership_survey_accept_details.html.erb:10
  157 +msgid "Sorry, you can't fill this form anymore"
217 158 msgstr ""
218 159  
219   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:10
220   -msgid "Actions"
  160 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:19
  161 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:5
  162 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:5
  163 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:32
  164 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:6
  165 +msgid "Name"
221 166 msgstr ""
222 167  
223   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:20
224   -msgid "Pending"
  168 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:20
  169 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:41
  170 +msgid "Email"
225 171 msgstr ""
226 172  
227   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:21
228   -msgid "Are you sure you want to remove this form?"
  173 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:31
  174 +msgid "Your e-mail will be visible to this form's owners."
229 175 msgstr ""
230 176  
231   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:27
232   -msgid "Add a new form"
  177 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/new.html.erb:1
  178 +msgid "New form"
233 179 msgstr ""
234 180  
235   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:9
236   -msgid "Back to submissions"
  181 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:6
  182 +msgid "Value"
237 183 msgstr ""
238 184  
239   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/edit.html.erb:1
240   -msgid "Edit form"
  185 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:17
  186 +msgid "Add a new option"
241 187 msgstr ""
242 188  
243   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/new.html.erb:1
244   -msgid "New form"
  189 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:29
  190 +msgid "Ok"
245 191 msgstr ""
246 192  
247 193 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_alternative.html.erb:10
248 194 msgid "Remove alternative"
249 195 msgstr ""
250 196  
  197 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_text_field.html.erb:3
  198 +msgid "Default text:"
  199 +msgstr ""
  200 +
251 201 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_select_field.html.erb:3
252 202 msgid "Type:"
253 203 msgstr ""
... ... @@ -280,18 +230,15 @@ msgstr &quot;&quot;
280 230 msgid "Add a new alternative"
281 231 msgstr ""
282 232  
283   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_text_field.html.erb:3
284   -msgid "Default text:"
285   -msgstr ""
286   -
287   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_field.html.erb:8
288   -msgid "Are you sure you want to remove this field?"
289   -msgstr ""
290   -
291 233 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:6
292 234 msgid "What is the time limit for this form to be filled?"
293 235 msgstr ""
294 236  
  237 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:13
  238 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:9
  239 +msgid "Access"
  240 +msgstr ""
  241 +
295 242 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:16
296 243 msgid "Triggered on membership request as requirement for approval"
297 244 msgstr ""
... ... @@ -313,8 +260,16 @@ msgstr &quot;&quot;
313 260 msgid "Add a new select field"
314 261 msgstr ""
315 262  
316   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_option.html.erb:5
317   -msgid "Are you sure you want to remove this option?"
  263 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:10
  264 +msgid "Mandatory"
  265 +msgstr ""
  266 +
  267 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:15
  268 +msgid "Remove field"
  269 +msgstr ""
  270 +
  271 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/edit.html.erb:1
  272 +msgid "Edit form"
318 273 msgstr ""
319 274  
320 275 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:3
... ... @@ -326,26 +281,87 @@ msgid &quot;There are no pending submissions for this form.&quot;
326 281 msgstr ""
327 282  
328 283 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
  284 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
  285 +msgid "Sort by"
  286 +msgstr ""
  287 +
  288 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
  289 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:14
  290 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
  291 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:18
  292 +msgid "Time"
  293 +msgstr ""
  294 +
  295 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
329 296 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:13
330 297 msgid "User"
331 298 msgstr ""
332 299  
333   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:6
334   -msgid "Value"
  300 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:26
  301 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:31
  302 +msgid "Back to forms"
335 303 msgstr ""
336 304  
337   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:17
338   -msgid "Add a new option"
  305 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:10
  306 +msgid "Submission date"
339 307 msgstr ""
340 308  
341   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:29
342   -msgid "Ok"
  309 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:14
  310 +msgid "Author"
343 311 msgstr ""
344 312  
345   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:10
346   -msgid "Mandatory"
  313 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:26
  314 +msgid "Unauthenticated"
347 315 msgstr ""
348 316  
349   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:15
350   -msgid "Remove field"
  317 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:48
  318 +msgid "Back to submissions"
  319 +msgstr ""
  320 +
  321 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_field.html.erb:8
  322 +msgid "Are you sure you want to remove this field?"
  323 +msgstr ""
  324 +
  325 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_option.html.erb:5
  326 +msgid "Are you sure you want to remove this option?"
  327 +msgstr ""
  328 +
  329 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:3
  330 +msgid "Submissions for %s"
  331 +msgstr ""
  332 +
  333 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:6
  334 +msgid "There are no submissions for this form."
  335 +msgstr ""
  336 +
  337 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:9
  338 +msgid "Download all form responses as"
  339 +msgstr ""
  340 +
  341 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:3
  342 +msgid "Manage forms"
  343 +msgstr ""
  344 +
  345 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:7
  346 +msgid "Period"
  347 +msgstr ""
  348 +
  349 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:8
  350 +msgid "Submissions"
  351 +msgstr ""
  352 +
  353 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:10
  354 +msgid "Actions"
  355 +msgstr ""
  356 +
  357 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:20
  358 +msgid "Pending"
  359 +msgstr ""
  360 +
  361 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:21
  362 +msgid "Are you sure you want to remove this form?"
  363 +msgstr ""
  364 +
  365 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:27
  366 +msgid "Add a new form"
351 367 msgstr ""
... ...
plugins/custom_forms/po/de/custom_forms.po
... ... @@ -6,8 +6,8 @@
6 6 #
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.1-882-g0c116ba\n"
10   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
11 11 "PO-Revision-Date: 2015-03-09 09:51+0200\n"
12 12 "Last-Translator: Michal Čihař <michal@cihar.com>\n"
13 13 "Language-Team: German <https://hosted.weblate.org/projects/noosfero/plugin-"
... ... @@ -19,69 +19,6 @@ msgstr &quot;&quot;
19 19 "Plural-Forms: nplurals=2; plural=n != 1;\n"
20 20 "X-Generator: Weblate 2.3-dev\n"
21 21  
22   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:26
23   -#, fuzzy
24   -msgid "Custom form %s was successfully created."
25   -msgstr "Kommentar erfolgreich hinzugefügt."
26   -
27   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:46
28   -#, fuzzy
29   -msgid "Custom form %s was successfully updated."
30   -msgstr "Kommentar erfolgreich aktualisiert"
31   -
32   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:49
33   -msgid "Form could not be updated"
34   -msgstr "Das Formular konnte nicht aktualisiert werden"
35   -
36   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:59
37   -msgid "Form removed"
38   -msgstr "Formular entfernt"
39   -
40   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:61
41   -msgid "Form could not be removed"
42   -msgstr "Das Formular konnte nicht entfernt werden"
43   -
44   -#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:31
45   -msgid "Submission saved"
46   -msgstr "Beitrag gespeichert"
47   -
48   -#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:34
49   -msgid "Submission could not be saved"
50   -msgstr "Der Beitrag konnte nicht gespeichert werden"
51   -
52   -#: plugins/custom_forms/lib/custom_forms_plugin.rb:8
53   -msgid "Enables the creation of forms."
54   -msgstr "Ermöglicht die Erstellung von Formularen."
55   -
56   -#: plugins/custom_forms/lib/custom_forms_plugin.rb:16
57   -msgid "Manage Forms"
58   -msgstr "Formulare verwalten"
59   -
60   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:9
61   -#, fuzzy
62   -msgid "Admission survey"
63   -msgstr "Beitrag gespeichert"
64   -
65   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:13
66   -#, fuzzy
67   -msgid "%{requestor} wants you to fill in some information before joining."
68   -msgstr "%{requestor} möchte von Ihnen, dass Sie ein paar Felder ausfüllen."
69   -
70   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:17
71   -#, fuzzy
72   -msgid ""
73   -"Before joining %{requestor}, the administrators of this organization\n"
74   -" wants you to fill in some further information."
75   -msgstr ""
76   -"Nach dem Beitritt zu %{requestor} möchte der Administrator der "
77   -"Organisation,\n"
78   -" dass Sie noch weitere Angaben tätigen."
79   -
80   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:22
81   -#, fuzzy
82   -msgid "%{requestor} wants you to fill in some further information."
83   -msgstr "%{requestor} möchte von Ihnen, dass Sie weitere Felder ausfüllen."
84   -
85 22 #: plugins/custom_forms/lib/custom_forms_plugin/form.rb:67
86 23 msgid "Invalid string format of access."
87 24 msgstr "Ungültiges Zeichenkettenformat für den Zugriff."
... ... @@ -120,6 +57,10 @@ msgstr &quot;&quot;
120 57 msgid "%{requestor} wants to fill in some further information."
121 58 msgstr "%{requestor} möchte von Ihnen, dass Sie weitere Felder ausfüllen."
122 59  
  60 +#: plugins/custom_forms/lib/custom_forms_plugin/answer.rb:13
  61 +msgid "is mandatory."
  62 +msgstr "ist zwingend notwendig"
  63 +
123 64 #: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:14
124 65 #: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:47
125 66 msgid "Logged users"
... ... @@ -154,116 +95,126 @@ msgstr &quot;&quot;
154 95 msgid "Select field"
155 96 msgstr "Ordner auswählen"
156 97  
157   -#: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:101
  98 +#: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:102
158 99 msgid "Hold down Ctrl to select options"
159 100 msgstr ""
160 101  
161   -#: plugins/custom_forms/lib/custom_forms_plugin/answer.rb:13
162   -msgid "is mandatory."
163   -msgstr "ist zwingend notwendig"
  102 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:9
  103 +#, fuzzy
  104 +msgid "Admission survey"
  105 +msgstr "Beitrag gespeichert"
  106 +
  107 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:13
  108 +#, fuzzy
  109 +msgid "%{requestor} wants you to fill in some information before joining."
  110 +msgstr "%{requestor} möchte von Ihnen, dass Sie ein paar Felder ausfüllen."
  111 +
  112 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:17
  113 +#, fuzzy
  114 +msgid ""
  115 +"Before joining %{requestor}, the administrators of this organization\n"
  116 +" wants you to fill in some further information."
  117 +msgstr ""
  118 +"Nach dem Beitritt zu %{requestor} möchte der Administrator der "
  119 +"Organisation,\n"
  120 +" dass Sie noch weitere Angaben tätigen."
  121 +
  122 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:22
  123 +#, fuzzy
  124 +msgid "%{requestor} wants you to fill in some further information."
  125 +msgstr "%{requestor} möchte von Ihnen, dass Sie weitere Felder ausfüllen."
  126 +
  127 +#: plugins/custom_forms/lib/custom_forms_plugin.rb:8
  128 +msgid "Enables the creation of forms."
  129 +msgstr "Ermöglicht die Erstellung von Formularen."
  130 +
  131 +#: plugins/custom_forms/lib/custom_forms_plugin.rb:16
  132 +msgid "Manage Forms"
  133 +msgstr "Formulare verwalten"
  134 +
  135 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:26
  136 +#, fuzzy
  137 +msgid "Custom form %s was successfully created."
  138 +msgstr "Kommentar erfolgreich hinzugefügt."
  139 +
  140 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:46
  141 +#, fuzzy
  142 +msgid "Custom form %s was successfully updated."
  143 +msgstr "Kommentar erfolgreich aktualisiert"
  144 +
  145 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:49
  146 +msgid "Form could not be updated"
  147 +msgstr "Das Formular konnte nicht aktualisiert werden"
  148 +
  149 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:59
  150 +msgid "Form removed"
  151 +msgstr "Formular entfernt"
  152 +
  153 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:61
  154 +msgid "Form could not be removed"
  155 +msgstr "Das Formular konnte nicht entfernt werden"
  156 +
  157 +#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:31
  158 +msgid "Submission saved"
  159 +msgstr "Beitrag gespeichert"
  160 +
  161 +#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:34
  162 +msgid "Submission could not be saved"
  163 +msgstr "Der Beitrag konnte nicht gespeichert werden"
164 164  
165   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:7
  165 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:9
166 166 #: plugins/custom_forms/views/tasks/custom_forms_plugin/_membership_survey_accept_details.html.erb:8
167 167 msgid "Sorry, you can't fill this form yet"
168 168 msgstr ""
169 169  
170   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:9
  170 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:11
171 171 #: plugins/custom_forms/views/tasks/custom_forms_plugin/_membership_survey_accept_details.html.erb:10
172 172 msgid "Sorry, you can't fill this form anymore"
173 173 msgstr ""
174 174  
175   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:17
176   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:6
  175 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:19
  176 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:5
177 177 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:5
178 178 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:32
179   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:5
  179 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:6
180 180 msgid "Name"
181 181 msgstr "Name"
182 182  
183   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:18
  183 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:20
184 184 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:41
185 185 msgid "Email"
186 186 msgstr ""
187 187  
188   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:3
189   -msgid "Submissions for %s"
190   -msgstr "Beiträge für %s"
191   -
192   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:6
193   -msgid "There are no submissions for this form."
194   -msgstr "Es gibt keine Unterbeiträge für dieses Formular."
195   -
196   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:9
197   -msgid "Download all form responses as"
  188 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:31
  189 +msgid "Your e-mail will be visible to this form's owners."
198 190 msgstr ""
199 191  
200   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
201   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
202   -msgid "Sort by"
203   -msgstr "Sortieren nach"
204   -
205   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
206   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:18
207   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
208   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:14
209   -msgid "Time"
210   -msgstr "Zeit"
211   -
212   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:31
213   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:26
214   -msgid "Back to forms"
215   -msgstr "Zurück zu den Formularen"
216   -
217   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:3
218   -msgid "Manage forms"
219   -msgstr "Formulare verwalten"
220   -
221   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:7
222   -msgid "Period"
223   -msgstr "Intervall"
224   -
225   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:8
226   -msgid "Submissions"
227   -msgstr "Beiträge"
228   -
229   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:9
230   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:13
231   -msgid "Access"
232   -msgstr "Zugriff"
233   -
234   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:10
235   -msgid "Actions"
236   -msgstr "Aktionen"
237   -
238   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:20
239   -msgid "Pending"
240   -msgstr "In Bearbeitung"
241   -
242   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:21
243   -msgid "Are you sure you want to remove this form?"
244   -msgstr "Sind Sie sicher, dass Sie dieses Formular entfernen möchten?"
245   -
246   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:27
247   -msgid "Add a new form"
248   -msgstr "Neues Formular hinzufügen"
249   -
250   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:9
251   -msgid "Back to submissions"
252   -msgstr "Zurück zu den Beiträgen"
253   -
254   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/edit.html.erb:1
255   -msgid "Edit form"
256   -msgstr "Formular editieren"
257   -
258 192 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/new.html.erb:1
259 193 msgid "New form"
260 194 msgstr "Neues Formular"
261 195  
  196 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:6
  197 +msgid "Value"
  198 +msgstr "Wert"
  199 +
  200 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:17
  201 +msgid "Add a new option"
  202 +msgstr "Neue Option hinzufügen"
  203 +
  204 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:29
  205 +msgid "Ok"
  206 +msgstr "OK"
  207 +
262 208 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_alternative.html.erb:10
263 209 #, fuzzy
264 210 msgid "Remove alternative"
265 211 msgstr "Mitglied löschen"
266 212  
  213 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_text_field.html.erb:3
  214 +#, fuzzy
  215 +msgid "Default text:"
  216 +msgstr "Standardwer"
  217 +
267 218 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_select_field.html.erb:3
268 219 msgid "Type:"
269 220 msgstr "Typ:"
... ... @@ -300,19 +251,15 @@ msgstr &quot;Abgelehnt&quot;
300 251 msgid "Add a new alternative"
301 252 msgstr "Neue Lizenz hinzufügen"
302 253  
303   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_text_field.html.erb:3
304   -#, fuzzy
305   -msgid "Default text:"
306   -msgstr "Standardwer"
307   -
308   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_field.html.erb:8
309   -msgid "Are you sure you want to remove this field?"
310   -msgstr "Sind Sie sicher, dass Sie dieses Feld entfernen möchten?"
311   -
312 254 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:6
313 255 msgid "What is the time limit for this form to be filled?"
314 256 msgstr ""
315 257  
  258 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:13
  259 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:9
  260 +msgid "Access"
  261 +msgstr "Zugriff"
  262 +
316 263 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:16
317 264 msgid "Triggered on membership request as requirement for approval"
318 265 msgstr ""
... ... @@ -337,9 +284,18 @@ msgstr &quot;Neues Feld hinzufügen&quot;
337 284 msgid "Add a new select field"
338 285 msgstr "Neues Feld hinzufügen"
339 286  
340   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_option.html.erb:5
341   -msgid "Are you sure you want to remove this option?"
342   -msgstr "Sind Sie sicher, dass Sie diese Option entfernen möchten?"
  287 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:10
  288 +msgid "Mandatory"
  289 +msgstr "Pflichtangabe"
  290 +
  291 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:15
  292 +#, fuzzy
  293 +msgid "Remove field"
  294 +msgstr "Entferne Block"
  295 +
  296 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/edit.html.erb:1
  297 +msgid "Edit form"
  298 +msgstr "Formular editieren"
343 299  
344 300 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:3
345 301 #, fuzzy
... ... @@ -352,33 +308,92 @@ msgid &quot;There are no pending submissions for this form.&quot;
352 308 msgstr "Es gibt keine Unterbeiträge für dieses Formular."
353 309  
354 310 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
  311 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
  312 +msgid "Sort by"
  313 +msgstr "Sortieren nach"
  314 +
  315 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
  316 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:14
  317 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
  318 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:18
  319 +msgid "Time"
  320 +msgstr "Zeit"
  321 +
  322 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
355 323 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:13
356 324 msgid "User"
357 325 msgstr "Nutzer"
358 326  
359   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:6
360   -msgid "Value"
361   -msgstr "Wert"
  327 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:26
  328 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:31
  329 +msgid "Back to forms"
  330 +msgstr "Zurück zu den Formularen"
362 331  
363   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:17
364   -msgid "Add a new option"
365   -msgstr "Neue Option hinzufügen"
  332 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:10
  333 +#, fuzzy
  334 +msgid "Submission date"
  335 +msgstr "Beitrag gespeichert"
366 336  
367   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:29
368   -msgid "Ok"
369   -msgstr "OK"
  337 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:14
  338 +#, fuzzy
  339 +msgid "Author"
  340 +msgstr "Autorname"
370 341  
371   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:10
372   -msgid "Mandatory"
373   -msgstr "Pflichtangabe"
  342 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:26
  343 +msgid "Unauthenticated"
  344 +msgstr ""
374 345  
375   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:15
376   -#, fuzzy
377   -msgid "Remove field"
378   -msgstr "Entferne Block"
  346 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:48
  347 +msgid "Back to submissions"
  348 +msgstr "Zurück zu den Beiträgen"
  349 +
  350 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_field.html.erb:8
  351 +msgid "Are you sure you want to remove this field?"
  352 +msgstr "Sind Sie sicher, dass Sie dieses Feld entfernen möchten?"
  353 +
  354 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_option.html.erb:5
  355 +msgid "Are you sure you want to remove this option?"
  356 +msgstr "Sind Sie sicher, dass Sie diese Option entfernen möchten?"
  357 +
  358 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:3
  359 +msgid "Submissions for %s"
  360 +msgstr "Beiträge für %s"
  361 +
  362 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:6
  363 +msgid "There are no submissions for this form."
  364 +msgstr "Es gibt keine Unterbeiträge für dieses Formular."
  365 +
  366 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:9
  367 +msgid "Download all form responses as"
  368 +msgstr ""
  369 +
  370 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:3
  371 +msgid "Manage forms"
  372 +msgstr "Formulare verwalten"
  373 +
  374 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:7
  375 +msgid "Period"
  376 +msgstr "Intervall"
  377 +
  378 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:8
  379 +msgid "Submissions"
  380 +msgstr "Beiträge"
379 381  
380   -#~ msgid "Author name"
381   -#~ msgstr "Autorname"
  382 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:10
  383 +msgid "Actions"
  384 +msgstr "Aktionen"
  385 +
  386 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:20
  387 +msgid "Pending"
  388 +msgstr "In Bearbeitung"
  389 +
  390 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:21
  391 +msgid "Are you sure you want to remove this form?"
  392 +msgstr "Sind Sie sicher, dass Sie dieses Formular entfernen möchten?"
  393 +
  394 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:27
  395 +msgid "Add a new form"
  396 +msgstr "Neues Formular hinzufügen"
382 397  
383 398 #~ msgid "Author email"
384 399 #~ msgstr "E-Mail-Adresse des Autors"
... ...
plugins/custom_forms/po/eo/custom_forms.po
... ... @@ -5,8 +5,8 @@
5 5 #
6 6 msgid ""
7 7 msgstr ""
8   -"Project-Id-Version: 1.1-882-g0c116ba\n"
9   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  8 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  9 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
10 10 "PO-Revision-Date: 2014-11-05 13:05+0200\n"
11 11 "Last-Translator: Aurélio A. Heckert <aurelio@colivre.coop.br>\n"
12 12 "Language-Team: Esperanto <https://hosted.weblate.org/projects/noosfero/"
... ... @@ -18,60 +18,6 @@ msgstr &quot;&quot;
18 18 "Plural-Forms: nplurals=2; plural=n != 1;\n"
19 19 "X-Generator: Weblate 2.0-dev\n"
20 20  
21   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:26
22   -msgid "Custom form %s was successfully created."
23   -msgstr ""
24   -
25   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:46
26   -msgid "Custom form %s was successfully updated."
27   -msgstr ""
28   -
29   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:49
30   -msgid "Form could not be updated"
31   -msgstr ""
32   -
33   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:59
34   -msgid "Form removed"
35   -msgstr ""
36   -
37   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:61
38   -msgid "Form could not be removed"
39   -msgstr ""
40   -
41   -#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:31
42   -msgid "Submission saved"
43   -msgstr ""
44   -
45   -#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:34
46   -msgid "Submission could not be saved"
47   -msgstr ""
48   -
49   -#: plugins/custom_forms/lib/custom_forms_plugin.rb:8
50   -msgid "Enables the creation of forms."
51   -msgstr ""
52   -
53   -#: plugins/custom_forms/lib/custom_forms_plugin.rb:16
54   -msgid "Manage Forms"
55   -msgstr ""
56   -
57   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:9
58   -msgid "Admission survey"
59   -msgstr ""
60   -
61   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:13
62   -msgid "%{requestor} wants you to fill in some information before joining."
63   -msgstr ""
64   -
65   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:17
66   -msgid ""
67   -"Before joining %{requestor}, the administrators of this organization\n"
68   -" wants you to fill in some further information."
69   -msgstr ""
70   -
71   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:22
72   -msgid "%{requestor} wants you to fill in some further information."
73   -msgstr ""
74   -
75 21 #: plugins/custom_forms/lib/custom_forms_plugin/form.rb:67
76 22 msgid "Invalid string format of access."
77 23 msgstr ""
... ... @@ -107,6 +53,10 @@ msgstr &quot;&quot;
107 53 msgid "%{requestor} wants to fill in some further information."
108 54 msgstr ""
109 55  
  56 +#: plugins/custom_forms/lib/custom_forms_plugin/answer.rb:13
  57 +msgid "is mandatory."
  58 +msgstr ""
  59 +
110 60 #: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:14
111 61 #: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:47
112 62 msgid "Logged users"
... ... @@ -140,115 +90,115 @@ msgstr &quot;&quot;
140 90 msgid "Select field"
141 91 msgstr ""
142 92  
143   -#: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:101
  93 +#: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:102
144 94 msgid "Hold down Ctrl to select options"
145 95 msgstr ""
146 96  
147   -#: plugins/custom_forms/lib/custom_forms_plugin/answer.rb:13
148   -msgid "is mandatory."
  97 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:9
  98 +msgid "Admission survey"
149 99 msgstr ""
150 100  
151   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:7
152   -#: plugins/custom_forms/views/tasks/custom_forms_plugin/_membership_survey_accept_details.html.erb:8
153   -msgid "Sorry, you can't fill this form yet"
  101 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:13
  102 +msgid "%{requestor} wants you to fill in some information before joining."
154 103 msgstr ""
155 104  
156   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:9
157   -#: plugins/custom_forms/views/tasks/custom_forms_plugin/_membership_survey_accept_details.html.erb:10
158   -msgid "Sorry, you can't fill this form anymore"
  105 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:17
  106 +msgid ""
  107 +"Before joining %{requestor}, the administrators of this organization\n"
  108 +" wants you to fill in some further information."
159 109 msgstr ""
160 110  
161   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:17
162   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:6
163   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:5
164   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:32
165   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:5
166   -msgid "Name"
  111 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:22
  112 +msgid "%{requestor} wants you to fill in some further information."
167 113 msgstr ""
168 114  
169   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:18
170   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:41
171   -msgid "Email"
  115 +#: plugins/custom_forms/lib/custom_forms_plugin.rb:8
  116 +msgid "Enables the creation of forms."
172 117 msgstr ""
173 118  
174   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:3
175   -msgid "Submissions for %s"
  119 +#: plugins/custom_forms/lib/custom_forms_plugin.rb:16
  120 +msgid "Manage Forms"
176 121 msgstr ""
177 122  
178   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:6
179   -msgid "There are no submissions for this form."
  123 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:26
  124 +msgid "Custom form %s was successfully created."
180 125 msgstr ""
181 126  
182   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:9
183   -msgid "Download all form responses as"
  127 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:46
  128 +msgid "Custom form %s was successfully updated."
184 129 msgstr ""
185 130  
186   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
187   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
188   -msgid "Sort by"
  131 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:49
  132 +msgid "Form could not be updated"
189 133 msgstr ""
190 134  
191   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
192   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:18
193   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
194   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:14
195   -msgid "Time"
  135 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:59
  136 +msgid "Form removed"
196 137 msgstr ""
197 138  
198   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:31
199   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:26
200   -msgid "Back to forms"
  139 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:61
  140 +msgid "Form could not be removed"
201 141 msgstr ""
202 142  
203   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:3
204   -msgid "Manage forms"
  143 +#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:31
  144 +msgid "Submission saved"
205 145 msgstr ""
206 146  
207   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:7
208   -msgid "Period"
  147 +#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:34
  148 +msgid "Submission could not be saved"
209 149 msgstr ""
210 150  
211   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:8
212   -msgid "Submissions"
  151 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:9
  152 +#: plugins/custom_forms/views/tasks/custom_forms_plugin/_membership_survey_accept_details.html.erb:8
  153 +msgid "Sorry, you can't fill this form yet"
213 154 msgstr ""
214 155  
215   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:9
216   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:13
217   -msgid "Access"
  156 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:11
  157 +#: plugins/custom_forms/views/tasks/custom_forms_plugin/_membership_survey_accept_details.html.erb:10
  158 +msgid "Sorry, you can't fill this form anymore"
218 159 msgstr ""
219 160  
220   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:10
221   -msgid "Actions"
  161 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:19
  162 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:5
  163 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:5
  164 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:32
  165 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:6
  166 +msgid "Name"
222 167 msgstr ""
223 168  
224   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:20
225   -msgid "Pending"
226   -msgstr "Pritraktata"
  169 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:20
  170 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:41
  171 +msgid "Email"
  172 +msgstr ""
227 173  
228   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:21
229   -msgid "Are you sure you want to remove this form?"
  174 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:31
  175 +msgid "Your e-mail will be visible to this form's owners."
230 176 msgstr ""
231 177  
232   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:27
233   -msgid "Add a new form"
  178 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/new.html.erb:1
  179 +msgid "New form"
234 180 msgstr ""
235 181  
236   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:9
237   -msgid "Back to submissions"
  182 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:6
  183 +msgid "Value"
238 184 msgstr ""
239 185  
240   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/edit.html.erb:1
241   -msgid "Edit form"
  186 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:17
  187 +msgid "Add a new option"
242 188 msgstr ""
243 189  
244   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/new.html.erb:1
245   -msgid "New form"
  190 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:29
  191 +msgid "Ok"
246 192 msgstr ""
247 193  
248 194 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_alternative.html.erb:10
249 195 msgid "Remove alternative"
250 196 msgstr ""
251 197  
  198 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_text_field.html.erb:3
  199 +msgid "Default text:"
  200 +msgstr ""
  201 +
252 202 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_select_field.html.erb:3
253 203 msgid "Type:"
254 204 msgstr ""
... ... @@ -281,18 +231,15 @@ msgstr &quot;&quot;
281 231 msgid "Add a new alternative"
282 232 msgstr ""
283 233  
284   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_text_field.html.erb:3
285   -msgid "Default text:"
286   -msgstr ""
287   -
288   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_field.html.erb:8
289   -msgid "Are you sure you want to remove this field?"
290   -msgstr ""
291   -
292 234 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:6
293 235 msgid "What is the time limit for this form to be filled?"
294 236 msgstr ""
295 237  
  238 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:13
  239 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:9
  240 +msgid "Access"
  241 +msgstr ""
  242 +
296 243 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:16
297 244 msgid "Triggered on membership request as requirement for approval"
298 245 msgstr ""
... ... @@ -314,8 +261,16 @@ msgstr &quot;&quot;
314 261 msgid "Add a new select field"
315 262 msgstr ""
316 263  
317   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_option.html.erb:5
318   -msgid "Are you sure you want to remove this option?"
  264 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:10
  265 +msgid "Mandatory"
  266 +msgstr ""
  267 +
  268 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:15
  269 +msgid "Remove field"
  270 +msgstr ""
  271 +
  272 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/edit.html.erb:1
  273 +msgid "Edit form"
319 274 msgstr ""
320 275  
321 276 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:3
... ... @@ -327,26 +282,87 @@ msgid &quot;There are no pending submissions for this form.&quot;
327 282 msgstr ""
328 283  
329 284 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
  285 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
  286 +msgid "Sort by"
  287 +msgstr ""
  288 +
  289 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
  290 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:14
  291 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
  292 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:18
  293 +msgid "Time"
  294 +msgstr ""
  295 +
  296 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
330 297 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:13
331 298 msgid "User"
332 299 msgstr ""
333 300  
334   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:6
335   -msgid "Value"
  301 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:26
  302 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:31
  303 +msgid "Back to forms"
336 304 msgstr ""
337 305  
338   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:17
339   -msgid "Add a new option"
  306 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:10
  307 +msgid "Submission date"
340 308 msgstr ""
341 309  
342   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:29
343   -msgid "Ok"
  310 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:14
  311 +msgid "Author"
344 312 msgstr ""
345 313  
346   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:10
347   -msgid "Mandatory"
  314 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:26
  315 +msgid "Unauthenticated"
348 316 msgstr ""
349 317  
350   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:15
351   -msgid "Remove field"
  318 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:48
  319 +msgid "Back to submissions"
  320 +msgstr ""
  321 +
  322 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_field.html.erb:8
  323 +msgid "Are you sure you want to remove this field?"
  324 +msgstr ""
  325 +
  326 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_option.html.erb:5
  327 +msgid "Are you sure you want to remove this option?"
  328 +msgstr ""
  329 +
  330 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:3
  331 +msgid "Submissions for %s"
  332 +msgstr ""
  333 +
  334 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:6
  335 +msgid "There are no submissions for this form."
  336 +msgstr ""
  337 +
  338 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:9
  339 +msgid "Download all form responses as"
  340 +msgstr ""
  341 +
  342 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:3
  343 +msgid "Manage forms"
  344 +msgstr ""
  345 +
  346 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:7
  347 +msgid "Period"
  348 +msgstr ""
  349 +
  350 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:8
  351 +msgid "Submissions"
  352 +msgstr ""
  353 +
  354 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:10
  355 +msgid "Actions"
  356 +msgstr ""
  357 +
  358 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:20
  359 +msgid "Pending"
  360 +msgstr "Pritraktata"
  361 +
  362 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:21
  363 +msgid "Are you sure you want to remove this form?"
  364 +msgstr ""
  365 +
  366 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:27
  367 +msgid "Add a new form"
352 368 msgstr ""
... ...
plugins/custom_forms/po/es/custom_forms.po
... ... @@ -5,8 +5,8 @@
5 5 #
6 6 msgid ""
7 7 msgstr ""
8   -"Project-Id-Version: 1.1-882-g0c116ba\n"
9   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  8 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  9 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
10 10 "PO-Revision-Date: 2015-03-09 09:51+0200\n"
11 11 "Last-Translator: Michal Čihař <michal@cihar.com>\n"
12 12 "Language-Team: Spanish <https://hosted.weblate.org/projects/noosfero/plugin-"
... ... @@ -18,72 +18,6 @@ msgstr &quot;&quot;
18 18 "Plural-Forms: nplurals=2; plural=n != 1;\n"
19 19 "X-Generator: Weblate 2.3-dev\n"
20 20  
21   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:26
22   -#, fuzzy
23   -msgid "Custom form %s was successfully created."
24   -msgstr "Comentario añadido correctamente."
25   -
26   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:46
27   -#, fuzzy
28   -msgid "Custom form %s was successfully updated."
29   -msgstr "El comentario fue eliminado correctamente"
30   -
31   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:49
32   -#, fuzzy
33   -msgid "Form could not be updated"
34   -msgstr "%s no pudo ser actualizado"
35   -
36   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:59
37   -#, fuzzy
38   -msgid "Form removed"
39   -msgstr "Contrato eliminado."
40   -
41   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:61
42   -#, fuzzy
43   -msgid "Form could not be removed"
44   -msgstr "El contrato no puede ser eliminado. ¡Perdón! ^^"
45   -
46   -#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:31
47   -msgid "Submission saved"
48   -msgstr ""
49   -
50   -#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:34
51   -#, fuzzy
52   -msgid "Submission could not be saved"
53   -msgstr "La configuración no pudo guardarse"
54   -
55   -#: plugins/custom_forms/lib/custom_forms_plugin.rb:8
56   -#, fuzzy
57   -msgid "Enables the creation of forms."
58   -msgstr "Permitir activación de empresas"
59   -
60   -#: plugins/custom_forms/lib/custom_forms_plugin.rb:16
61   -#, fuzzy
62   -msgid "Manage Forms"
63   -msgstr "Administrar %s"
64   -
65   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:9
66   -#, fuzzy
67   -msgid "Admission survey"
68   -msgstr "Miembros: %s"
69   -
70   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:13
71   -#, fuzzy
72   -msgid "%{requestor} wants you to fill in some information before joining."
73   -msgstr "%{requestor} quiere ser tu amigo."
74   -
75   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:17
76   -#, fuzzy
77   -msgid ""
78   -"Before joining %{requestor}, the administrators of this organization\n"
79   -" wants you to fill in some further information."
80   -msgstr "%{requestor} quiere ser tu amigo."
81   -
82   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:22
83   -#, fuzzy
84   -msgid "%{requestor} wants you to fill in some further information."
85   -msgstr "%{requestor} quiere ser tu amigo."
86   -
87 21 #: plugins/custom_forms/lib/custom_forms_plugin/form.rb:67
88 22 #, fuzzy
89 23 msgid "Invalid string format of access."
... ... @@ -125,6 +59,11 @@ msgstr &quot;&quot;
125 59 msgid "%{requestor} wants to fill in some further information."
126 60 msgstr "%{requestor} quiere ser tu amigo."
127 61  
  62 +#: plugins/custom_forms/lib/custom_forms_plugin/answer.rb:13
  63 +#, fuzzy
  64 +msgid "is mandatory."
  65 +msgstr "%{fn} es obligatorio"
  66 +
128 67 #: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:14
129 68 #: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:47
130 69 #, fuzzy
... ... @@ -163,127 +102,131 @@ msgstr &quot;&quot;
163 102 msgid "Select field"
164 103 msgstr "Selecciona las carpetas"
165 104  
166   -#: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:101
  105 +#: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:102
167 106 msgid "Hold down Ctrl to select options"
168 107 msgstr ""
169 108  
170   -#: plugins/custom_forms/lib/custom_forms_plugin/answer.rb:13
  109 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:9
171 110 #, fuzzy
172   -msgid "is mandatory."
173   -msgstr "%{fn} es obligatorio"
174   -
175   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:7
176   -#: plugins/custom_forms/views/tasks/custom_forms_plugin/_membership_survey_accept_details.html.erb:8
177   -msgid "Sorry, you can't fill this form yet"
178   -msgstr ""
  111 +msgid "Admission survey"
  112 +msgstr "Miembros: %s"
179 113  
180   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:9
181   -#: plugins/custom_forms/views/tasks/custom_forms_plugin/_membership_survey_accept_details.html.erb:10
182   -msgid "Sorry, you can't fill this form anymore"
183   -msgstr ""
  114 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:13
  115 +#, fuzzy
  116 +msgid "%{requestor} wants you to fill in some information before joining."
  117 +msgstr "%{requestor} quiere ser tu amigo."
184 118  
185   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:17
186   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:6
187   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:5
188   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:32
189   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:5
190   -msgid "Name"
191   -msgstr "Nombre"
  119 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:17
  120 +#, fuzzy
  121 +msgid ""
  122 +"Before joining %{requestor}, the administrators of this organization\n"
  123 +" wants you to fill in some further information."
  124 +msgstr "%{requestor} quiere ser tu amigo."
192 125  
193   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:18
194   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:41
195   -msgid "Email"
196   -msgstr ""
  126 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:22
  127 +#, fuzzy
  128 +msgid "%{requestor} wants you to fill in some further information."
  129 +msgstr "%{requestor} quiere ser tu amigo."
197 130  
198   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:3
  131 +#: plugins/custom_forms/lib/custom_forms_plugin.rb:8
199 132 #, fuzzy
200   -msgid "Submissions for %s"
201   -msgstr "Estadísticas para %s"
  133 +msgid "Enables the creation of forms."
  134 +msgstr "Permitir activación de empresas"
202 135  
203   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:6
204   -msgid "There are no submissions for this form."
205   -msgstr ""
  136 +#: plugins/custom_forms/lib/custom_forms_plugin.rb:16
  137 +#, fuzzy
  138 +msgid "Manage Forms"
  139 +msgstr "Administrar %s"
206 140  
207   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:9
208   -msgid "Download all form responses as"
209   -msgstr ""
  141 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:26
  142 +#, fuzzy
  143 +msgid "Custom form %s was successfully created."
  144 +msgstr "Comentario añadido correctamente."
210 145  
211   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
212   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
213   -msgid "Sort by"
214   -msgstr "Ordenar por"
  146 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:46
  147 +#, fuzzy
  148 +msgid "Custom form %s was successfully updated."
  149 +msgstr "El comentario fue eliminado correctamente"
215 150  
216   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
217   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:18
218   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
219   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:14
220   -msgid "Time"
221   -msgstr ""
  151 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:49
  152 +#, fuzzy
  153 +msgid "Form could not be updated"
  154 +msgstr "%s no pudo ser actualizado"
222 155  
223   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:31
224   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:26
  156 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:59
225 157 #, fuzzy
226   -msgid "Back to forms"
227   -msgstr "Regresar a %s"
  158 +msgid "Form removed"
  159 +msgstr "Contrato eliminado."
228 160  
229   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:3
  161 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:61
230 162 #, fuzzy
231   -msgid "Manage forms"
232   -msgstr "Administrar amigos"
  163 +msgid "Form could not be removed"
  164 +msgstr "El contrato no puede ser eliminado. ¡Perdón! ^^"
233 165  
234   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:7
235   -msgid "Period"
  166 +#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:31
  167 +msgid "Submission saved"
236 168 msgstr ""
237 169  
238   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:8
239   -#, fuzzy
240   -msgid "Submissions"
241   -msgstr "Permisos"
242   -
243   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:9
244   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:13
  170 +#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:34
245 171 #, fuzzy
246   -msgid "Access"
247   -msgstr "Accesor"
248   -
249   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:10
250   -msgid "Actions"
251   -msgstr "Acciones"
  172 +msgid "Submission could not be saved"
  173 +msgstr "La configuración no pudo guardarse"
252 174  
253   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:20
254   -msgid "Pending"
255   -msgstr "Pendiente"
  175 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:9
  176 +#: plugins/custom_forms/views/tasks/custom_forms_plugin/_membership_survey_accept_details.html.erb:8
  177 +msgid "Sorry, you can't fill this form yet"
  178 +msgstr ""
256 179  
257   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:21
258   -#, fuzzy
259   -msgid "Are you sure you want to remove this form?"
260   -msgstr "¿Estás seguro de que deseas eliminar este elemento?"
  180 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:11
  181 +#: plugins/custom_forms/views/tasks/custom_forms_plugin/_membership_survey_accept_details.html.erb:10
  182 +msgid "Sorry, you can't fill this form anymore"
  183 +msgstr ""
261 184  
262   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:27
263   -#, fuzzy
264   -msgid "Add a new form"
265   -msgstr "Añadir un nuevo calificador"
  185 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:19
  186 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:5
  187 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:5
  188 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:32
  189 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:6
  190 +msgid "Name"
  191 +msgstr "Nombre"
266 192  
267   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:9
268   -#, fuzzy
269   -msgid "Back to submissions"
270   -msgstr "Regresar a %s"
  193 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:20
  194 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:41
  195 +msgid "Email"
  196 +msgstr ""
271 197  
272   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/edit.html.erb:1
273   -#, fuzzy
274   -msgid "Edit form"
275   -msgstr "Editar carpeta"
  198 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:31
  199 +msgid "Your e-mail will be visible to this form's owners."
  200 +msgstr ""
276 201  
277 202 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/new.html.erb:1
278 203 #, fuzzy
279 204 msgid "New form"
280 205 msgstr "Forma Legal"
281 206  
  207 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:6
  208 +msgid "Value"
  209 +msgstr ""
  210 +
  211 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:17
  212 +#, fuzzy
  213 +msgid "Add a new option"
  214 +msgstr "Añadir nuevo producto"
  215 +
  216 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:29
  217 +msgid "Ok"
  218 +msgstr "Ok"
  219 +
282 220 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_alternative.html.erb:10
283 221 #, fuzzy
284 222 msgid "Remove alternative"
285 223 msgstr "Eliminar miembro"
286 224  
  225 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_text_field.html.erb:3
  226 +#, fuzzy
  227 +msgid "Default text:"
  228 +msgstr "todos los idiomas"
  229 +
287 230 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_select_field.html.erb:3
288 231 msgid "Type:"
289 232 msgstr "Tipo:"
... ... @@ -319,20 +262,16 @@ msgstr &quot;Rechazado&quot;
319 262 msgid "Add a new alternative"
320 263 msgstr "Añadir nueva empresa"
321 264  
322   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_text_field.html.erb:3
323   -#, fuzzy
324   -msgid "Default text:"
325   -msgstr "todos los idiomas"
326   -
327   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_field.html.erb:8
328   -#, fuzzy
329   -msgid "Are you sure you want to remove this field?"
330   -msgstr "¿Estás seguro de que deseas eliminar este elemento?"
331   -
332 265 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:6
333 266 msgid "What is the time limit for this form to be filled?"
334 267 msgstr ""
335 268  
  269 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:13
  270 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:9
  271 +#, fuzzy
  272 +msgid "Access"
  273 +msgstr "Accesor"
  274 +
336 275 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:16
337 276 msgid "Triggered on membership request as requirement for approval"
338 277 msgstr ""
... ... @@ -357,10 +296,20 @@ msgstr &quot;Agregar un archivo CSS&quot;
357 296 msgid "Add a new select field"
358 297 msgstr "Agregar un archivo CSS"
359 298  
360   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_option.html.erb:5
  299 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:10
361 300 #, fuzzy
362   -msgid "Are you sure you want to remove this option?"
363   -msgstr "¿Estás seguro de que deseas eliminar este elemento?"
  301 +msgid "Mandatory"
  302 +msgstr "Moderador"
  303 +
  304 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:15
  305 +#, fuzzy
  306 +msgid "Remove field"
  307 +msgstr "Eliminar bloque"
  308 +
  309 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/edit.html.erb:1
  310 +#, fuzzy
  311 +msgid "Edit form"
  312 +msgstr "Editar carpeta"
364 313  
365 314 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:3
366 315 #, fuzzy
... ... @@ -372,36 +321,101 @@ msgid &quot;There are no pending submissions for this form.&quot;
372 321 msgstr ""
373 322  
374 323 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
  324 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
  325 +msgid "Sort by"
  326 +msgstr "Ordenar por"
  327 +
  328 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
  329 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:14
  330 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
  331 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:18
  332 +msgid "Time"
  333 +msgstr ""
  334 +
  335 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
375 336 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:13
376 337 msgid "User"
377 338 msgstr "Usuario"
378 339  
379   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:6
380   -msgid "Value"
  340 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:26
  341 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:31
  342 +#, fuzzy
  343 +msgid "Back to forms"
  344 +msgstr "Regresar a %s"
  345 +
  346 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:10
  347 +#, fuzzy
  348 +msgid "Submission date"
  349 +msgstr "Permisos"
  350 +
  351 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:14
  352 +#, fuzzy
  353 +msgid "Author"
  354 +msgstr "Autor"
  355 +
  356 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:26
  357 +msgid "Unauthenticated"
381 358 msgstr ""
382 359  
383   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:17
  360 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:48
384 361 #, fuzzy
385   -msgid "Add a new option"
386   -msgstr "Añadir nuevo producto"
  362 +msgid "Back to submissions"
  363 +msgstr "Regresar a %s"
387 364  
388   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:29
389   -msgid "Ok"
390   -msgstr "Ok"
  365 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_field.html.erb:8
  366 +#, fuzzy
  367 +msgid "Are you sure you want to remove this field?"
  368 +msgstr "¿Estás seguro de que deseas eliminar este elemento?"
391 369  
392   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:10
  370 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_option.html.erb:5
393 371 #, fuzzy
394   -msgid "Mandatory"
395   -msgstr "Moderador"
  372 +msgid "Are you sure you want to remove this option?"
  373 +msgstr "¿Estás seguro de que deseas eliminar este elemento?"
396 374  
397   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:15
  375 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:3
398 376 #, fuzzy
399   -msgid "Remove field"
400   -msgstr "Eliminar bloque"
  377 +msgid "Submissions for %s"
  378 +msgstr "Estadísticas para %s"
  379 +
  380 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:6
  381 +msgid "There are no submissions for this form."
  382 +msgstr ""
  383 +
  384 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:9
  385 +msgid "Download all form responses as"
  386 +msgstr ""
401 387  
  388 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:3
402 389 #, fuzzy
403   -#~ msgid "Author name"
404   -#~ msgstr "Autor"
  390 +msgid "Manage forms"
  391 +msgstr "Administrar amigos"
  392 +
  393 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:7
  394 +msgid "Period"
  395 +msgstr ""
  396 +
  397 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:8
  398 +#, fuzzy
  399 +msgid "Submissions"
  400 +msgstr "Permisos"
  401 +
  402 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:10
  403 +msgid "Actions"
  404 +msgstr "Acciones"
  405 +
  406 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:20
  407 +msgid "Pending"
  408 +msgstr "Pendiente"
  409 +
  410 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:21
  411 +#, fuzzy
  412 +msgid "Are you sure you want to remove this form?"
  413 +msgstr "¿Estás seguro de que deseas eliminar este elemento?"
  414 +
  415 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:27
  416 +#, fuzzy
  417 +msgid "Add a new form"
  418 +msgstr "Añadir un nuevo calificador"
405 419  
406 420 #, fuzzy
407 421 #~ msgid "Author email"
... ...
plugins/custom_forms/po/fr/custom_forms.po
... ... @@ -4,9 +4,9 @@
4 4 # , 2009.
5 5 msgid ""
6 6 msgstr ""
7   -"Project-Id-Version: 1.1-882-g0c116ba\n"
  7 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
8 8 "Report-Msgid-Bugs-To: \n"
9   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
10 10 "PO-Revision-Date: 2015-07-03 00:36+0200\n"
11 11 "Last-Translator: Christophe DANIEL <papaeng@gmail.com>\n"
12 12 "Language-Team: French <https://hosted.weblate.org/projects/noosfero/plugin-"
... ... @@ -18,72 +18,6 @@ msgstr &quot;&quot;
18 18 "Plural-Forms: nplurals=2; plural=n > 1;\n"
19 19 "X-Generator: Weblate 2.4-dev\n"
20 20  
21   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:26
22   -#, fuzzy
23   -msgid "Custom form %s was successfully created."
24   -msgstr "Le commentaire a bien été effacé"
25   -
26   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:46
27   -#, fuzzy
28   -msgid "Custom form %s was successfully updated."
29   -msgstr "Le commentaire a bien été effacé"
30   -
31   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:49
32   -#, fuzzy
33   -msgid "Form could not be updated"
34   -msgstr "Ce fichier n'a pas pu être sauvegardé"
35   -
36   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:59
37   -#, fuzzy
38   -msgid "Form removed"
39   -msgstr "Corps de l'article"
40   -
41   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:61
42   -#, fuzzy
43   -msgid "Form could not be removed"
44   -msgstr "Ce fichier n'a pas pu être sauvegardé"
45   -
46   -#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:31
47   -msgid "Submission saved"
48   -msgstr ""
49   -
50   -#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:34
51   -#, fuzzy
52   -msgid "Submission could not be saved"
53   -msgstr "Bloc d'information de profil"
54   -
55   -#: plugins/custom_forms/lib/custom_forms_plugin.rb:8
56   -#, fuzzy
57   -msgid "Enables the creation of forms."
58   -msgstr "Activation de l'entreprise «%s»"
59   -
60   -#: plugins/custom_forms/lib/custom_forms_plugin.rb:16
61   -#, fuzzy
62   -msgid "Manage Forms"
63   -msgstr "Gérer"
64   -
65   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:9
66   -#, fuzzy
67   -msgid "Admission survey"
68   -msgstr "Membres : %s"
69   -
70   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:13
71   -#, fuzzy
72   -msgid "%{requestor} wants you to fill in some information before joining."
73   -msgstr "%s veut être votre contact."
74   -
75   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:17
76   -#, fuzzy
77   -msgid ""
78   -"Before joining %{requestor}, the administrators of this organization\n"
79   -" wants you to fill in some further information."
80   -msgstr "%s veut être votre contact."
81   -
82   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:22
83   -#, fuzzy
84   -msgid "%{requestor} wants you to fill in some further information."
85   -msgstr "%s veut être votre contact."
86   -
87 21 #: plugins/custom_forms/lib/custom_forms_plugin/form.rb:67
88 22 msgid "Invalid string format of access."
89 23 msgstr "Format de chaîne d'accès non valide."
... ... @@ -122,6 +56,11 @@ msgstr &quot;&quot;
122 56 msgid "%{requestor} wants to fill in some further information."
123 57 msgstr "%s veut être votre contact."
124 58  
  59 +#: plugins/custom_forms/lib/custom_forms_plugin/answer.rb:13
  60 +#, fuzzy
  61 +msgid "is mandatory."
  62 +msgstr "%{fn} est obligatoire"
  63 +
125 64 #: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:14
126 65 #: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:47
127 66 msgid "Logged users"
... ... @@ -159,131 +98,132 @@ msgstr &quot;&quot;
159 98 msgid "Select field"
160 99 msgstr "Nouveau dossier"
161 100  
162   -#: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:101
  101 +#: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:102
163 102 msgid "Hold down Ctrl to select options"
164 103 msgstr ""
165 104  
166   -#: plugins/custom_forms/lib/custom_forms_plugin/answer.rb:13
  105 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:9
167 106 #, fuzzy
168   -msgid "is mandatory."
169   -msgstr "%{fn} est obligatoire"
170   -
171   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:7
172   -#: plugins/custom_forms/views/tasks/custom_forms_plugin/_membership_survey_accept_details.html.erb:8
173   -msgid "Sorry, you can't fill this form yet"
174   -msgstr ""
175   -
176   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:9
177   -#: plugins/custom_forms/views/tasks/custom_forms_plugin/_membership_survey_accept_details.html.erb:10
178   -msgid "Sorry, you can't fill this form anymore"
179   -msgstr ""
180   -
181   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:17
182   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:6
183   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:5
184   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:32
185   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:5
186   -msgid "Name"
187   -msgstr "Nom"
188   -
189   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:18
190   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:41
191   -msgid "Email"
192   -msgstr ""
  107 +msgid "Admission survey"
  108 +msgstr "Membres : %s"
193 109  
194   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:3
  110 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:13
195 111 #, fuzzy
196   -msgid "Submissions for %s"
197   -msgstr "Statistiques pour %s"
  112 +msgid "%{requestor} wants you to fill in some information before joining."
  113 +msgstr "%s veut être votre contact."
198 114  
199   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:6
  115 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:17
200 116 #, fuzzy
201   -msgid "There are no submissions for this form."
202   -msgstr "Il n'existe pas de sous-catégorie pour %s."
  117 +msgid ""
  118 +"Before joining %{requestor}, the administrators of this organization\n"
  119 +" wants you to fill in some further information."
  120 +msgstr "%s veut être votre contact."
203 121  
204   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:9
205   -msgid "Download all form responses as"
206   -msgstr ""
  122 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:22
  123 +#, fuzzy
  124 +msgid "%{requestor} wants you to fill in some further information."
  125 +msgstr "%s veut être votre contact."
207 126  
208   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
209   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
  127 +#: plugins/custom_forms/lib/custom_forms_plugin.rb:8
210 128 #, fuzzy
211   -msgid "Sort by"
212   -msgstr "Nouveau groupe"
  129 +msgid "Enables the creation of forms."
  130 +msgstr "Activation de l'entreprise «%s»"
213 131  
214   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
215   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:18
216   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
217   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:14
218   -msgid "Time"
219   -msgstr ""
  132 +#: plugins/custom_forms/lib/custom_forms_plugin.rb:16
  133 +#, fuzzy
  134 +msgid "Manage Forms"
  135 +msgstr "Gérer"
220 136  
221   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:31
222   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:26
  137 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:26
223 138 #, fuzzy
224   -msgid "Back to forms"
225   -msgstr "Retour à la galerie"
  139 +msgid "Custom form %s was successfully created."
  140 +msgstr "Le commentaire a bien été effacé"
226 141  
227   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:3
  142 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:46
228 143 #, fuzzy
229   -msgid "Manage forms"
230   -msgstr "Gérer les contacts"
  144 +msgid "Custom form %s was successfully updated."
  145 +msgstr "Le commentaire a bien été effacé"
231 146  
232   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:7
233   -msgid "Period"
234   -msgstr ""
  147 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:49
  148 +#, fuzzy
  149 +msgid "Form could not be updated"
  150 +msgstr "Ce fichier n'a pas pu être sauvegardé"
235 151  
236   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:8
  152 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:59
237 153 #, fuzzy
238   -msgid "Submissions"
239   -msgstr "Permissions"
  154 +msgid "Form removed"
  155 +msgstr "Corps de l'article"
240 156  
241   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:9
242   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:13
  157 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:61
243 158 #, fuzzy
244   -msgid "Access"
245   -msgstr "Accepter"
  159 +msgid "Form could not be removed"
  160 +msgstr "Ce fichier n'a pas pu être sauvegardé"
246 161  
247   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:10
248   -msgid "Actions"
249   -msgstr "Actions"
  162 +#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:31
  163 +msgid "Submission saved"
  164 +msgstr ""
250 165  
251   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:20
  166 +#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:34
252 167 #, fuzzy
253   -msgid "Pending"
254   -msgstr "Tâches en attente"
  168 +msgid "Submission could not be saved"
  169 +msgstr "Bloc d'information de profil"
255 170  
256   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:21
257   -#, fuzzy
258   -msgid "Are you sure you want to remove this form?"
259   -msgstr "Êtes-vous sûr(e) de vouloir ôter cet élément ?"
  171 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:9
  172 +#: plugins/custom_forms/views/tasks/custom_forms_plugin/_membership_survey_accept_details.html.erb:8
  173 +msgid "Sorry, you can't fill this form yet"
  174 +msgstr ""
260 175  
261   -# (second try of this knid of contents)
262   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:27
263   -#, fuzzy
264   -msgid "Add a new form"
265   -msgstr "Une entreprise"
  176 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:11
  177 +#: plugins/custom_forms/views/tasks/custom_forms_plugin/_membership_survey_accept_details.html.erb:10
  178 +msgid "Sorry, you can't fill this form anymore"
  179 +msgstr ""
266 180  
267   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:9
268   -#, fuzzy
269   -msgid "Back to submissions"
270   -msgstr "Retour à la galerie"
  181 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:19
  182 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:5
  183 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:5
  184 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:32
  185 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:6
  186 +msgid "Name"
  187 +msgstr "Nom"
271 188  
272   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/edit.html.erb:1
273   -#, fuzzy
274   -msgid "Edit form"
275   -msgstr "Éditer le dossier"
  189 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:20
  190 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:41
  191 +msgid "Email"
  192 +msgstr ""
  193 +
  194 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:31
  195 +msgid "Your e-mail will be visible to this form's owners."
  196 +msgstr ""
276 197  
277 198 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/new.html.erb:1
278 199 #, fuzzy
279 200 msgid "New form"
280 201 msgstr "Nouveau dossier"
281 202  
  203 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:6
  204 +msgid "Value"
  205 +msgstr ""
  206 +
  207 +# (second try of this knid of contents)
  208 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:17
  209 +#, fuzzy
  210 +msgid "Add a new option"
  211 +msgstr "Une entreprise"
  212 +
  213 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:29
  214 +msgid "Ok"
  215 +msgstr "Ok"
  216 +
282 217 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_alternative.html.erb:10
283 218 #, fuzzy
284 219 msgid "Remove alternative"
285 220 msgstr "Ôter le membre"
286 221  
  222 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_text_field.html.erb:3
  223 +#, fuzzy
  224 +msgid "Default text:"
  225 +msgstr "Langues"
  226 +
287 227 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_select_field.html.erb:3
288 228 #, fuzzy
289 229 msgid "Type:"
... ... @@ -321,20 +261,16 @@ msgstr &quot;Rejeté&quot;
321 261 msgid "Add a new alternative"
322 262 msgstr "Une entreprise"
323 263  
324   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_text_field.html.erb:3
325   -#, fuzzy
326   -msgid "Default text:"
327   -msgstr "Langues"
328   -
329   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_field.html.erb:8
330   -#, fuzzy
331   -msgid "Are you sure you want to remove this field?"
332   -msgstr "Êtes-vous sûr(e) de vouloir ôter cet élément ?"
333   -
334 264 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:6
335 265 msgid "What is the time limit for this form to be filled?"
336 266 msgstr ""
337 267  
  268 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:13
  269 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:9
  270 +#, fuzzy
  271 +msgid "Access"
  272 +msgstr "Accepter"
  273 +
338 274 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:16
339 275 msgid "Triggered on membership request as requirement for approval"
340 276 msgstr ""
... ... @@ -361,10 +297,20 @@ msgstr &quot;Une entreprise&quot;
361 297 msgid "Add a new select field"
362 298 msgstr "Une entreprise"
363 299  
364   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_option.html.erb:5
  300 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:10
365 301 #, fuzzy
366   -msgid "Are you sure you want to remove this option?"
367   -msgstr "Êtes-vous sûr(e) de vouloir ôter cet élément ?"
  302 +msgid "Mandatory"
  303 +msgstr "Modérer les commentaires"
  304 +
  305 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:15
  306 +#, fuzzy
  307 +msgid "Remove field"
  308 +msgstr "Effacer le bloc"
  309 +
  310 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/edit.html.erb:1
  311 +#, fuzzy
  312 +msgid "Edit form"
  313 +msgstr "Éditer le dossier"
368 314  
369 315 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:3
370 316 #, fuzzy
... ... @@ -377,37 +323,105 @@ msgid &quot;There are no pending submissions for this form.&quot;
377 323 msgstr "Il n'existe pas de sous-catégorie pour %s."
378 324  
379 325 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
  326 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
  327 +#, fuzzy
  328 +msgid "Sort by"
  329 +msgstr "Nouveau groupe"
  330 +
  331 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
  332 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:14
  333 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
  334 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:18
  335 +msgid "Time"
  336 +msgstr ""
  337 +
  338 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
380 339 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:13
381 340 msgid "User"
382 341 msgstr "Utilisateur"
383 342  
384   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:6
385   -msgid "Value"
  343 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:26
  344 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:31
  345 +#, fuzzy
  346 +msgid "Back to forms"
  347 +msgstr "Retour à la galerie"
  348 +
  349 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:10
  350 +#, fuzzy
  351 +msgid "Submission date"
  352 +msgstr "Permissions"
  353 +
  354 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:14
  355 +#, fuzzy
  356 +msgid "Author"
  357 +msgstr "Auteur"
  358 +
  359 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:26
  360 +msgid "Unauthenticated"
386 361 msgstr ""
387 362  
388   -# (second try of this knid of contents)
389   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:17
  363 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:48
390 364 #, fuzzy
391   -msgid "Add a new option"
392   -msgstr "Une entreprise"
  365 +msgid "Back to submissions"
  366 +msgstr "Retour à la galerie"
393 367  
394   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:29
395   -msgid "Ok"
396   -msgstr "Ok"
  368 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_field.html.erb:8
  369 +#, fuzzy
  370 +msgid "Are you sure you want to remove this field?"
  371 +msgstr "Êtes-vous sûr(e) de vouloir ôter cet élément ?"
397 372  
398   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:10
  373 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_option.html.erb:5
399 374 #, fuzzy
400   -msgid "Mandatory"
401   -msgstr "Modérer les commentaires"
  375 +msgid "Are you sure you want to remove this option?"
  376 +msgstr "Êtes-vous sûr(e) de vouloir ôter cet élément ?"
402 377  
403   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:15
  378 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:3
404 379 #, fuzzy
405   -msgid "Remove field"
406   -msgstr "Effacer le bloc"
  380 +msgid "Submissions for %s"
  381 +msgstr "Statistiques pour %s"
407 382  
  383 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:6
408 384 #, fuzzy
409   -#~ msgid "Author name"
410   -#~ msgstr "Auteur"
  385 +msgid "There are no submissions for this form."
  386 +msgstr "Il n'existe pas de sous-catégorie pour %s."
  387 +
  388 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:9
  389 +msgid "Download all form responses as"
  390 +msgstr ""
  391 +
  392 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:3
  393 +#, fuzzy
  394 +msgid "Manage forms"
  395 +msgstr "Gérer les contacts"
  396 +
  397 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:7
  398 +msgid "Period"
  399 +msgstr ""
  400 +
  401 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:8
  402 +#, fuzzy
  403 +msgid "Submissions"
  404 +msgstr "Permissions"
  405 +
  406 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:10
  407 +msgid "Actions"
  408 +msgstr "Actions"
  409 +
  410 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:20
  411 +#, fuzzy
  412 +msgid "Pending"
  413 +msgstr "Tâches en attente"
  414 +
  415 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:21
  416 +#, fuzzy
  417 +msgid "Are you sure you want to remove this form?"
  418 +msgstr "Êtes-vous sûr(e) de vouloir ôter cet élément ?"
  419 +
  420 +# (second try of this knid of contents)
  421 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:27
  422 +#, fuzzy
  423 +msgid "Add a new form"
  424 +msgstr "Une entreprise"
411 425  
412 426 #, fuzzy
413 427 #~ msgid "Author email"
... ...
plugins/custom_forms/po/hy/custom_forms.po
... ... @@ -5,8 +5,8 @@
5 5 #
6 6 msgid ""
7 7 msgstr ""
8   -"Project-Id-Version: 1.1-882-g0c116ba\n"
9   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  8 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  9 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
10 10 "PO-Revision-Date: 2015-02-23 11:37+0200\n"
11 11 "Last-Translator: Michal Čihař <michal@cihar.com>\n"
12 12 "Language-Team: Armenian <https://hosted.weblate.org/projects/noosfero/plugin-"
... ... @@ -18,72 +18,6 @@ msgstr &quot;&quot;
18 18 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19 19 "X-Generator: Weblate 2.3-dev\n"
20 20  
21   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:26
22   -#, fuzzy
23   -msgid "Custom form %s was successfully created."
24   -msgstr "Մեկնաբանությունը հաջողությամբ հեռացված է:"
25   -
26   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:46
27   -#, fuzzy
28   -msgid "Custom form %s was successfully updated."
29   -msgstr "Մեկնաբանությունը հաջողությամբ հեռացված է:"
30   -
31   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:49
32   -#, fuzzy
33   -msgid "Form could not be updated"
34   -msgstr "Սկզբնական նյութի թարմացումը ձախողված է"
35   -
36   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:59
37   -#, fuzzy
38   -msgid "Form removed"
39   -msgstr "Բուն հոդված"
40   -
41   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:61
42   -#, fuzzy
43   -msgid "Form could not be removed"
44   -msgstr "Սկզբնական նյութի թարմացումը ձախողված է"
45   -
46   -#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:31
47   -msgid "Submission saved"
48   -msgstr ""
49   -
50   -#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:34
51   -#, fuzzy
52   -msgid "Submission could not be saved"
53   -msgstr "Անհանատական էջի տվյալների բաժին"
54   -
55   -#: plugins/custom_forms/lib/custom_forms_plugin.rb:8
56   -#, fuzzy
57   -msgid "Enables the creation of forms."
58   -msgstr "Ակտիվացնել «%s» ձեռնարկությունը"
59   -
60   -#: plugins/custom_forms/lib/custom_forms_plugin.rb:16
61   -#, fuzzy
62   -msgid "Manage Forms"
63   -msgstr "Կառավարել"
64   -
65   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:9
66   -#, fuzzy
67   -msgid "Admission survey"
68   -msgstr "Անդամներ: %s"
69   -
70   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:13
71   -#, fuzzy
72   -msgid "%{requestor} wants you to fill in some information before joining."
73   -msgstr "%s ցանկանում է Ձեր ընկերը դառնալ"
74   -
75   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:17
76   -#, fuzzy
77   -msgid ""
78   -"Before joining %{requestor}, the administrators of this organization\n"
79   -" wants you to fill in some further information."
80   -msgstr "%s ցանկանում է Ձեր ընկերը դառնալ"
81   -
82   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:22
83   -#, fuzzy
84   -msgid "%{requestor} wants you to fill in some further information."
85   -msgstr "%s ցանկանում է Ձեր ընկերը դառնալ"
86   -
87 21 #: plugins/custom_forms/lib/custom_forms_plugin/form.rb:67
88 22 msgid "Invalid string format of access."
89 23 msgstr ""
... ... @@ -122,6 +56,11 @@ msgstr &quot;&quot;
122 56 msgid "%{requestor} wants to fill in some further information."
123 57 msgstr "%s ցանկանում է Ձեր ընկերը դառնալ"
124 58  
  59 +#: plugins/custom_forms/lib/custom_forms_plugin/answer.rb:13
  60 +#, fuzzy
  61 +msgid "is mandatory."
  62 +msgstr "Պատմություն"
  63 +
125 64 #: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:14
126 65 #: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:47
127 66 #, fuzzy
... ... @@ -160,129 +99,131 @@ msgstr &quot;&quot;
160 99 msgid "Select field"
161 100 msgstr "Նոր թղթապանակ"
162 101  
163   -#: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:101
  102 +#: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:102
164 103 msgid "Hold down Ctrl to select options"
165 104 msgstr ""
166 105  
167   -#: plugins/custom_forms/lib/custom_forms_plugin/answer.rb:13
  106 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:9
168 107 #, fuzzy
169   -msgid "is mandatory."
170   -msgstr "Պատմություն"
171   -
172   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:7
173   -#: plugins/custom_forms/views/tasks/custom_forms_plugin/_membership_survey_accept_details.html.erb:8
174   -msgid "Sorry, you can't fill this form yet"
175   -msgstr ""
176   -
177   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:9
178   -#: plugins/custom_forms/views/tasks/custom_forms_plugin/_membership_survey_accept_details.html.erb:10
179   -msgid "Sorry, you can't fill this form anymore"
180   -msgstr ""
181   -
182   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:17
183   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:6
184   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:5
185   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:32
186   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:5
187   -msgid "Name"
188   -msgstr "Անվանում"
189   -
190   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:18
191   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:41
192   -msgid "Email"
193   -msgstr ""
  108 +msgid "Admission survey"
  109 +msgstr "Անդամներ: %s"
194 110  
195   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:3
  111 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:13
196 112 #, fuzzy
197   -msgid "Submissions for %s"
198   -msgstr "Վիճակագրություն"
  113 +msgid "%{requestor} wants you to fill in some information before joining."
  114 +msgstr "%s ցանկանում է Ձեր ընկերը դառնալ"
199 115  
200   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:6
  116 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:17
201 117 #, fuzzy
202   -msgid "There are no submissions for this form."
203   -msgstr "%s-ի համար ենթակատեգորիաներ չկան:"
  118 +msgid ""
  119 +"Before joining %{requestor}, the administrators of this organization\n"
  120 +" wants you to fill in some further information."
  121 +msgstr "%s ցանկանում է Ձեր ընկերը դառնալ"
204 122  
205   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:9
206   -msgid "Download all form responses as"
207   -msgstr ""
  123 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:22
  124 +#, fuzzy
  125 +msgid "%{requestor} wants you to fill in some further information."
  126 +msgstr "%s ցանկանում է Ձեր ընկերը դառնալ"
208 127  
209   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
210   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
  128 +#: plugins/custom_forms/lib/custom_forms_plugin.rb:8
211 129 #, fuzzy
212   -msgid "Sort by"
213   -msgstr "Մեկ համայնք"
  130 +msgid "Enables the creation of forms."
  131 +msgstr "Ակտիվացնել «%s» ձեռնարկությունը"
214 132  
215   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
216   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:18
217   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
218   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:14
219   -msgid "Time"
220   -msgstr ""
  133 +#: plugins/custom_forms/lib/custom_forms_plugin.rb:16
  134 +#, fuzzy
  135 +msgid "Manage Forms"
  136 +msgstr "Կառավարել"
221 137  
222   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:31
223   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:26
  138 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:26
224 139 #, fuzzy
225   -msgid "Back to forms"
226   -msgstr "Արտադրանք չկա"
  140 +msgid "Custom form %s was successfully created."
  141 +msgstr "Մեկնաբանությունը հաջողությամբ հեռացված է:"
227 142  
228   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:3
  143 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:46
229 144 #, fuzzy
230   -msgid "Manage forms"
231   -msgstr "Կառավարել ընկերներին"
  145 +msgid "Custom form %s was successfully updated."
  146 +msgstr "Մեկնաբանությունը հաջողությամբ հեռացված է:"
232 147  
233   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:7
234   -msgid "Period"
235   -msgstr ""
  148 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:49
  149 +#, fuzzy
  150 +msgid "Form could not be updated"
  151 +msgstr "Սկզբնական նյութի թարմացումը ձախողված է"
236 152  
237   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:8
  153 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:59
238 154 #, fuzzy
239   -msgid "Submissions"
240   -msgstr "Թույլտվություններ"
  155 +msgid "Form removed"
  156 +msgstr "Բուն հոդված"
241 157  
242   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:9
243   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:13
  158 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:61
244 159 #, fuzzy
245   -msgid "Access"
246   -msgstr "Ընդունել"
  160 +msgid "Form could not be removed"
  161 +msgstr "Սկզբնական նյութի թարմացումը ձախողված է"
247 162  
248   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:10
249   -msgid "Actions"
250   -msgstr "Գործողություններ"
  163 +#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:31
  164 +msgid "Submission saved"
  165 +msgstr ""
251 166  
252   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:20
  167 +#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:34
253 168 #, fuzzy
254   -msgid "Pending"
255   -msgstr "Սպասող առաջադրանքներ"
  169 +msgid "Submission could not be saved"
  170 +msgstr "Անհանատական էջի տվյալների բաժին"
256 171  
257   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:21
258   -#, fuzzy
259   -msgid "Are you sure you want to remove this form?"
260   -msgstr "Վստա՞ք եք, որ ցականում եք այն հեռացնել:"
  172 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:9
  173 +#: plugins/custom_forms/views/tasks/custom_forms_plugin/_membership_survey_accept_details.html.erb:8
  174 +msgid "Sorry, you can't fill this form yet"
  175 +msgstr ""
261 176  
262   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:27
263   -#, fuzzy
264   -msgid "Add a new form"
265   -msgstr "Մեկ ձեռնարկություն"
  177 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:11
  178 +#: plugins/custom_forms/views/tasks/custom_forms_plugin/_membership_survey_accept_details.html.erb:10
  179 +msgid "Sorry, you can't fill this form anymore"
  180 +msgstr ""
266 181  
267   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:9
268   -msgid "Back to submissions"
  182 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:19
  183 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:5
  184 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:5
  185 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:32
  186 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:6
  187 +msgid "Name"
  188 +msgstr "Անվանում"
  189 +
  190 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:20
  191 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:41
  192 +msgid "Email"
269 193 msgstr ""
270 194  
271   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/edit.html.erb:1
272   -#, fuzzy
273   -msgid "Edit form"
274   -msgstr "Փոփոխել"
  195 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:31
  196 +msgid "Your e-mail will be visible to this form's owners."
  197 +msgstr ""
275 198  
276 199 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/new.html.erb:1
277 200 #, fuzzy
278 201 msgid "New form"
279 202 msgstr "Նոր թղթապանակ"
280 203  
  204 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:6
  205 +msgid "Value"
  206 +msgstr ""
  207 +
  208 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:17
  209 +#, fuzzy
  210 +msgid "Add a new option"
  211 +msgstr "Մեկ ձեռնարկություն"
  212 +
  213 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:29
  214 +msgid "Ok"
  215 +msgstr ""
  216 +
281 217 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_alternative.html.erb:10
282 218 #, fuzzy
283 219 msgid "Remove alternative"
284 220 msgstr "Հեռացնել անդամին"
285 221  
  222 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_text_field.html.erb:3
  223 +#, fuzzy
  224 +msgid "Default text:"
  225 +msgstr "Լեզուներ"
  226 +
286 227 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_select_field.html.erb:3
287 228 #, fuzzy
288 229 msgid "Type:"
... ... @@ -318,20 +259,16 @@ msgstr &quot;Մերժված է&quot;
318 259 msgid "Add a new alternative"
319 260 msgstr "Մեկ ձեռնարկություն"
320 261  
321   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_text_field.html.erb:3
322   -#, fuzzy
323   -msgid "Default text:"
324   -msgstr "Լեզուներ"
325   -
326   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_field.html.erb:8
327   -#, fuzzy
328   -msgid "Are you sure you want to remove this field?"
329   -msgstr "Վստա՞ք եք, որ ցականում եք այն հեռացնել:"
330   -
331 262 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:6
332 263 msgid "What is the time limit for this form to be filled?"
333 264 msgstr ""
334 265  
  266 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:13
  267 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:9
  268 +#, fuzzy
  269 +msgid "Access"
  270 +msgstr "Ընդունել"
  271 +
335 272 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:16
336 273 msgid "Triggered on membership request as requirement for approval"
337 274 msgstr ""
... ... @@ -356,10 +293,20 @@ msgstr &quot;Մեկ ձեռնարկություն&quot;
356 293 msgid "Add a new select field"
357 294 msgstr "Մեկ ձեռնարկություն"
358 295  
359   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_option.html.erb:5
  296 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:10
360 297 #, fuzzy
361   -msgid "Are you sure you want to remove this option?"
362   -msgstr "Վստա՞ք եք, որ ցականում եք այն հեռացնել:"
  298 +msgid "Mandatory"
  299 +msgstr "Կառավարել մեկնաբանությունները"
  300 +
  301 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:15
  302 +#, fuzzy
  303 +msgid "Remove field"
  304 +msgstr "Հեռացնել բաժինը"
  305 +
  306 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/edit.html.erb:1
  307 +#, fuzzy
  308 +msgid "Edit form"
  309 +msgstr "Փոփոխել"
363 310  
364 311 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:3
365 312 #, fuzzy
... ... @@ -372,36 +319,103 @@ msgid &quot;There are no pending submissions for this form.&quot;
372 319 msgstr "%s-ի համար ենթակատեգորիաներ չկան:"
373 320  
374 321 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
  322 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
  323 +#, fuzzy
  324 +msgid "Sort by"
  325 +msgstr "Մեկ համայնք"
  326 +
  327 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
  328 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:14
  329 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
  330 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:18
  331 +msgid "Time"
  332 +msgstr ""
  333 +
  334 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
375 335 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:13
376 336 msgid "User"
377 337 msgstr "Օգտվող"
378 338  
379   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:6
380   -msgid "Value"
  339 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:26
  340 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:31
  341 +#, fuzzy
  342 +msgid "Back to forms"
  343 +msgstr "Արտադրանք չկա"
  344 +
  345 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:10
  346 +#, fuzzy
  347 +msgid "Submission date"
  348 +msgstr "Թույլտվություններ"
  349 +
  350 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:14
  351 +#, fuzzy
  352 +msgid "Author"
  353 +msgstr "Հեղինակ"
  354 +
  355 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:26
  356 +msgid "Unauthenticated"
381 357 msgstr ""
382 358  
383   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:17
  359 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:48
  360 +msgid "Back to submissions"
  361 +msgstr ""
  362 +
  363 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_field.html.erb:8
384 364 #, fuzzy
385   -msgid "Add a new option"
386   -msgstr "Մեկ ձեռնարկություն"
  365 +msgid "Are you sure you want to remove this field?"
  366 +msgstr "Վստա՞ք եք, որ ցականում եք այն հեռացնել:"
387 367  
388   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:29
389   -msgid "Ok"
  368 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_option.html.erb:5
  369 +#, fuzzy
  370 +msgid "Are you sure you want to remove this option?"
  371 +msgstr "Վստա՞ք եք, որ ցականում եք այն հեռացնել:"
  372 +
  373 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:3
  374 +#, fuzzy
  375 +msgid "Submissions for %s"
  376 +msgstr "Վիճակագրություն"
  377 +
  378 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:6
  379 +#, fuzzy
  380 +msgid "There are no submissions for this form."
  381 +msgstr "%s-ի համար ենթակատեգորիաներ չկան:"
  382 +
  383 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:9
  384 +msgid "Download all form responses as"
390 385 msgstr ""
391 386  
392   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:10
  387 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:3
393 388 #, fuzzy
394   -msgid "Mandatory"
395   -msgstr "Կառավարել մեկնաբանությունները"
  389 +msgid "Manage forms"
  390 +msgstr "Կառավարել ընկերներին"
396 391  
397   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:15
  392 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:7
  393 +msgid "Period"
  394 +msgstr ""
  395 +
  396 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:8
398 397 #, fuzzy
399   -msgid "Remove field"
400   -msgstr "Հեռացնել բաժինը"
  398 +msgid "Submissions"
  399 +msgstr "Թույլտվություններ"
401 400  
  401 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:10
  402 +msgid "Actions"
  403 +msgstr "Գործողություններ"
  404 +
  405 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:20
402 406 #, fuzzy
403   -#~ msgid "Author name"
404   -#~ msgstr "Հեղինակ"
  407 +msgid "Pending"
  408 +msgstr "Սպասող առաջադրանքներ"
  409 +
  410 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:21
  411 +#, fuzzy
  412 +msgid "Are you sure you want to remove this form?"
  413 +msgstr "Վստա՞ք եք, որ ցականում եք այն հեռացնել:"
  414 +
  415 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:27
  416 +#, fuzzy
  417 +msgid "Add a new form"
  418 +msgstr "Մեկ ձեռնարկություն"
405 419  
406 420 #, fuzzy
407 421 #~ msgid "Author email"
... ...
plugins/custom_forms/po/pt/custom_forms.po
... ... @@ -11,8 +11,8 @@
11 11 #
12 12 msgid ""
13 13 msgstr ""
14   -"Project-Id-Version: 1.1-882-g0c116ba\n"
15   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  14 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  15 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
16 16 "PO-Revision-Date: 2015-08-07 16:48+0200\n"
17 17 "Last-Translator: Antonio Terceiro <terceiro@softwarelivre.org>\n"
18 18 "Language-Team: Portuguese <https://hosted.weblate.org/projects/noosfero/"
... ... @@ -24,63 +24,6 @@ msgstr &quot;&quot;
24 24 "Plural-Forms: nplurals=2; plural=n != 1;\n"
25 25 "X-Generator: Weblate 2.4-dev\n"
26 26  
27   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:26
28   -msgid "Custom form %s was successfully created."
29   -msgstr "O formulário %s foi criado com sucesso."
30   -
31   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:46
32   -msgid "Custom form %s was successfully updated."
33   -msgstr "O formulário personalizado %s foi atualizado com sucesso."
34   -
35   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:49
36   -msgid "Form could not be updated"
37   -msgstr "O formulário não pode ser atualizado"
38   -
39   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:59
40   -msgid "Form removed"
41   -msgstr "Formulário removido"
42   -
43   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:61
44   -msgid "Form could not be removed"
45   -msgstr "O formulário não pode ser removido"
46   -
47   -#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:31
48   -msgid "Submission saved"
49   -msgstr "Submissão salva"
50   -
51   -#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:34
52   -msgid "Submission could not be saved"
53   -msgstr "A submissão não pode ser salva"
54   -
55   -#: plugins/custom_forms/lib/custom_forms_plugin.rb:8
56   -msgid "Enables the creation of forms."
57   -msgstr "Habilita a criação de formulários."
58   -
59   -#: plugins/custom_forms/lib/custom_forms_plugin.rb:16
60   -msgid "Manage Forms"
61   -msgstr "Gerenciar Formulários"
62   -
63   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:9
64   -msgid "Admission survey"
65   -msgstr "Questionário para associação"
66   -
67   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:13
68   -msgid "%{requestor} wants you to fill in some information before joining."
69   -msgstr ""
70   -"%{requestor} quer que você preencha algumas informações antes de se associar."
71   -
72   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:17
73   -msgid ""
74   -"Before joining %{requestor}, the administrators of this organization\n"
75   -" wants you to fill in some further information."
76   -msgstr ""
77   -"Antes de entrar em %{requestor}, os administradores dessa organização\n"
78   -" querem que você preencha algumas informações adicionais."
79   -
80   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:22
81   -msgid "%{requestor} wants you to fill in some further information."
82   -msgstr "%{requestor} quer que você preencha algumas informações adicionais."
83   -
84 27 #: plugins/custom_forms/lib/custom_forms_plugin/form.rb:67
85 28 msgid "Invalid string format of access."
86 29 msgstr "Tipo de acesso inválido."
... ... @@ -118,6 +61,10 @@ msgstr &quot;&quot;
118 61 msgid "%{requestor} wants to fill in some further information."
119 62 msgstr "%{requestor} quer que preencha algumas informações adicionais."
120 63  
  64 +#: plugins/custom_forms/lib/custom_forms_plugin/answer.rb:13
  65 +msgid "is mandatory."
  66 +msgstr "é obrigatório."
  67 +
121 68 #: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:14
122 69 #: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:47
123 70 msgid "Logged users"
... ... @@ -151,115 +98,118 @@ msgstr &quot;Campo de texto&quot;
151 98 msgid "Select field"
152 99 msgstr "Campo de seleção"
153 100  
154   -#: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:101
  101 +#: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:102
155 102 msgid "Hold down Ctrl to select options"
156 103 msgstr "Segure Ctrl para selecionar as opções"
157 104  
158   -#: plugins/custom_forms/lib/custom_forms_plugin/answer.rb:13
159   -msgid "is mandatory."
160   -msgstr "é obrigatório."
  105 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:9
  106 +msgid "Admission survey"
  107 +msgstr "Questionário para associação"
  108 +
  109 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:13
  110 +msgid "%{requestor} wants you to fill in some information before joining."
  111 +msgstr ""
  112 +"%{requestor} quer que você preencha algumas informações antes de se associar."
  113 +
  114 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:17
  115 +msgid ""
  116 +"Before joining %{requestor}, the administrators of this organization\n"
  117 +" wants you to fill in some further information."
  118 +msgstr ""
  119 +"Antes de entrar em %{requestor}, os administradores dessa organização\n"
  120 +" querem que você preencha algumas informações adicionais."
161 121  
162   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:7
  122 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:22
  123 +msgid "%{requestor} wants you to fill in some further information."
  124 +msgstr "%{requestor} quer que você preencha algumas informações adicionais."
  125 +
  126 +#: plugins/custom_forms/lib/custom_forms_plugin.rb:8
  127 +msgid "Enables the creation of forms."
  128 +msgstr "Habilita a criação de formulários."
  129 +
  130 +#: plugins/custom_forms/lib/custom_forms_plugin.rb:16
  131 +msgid "Manage Forms"
  132 +msgstr "Gerenciar Formulários"
  133 +
  134 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:26
  135 +msgid "Custom form %s was successfully created."
  136 +msgstr "O formulário %s foi criado com sucesso."
  137 +
  138 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:46
  139 +msgid "Custom form %s was successfully updated."
  140 +msgstr "O formulário personalizado %s foi atualizado com sucesso."
  141 +
  142 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:49
  143 +msgid "Form could not be updated"
  144 +msgstr "O formulário não pode ser atualizado"
  145 +
  146 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:59
  147 +msgid "Form removed"
  148 +msgstr "Formulário removido"
  149 +
  150 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:61
  151 +msgid "Form could not be removed"
  152 +msgstr "O formulário não pode ser removido"
  153 +
  154 +#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:31
  155 +msgid "Submission saved"
  156 +msgstr "Submissão salva"
  157 +
  158 +#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:34
  159 +msgid "Submission could not be saved"
  160 +msgstr "A submissão não pode ser salva"
  161 +
  162 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:9
163 163 #: plugins/custom_forms/views/tasks/custom_forms_plugin/_membership_survey_accept_details.html.erb:8
164 164 msgid "Sorry, you can't fill this form yet"
165 165 msgstr "Desculpe, você não pode preencher esse formulário ainda"
166 166  
167   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:9
  167 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:11
168 168 #: plugins/custom_forms/views/tasks/custom_forms_plugin/_membership_survey_accept_details.html.erb:10
169 169 msgid "Sorry, you can't fill this form anymore"
170 170 msgstr "Desculpe, você não pode mais preencher esse formulário"
171 171  
172   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:17
173   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:6
  172 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:19
  173 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:5
174 174 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:5
175 175 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:32
176   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:5
  176 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:6
177 177 msgid "Name"
178 178 msgstr "Nome"
179 179  
180   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:18
  180 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:20
181 181 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:41
182 182 msgid "Email"
183 183 msgstr "E-mail"
184 184  
185   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:3
186   -msgid "Submissions for %s"
187   -msgstr "Submissões para %s"
188   -
189   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:6
190   -msgid "There are no submissions for this form."
191   -msgstr "Não há submissões para este formulário."
192   -
193   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:9
194   -msgid "Download all form responses as"
195   -msgstr "Baixar todas as respostas como"
196   -
197   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
198   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
199   -msgid "Sort by"
200   -msgstr "Ordenar por"
201   -
202   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
203   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:18
204   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
205   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:14
206   -msgid "Time"
207   -msgstr "Tempo"
208   -
209   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:31
210   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:26
211   -msgid "Back to forms"
212   -msgstr "Voltar para os formulários"
213   -
214   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:3
215   -msgid "Manage forms"
216   -msgstr "Gerenciar formulários"
217   -
218   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:7
219   -msgid "Period"
220   -msgstr "Período"
221   -
222   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:8
223   -msgid "Submissions"
224   -msgstr "Submissões"
225   -
226   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:9
227   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:13
228   -msgid "Access"
229   -msgstr "Acesso"
230   -
231   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:10
232   -msgid "Actions"
233   -msgstr "Ações"
234   -
235   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:20
236   -msgid "Pending"
237   -msgstr "Pendente"
238   -
239   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:21
240   -msgid "Are you sure you want to remove this form?"
241   -msgstr "Tem certeza de que deseja remover esse formulário?"
242   -
243   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:27
244   -msgid "Add a new form"
245   -msgstr "Adicionar um novo formulário"
246   -
247   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:9
248   -msgid "Back to submissions"
249   -msgstr "Voltar para submissões"
250   -
251   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/edit.html.erb:1
252   -msgid "Edit form"
253   -msgstr "Editar formulário"
  185 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:31
  186 +msgid "Your e-mail will be visible to this form's owners."
  187 +msgstr ""
254 188  
255 189 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/new.html.erb:1
256 190 msgid "New form"
257 191 msgstr "Novo formulário"
258 192  
  193 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:6
  194 +msgid "Value"
  195 +msgstr "Valor"
  196 +
  197 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:17
  198 +msgid "Add a new option"
  199 +msgstr "Adicionar uma nova opção"
  200 +
  201 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:29
  202 +msgid "Ok"
  203 +msgstr "Ok"
  204 +
259 205 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_alternative.html.erb:10
260 206 msgid "Remove alternative"
261 207 msgstr "Remover alternativa"
262 208  
  209 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_text_field.html.erb:3
  210 +msgid "Default text:"
  211 +msgstr "Texto padrão:"
  212 +
263 213 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_select_field.html.erb:3
264 214 msgid "Type:"
265 215 msgstr "Tipo:"
... ... @@ -292,18 +242,15 @@ msgstr &quot;Pré-selecionado&quot;
292 242 msgid "Add a new alternative"
293 243 msgstr "Adicionar nova alternativa"
294 244  
295   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_text_field.html.erb:3
296   -msgid "Default text:"
297   -msgstr "Texto padrão:"
298   -
299   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_field.html.erb:8
300   -msgid "Are you sure you want to remove this field?"
301   -msgstr "Tem certeza de que deseja remover este campo?"
302   -
303 245 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:6
304 246 msgid "What is the time limit for this form to be filled?"
305 247 msgstr "Qual o período limite em que esse formulário pode ser preenchido?"
306 248  
  249 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:13
  250 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:9
  251 +msgid "Access"
  252 +msgstr "Acesso"
  253 +
307 254 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:16
308 255 msgid "Triggered on membership request as requirement for approval"
309 256 msgstr "Disparado para novos integrantes como requisito de aprovação"
... ... @@ -325,9 +272,17 @@ msgstr &quot;Adicionar novo campo de texto&quot;
325 272 msgid "Add a new select field"
326 273 msgstr "Adicionar novo campo de seleção"
327 274  
328   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_option.html.erb:5
329   -msgid "Are you sure you want to remove this option?"
330   -msgstr "Tem certeza de que deseja remover esta opção?"
  275 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:10
  276 +msgid "Mandatory"
  277 +msgstr "Obrigatório"
  278 +
  279 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:15
  280 +msgid "Remove field"
  281 +msgstr "Remover campo"
  282 +
  283 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/edit.html.erb:1
  284 +msgid "Edit form"
  285 +msgstr "Editar formulário"
331 286  
332 287 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:3
333 288 msgid "Pending submissions for %s"
... ... @@ -338,32 +293,92 @@ msgid &quot;There are no pending submissions for this form.&quot;
338 293 msgstr "Não há submissões pendentes para esse formulário."
339 294  
340 295 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
  296 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
  297 +msgid "Sort by"
  298 +msgstr "Ordenar por"
  299 +
  300 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
  301 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:14
  302 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
  303 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:18
  304 +msgid "Time"
  305 +msgstr "Tempo"
  306 +
  307 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
341 308 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:13
342 309 msgid "User"
343 310 msgstr "Usuário"
344 311  
345   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:6
346   -msgid "Value"
347   -msgstr "Valor"
  312 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:26
  313 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:31
  314 +msgid "Back to forms"
  315 +msgstr "Voltar para os formulários"
348 316  
349   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:17
350   -msgid "Add a new option"
351   -msgstr "Adicionar uma nova opção"
  317 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:10
  318 +#, fuzzy
  319 +msgid "Submission date"
  320 +msgstr "Submissão salva"
352 321  
353   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:29
354   -msgid "Ok"
355   -msgstr "Ok"
  322 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:14
  323 +#, fuzzy
  324 +msgid "Author"
  325 +msgstr "Nome do autor"
356 326  
357   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:10
358   -msgid "Mandatory"
359   -msgstr "Obrigatório"
  327 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:26
  328 +msgid "Unauthenticated"
  329 +msgstr ""
360 330  
361   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:15
362   -msgid "Remove field"
363   -msgstr "Remover campo"
  331 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:48
  332 +msgid "Back to submissions"
  333 +msgstr "Voltar para submissões"
  334 +
  335 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_field.html.erb:8
  336 +msgid "Are you sure you want to remove this field?"
  337 +msgstr "Tem certeza de que deseja remover este campo?"
  338 +
  339 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_option.html.erb:5
  340 +msgid "Are you sure you want to remove this option?"
  341 +msgstr "Tem certeza de que deseja remover esta opção?"
  342 +
  343 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:3
  344 +msgid "Submissions for %s"
  345 +msgstr "Submissões para %s"
  346 +
  347 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:6
  348 +msgid "There are no submissions for this form."
  349 +msgstr "Não há submissões para este formulário."
  350 +
  351 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:9
  352 +msgid "Download all form responses as"
  353 +msgstr "Baixar todas as respostas como"
  354 +
  355 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:3
  356 +msgid "Manage forms"
  357 +msgstr "Gerenciar formulários"
  358 +
  359 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:7
  360 +msgid "Period"
  361 +msgstr "Período"
  362 +
  363 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:8
  364 +msgid "Submissions"
  365 +msgstr "Submissões"
  366 +
  367 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:10
  368 +msgid "Actions"
  369 +msgstr "Ações"
  370 +
  371 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:20
  372 +msgid "Pending"
  373 +msgstr "Pendente"
  374 +
  375 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:21
  376 +msgid "Are you sure you want to remove this form?"
  377 +msgstr "Tem certeza de que deseja remover esse formulário?"
364 378  
365   -#~ msgid "Author name"
366   -#~ msgstr "Nome do autor"
  379 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:27
  380 +msgid "Add a new form"
  381 +msgstr "Adicionar um novo formulário"
367 382  
368 383 #~ msgid "Author email"
369 384 #~ msgstr "Email do autor"
... ...
plugins/custom_forms/po/ru/custom_forms.po
... ... @@ -5,8 +5,8 @@
5 5 #
6 6 msgid ""
7 7 msgstr ""
8   -"Project-Id-Version: 1.1-882-g0c116ba\n"
9   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  8 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  9 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
10 10 "PO-Revision-Date: 2015-03-09 09:51+0200\n"
11 11 "Last-Translator: Michal Čihař <michal@cihar.com>\n"
12 12 "Language-Team: Russian <https://hosted.weblate.org/projects/noosfero/plugin-"
... ... @@ -19,72 +19,6 @@ msgstr &quot;&quot;
19 19 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
20 20 "X-Generator: Weblate 2.3-dev\n"
21 21  
22   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:26
23   -#, fuzzy
24   -msgid "Custom form %s was successfully created."
25   -msgstr "Комментарий успешно удален"
26   -
27   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:46
28   -#, fuzzy
29   -msgid "Custom form %s was successfully updated."
30   -msgstr "Комментарий успешно удален"
31   -
32   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:49
33   -#, fuzzy
34   -msgid "Form could not be updated"
35   -msgstr "Адрес не может быть сохранен"
36   -
37   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:59
38   -#, fuzzy
39   -msgid "Form removed"
40   -msgstr "Тело статьи"
41   -
42   -#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:61
43   -#, fuzzy
44   -msgid "Form could not be removed"
45   -msgstr "Адрес не может быть сохранен"
46   -
47   -#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:31
48   -msgid "Submission saved"
49   -msgstr ""
50   -
51   -#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:34
52   -#, fuzzy
53   -msgid "Submission could not be saved"
54   -msgstr "Блок персональной информации"
55   -
56   -#: plugins/custom_forms/lib/custom_forms_plugin.rb:8
57   -#, fuzzy
58   -msgid "Enables the creation of forms."
59   -msgstr "Включить активацию для компаний"
60   -
61   -#: plugins/custom_forms/lib/custom_forms_plugin.rb:16
62   -#, fuzzy
63   -msgid "Manage Forms"
64   -msgstr "Управлять%s"
65   -
66   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:9
67   -#, fuzzy
68   -msgid "Admission survey"
69   -msgstr "Участники: %s"
70   -
71   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:13
72   -#, fuzzy
73   -msgid "%{requestor} wants you to fill in some information before joining."
74   -msgstr "%s хочет быть вашим другом"
75   -
76   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:17
77   -#, fuzzy
78   -msgid ""
79   -"Before joining %{requestor}, the administrators of this organization\n"
80   -" wants you to fill in some further information."
81   -msgstr "%s хочет быть вашим другом"
82   -
83   -#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:22
84   -#, fuzzy
85   -msgid "%{requestor} wants you to fill in some further information."
86   -msgstr "%s хочет быть вашим другом"
87   -
88 22 #: plugins/custom_forms/lib/custom_forms_plugin/form.rb:67
89 23 msgid "Invalid string format of access."
90 24 msgstr ""
... ... @@ -124,6 +58,11 @@ msgstr &quot;&quot;
124 58 msgid "%{requestor} wants to fill in some further information."
125 59 msgstr "%s хочет быть вашим другом"
126 60  
  61 +#: plugins/custom_forms/lib/custom_forms_plugin/answer.rb:13
  62 +#, fuzzy
  63 +msgid "is mandatory."
  64 +msgstr "%{fn} обязательное поле"
  65 +
127 66 #: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:14
128 67 #: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:47
129 68 #, fuzzy
... ... @@ -162,129 +101,131 @@ msgstr &quot;&quot;
162 101 msgid "Select field"
163 102 msgstr "Выбрать папки"
164 103  
165   -#: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:101
  104 +#: plugins/custom_forms/lib/custom_forms_plugin/helper.rb:102
166 105 msgid "Hold down Ctrl to select options"
167 106 msgstr ""
168 107  
169   -#: plugins/custom_forms/lib/custom_forms_plugin/answer.rb:13
  108 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:9
170 109 #, fuzzy
171   -msgid "is mandatory."
172   -msgstr "%{fn} обязательное поле"
173   -
174   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:7
175   -#: plugins/custom_forms/views/tasks/custom_forms_plugin/_membership_survey_accept_details.html.erb:8
176   -msgid "Sorry, you can't fill this form yet"
177   -msgstr ""
  110 +msgid "Admission survey"
  111 +msgstr "Участники: %s"
178 112  
179   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:9
180   -#: plugins/custom_forms/views/tasks/custom_forms_plugin/_membership_survey_accept_details.html.erb:10
181   -msgid "Sorry, you can't fill this form anymore"
182   -msgstr ""
  113 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:13
  114 +#, fuzzy
  115 +msgid "%{requestor} wants you to fill in some information before joining."
  116 +msgstr "%s хочет быть вашим другом"
183 117  
184   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:17
185   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:6
186   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:5
187   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:32
188   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:5
189   -msgid "Name"
190   -msgstr "Имя"
  118 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:17
  119 +#, fuzzy
  120 +msgid ""
  121 +"Before joining %{requestor}, the administrators of this organization\n"
  122 +" wants you to fill in some further information."
  123 +msgstr "%s хочет быть вашим другом"
191 124  
192   -#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:18
193   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:41
194   -msgid "Email"
195   -msgstr ""
  125 +#: plugins/custom_forms/lib/custom_forms_plugin/admission_survey.rb:22
  126 +#, fuzzy
  127 +msgid "%{requestor} wants you to fill in some further information."
  128 +msgstr "%s хочет быть вашим другом"
196 129  
197   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:3
  130 +#: plugins/custom_forms/lib/custom_forms_plugin.rb:8
198 131 #, fuzzy
199   -msgid "Submissions for %s"
200   -msgstr "Статистика для %s"
  132 +msgid "Enables the creation of forms."
  133 +msgstr "Включить активацию для компаний"
201 134  
202   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:6
  135 +#: plugins/custom_forms/lib/custom_forms_plugin.rb:16
203 136 #, fuzzy
204   -msgid "There are no submissions for this form."
205   -msgstr "Нет подкатегорий %s."
  137 +msgid "Manage Forms"
  138 +msgstr "Управлять%s"
206 139  
207   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:9
208   -msgid "Download all form responses as"
209   -msgstr ""
  140 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:26
  141 +#, fuzzy
  142 +msgid "Custom form %s was successfully created."
  143 +msgstr "Комментарий успешно удален"
210 144  
211   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
212   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
  145 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:46
213 146 #, fuzzy
214   -msgid "Sort by"
215   -msgstr "Отправлено %s."
  147 +msgid "Custom form %s was successfully updated."
  148 +msgstr "Комментарий успешно удален"
216 149  
217   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
218   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:18
219   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
220   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:14
221   -msgid "Time"
222   -msgstr ""
  150 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:49
  151 +#, fuzzy
  152 +msgid "Form could not be updated"
  153 +msgstr "Адрес не может быть сохранен"
223 154  
224   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:31
225   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:26
  155 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:59
226 156 #, fuzzy
227   -msgid "Back to forms"
228   -msgstr "Назад к %s"
  157 +msgid "Form removed"
  158 +msgstr "Тело статьи"
229 159  
230   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:3
  160 +#: plugins/custom_forms/controllers/custom_forms_plugin_myprofile_controller.rb:61
231 161 #, fuzzy
232   -msgid "Manage forms"
233   -msgstr "Редактировать друзей"
  162 +msgid "Form could not be removed"
  163 +msgstr "Адрес не может быть сохранен"
234 164  
235   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:7
236   -msgid "Period"
  165 +#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:31
  166 +msgid "Submission saved"
237 167 msgstr ""
238 168  
239   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:8
240   -#, fuzzy
241   -msgid "Submissions"
242   -msgstr "Разрешения"
243   -
244   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:9
245   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:13
  169 +#: plugins/custom_forms/controllers/custom_forms_plugin_profile_controller.rb:34
246 170 #, fuzzy
247   -msgid "Access"
248   -msgstr "Подтвердить"
249   -
250   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:10
251   -msgid "Actions"
252   -msgstr "Действия"
  171 +msgid "Submission could not be saved"
  172 +msgstr "Блок персональной информации"
253 173  
254   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:20
255   -msgid "Pending"
  174 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:9
  175 +#: plugins/custom_forms/views/tasks/custom_forms_plugin/_membership_survey_accept_details.html.erb:8
  176 +msgid "Sorry, you can't fill this form yet"
256 177 msgstr ""
257 178  
258   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:21
259   -#, fuzzy
260   -msgid "Are you sure you want to remove this form?"
261   -msgstr "Вы уверены что хотите удалить этот элемент?"
  179 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:11
  180 +#: plugins/custom_forms/views/tasks/custom_forms_plugin/_membership_survey_accept_details.html.erb:10
  181 +msgid "Sorry, you can't fill this form anymore"
  182 +msgstr ""
262 183  
263   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:27
264   -#, fuzzy
265   -msgid "Add a new form"
266   -msgstr "Одна компания"
  184 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:19
  185 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:5
  186 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:5
  187 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:32
  188 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:6
  189 +msgid "Name"
  190 +msgstr "Имя"
267 191  
268   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:9
269   -#, fuzzy
270   -msgid "Back to submissions"
271   -msgstr "Назад к %s"
  192 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:20
  193 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:41
  194 +msgid "Email"
  195 +msgstr ""
272 196  
273   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/edit.html.erb:1
274   -#, fuzzy
275   -msgid "Edit form"
276   -msgstr "Редактировать папку"
  197 +#: plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb:31
  198 +msgid "Your e-mail will be visible to this form's owners."
  199 +msgstr ""
277 200  
278 201 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/new.html.erb:1
279 202 #, fuzzy
280 203 msgid "New form"
281 204 msgstr "Новая папка"
282 205  
  206 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:6
  207 +msgid "Value"
  208 +msgstr ""
  209 +
  210 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:17
  211 +#, fuzzy
  212 +msgid "Add a new option"
  213 +msgstr "Одна компания"
  214 +
  215 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:29
  216 +msgid "Ok"
  217 +msgstr "OK"
  218 +
283 219 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_alternative.html.erb:10
284 220 #, fuzzy
285 221 msgid "Remove alternative"
286 222 msgstr "Удалить участника"
287 223  
  224 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_text_field.html.erb:3
  225 +#, fuzzy
  226 +msgid "Default text:"
  227 +msgstr "Языки"
  228 +
288 229 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_select_field.html.erb:3
289 230 msgid "Type:"
290 231 msgstr "Тип:"
... ... @@ -320,20 +261,16 @@ msgstr &quot;Отклонено&quot;
320 261 msgid "Add a new alternative"
321 262 msgstr "Одна компания"
322 263  
323   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/custom_forms_plugin/_text_field.html.erb:3
324   -#, fuzzy
325   -msgid "Default text:"
326   -msgstr "Языки"
327   -
328   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_field.html.erb:8
329   -#, fuzzy
330   -msgid "Are you sure you want to remove this field?"
331   -msgstr "Вы уверены что хотите удалить этот элемент?"
332   -
333 264 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:6
334 265 msgid "What is the time limit for this form to be filled?"
335 266 msgstr ""
336 267  
  268 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:13
  269 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:9
  270 +#, fuzzy
  271 +msgid "Access"
  272 +msgstr "Подтвердить"
  273 +
337 274 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb:16
338 275 msgid "Triggered on membership request as requirement for approval"
339 276 msgstr ""
... ... @@ -358,10 +295,20 @@ msgstr &quot;Одна компания&quot;
358 295 msgid "Add a new select field"
359 296 msgstr "Одна компания"
360 297  
361   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_option.html.erb:5
  298 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:10
362 299 #, fuzzy
363   -msgid "Are you sure you want to remove this option?"
364   -msgstr "Вы уверены что хотите удалить этот элемент?"
  300 +msgid "Mandatory"
  301 +msgstr "Модератор"
  302 +
  303 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:15
  304 +#, fuzzy
  305 +msgid "Remove field"
  306 +msgstr "Удалить блок"
  307 +
  308 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/edit.html.erb:1
  309 +#, fuzzy
  310 +msgid "Edit form"
  311 +msgstr "Редактировать папку"
365 312  
366 313 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:3
367 314 #, fuzzy
... ... @@ -374,36 +321,103 @@ msgid &quot;There are no pending submissions for this form.&quot;
374 321 msgstr "Нет подкатегорий %s."
375 322  
376 323 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
  324 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
  325 +#, fuzzy
  326 +msgid "Sort by"
  327 +msgstr "Отправлено %s."
  328 +
  329 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
  330 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:14
  331 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:13
  332 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:18
  333 +msgid "Time"
  334 +msgstr ""
  335 +
  336 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:9
377 337 #: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:13
378 338 msgid "User"
379 339 msgstr "Пользователь"
380 340  
381   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:6
382   -msgid "Value"
  341 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/pending.html.erb:26
  342 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:31
  343 +#, fuzzy
  344 +msgid "Back to forms"
  345 +msgstr "Назад к %s"
  346 +
  347 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:10
  348 +#, fuzzy
  349 +msgid "Submission date"
  350 +msgstr "Разрешения"
  351 +
  352 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:14
  353 +#, fuzzy
  354 +msgid "Author"
  355 +msgstr "Автор"
  356 +
  357 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:26
  358 +msgid "Unauthenticated"
383 359 msgstr ""
384 360  
385   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:17
  361 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb:48
386 362 #, fuzzy
387   -msgid "Add a new option"
388   -msgstr "Одна компания"
  363 +msgid "Back to submissions"
  364 +msgstr "Назад к %s"
389 365  
390   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_edit_select.html.erb:29
391   -msgid "Ok"
392   -msgstr "OK"
  366 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_field.html.erb:8
  367 +#, fuzzy
  368 +msgid "Are you sure you want to remove this field?"
  369 +msgstr "Вы уверены что хотите удалить этот элемент?"
393 370  
394   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:10
  371 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_empty_option.html.erb:5
395 372 #, fuzzy
396   -msgid "Mandatory"
397   -msgstr "Модератор"
  373 +msgid "Are you sure you want to remove this option?"
  374 +msgstr "Вы уверены что хотите удалить этот элемент?"
398 375  
399   -#: plugins/custom_forms/views/custom_forms_plugin_myprofile/_field.html.erb:15
  376 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:3
400 377 #, fuzzy
401   -msgid "Remove field"
402   -msgstr "Удалить блок"
  378 +msgid "Submissions for %s"
  379 +msgstr "Статистика для %s"
403 380  
  381 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:6
404 382 #, fuzzy
405   -#~ msgid "Author name"
406   -#~ msgstr "Автор"
  383 +msgid "There are no submissions for this form."
  384 +msgstr "Нет подкатегорий %s."
  385 +
  386 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/submissions.html.erb:9
  387 +msgid "Download all form responses as"
  388 +msgstr ""
  389 +
  390 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:3
  391 +#, fuzzy
  392 +msgid "Manage forms"
  393 +msgstr "Редактировать друзей"
  394 +
  395 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:7
  396 +msgid "Period"
  397 +msgstr ""
  398 +
  399 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:8
  400 +#, fuzzy
  401 +msgid "Submissions"
  402 +msgstr "Разрешения"
  403 +
  404 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:10
  405 +msgid "Actions"
  406 +msgstr "Действия"
  407 +
  408 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:20
  409 +msgid "Pending"
  410 +msgstr ""
  411 +
  412 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:21
  413 +#, fuzzy
  414 +msgid "Are you sure you want to remove this form?"
  415 +msgstr "Вы уверены что хотите удалить этот элемент?"
  416 +
  417 +#: plugins/custom_forms/views/custom_forms_plugin_myprofile/index.html.erb:27
  418 +#, fuzzy
  419 +msgid "Add a new form"
  420 +msgstr "Одна компания"
407 421  
408 422 #, fuzzy
409 423 #~ msgid "Author email"
... ...
plugins/custom_forms/public/field.js
... ... @@ -40,7 +40,7 @@ var customFormsPlugin = {
40 40 if (confirm(confirmMsg)) {
41 41 fb = jQuery(button).closest('.field-box');
42 42 jQuery('input.destroy-field', fb).val(1);
43   - jQuery('> div', fb).slideUp({easing:'linear', complete:function(){fb.slideUp({easing:'linear', duration:250})}});
  43 + jQuery(fb).slideUp(600, 'linear');
44 44 }
45 45 },
46 46  
... ...
plugins/custom_forms/public/style.css
... ... @@ -89,3 +89,32 @@ tr.addition-buttons {
89 89 border: 1px solid #BBB;
90 90 border-radius: 4px;
91 91 }
  92 +
  93 +#custom-forms-plugin_submission .notify {
  94 + padding: 8px;
  95 + color: rgba(0,0,0,0.5);
  96 +}
  97 +
  98 +#custom-forms-plugin_submission-view th {
  99 + border: none;
  100 + text-align: right;
  101 +}
  102 +#custom-forms-plugin_submission-view td {
  103 + padding: 5px 0;
  104 +}
  105 +
  106 +#custom-forms-plugin_submission-view td img {
  107 + vertical-align: middle;
  108 +}
  109 +
  110 +#custom-forms-plugin_submission-view td ul {
  111 + padding: 0;
  112 + margin: 0;
  113 +}
  114 +#custom-forms-plugin_submission-view td li {
  115 + list-style: none;
  116 + background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><rect x="3.5" y="3.5" width="10" height="10" fill="black" stroke="black" fill-opacity="0.2" opacity="0.4" ry="1"/><path d="M 4,5 8.5,13 16,0 8.5,8.5 z"/></svg>') no-repeat 0 50%;
  117 + padding: 0 0 0 20px;
  118 + margin: 0;
  119 +}
  120 +
... ...
plugins/custom_forms/views/custom_forms_plugin_myprofile/_form.html.erb
... ... @@ -5,7 +5,7 @@
5 5 <%= required labelled_form_field _('Name'), f.text_field(:name) %>
6 6 <%= labelled_form_field(_('What is the time limit for this form to be filled?'), (
7 7 date_range_field('form[begining]', 'form[ending]', @form.begining, @form.ending,
8   - '%Y-%m-%d %H:%M',
  8 + '%Y/%m/%d %H:%M',
9 9 { :time => true, :change_month => true, :change_year => true,
10 10 :date_format => 'yy-mm-dd', :time_format => 'hh:mm' },
11 11 { :size => 14 })
... ...
plugins/custom_forms/views/custom_forms_plugin_myprofile/show_submission.html.erb
  1 +<div id="custom-forms-plugin_submission-view">
  2 +
1 3 <h1><%= @form.name %></h1>
2 4 <p><%= @form.description %></p>
3 5  
4   -<%= fields_for :submission, @submission do |f| %>
5   - <%= render :partial => 'shared/form_submission', :locals => {:f => f} %>
  6 +<% sanitizer = ActionView::Base.white_list_sanitizer %>
  7 +
  8 +<table>
  9 + <tr>
  10 + <th><%= _('Submission date') %></th>
  11 + <td><%= @submission.updated_at.strftime('%Y/%m/%d %T %Z') %><td>
  12 + </tr>
  13 + <tr>
  14 + <th><%= _('Author') %></th>
  15 + <% if author = @submission.profile %>
  16 + <td>
  17 + <%= link_to(image_tag(profile_icon(author, :portrait)), author.url) %>
  18 + <%= link_to(author.name, author.url) %>
  19 + </td>
  20 + <% else %>
  21 + <td>
  22 + <%=
  23 + img = image_tag gravatar_profile_image_url @submission.author_email, :size=>64, :d => gravatar_default
  24 + sanitizer.sanitize link_to(img +' '+ @submission.author_name, "mailto:#{@submission.author_email}")
  25 + %>
  26 + <span>(<%= _('Unauthenticated') %>)<span>
  27 + </td>
  28 + <% end %>
  29 + </tr>
  30 +<% @submission.q_and_a.each do |field, answer| %>
  31 + <tr>
  32 + <th><%= sanitizer.sanitize field.name %></th>
  33 + <td><%=
  34 + answer = if answer.field.alternatives.blank?
  35 + answer.to_s.gsub("\n", '<br>')
  36 + else
  37 + content_tag :ul do
  38 + answer.to_text_list.map {|a| content_tag :li, a }.join("\n")
  39 + end
  40 + end
  41 + sanitizer.sanitize answer
  42 + %></td>
  43 + </tr>
6 44 <% end %>
  45 +</table>
7 46  
8 47 <% button_bar do %>
9 48 <%= button :back, _('Back to submissions'), :action => 'submissions', :id => @form.id %>
10 49 <% end %>
  50 +
  51 +</div><!-- end id="custom-forms-plugin_submission-view" -->
... ...
plugins/custom_forms/views/custom_forms_plugin_profile/show.html.erb
  1 +<div id="custom-forms-plugin_submission">
  2 +
1 3 <h1><%= @form.name %></h1>
2 4 <p><%= @form.description %></p>
3 5  
... ... @@ -26,6 +28,7 @@
26 28 <% else %>
27 29 <%= submit_button :save, c_('Save'), :cancel => {:controller => :profile, :profile => profile.identifier} %>
28 30 <% end %>
  31 + <div class="notify"><%= _("Your e-mail will be visible to this form's owners.") %></div>
29 32 <% end %>
30 33  
31 34 <% end %>
... ... @@ -34,3 +37,5 @@
34 37 <%= render :partial => 'shared/form_submission', :locals => {:f => f} %>
35 38 <% end %>
36 39 <% end %>
  40 +
  41 +</div><!-- end id="custom-forms-plugin_submission" -->
... ...
plugins/display_content/po/de/display_content.po
... ... @@ -6,8 +6,8 @@
6 6 #
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.1-882-g0c116ba\n"
10   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
11 11 "PO-Revision-Date: 2015-02-23 11:37+0200\n"
12 12 "Last-Translator: Michal Čihař <michal@cihar.com>\n"
13 13 "Language-Team: German <https://hosted.weblate.org/projects/noosfero/plugin-"
... ... @@ -19,6 +19,12 @@ msgstr &quot;&quot;
19 19 "Plural-Forms: nplurals=2; plural=n != 1;\n"
20 20 "X-Generator: Weblate 2.3-dev\n"
21 21  
  22 +#: plugins/display_content/lib/display_content_plugin.rb:10
  23 +msgid ""
  24 +"A plugin that adds a block where you could choose any of your content and "
  25 +"display it."
  26 +msgstr ""
  27 +
22 28 #: plugins/display_content/lib/display_content_block.rb:34
23 29 #, fuzzy
24 30 msgid "Display your contents"
... ... @@ -62,20 +68,6 @@ msgstr &quot;&quot;
62 68 msgid "%{month_name} %{day}"
63 69 msgstr ""
64 70  
65   -#: plugins/display_content/lib/display_content_plugin.rb:10
66   -msgid ""
67   -"A plugin that adds a block where you could choose any of your content and "
68   -"display it."
69   -msgstr ""
70   -
71   -#: plugins/display_content/views/box_organizer/_choose_directly.html.erb:5
72   -msgid "Dinamically load children of selected folders"
73   -msgstr ""
74   -
75   -#: plugins/display_content/views/box_organizer/_choose_directly.html.erb:9
76   -msgid "Limit:"
77   -msgstr ""
78   -
79 71 #: plugins/display_content/views/box_organizer/_display_content_block.html.erb:5
80 72 msgid "Choose which attributes should be displayed and drag to reorder them:"
81 73 msgstr ""
... ... @@ -114,3 +106,11 @@ msgstr &quot;Zeige einen Ihrer Inhalte an&quot;
114 106 #, fuzzy
115 107 msgid "more"
116 108 msgstr "Mehr zeigen"
  109 +
  110 +#: plugins/display_content/views/box_organizer/_choose_directly.html.erb:5
  111 +msgid "Dinamically load children of selected folders"
  112 +msgstr ""
  113 +
  114 +#: plugins/display_content/views/box_organizer/_choose_directly.html.erb:9
  115 +msgid "Limit:"
  116 +msgstr ""
... ...
plugins/display_content/po/display_content.pot
... ... @@ -6,8 +6,8 @@
6 6 #, fuzzy
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.1-882-g0c116ba\n"
10   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
11 11 "PO-Revision-Date: 2015-08-06 17:21-0300\n"
12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 13 "Language-Team: LANGUAGE <LL@li.org>\n"
... ... @@ -17,6 +17,12 @@ msgstr &quot;&quot;
17 17 "Content-Transfer-Encoding: 8bit\n"
18 18 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
19 19  
  20 +#: plugins/display_content/lib/display_content_plugin.rb:10
  21 +msgid ""
  22 +"A plugin that adds a block where you could choose any of your content and "
  23 +"display it."
  24 +msgstr ""
  25 +
20 26 #: plugins/display_content/lib/display_content_block.rb:34
21 27 msgid "Display your contents"
22 28 msgstr ""
... ... @@ -55,20 +61,6 @@ msgstr &quot;&quot;
55 61 msgid "%{month_name} %{day}"
56 62 msgstr ""
57 63  
58   -#: plugins/display_content/lib/display_content_plugin.rb:10
59   -msgid ""
60   -"A plugin that adds a block where you could choose any of your content and "
61   -"display it."
62   -msgstr ""
63   -
64   -#: plugins/display_content/views/box_organizer/_choose_directly.html.erb:5
65   -msgid "Dinamically load children of selected folders"
66   -msgstr ""
67   -
68   -#: plugins/display_content/views/box_organizer/_choose_directly.html.erb:9
69   -msgid "Limit:"
70   -msgstr ""
71   -
72 64 #: plugins/display_content/views/box_organizer/_display_content_block.html.erb:5
73 65 msgid "Choose which attributes should be displayed and drag to reorder them:"
74 66 msgstr ""
... ... @@ -104,3 +96,11 @@ msgstr &quot;&quot;
104 96 #: plugins/display_content/views/box_organizer/_choose_by_content_type.html.erb:7
105 97 msgid "more"
106 98 msgstr ""
  99 +
  100 +#: plugins/display_content/views/box_organizer/_choose_directly.html.erb:5
  101 +msgid "Dinamically load children of selected folders"
  102 +msgstr ""
  103 +
  104 +#: plugins/display_content/views/box_organizer/_choose_directly.html.erb:9
  105 +msgid "Limit:"
  106 +msgstr ""
... ...
plugins/display_content/po/es/display_content.po
... ... @@ -5,8 +5,8 @@
5 5 #
6 6 msgid ""
7 7 msgstr ""
8   -"Project-Id-Version: 1.1-882-g0c116ba\n"
9   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  8 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  9 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
10 10 "PO-Revision-Date: 2015-03-09 09:51+0200\n"
11 11 "Last-Translator: Michal Čihař <michal@cihar.com>\n"
12 12 "Language-Team: Spanish <https://hosted.weblate.org/projects/noosfero/plugin-"
... ... @@ -18,6 +18,12 @@ msgstr &quot;&quot;
18 18 "Plural-Forms: nplurals=2; plural=n != 1;\n"
19 19 "X-Generator: Weblate 2.3-dev\n"
20 20  
  21 +#: plugins/display_content/lib/display_content_plugin.rb:10
  22 +msgid ""
  23 +"A plugin that adds a block where you could choose any of your content and "
  24 +"display it."
  25 +msgstr ""
  26 +
21 27 #: plugins/display_content/lib/display_content_block.rb:34
22 28 #, fuzzy
23 29 msgid "Display your contents"
... ... @@ -61,20 +67,6 @@ msgstr &quot;%{day} de %{month_name} de %{year}&quot;
61 67 msgid "%{month_name} %{day}"
62 68 msgstr ""
63 69  
64   -#: plugins/display_content/lib/display_content_plugin.rb:10
65   -msgid ""
66   -"A plugin that adds a block where you could choose any of your content and "
67   -"display it."
68   -msgstr ""
69   -
70   -#: plugins/display_content/views/box_organizer/_choose_directly.html.erb:5
71   -msgid "Dinamically load children of selected folders"
72   -msgstr ""
73   -
74   -#: plugins/display_content/views/box_organizer/_choose_directly.html.erb:9
75   -msgid "Limit:"
76   -msgstr ""
77   -
78 70 #: plugins/display_content/views/box_organizer/_display_content_block.html.erb:5
79 71 msgid "Choose which attributes should be displayed and drag to reorder them:"
80 72 msgstr ""
... ... @@ -113,3 +105,11 @@ msgstr &quot;Mostrar alguno de tus contenidos&quot;
113 105 #, fuzzy
114 106 msgid "more"
115 107 msgstr "Ver más"
  108 +
  109 +#: plugins/display_content/views/box_organizer/_choose_directly.html.erb:5
  110 +msgid "Dinamically load children of selected folders"
  111 +msgstr ""
  112 +
  113 +#: plugins/display_content/views/box_organizer/_choose_directly.html.erb:9
  114 +msgid "Limit:"
  115 +msgstr ""
... ...
plugins/display_content/po/fr/display_content.po
... ... @@ -4,9 +4,9 @@
4 4 # , 2009.
5 5 msgid ""
6 6 msgstr ""
7   -"Project-Id-Version: 1.1-882-g0c116ba\n"
  7 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
8 8 "Report-Msgid-Bugs-To: \n"
9   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
10 10 "PO-Revision-Date: 2015-07-03 00:31+0200\n"
11 11 "Last-Translator: Christophe DANIEL <papaeng@gmail.com>\n"
12 12 "Language-Team: French <https://hosted.weblate.org/projects/noosfero/plugin-"
... ... @@ -18,6 +18,14 @@ msgstr &quot;&quot;
18 18 "Plural-Forms: nplurals=2; plural=n > 1;\n"
19 19 "X-Generator: Weblate 2.4-dev\n"
20 20  
  21 +#: plugins/display_content/lib/display_content_plugin.rb:10
  22 +msgid ""
  23 +"A plugin that adds a block where you could choose any of your content and "
  24 +"display it."
  25 +msgstr ""
  26 +"Un plugin qui permet d'ajouter une zone ou vous pourrez y afficher le "
  27 +"contenue de votre choix."
  28 +
21 29 #: plugins/display_content/lib/display_content_block.rb:34
22 30 msgid "Display your contents"
23 31 msgstr "Afficher vos contenus"
... ... @@ -58,23 +66,6 @@ msgstr &quot;%{day} %{month_name} %{year}&quot;
58 66 msgid "%{month_name} %{day}"
59 67 msgstr "%{day} %{month_name}"
60 68  
61   -#: plugins/display_content/lib/display_content_plugin.rb:10
62   -msgid ""
63   -"A plugin that adds a block where you could choose any of your content and "
64   -"display it."
65   -msgstr ""
66   -"Un plugin qui permet d'ajouter une zone ou vous pourrez y afficher le "
67   -"contenue de votre choix."
68   -
69   -#: plugins/display_content/views/box_organizer/_choose_directly.html.erb:5
70   -msgid "Dinamically load children of selected folders"
71   -msgstr ""
72   -"charger dynamiquement les sous répertoires des répertoires sélectionnés"
73   -
74   -#: plugins/display_content/views/box_organizer/_choose_directly.html.erb:9
75   -msgid "Limit:"
76   -msgstr "Limite :"
77   -
78 69 #: plugins/display_content/views/box_organizer/_display_content_block.html.erb:5
79 70 msgid "Choose which attributes should be displayed and drag to reorder them:"
80 71 msgstr ""
... ... @@ -112,3 +103,12 @@ msgstr &quot;Afficher le type de contenu :&quot;
112 103 #: plugins/display_content/views/box_organizer/_choose_by_content_type.html.erb:7
113 104 msgid "more"
114 105 msgstr "plus"
  106 +
  107 +#: plugins/display_content/views/box_organizer/_choose_directly.html.erb:5
  108 +msgid "Dinamically load children of selected folders"
  109 +msgstr ""
  110 +"charger dynamiquement les sous répertoires des répertoires sélectionnés"
  111 +
  112 +#: plugins/display_content/views/box_organizer/_choose_directly.html.erb:9
  113 +msgid "Limit:"
  114 +msgstr "Limite :"
... ...
plugins/display_content/po/hy/display_content.po
... ... @@ -5,8 +5,8 @@
5 5 #
6 6 msgid ""
7 7 msgstr ""
8   -"Project-Id-Version: 1.1-882-g0c116ba\n"
9   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  8 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  9 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
10 10 "PO-Revision-Date: 2009-10-26 16:20-0300\n"
11 11 "Last-Translator: Anahit Minassian <anahit.minassian@cooperation.net>\n"
12 12 "Language-Team: LANGUAGE <LL@li.org>\n"
... ... @@ -17,6 +17,12 @@ msgstr &quot;&quot;
17 17 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18 18 "X-Generator: Pootle 1.1.0\n"
19 19  
  20 +#: plugins/display_content/lib/display_content_plugin.rb:10
  21 +msgid ""
  22 +"A plugin that adds a block where you could choose any of your content and "
  23 +"display it."
  24 +msgstr ""
  25 +
20 26 #: plugins/display_content/lib/display_content_block.rb:34
21 27 #, fuzzy
22 28 msgid "Display your contents"
... ... @@ -58,20 +64,6 @@ msgstr &quot;&quot;
58 64 msgid "%{month_name} %{day}"
59 65 msgstr ""
60 66  
61   -#: plugins/display_content/lib/display_content_plugin.rb:10
62   -msgid ""
63   -"A plugin that adds a block where you could choose any of your content and "
64   -"display it."
65   -msgstr ""
66   -
67   -#: plugins/display_content/views/box_organizer/_choose_directly.html.erb:5
68   -msgid "Dinamically load children of selected folders"
69   -msgstr ""
70   -
71   -#: plugins/display_content/views/box_organizer/_choose_directly.html.erb:9
72   -msgid "Limit:"
73   -msgstr ""
74   -
75 67 #: plugins/display_content/views/box_organizer/_display_content_block.html.erb:5
76 68 msgid "Choose which attributes should be displayed and drag to reorder them:"
77 69 msgstr ""
... ... @@ -110,3 +102,11 @@ msgstr &quot;Ցուցադրիր հոդվածներիցդ որևէ մեկը:&quot;
110 102 #, fuzzy
111 103 msgid "more"
112 104 msgstr "ավելին..."
  105 +
  106 +#: plugins/display_content/views/box_organizer/_choose_directly.html.erb:5
  107 +msgid "Dinamically load children of selected folders"
  108 +msgstr ""
  109 +
  110 +#: plugins/display_content/views/box_organizer/_choose_directly.html.erb:9
  111 +msgid "Limit:"
  112 +msgstr ""
... ...
plugins/display_content/po/pt/display_content.po
... ... @@ -11,8 +11,8 @@
11 11 #
12 12 msgid ""
13 13 msgstr ""
14   -"Project-Id-Version: 1.1-882-g0c116ba\n"
15   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  14 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  15 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
16 16 "PO-Revision-Date: 2015-03-12 15:14+0200\n"
17 17 "Last-Translator: daniel <dtygel@eita.org.br>\n"
18 18 "Language-Team: Portuguese <https://hosted.weblate.org/projects/noosfero/"
... ... @@ -24,6 +24,14 @@ msgstr &quot;&quot;
24 24 "Plural-Forms: nplurals=2; plural=n != 1;\n"
25 25 "X-Generator: Weblate 2.3-dev\n"
26 26  
  27 +#: plugins/display_content/lib/display_content_plugin.rb:10
  28 +msgid ""
  29 +"A plugin that adds a block where you could choose any of your content and "
  30 +"display it."
  31 +msgstr ""
  32 +"Um plugin que adiciona blocos onde você pode escolher qualuer um dos seus "
  33 +"conteúdos e mostrá-lo."
  34 +
27 35 #: plugins/display_content/lib/display_content_block.rb:34
28 36 msgid "Display your contents"
29 37 msgstr "Apresente seus conteúdos"
... ... @@ -64,22 +72,6 @@ msgstr &quot;%{day} de %{month_name} de %{year}&quot;
64 72 msgid "%{month_name} %{day}"
65 73 msgstr "%{day} de %{month_name}"
66 74  
67   -#: plugins/display_content/lib/display_content_plugin.rb:10
68   -msgid ""
69   -"A plugin that adds a block where you could choose any of your content and "
70   -"display it."
71   -msgstr ""
72   -"Um plugin que adiciona blocos onde você pode escolher qualuer um dos seus "
73   -"conteúdos e mostrá-lo."
74   -
75   -#: plugins/display_content/views/box_organizer/_choose_directly.html.erb:5
76   -msgid "Dinamically load children of selected folders"
77   -msgstr "Carregar dinamicamente filhos das pastas selecionadas"
78   -
79   -#: plugins/display_content/views/box_organizer/_choose_directly.html.erb:9
80   -msgid "Limit:"
81   -msgstr "Limite:"
82   -
83 75 #: plugins/display_content/views/box_organizer/_display_content_block.html.erb:5
84 76 msgid "Choose which attributes should be displayed and drag to reorder them:"
85 77 msgstr ""
... ... @@ -116,3 +108,11 @@ msgstr &quot;Mostrar tipos de conteúdos:&quot;
116 108 #: plugins/display_content/views/box_organizer/_choose_by_content_type.html.erb:7
117 109 msgid "more"
118 110 msgstr "mais"
  111 +
  112 +#: plugins/display_content/views/box_organizer/_choose_directly.html.erb:5
  113 +msgid "Dinamically load children of selected folders"
  114 +msgstr "Carregar dinamicamente filhos das pastas selecionadas"
  115 +
  116 +#: plugins/display_content/views/box_organizer/_choose_directly.html.erb:9
  117 +msgid "Limit:"
  118 +msgstr "Limite:"
... ...
plugins/driven_signup/po/driven_signup.pot
... ... @@ -6,8 +6,8 @@
6 6 #, fuzzy
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.1-882-g0c116ba\n"
10   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
11 11 "PO-Revision-Date: 2015-09-16 21:45-0300\n"
12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 13 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...
plugins/environment_notification/po/environment_notification.pot
... ... @@ -6,8 +6,8 @@
6 6 #, fuzzy
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.2-514-gc258618\n"
10   -"POT-Creation-Date: 2015-09-24 19:03-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
11 11 "PO-Revision-Date: 2015-09-14 12:12-0000\n"
12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 13 "Language-Team: LANGUAGE <LL@li.org>\n"
... ... @@ -17,7 +17,7 @@ msgstr &quot;&quot;
17 17 "Content-Transfer-Encoding: 8bit\n"
18 18 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
19 19  
20   -#: plugins/environment_notification/lib/environment_notification_plugin.rb:11
  20 +#: plugins/environment_notification/lib/environment_notification_plugin.rb:8
21 21 msgid "A plugin for environment notifications."
22 22 msgstr ""
23 23  
... ... @@ -25,153 +25,153 @@ msgstr &quot;&quot;
25 25 msgid "Notification Manager"
26 26 msgstr ""
27 27  
28   -#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:14
  28 +#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:19
29 29 msgid "Notification successfully created"
30 30 msgstr ""
31 31  
32   -#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:17
  32 +#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:22
33 33 msgid "Notification couldn't be created"
34 34 msgstr ""
35 35  
36   -#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:26
  36 +#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:31
37 37 msgid "The notification was deleted."
38 38 msgstr ""
39 39  
40   -#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:28
  40 +#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:33
41 41 msgid "Could not remove the notification"
42 42 msgstr ""
43 43  
44   -#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:38
  44 +#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:43
45 45 msgid "The notification was edited."
46 46 msgstr ""
47 47  
48   -#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:40
  48 +#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:45
49 49 msgid "Could not edit the notification."
50 50 msgstr ""
51 51  
52   -#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:52
  52 +#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:57
53 53 msgid "The status of the notification was changed."
54 54 msgstr ""
55 55  
56   -#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:54
  56 +#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:59
57 57 msgid "Could not change the status of the notification."
58 58 msgstr ""
59 59  
60 60 #: plugins/environment_notification/views/environment_notification_plugin_admin/show_notification.html.erb:8
61   -msgid "There are active notifications in this environment! You can "
  61 +msgid "There are active notifications in this environment!"
62 62 msgstr ""
63 63  
64   -#: plugins/environment_notification/views/environment_notification_plugin_admin/show_notification.html.erb:10
65   -msgid "manage all notifications here."
  64 +#: plugins/environment_notification/views/environment_notification_plugin_admin/show_notification.html.erb:9
  65 +msgid "Manage all notifications here."
66 66 msgstr ""
67 67  
68   -#: plugins/environment_notification/views/environment_notification_plugin_admin/show_notification.html.erb:28
  68 +#: plugins/environment_notification/views/environment_notification_plugin_admin/show_notification.html.erb:26
69 69 msgid "Do not show anymore"
70 70 msgstr ""
71 71  
72   -#: plugins/environment_notification/views/environment_notification_plugin_admin/show_notification.html.erb:29
  72 +#: plugins/environment_notification/views/environment_notification_plugin_admin/show_notification.html.erb:27
73 73 msgid "Hide for now"
74 74 msgstr ""
75 75  
76   -#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:3
77   -msgid "Environment Notifications"
  76 +#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:4
  77 +msgid "Back"
78 78 msgstr ""
79 79  
80   -#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:7
81   -msgid "New Notification"
  80 +#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:10
  81 +msgid "Optional Title:"
82 82 msgstr ""
83 83  
84   -#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:10
85   -msgid "Back to control panel"
  84 +#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:12
  85 +msgid "Enter your message here:"
86 86 msgstr ""
87 87  
88   -#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:16
89   -msgid "Notifications"
  88 +#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:14
  89 +msgid ""
  90 +"Obs: You can use %{name} and %{email} variables to put the user's name and "
  91 +"email in the message."
90 92 msgstr ""
91 93  
92   -#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:19
93   -msgid "Actions"
  94 +#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:17
  95 +msgid "Notifications Status"
94 96 msgstr ""
95 97  
96   -#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:30
97   -msgid "Deactivate"
  98 +#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:19
  99 +msgid "Notifications Color/Type"
98 100 msgstr ""
99 101  
100   -#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:30
101   -#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:32
102   -msgid "Do you want to change the status of this notification?"
  102 +#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:19
  103 +msgid "Blue - Information"
103 104 msgstr ""
104 105  
105   -#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:32
106   -msgid "Activate"
  106 +#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:19
  107 +msgid "Yellow - Warning"
107 108 msgstr ""
108 109  
109   -#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:34
110   -msgid "Edit"
  110 +#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:19
  111 +msgid "Green - Success"
111 112 msgstr ""
112 113  
113   -#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:35
114   -msgid "Delete"
  114 +#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:19
  115 +msgid "Red - Danger"
115 116 msgstr ""
116 117  
117   -#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:35
118   -msgid "Do you want to delete this notification?"
  118 +#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:22
  119 +msgid "Display only in the homepage"
119 120 msgstr ""
120 121  
121   -#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:3
122   -msgid "Back"
  122 +#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:26
  123 +msgid "Display to not logged users too"
123 124 msgstr ""
124 125  
125   -#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:9
126   -msgid "Optional Title:"
  126 +#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:30
  127 +msgid "Display popup until user close the notification"
127 128 msgstr ""
128 129  
129   -#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:11
130   -msgid "Enter your message here:"
  130 +#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:34
  131 +msgid "Save"
131 132 msgstr ""
132 133  
133   -#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:13
134   -msgid ""
135   -"Obs: You can use %{name} and %{email} variables to put the user's name and "
136   -"email in the message."
  134 +#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:3
  135 +msgid "Environment Notifications"
137 136 msgstr ""
138 137  
139   -#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:16
140   -msgid "Notifications Status"
  138 +#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:7
  139 +msgid "New Notification"
141 140 msgstr ""
142 141  
143   -#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:18
144   -msgid "Notifications Color/Type"
  142 +#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:10
  143 +msgid "Back to control panel"
145 144 msgstr ""
146 145  
147   -#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:18
148   -msgid "Blue - Information"
  146 +#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:16
  147 +msgid "Notifications"
149 148 msgstr ""
150 149  
151   -#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:18
152   -msgid "Yellow - Warning"
  150 +#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:19
  151 +msgid "Actions"
153 152 msgstr ""
154 153  
155   -#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:18
156   -msgid "Green - Success"
  154 +#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:30
  155 +msgid "Deactivate"
157 156 msgstr ""
158 157  
159   -#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:18
160   -msgid "Red - Danger"
  158 +#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:30
  159 +#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:32
  160 +msgid "Do you want to change the status of this notification?"
161 161 msgstr ""
162 162  
163   -#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:21
164   -msgid "Display only in the homepage"
  163 +#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:32
  164 +msgid "Activate"
165 165 msgstr ""
166 166  
167   -#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:25
168   -msgid "Display to not logged users too"
  167 +#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:34
  168 +msgid "Edit"
169 169 msgstr ""
170 170  
171   -#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:29
172   -msgid "Display popup until user close the notification"
  171 +#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:35
  172 +msgid "Delete"
173 173 msgstr ""
174 174  
175   -#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:33
176   -msgid "Save"
  175 +#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:35
  176 +msgid "Do you want to delete this notification?"
177 177 msgstr ""
... ...
plugins/environment_notification/po/pt/environment_notification.po
... ... @@ -5,8 +5,8 @@
5 5 #
6 6 msgid ""
7 7 msgstr ""
8   -"Project-Id-Version: 1.2-514-gbe9e36b\n"
9   -"POT-Creation-Date: 2015-09-24 18:52-0000\n"
  8 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  9 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
10 10 "PO-Revision-Date: 2015-09-14 12:12-0000\n"
11 11 "Last-Translator: FULL NAME <arthurmde@gmail.com>\n"
12 12 "Language-Team: Portuguese\n"
... ... @@ -16,7 +16,7 @@ msgstr &quot;&quot;
16 16 "Content-Transfer-Encoding: 8bit\n"
17 17 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
18 18  
19   -#: plugins/environment_notification/lib/environment_notification_plugin.rb:11
  19 +#: plugins/environment_notification/lib/environment_notification_plugin.rb:8
20 20 msgid "A plugin for environment notifications."
21 21 msgstr "Plugin para notificações do ambiente"
22 22  
... ... @@ -24,112 +24,67 @@ msgstr &quot;Plugin para notificações do ambiente&quot;
24 24 msgid "Notification Manager"
25 25 msgstr "Gerenciador de Notificações"
26 26  
27   -#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:14
  27 +#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:19
28 28 msgid "Notification successfully created"
29 29 msgstr "Notificação criada com sucesso"
30 30  
31   -#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:17
  31 +#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:22
32 32 msgid "Notification couldn't be created"
33 33 msgstr "Não foi possível criar notificação"
34 34  
35   -#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:26
  35 +#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:31
36 36 msgid "The notification was deleted."
37 37 msgstr "A notificação foi removida"
38 38  
39   -#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:28
  39 +#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:33
40 40 msgid "Could not remove the notification"
41 41 msgstr "Não foi possível remover a notificação"
42 42  
43   -#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:38
  43 +#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:43
44 44 msgid "The notification was edited."
45 45 msgstr "A notificação foi editada."
46 46  
47   -#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:40
  47 +#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:45
48 48 msgid "Could not edit the notification."
49 49 msgstr "Não foi possível editar a notificação."
50 50  
51   -#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:52
  51 +#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:57
52 52 msgid "The status of the notification was changed."
53 53 msgstr "O status da notificação foi modificado"
54 54  
55   -#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:54
  55 +#: plugins/environment_notification/controllers/environment_notification_plugin_admin_controller.rb:59
56 56 msgid "Could not change the status of the notification."
57 57 msgstr "Não foi possível alterar o status da notificação"
58 58  
59 59 #: plugins/environment_notification/views/environment_notification_plugin_admin/show_notification.html.erb:8
60   -msgid "There are active notifications in this environment! You can "
61   -msgstr "Existem notificações ativas neste ambiente! Você pode "
  60 +msgid "There are active notifications in this environment!"
  61 +msgstr "Existem notificações ativas neste ambiente!"
62 62  
63   -#: plugins/environment_notification/views/environment_notification_plugin_admin/show_notification.html.erb:10
64   -msgid "manage all notifications here."
65   -msgstr "gerenciar todas as notificações aqui."
  63 +#: plugins/environment_notification/views/environment_notification_plugin_admin/show_notification.html.erb:9
  64 +msgid "Manage all notifications here."
  65 +msgstr "Gerencie todas as notificações aqui."
66 66  
67   -#: plugins/environment_notification/views/environment_notification_plugin_admin/show_notification.html.erb:28
  67 +#: plugins/environment_notification/views/environment_notification_plugin_admin/show_notification.html.erb:26
68 68 msgid "Do not show anymore"
69 69 msgstr "Não mostrar mais"
70 70  
71   -#: plugins/environment_notification/views/environment_notification_plugin_admin/show_notification.html.erb:29
  71 +#: plugins/environment_notification/views/environment_notification_plugin_admin/show_notification.html.erb:27
72 72 msgid "Hide for now"
73 73 msgstr "Ocultar momentaneamente"
74 74  
75   -#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:3
76   -msgid "Environment Notifications"
77   -msgstr "Notificações do Ambiente"
78   -
79   -#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:7
80   -msgid "New Notification"
81   -msgstr "Nova Notificação"
82   -
83   -#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:10
84   -msgid "Back to control panel"
85   -msgstr "Voltar ao Painel de Controle"
86   -
87   -#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:16
88   -msgid "Notifications"
89   -msgstr "Notificações"
90   -
91   -#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:19
92   -msgid "Actions"
93   -msgstr "Ações"
94   -
95   -#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:30
96   -msgid "Deactivate"
97   -msgstr "Desativar"
98   -
99   -#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:30
100   -#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:32
101   -msgid "Do you want to change the status of this notification?"
102   -msgstr "Você quer alterar o status dessa notificação?"
103   -
104   -#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:32
105   -msgid "Activate"
106   -msgstr "Ativar"
107   -
108   -#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:34
109   -msgid "Edit"
110   -msgstr "Editar"
111   -
112   -#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:35
113   -msgid "Delete"
114   -msgstr "Remover"
115   -
116   -#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:35
117   -msgid "Do you want to delete this notification?"
118   -msgstr "Você quer remover essa notificação?"
119   -
120   -#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:3
  75 +#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:4
121 76 msgid "Back"
122 77 msgstr "Voltar"
123 78  
124   -#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:9
  79 +#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:10
125 80 msgid "Optional Title:"
126 81 msgstr "Título Opcional:"
127 82  
128   -#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:11
  83 +#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:12
129 84 msgid "Enter your message here:"
130 85 msgstr "Entre com a sua mensagem aqui:"
131 86  
132   -#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:13
  87 +#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:14
133 88 msgid ""
134 89 "Obs: You can use %{name} and %{email} variables to put the user's name and "
135 90 "email in the message."
... ... @@ -137,42 +92,87 @@ msgstr &quot;&quot;
137 92 "Obs: Você pode usar as variáveis %{name} e %{email} para inserir o nome e "
138 93 "email do usuário logado na mensagem."
139 94  
140   -#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:16
  95 +#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:17
141 96 msgid "Notifications Status"
142 97 msgstr "Status da Notificação"
143 98  
144   -#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:18
  99 +#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:19
145 100 msgid "Notifications Color/Type"
146 101 msgstr "Cor/Tipo de Notificação"
147 102  
148   -#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:18
  103 +#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:19
149 104 msgid "Blue - Information"
150 105 msgstr "Azul - Informação"
151 106  
152   -#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:18
  107 +#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:19
153 108 msgid "Yellow - Warning"
154 109 msgstr "Amarelo - Atenção"
155 110  
156   -#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:18
  111 +#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:19
157 112 msgid "Green - Success"
158 113 msgstr "Verde - Sucesso"
159 114  
160   -#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:18
  115 +#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:19
161 116 msgid "Red - Danger"
162 117 msgstr "Vermelho - Perigo"
163 118  
164   -#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:21
  119 +#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:22
165 120 msgid "Display only in the homepage"
166 121 msgstr "Apresentar apenas na página inicial"
167 122  
168   -#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:25
  123 +#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:26
169 124 msgid "Display to not logged users too"
170 125 msgstr "Apresentar notificação para usuários não logados também"
171 126  
172   -#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:29
  127 +#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:30
173 128 msgid "Display popup until user close the notification"
174 129 msgstr "Apresentar Popup da notificação até que o usuário a feche"
175 130  
176   -#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:33
  131 +#: plugins/environment_notification/views/environment_notification_plugin_admin/_form.html.erb:34
177 132 msgid "Save"
178 133 msgstr "Salvar"
  134 +
  135 +#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:3
  136 +msgid "Environment Notifications"
  137 +msgstr "Notificações do Ambiente"
  138 +
  139 +#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:7
  140 +msgid "New Notification"
  141 +msgstr "Nova Notificação"
  142 +
  143 +#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:10
  144 +msgid "Back to control panel"
  145 +msgstr "Voltar ao Painel de Controle"
  146 +
  147 +#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:16
  148 +msgid "Notifications"
  149 +msgstr "Notificações"
  150 +
  151 +#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:19
  152 +msgid "Actions"
  153 +msgstr "Ações"
  154 +
  155 +#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:30
  156 +msgid "Deactivate"
  157 +msgstr "Desativar"
  158 +
  159 +#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:30
  160 +#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:32
  161 +msgid "Do you want to change the status of this notification?"
  162 +msgstr "Você quer alterar o status dessa notificação?"
  163 +
  164 +#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:32
  165 +msgid "Activate"
  166 +msgstr "Ativar"
  167 +
  168 +#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:34
  169 +msgid "Edit"
  170 +msgstr "Editar"
  171 +
  172 +#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:35
  173 +msgid "Delete"
  174 +msgstr "Remover"
  175 +
  176 +#: plugins/environment_notification/views/environment_notification_plugin_admin/index.html.erb:35
  177 +msgid "Do you want to delete this notification?"
  178 +msgstr "Você quer remover essa notificação?"
... ...
plugins/environment_notification/views/environment_notification_plugin_admin/show_notification.html.erb
... ... @@ -5,10 +5,8 @@
5 5 <div class="adminnotification notification">
6 6 <div class="notification-message">
7 7 <p>
8   - <%= _("There are active notifications in this environment! You can ") %>
9   - <a href="/admin/plugin/environment_notification">
10   - <%= _("manage all notifications here.") %>
11   - </a>
  8 + <%= _("There are active notifications in this environment!") %>
  9 + <%= link_to _("Manage all notifications here."), EnvironmentNotificationPlugin.admin_url %>
12 10 </p>
13 11 </div>
14 12 </div>
... ...
plugins/event/po/event.pot
... ... @@ -6,8 +6,8 @@
6 6 #, fuzzy
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.1-882-g0c116ba\n"
10   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
11 11 "PO-Revision-Date: 2015-08-06 17:21-0300\n"
12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 13 "Language-Team: LANGUAGE <LL@li.org>\n"
... ... @@ -17,15 +17,6 @@ msgstr &quot;&quot;
17 17 "Content-Transfer-Encoding: 8bit\n"
18 18 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
19 19  
20   -#: plugins/event/lib/event_plugin.rb:4
21   -msgid "Event Extras"
22   -msgstr ""
23   -
24   -#: plugins/event/lib/event_plugin.rb:8
25   -msgid ""
26   -"Include a new block to show the environment's or profiles' events information"
27   -msgstr ""
28   -
29 20 #: plugins/event/lib/event_plugin/event_block.rb:12
30 21 msgid "Events"
31 22 msgstr ""
... ... @@ -62,6 +53,21 @@ msgid_plural &quot;%d months left to start&quot;
62 53 msgstr[0] ""
63 54 msgstr[1] ""
64 55  
  56 +#: plugins/event/lib/event_plugin.rb:4
  57 +msgid "Event Extras"
  58 +msgstr ""
  59 +
  60 +#: plugins/event/lib/event_plugin.rb:8
  61 +msgid ""
  62 +"Include a new block to show the environment's or profiles' events information"
  63 +msgstr ""
  64 +
  65 +#: plugins/event/views/event_plugin/event_block_item.html.erb:6
  66 +msgid "Duration: 1 day"
  67 +msgid_plural "Duration: %s days"
  68 +msgstr[0] ""
  69 +msgstr[1] ""
  70 +
65 71 #: plugins/event/views/profile_design/event_plugin/_event_block.html.erb:1
66 72 msgid "Limit of items"
67 73 msgstr ""
... ... @@ -90,9 +96,3 @@ msgstr &quot;&quot;
90 96 #: plugins/event/views/profile_design/event_plugin/_event_block.html.erb:24
91 97 msgid "Only show events in this interval of days."
92 98 msgstr ""
93   -
94   -#: plugins/event/views/event_plugin/event_block_item.html.erb:6
95   -msgid "Duration: 1 day"
96   -msgid_plural "Duration: %s days"
97   -msgstr[0] ""
98   -msgstr[1] ""
... ...
plugins/event/po/pt/event.po
... ... @@ -5,8 +5,8 @@
5 5 #
6 6 msgid ""
7 7 msgstr ""
8   -"Project-Id-Version: 1.1-882-g0c116ba\n"
9   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  8 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  9 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
10 10 "PO-Revision-Date: 2015-01-30 00:18-0000\n"
11 11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 12 "Language-Team: LANGUAGE <LL@li.org>\n"
... ... @@ -16,17 +16,6 @@ msgstr &quot;&quot;
16 16 "Content-Transfer-Encoding: 8bit\n"
17 17 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
18 18  
19   -#: plugins/event/lib/event_plugin.rb:4
20   -msgid "Event Extras"
21   -msgstr "Extras para Eventos"
22   -
23   -#: plugins/event/lib/event_plugin.rb:8
24   -msgid ""
25   -"Include a new block to show the environment's or profiles' events information"
26   -msgstr ""
27   -"Adiciona um novo bloco para apresentar as informações de eventos do ambiente "
28   -"ou dos perfis"
29   -
30 19 #: plugins/event/lib/event_plugin/event_block.rb:12
31 20 msgid "Events"
32 21 msgstr "Eventos"
... ... @@ -63,6 +52,23 @@ msgid_plural &quot;%d months left to start&quot;
63 52 msgstr[0] "Um mês para iniciar"
64 53 msgstr[1] "%d meses para iniciar"
65 54  
  55 +#: plugins/event/lib/event_plugin.rb:4
  56 +msgid "Event Extras"
  57 +msgstr "Extras para Eventos"
  58 +
  59 +#: plugins/event/lib/event_plugin.rb:8
  60 +msgid ""
  61 +"Include a new block to show the environment's or profiles' events information"
  62 +msgstr ""
  63 +"Adiciona um novo bloco para apresentar as informações de eventos do ambiente "
  64 +"ou dos perfis"
  65 +
  66 +#: plugins/event/views/event_plugin/event_block_item.html.erb:6
  67 +msgid "Duration: 1 day"
  68 +msgid_plural "Duration: %s days"
  69 +msgstr[0] "Duração: 1 dia"
  70 +msgstr[1] "Duração: %s dias"
  71 +
66 72 #: plugins/event/views/profile_design/event_plugin/_event_block.html.erb:1
67 73 msgid "Limit of items"
68 74 msgstr "Limite de itens"
... ... @@ -92,12 +98,6 @@ msgstr &quot;Limite de dias para mostrar&quot;
92 98 msgid "Only show events in this interval of days."
93 99 msgstr "Mostar somente os eventos nesse intervalo de dias"
94 100  
95   -#: plugins/event/views/event_plugin/event_block_item.html.erb:6
96   -msgid "Duration: 1 day"
97   -msgid_plural "Duration: %s days"
98   -msgstr[0] "Duração: 1 dia"
99   -msgstr[1] "Duração: %s dias"
100   -
101 101 #~ msgid "Started one day ago."
102 102 #~ msgid_plural "Started %d days ago."
103 103 #~ msgstr[0] "Iniciou a Um dia atrás."
... ...
plugins/foo/po/de/foo.po
... ... @@ -6,8 +6,8 @@
6 6 #
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.1-882-g0c116ba\n"
10   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
11 11 "PO-Revision-Date: 2014-12-12 14:23+0200\n"
12 12 "Last-Translator: Michal Čihař <michal@cihar.com>\n"
13 13 "Language-Team: German <https://hosted.weblate.org/projects/noosfero/noosfero/"
... ...
plugins/foo/po/es/foo.po
... ... @@ -5,8 +5,8 @@
5 5 #
6 6 msgid ""
7 7 msgstr ""
8   -"Project-Id-Version: 1.1-882-g0c116ba\n"
9   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  8 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  9 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
10 10 "PO-Revision-Date: 2014-11-03 15:52+0200\n"
11 11 "Last-Translator: Michal Čihař <michal@cihar.com>\n"
12 12 "Language-Team: Spanish <https://hosted.weblate.org/projects/noosfero/"
... ...
plugins/foo/po/foo.pot
... ... @@ -6,8 +6,8 @@
6 6 #, fuzzy
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.1-882-g0c116ba\n"
10   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
11 11 "PO-Revision-Date: 2015-08-06 17:21-0300\n"
12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 13 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...
plugins/foo/po/pt/foo.po
... ... @@ -11,8 +11,8 @@
11 11 #
12 12 msgid ""
13 13 msgstr ""
14   -"Project-Id-Version: 1.1-882-g0c116ba\n"
15   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  14 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  15 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
16 16 "PO-Revision-Date: 2014-12-18 18:40-0200\n"
17 17 "Last-Translator: Luciano Prestes Cavalcanti <lucianopcbr@gmail.com>\n"
18 18 "Language-Team: Portuguese <https://hosted.weblate.org/projects/noosfero/"
... ...
plugins/gallery_block/lib/gallery_block.rb 0 → 100644
... ... @@ -0,0 +1,41 @@
  1 +class GalleryBlock < Block
  2 +
  3 + attr_accessible :gallery_id, :groups_of, :speed, :interval
  4 +
  5 + settings_items :gallery_id, :type => :integer
  6 + settings_items :groups_of, :type => :integer, :default => 3
  7 + settings_items :speed, :type => :integer, :default => 1000
  8 +
  9 + settings_items :interval, :type => 'integer', :default => 10
  10 +
  11 + before_save do |block|
  12 + block.groups_of = block.groups_of.to_i
  13 + end
  14 +
  15 + def self.description
  16 + _('Gallery block')
  17 + end
  18 +
  19 + def gallery
  20 + if self.owner.kind_of? Environment
  21 + article = owner.articles.find_by_id(self.gallery_id)
  22 + if article && article.gallery?
  23 + article
  24 + end
  25 + else
  26 + owner.image_galleries.find_by_id(self.gallery_id)
  27 + end
  28 + end
  29 +
  30 + def images
  31 + gallery ? gallery.images : []
  32 + end
  33 +
  34 + def content(args={})
  35 + block = self
  36 + proc do
  37 + render :file => 'gallery_block', :locals => { :block => block }
  38 + end
  39 + end
  40 +
  41 +end
... ...
plugins/gallery_block/lib/gallery_block_plugin.rb 0 → 100644
... ... @@ -0,0 +1,20 @@
  1 +class GalleryBlockPlugin < Noosfero::Plugin
  2 + def self.plugin_name
  3 + 'Gallery Block'
  4 + end
  5 +
  6 + def self.plugin_description
  7 + _('Includes a block to display images from a gallery.')
  8 + end
  9 +
  10 + def self.extra_blocks
  11 + {
  12 + GalleryBlock => {:type => [Community, Environment]}
  13 + }
  14 + end
  15 +
  16 + def stylesheet?
  17 + true
  18 + end
  19 +
  20 +end
... ...
plugins/gallery_block/po/gallery_block.pot 0 → 100644
... ... @@ -0,0 +1,72 @@
  1 +# SOME DESCRIPTIVE TITLE.
  2 +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  3 +# This file is distributed under the same license as the PACKAGE package.
  4 +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  5 +#
  6 +#, fuzzy
  7 +msgid ""
  8 +msgstr ""
  9 +"Project-Id-Version: 1.3~rc1-15-gae6cf26\n"
  10 +"POT-Creation-Date: 2015-10-30 20:29-0000\n"
  11 +"PO-Revision-Date: 2015-08-20 16:45-0000\n"
  12 +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  13 +"Language-Team: LANGUAGE <LL@li.org>\n"
  14 +"Language: \n"
  15 +"MIME-Version: 1.0\n"
  16 +"Content-Type: text/plain; charset=UTF-8\n"
  17 +"Content-Transfer-Encoding: 8bit\n"
  18 +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
  19 +
  20 +#: plugins/gallery_block/lib/gallery_block.rb:16
  21 +msgid "Gallery block"
  22 +msgstr ""
  23 +
  24 +#: plugins/gallery_block/lib/gallery_block_plugin.rb:7
  25 +msgid "Includes a block to display images from a gallery."
  26 +msgstr ""
  27 +
  28 +#: plugins/gallery_block/views/box_organizer/_gallery_block.html.erb:4
  29 +msgid "Fill in with the gallery ID:"
  30 +msgstr ""
  31 +
  32 +#: plugins/gallery_block/views/box_organizer/_gallery_block.html.erb:6
  33 +msgid "Choose a gallery"
  34 +msgstr ""
  35 +
  36 +#: plugins/gallery_block/views/box_organizer/_gallery_block.html.erb:7
  37 +msgid "%{gallery} (%{count} images)"
  38 +msgstr ""
  39 +
  40 +#: plugins/gallery_block/views/box_organizer/_gallery_block.html.erb:11
  41 +msgid "Transition speed (in seconds)"
  42 +msgstr ""
  43 +
  44 +#: plugins/gallery_block/views/box_organizer/_gallery_block.html.erb:13
  45 +msgid "Image transition:"
  46 +msgstr ""
  47 +
  48 +#: plugins/gallery_block/views/box_organizer/_gallery_block.html.erb:13
  49 +msgid "No automatic transition"
  50 +msgstr ""
  51 +
  52 +#: plugins/gallery_block/views/box_organizer/_gallery_block.html.erb:13
  53 +msgid "Every 1 second"
  54 +msgid_plural "Every %d seconds"
  55 +msgstr[0] ""
  56 +msgstr[1] ""
  57 +
  58 +#: plugins/gallery_block/views/box_organizer/_gallery_block.html.erb:15
  59 +msgid "In groups of"
  60 +msgstr ""
  61 +
  62 +#: plugins/gallery_block/views/gallery_block.html.erb:4
  63 +msgid "Previous"
  64 +msgstr ""
  65 +
  66 +#: plugins/gallery_block/views/gallery_block.html.erb:27
  67 +msgid "Next"
  68 +msgstr ""
  69 +
  70 +#: plugins/gallery_block/views/gallery_block.html.erb:43
  71 +msgid "Please, edit this block and choose some gallery"
  72 +msgstr ""
... ...
plugins/gallery_block/po/pt/gallery_block.po 0 → 100644
... ... @@ -0,0 +1,72 @@
  1 +# SOME DESCRIPTIVE TITLE.
  2 +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
  3 +# This file is distributed under the same license as the PACKAGE package.
  4 +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  5 +#
  6 +#, fuzzy
  7 +msgid ""
  8 +msgstr ""
  9 +"Project-Id-Version: 1.3~rc1-15-gae6cf26\n"
  10 +"POT-Creation-Date: 2015-10-30 20:29-0000\n"
  11 +"PO-Revision-Date: 2015-08-20 16:45-0000\n"
  12 +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  13 +"Language-Team: LANGUAGE <LL@li.org>\n"
  14 +"Language: \n"
  15 +"MIME-Version: 1.0\n"
  16 +"Content-Type: text/plain; charset=UTF-8\n"
  17 +"Content-Transfer-Encoding: 8bit\n"
  18 +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
  19 +
  20 +#: plugins/gallery_block/lib/gallery_block.rb:16
  21 +msgid "Gallery block"
  22 +msgstr "Bloco de galeria"
  23 +
  24 +#: plugins/gallery_block/lib/gallery_block_plugin.rb:7
  25 +msgid "Includes a block to display images from a gallery."
  26 +msgstr "Inclui um bloco para mostrar imagens de uma galeria."
  27 +
  28 +#: plugins/gallery_block/views/box_organizer/_gallery_block.html.erb:4
  29 +msgid "Fill in with the gallery ID:"
  30 +msgstr "Preencha com o ID de uma galeria:"
  31 +
  32 +#: plugins/gallery_block/views/box_organizer/_gallery_block.html.erb:6
  33 +msgid "Choose a gallery"
  34 +msgstr "Escolha uma galeria"
  35 +
  36 +#: plugins/gallery_block/views/box_organizer/_gallery_block.html.erb:7
  37 +msgid "%{gallery} (%{count} images)"
  38 +msgstr "%{gallery} (%{count} imagens)"
  39 +
  40 +#: plugins/gallery_block/views/box_organizer/_gallery_block.html.erb:11
  41 +msgid "Transition speed (in seconds)"
  42 +msgstr "Velocidade de transição (em segundos)"
  43 +
  44 +#: plugins/gallery_block/views/box_organizer/_gallery_block.html.erb:13
  45 +msgid "Image transition:"
  46 +msgstr "Transição de imagem:"
  47 +
  48 +#: plugins/gallery_block/views/box_organizer/_gallery_block.html.erb:13
  49 +msgid "No automatic transition"
  50 +msgstr "Sem transição automática"
  51 +
  52 +#: plugins/gallery_block/views/box_organizer/_gallery_block.html.erb:13
  53 +msgid "Every 1 second"
  54 +msgid_plural "Every %d seconds"
  55 +msgstr[0] "A cada segundo"
  56 +msgstr[1] "A cada %d segundos"
  57 +
  58 +#: plugins/gallery_block/views/box_organizer/_gallery_block.html.erb:15
  59 +msgid "In groups of"
  60 +msgstr "Em grupos de"
  61 +
  62 +#: plugins/gallery_block/views/gallery_block.html.erb:4
  63 +msgid "Previous"
  64 +msgstr "Anterior"
  65 +
  66 +#: plugins/gallery_block/views/gallery_block.html.erb:27
  67 +msgid "Next"
  68 +msgstr "Próximo"
  69 +
  70 +#: plugins/gallery_block/views/gallery_block.html.erb:43
  71 +msgid "Please, edit this block and choose some gallery"
  72 +msgstr "Por favor, edite esse bloco e escolha alguma galeria"
... ...
plugins/gallery_block/public/style.css 0 → 100644
... ... @@ -0,0 +1,77 @@
  1 +.gallery-items {
  2 + width: 100%;
  3 + display: table;
  4 + margin: 0 auto;
  5 + text-align: center;
  6 +}
  7 +.gallery-items ul {
  8 + display: table-row;
  9 +}
  10 +.gallery-item {
  11 + list-style-type: none;
  12 + display: table-cell !important;
  13 + vertical-align: middle;
  14 +}
  15 +.gallery-item div {
  16 + margin: 0 auto;
  17 +}
  18 +.gallery-list {
  19 + padding: 0;
  20 + margin: 0px;
  21 +}
  22 +.gallery-block-arrow {
  23 + float: left;
  24 + width: 16px;
  25 + background-repeat: no-repeat;
  26 + height: 160px;
  27 + background-position: center;
  28 +}
  29 +.gallery-block-arrow span {
  30 + display: none;
  31 +}
  32 +.gallery-block-container {
  33 + width: 82%;
  34 +}
  35 +.box-2 .gallery-block-container, .box-3 .gallery-block-container {
  36 + width: 78%;
  37 +}
  38 +.gallery-group {
  39 + width: 100%;
  40 + margin: 0 auto;
  41 + text-align: center;
  42 +}
  43 +.gallery-block-container, .gallery-group {
  44 + overflow: hidden;
  45 + float: left;
  46 + height: 160px;
  47 + position: relative;
  48 + background-color: #FFF !important;
  49 +}
  50 +.gallery-group ul {
  51 + padding: 0;
  52 + padding-left: 4px;
  53 +}
  54 +.gallery-block-footer {
  55 + clear: both;
  56 +}
  57 +.gallery-image-info {
  58 + position: absolute;
  59 + top: 0;
  60 + z-index: 9999;
  61 + height: 125px;
  62 + overflow: hidden;
  63 + font-size: 11px;
  64 + background-color: #fff;
  65 + opacity: 0.7;
  66 + border: 1px solid #333;
  67 + padding: 5px;
  68 + text-align: left;
  69 +}
  70 +.box-2 .gallery-image-info, .box-3 .gallery-image-info {
  71 + width: 110px;
  72 + margin-left: 50%;
  73 + left: -60px;
  74 +}
  75 +#content .gallery-image-info h3 {
  76 + font-size: 11px;
  77 +}
... ...
plugins/gallery_block/test/unit/gallery_block_test.rb 0 → 100644
... ... @@ -0,0 +1,22 @@
  1 +require 'test_helper'
  2 +
  3 +class GalleryBlockTest < ActiveSupport::TestCase
  4 +
  5 + def setup
  6 + @community = fast_create(Community)
  7 + end
  8 + attr_reader :community
  9 +
  10 + should 'refer to a gallery' do
  11 + gallery = fast_create(Gallery, :profile_id => community.id)
  12 + gallery_block = create(GalleryBlock, :gallery_id => gallery.id)
  13 + gallery_block.stubs(:owner).returns(community)
  14 + assert_equal gallery, gallery_block.gallery
  15 + end
  16 +
  17 + should 'default interval between transitions is 10 seconds' do
  18 + block = GalleryBlock.new
  19 + assert_equal 10, block.interval
  20 + end
  21 +
  22 +end
... ...
plugins/gallery_block/views/box_organizer/_gallery_block.html.erb 0 → 100644
... ... @@ -0,0 +1,17 @@
  1 +<div id="gallery_block_plugin">
  2 +
  3 + <% if @block.owner.kind_of? Environment %>
  4 + <%= labelled_form_field(_('Fill in with the gallery ID:'), text_field(:block, 'gallery_id')) %>
  5 + <% else %>
  6 + <%= labelled_form_field _('Choose a gallery'), select('block', 'gallery_id', @block.owner.image_galleries.map { |item|
  7 + [ _('%{gallery} (%{count} images)') % {:gallery => item.path, :count => item.images.reject{|image| image.folder?}.count}, item.id ]
  8 +}) %>
  9 + <% end %>
  10 +
  11 + <%= labelled_form_field(_('Transition speed (in seconds)'), select('block', 'speed', (1..10).to_a.collect{|i| [i, i*1000] })) %>
  12 +
  13 + <%= labelled_form_field _('Image transition:'), select('block', 'interval', [[_('No automatic transition'), 0]] + [1, 2, 3, 4, 5, 10, 20, 30, 60].map {|item| [n_('Every 1 second', 'Every %d seconds', item) % item, item]}) %>
  14 +
  15 + <%= labelled_form_field(_('In groups of'), select('block', 'groups_of', (1..10).to_a)) %>
  16 +
  17 +</div>
... ...
plugins/gallery_block/views/environment_design 0 → 120000
... ... @@ -0,0 +1 @@
  1 +box_organizer
0 2 \ No newline at end of file
... ...
plugins/gallery_block/views/gallery_block.html.erb 0 → 100644
... ... @@ -0,0 +1,44 @@
  1 +<%= block_title(block.title) %>
  2 +
  3 +<% unless block.images.blank? %>
  4 + <%= link_to content_tag(:span, _('Previous')), '#', :class => 'gallery-block-prev gallery-block-arrow icon-left' %>
  5 + <div class="gallery-block-container">
  6 + <ul class="gallery-list">
  7 + <% block.images.in_groups_of(block.groups_of).each do |group| %>
  8 + <li class="gallery-group">
  9 + <div class="gallery-items">
  10 + <ul>
  11 + <% group.reject{ |x| x.nil? }.each_with_index do |p, i| %>
  12 + <li class="gallery-item">
  13 + <%= link_to image_tag(p.public_filename(:thumb), :alt => p.name, :title => p.name), p.view_url, :class => 'gallery-image' %>
  14 + <div class="gallery-image-info position-<%= i + 1 %>" style="display: none">
  15 + <div class="gallery-image-text">
  16 + <h3><%= p.name %></h3>
  17 + </div>
  18 + </div>
  19 + </li>
  20 + <% end %>
  21 + </ul>
  22 + </div>
  23 + </li>
  24 + <% end %>
  25 + </ul>
  26 + </div>
  27 + <%= link_to content_tag(:span, _('Next')), '#', :class => 'gallery-block-next gallery-block-arrow icon-right' %>
  28 + <script type="text/javascript">
  29 + (function($) {
  30 + var options = {
  31 + fx : 'scrollHorz',
  32 + timeout: 0,
  33 + prev: '#block-<%= block.id %> .gallery-block-prev',
  34 + next: '#block-<%= block.id %> .gallery-block-next',
  35 + speed: 2000,
  36 + timeout: <%= block.interval * 1000 %>
  37 + }
  38 + $('#block-<%= block.id %> .gallery-list').cycle(options);
  39 + })(jQuery);
  40 + </script>
  41 + <p class="gallery-block-footer"></p>
  42 +<% else %>
  43 + <em><%= _('Please, edit this block and choose some gallery') %></em>
  44 +<% end %>
... ...
plugins/gallery_block/views/profile_design 0 → 120000
... ... @@ -0,0 +1 @@
  1 +box_organizer
0 2 \ No newline at end of file
... ...
plugins/google_analytics/po/de/google_analytics.po
... ... @@ -6,8 +6,8 @@
6 6 #
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.1-882-g0c116ba\n"
10   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
11 11 "PO-Revision-Date: 2014-12-12 14:23+0200\n"
12 12 "Last-Translator: Michal Čihař <michal@cihar.com>\n"
13 13 "Language-Team: German <https://hosted.weblate.org/projects/noosfero/noosfero/"
... ...
plugins/google_analytics/po/es/google_analytics.po
... ... @@ -5,8 +5,8 @@
5 5 #
6 6 msgid ""
7 7 msgstr ""
8   -"Project-Id-Version: 1.1-882-g0c116ba\n"
9   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  8 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  9 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
10 10 "PO-Revision-Date: 2014-11-03 15:52+0200\n"
11 11 "Last-Translator: Michal Čihař <michal@cihar.com>\n"
12 12 "Language-Team: Spanish <https://hosted.weblate.org/projects/noosfero/"
... ...
plugins/google_analytics/po/google_analytics.pot
... ... @@ -6,8 +6,8 @@
6 6 #, fuzzy
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.1-882-g0c116ba\n"
10   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
11 11 "PO-Revision-Date: 2015-08-06 17:21-0300\n"
12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 13 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...
plugins/google_analytics/po/pt/google_analytics.po
... ... @@ -11,8 +11,8 @@
11 11 #
12 12 msgid ""
13 13 msgstr ""
14   -"Project-Id-Version: 1.1-882-g0c116ba\n"
15   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  14 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  15 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
16 16 "PO-Revision-Date: 2014-12-18 18:40-0200\n"
17 17 "Last-Translator: Luciano Prestes Cavalcanti <lucianopcbr@gmail.com>\n"
18 18 "Language-Team: Portuguese <https://hosted.weblate.org/projects/noosfero/"
... ...
plugins/google_cse/po/de/google_cse.po
... ... @@ -6,8 +6,8 @@
6 6 #
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.1-882-g0c116ba\n"
10   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
11 11 "PO-Revision-Date: 2014-12-12 14:23+0200\n"
12 12 "Last-Translator: Michal Čihař <michal@cihar.com>\n"
13 13 "Language-Team: German <https://hosted.weblate.org/projects/noosfero/noosfero/"
... ...
plugins/google_cse/po/es/google_cse.po
... ... @@ -5,8 +5,8 @@
5 5 #
6 6 msgid ""
7 7 msgstr ""
8   -"Project-Id-Version: 1.1-882-g0c116ba\n"
9   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  8 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  9 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
10 10 "PO-Revision-Date: 2014-11-03 15:52+0200\n"
11 11 "Last-Translator: Michal Čihař <michal@cihar.com>\n"
12 12 "Language-Team: Spanish <https://hosted.weblate.org/projects/noosfero/"
... ...
plugins/google_cse/po/google_cse.pot
... ... @@ -6,8 +6,8 @@
6 6 #, fuzzy
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.1-882-g0c116ba\n"
10   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
11 11 "PO-Revision-Date: 2015-08-06 17:21-0300\n"
12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 13 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...
plugins/google_cse/po/pt/google_cse.po
... ... @@ -11,8 +11,8 @@
11 11 #
12 12 msgid ""
13 13 msgstr ""
14   -"Project-Id-Version: 1.1-882-g0c116ba\n"
15   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  14 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  15 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
16 16 "PO-Revision-Date: 2014-12-18 18:40-0200\n"
17 17 "Last-Translator: Luciano Prestes Cavalcanti <lucianopcbr@gmail.com>\n"
18 18 "Language-Team: Portuguese <https://hosted.weblate.org/projects/noosfero/"
... ...
plugins/html5_video/po/html5_video.pot
... ... @@ -6,8 +6,8 @@
6 6 #, fuzzy
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.1-882-g0c116ba\n"
10   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
11 11 "PO-Revision-Date: 2015-08-06 17:21-0300\n"
12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 13 "Language-Team: LANGUAGE <LL@li.org>\n"
... ... @@ -17,10 +17,10 @@ msgstr &quot;&quot;
17 17 "Content-Transfer-Encoding: 8bit\n"
18 18 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
19 19  
20   -#: plugins/html5_video/lib/html5_video_plugin.rb:10
21   -msgid "A plugin to enable the video suport, with auto conversion for the web."
22   -msgstr ""
23   -
24 20 #: plugins/html5_video/lib/file_presenter/video.rb:8
25 21 msgid "Video (%s)"
26 22 msgstr ""
  23 +
  24 +#: plugins/html5_video/lib/html5_video_plugin.rb:10
  25 +msgid "A plugin to enable the video suport, with auto conversion for the web."
  26 +msgstr ""
... ...
plugins/html5_video/po/pt/html5_video.po
... ... @@ -11,8 +11,8 @@
11 11 #
12 12 msgid ""
13 13 msgstr ""
14   -"Project-Id-Version: 1.1-882-g0c116ba\n"
15   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  14 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  15 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
16 16 "PO-Revision-Date: 2014-12-18 18:40-0200\n"
17 17 "Last-Translator: Luciano Prestes Cavalcanti <lucianopcbr@gmail.com>\n"
18 18 "Language-Team: Portuguese <https://hosted.weblate.org/projects/noosfero/"
... ... @@ -24,11 +24,11 @@ msgstr &quot;&quot;
24 24 "Plural-Forms: nplurals=2; plural=n != 1;\n"
25 25 "X-Generator: Weblate 2.0\n"
26 26  
  27 +#: plugins/html5_video/lib/file_presenter/video.rb:8
  28 +msgid "Video (%s)"
  29 +msgstr "Vídeo (%s)"
  30 +
27 31 #: plugins/html5_video/lib/html5_video_plugin.rb:10
28 32 msgid "A plugin to enable the video suport, with auto conversion for the web."
29 33 msgstr ""
30 34 "Um plugin para habilitar suporte de video, com conversão de audio para a web."
31   -
32   -#: plugins/html5_video/lib/file_presenter/video.rb:8
33   -msgid "Video (%s)"
34   -msgstr "Vídeo (%s)"
... ...
plugins/lattes_curriculum/po/lattes_curriculum.pot
... ... @@ -6,8 +6,8 @@
6 6 #, fuzzy
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.1-882-g0c116ba\n"
10   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
11 11 "PO-Revision-Date: 2015-08-06 17:21-0300\n"
12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 13 "Language-Team: LANGUAGE <LL@li.org>\n"
... ... @@ -17,8 +17,16 @@ msgstr &quot;&quot;
17 17 "Content-Transfer-Encoding: 8bit\n"
18 18 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
19 19  
20   -#: plugins/lattes_curriculum/lib/academic_info.rb:10
21   -msgid " is invalid."
  20 +#: plugins/lattes_curriculum/lib/html_parser.rb:18
  21 +msgid "Lattes not found. Please, make sure the informed URL is correct."
  22 +msgstr ""
  23 +
  24 +#: plugins/lattes_curriculum/lib/html_parser.rb:20
  25 +msgid "Lattes Platform is unreachable. Please, try it later."
  26 +msgstr ""
  27 +
  28 +#: plugins/lattes_curriculum/lib/html_parser.rb:22
  29 +msgid "Could not import the lattes"
22 30 msgstr ""
23 31  
24 32 #: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:8
... ... @@ -35,14 +43,6 @@ msgstr &quot;&quot;
35 43 msgid " Invalid lattes url"
36 44 msgstr ""
37 45  
38   -#: plugins/lattes_curriculum/lib/html_parser.rb:19
39   -msgid "Lattes not found. Please, make sure the informed URL is correct."
40   -msgstr ""
41   -
42   -#: plugins/lattes_curriculum/lib/html_parser.rb:21
43   -msgid "Lattes Platform is unreachable. Please, try it later."
44   -msgstr ""
45   -
46   -#: plugins/lattes_curriculum/lib/html_parser.rb:23
47   -msgid "Could not import the lattes"
  46 +#: plugins/lattes_curriculum/lib/academic_info.rb:10
  47 +msgid " is invalid."
48 48 msgstr ""
... ...
plugins/lattes_curriculum/po/pt/lattes_curriculum.po
... ... @@ -11,8 +11,8 @@
11 11 #
12 12 msgid ""
13 13 msgstr ""
14   -"Project-Id-Version: 1.1-882-g0c116ba\n"
15   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  14 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  15 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
16 16 "PO-Revision-Date: 2015-02-17 10:50+0200\n"
17 17 "Last-Translator: Michal Čihař <michal@cihar.com>\n"
18 18 "Language-Team: Portuguese <https://hosted.weblate.org/projects/noosfero/"
... ... @@ -24,9 +24,20 @@ msgstr &quot;&quot;
24 24 "Plural-Forms: nplurals=2; plural=n != 1;\n"
25 25 "X-Generator: Weblate 2.2-dev\n"
26 26  
27   -#: plugins/lattes_curriculum/lib/academic_info.rb:10
28   -msgid " is invalid."
29   -msgstr " é inválido."
  27 +#: plugins/lattes_curriculum/lib/html_parser.rb:18
  28 +msgid "Lattes not found. Please, make sure the informed URL is correct."
  29 +msgstr ""
  30 +"Lattes não encontrado. Por favor certifique-se que a URL informada está "
  31 +"correta."
  32 +
  33 +#: plugins/lattes_curriculum/lib/html_parser.rb:20
  34 +msgid "Lattes Platform is unreachable. Please, try it later."
  35 +msgstr ""
  36 +"A Plataforma Lattes está inacessível. Por favor tente novamente mais tarde."
  37 +
  38 +#: plugins/lattes_curriculum/lib/html_parser.rb:22
  39 +msgid "Could not import the lattes"
  40 +msgstr ""
30 41  
31 42 #: plugins/lattes_curriculum/lib/lattes_curriculum_plugin.rb:8
32 43 #: plugins/lattes_curriculum/test/unit/lattes_curriculum_test.rb:18
... ... @@ -42,17 +53,6 @@ msgstr &quot;Lattes&quot;
42 53 msgid " Invalid lattes url"
43 54 msgstr " URL do Lattes inválida"
44 55  
45   -#: plugins/lattes_curriculum/lib/html_parser.rb:19
46   -msgid "Lattes not found. Please, make sure the informed URL is correct."
47   -msgstr ""
48   -"Lattes não encontrado. Por favor certifique-se que a URL informada está "
49   -"correta."
50   -
51   -#: plugins/lattes_curriculum/lib/html_parser.rb:21
52   -msgid "Lattes Platform is unreachable. Please, try it later."
53   -msgstr ""
54   -"A Plataforma Lattes está inacessível. Por favor tente novamente mais tarde."
55   -
56   -#: plugins/lattes_curriculum/lib/html_parser.rb:23
57   -msgid "Could not import the lattes"
58   -msgstr ""
  56 +#: plugins/lattes_curriculum/lib/academic_info.rb:10
  57 +msgid " is invalid."
  58 +msgstr " é inválido."
... ...
plugins/ldap/lib/ext/environment.rb
... ... @@ -6,7 +6,7 @@ class Environment
6 6  
7 7 validates_presence_of :ldap_plugin_host, :if => lambda {|env| !env.ldap_plugin.blank? }
8 8  
9   - attr_accessible :ldap_plugin_host, :ldap_plugin_port, :ldap_plugin_tls, :ldap_plugin_onthefly_register, :ldap_plugin_account, :ldap_plugin_account_password, :ldap_plugin_filter, :ldap_plugin_base_dn, :ldap_plugin_attr_mail, :ldap_plugin_attr_login, :ldap_plugin_attr_fullname
  9 + attr_accessible :ldap_plugin_host, :ldap_plugin_port, :ldap_plugin_tls, :ldap_plugin_onthefly_register, :ldap_plugin_account, :ldap_plugin_account_password, :ldap_plugin_filter, :ldap_plugin_base_dn, :ldap_plugin_attr_mail, :ldap_plugin_attr_login, :ldap_plugin_attr_fullname, :ldap_plugin_allow_password_recovery
10 10  
11 11 def ldap_plugin_attributes
12 12 self.ldap_plugin || {}
... ... @@ -113,4 +113,13 @@ class Environment
113 113 self.ldap_plugin['tls'] = (value.to_s == '1') ? true : false
114 114 end
115 115  
  116 + def ldap_plugin_allow_password_recovery
  117 + self.ldap_plugin['allow_password_recovery'] ||= false
  118 + end
  119 +
  120 + def ldap_plugin_allow_password_recovery= value
  121 + self.ldap_plugin = {} if self.ldap_plugin.blank?
  122 + self.ldap_plugin['allow_password_recovery'] = (value.to_i == 1)
  123 + end
  124 +
116 125 end
... ...
plugins/ldap/lib/ldap_plugin.rb
... ... @@ -36,7 +36,7 @@ class LdapPlugin &lt; Noosfero::Plugin
36 36 end
37 37  
38 38 def allow_password_recovery
39   - false
  39 + context.environment.ldap_plugin['allow_password_recovery']
40 40 end
41 41  
42 42 def alternative_authentication
... ...
plugins/ldap/po/de/ldap.po
... ... @@ -6,8 +6,8 @@
6 6 #
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.1-882-g0c116ba\n"
10   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
11 11 "PO-Revision-Date: 2014-12-12 14:23+0200\n"
12 12 "Last-Translator: Michal Čihař <michal@cihar.com>\n"
13 13 "Language-Team: German <https://hosted.weblate.org/projects/noosfero/noosfero/"
... ... @@ -19,6 +19,11 @@ msgstr &quot;&quot;
19 19 "Plural-Forms: nplurals=2; plural=n != 1;\n"
20 20 "X-Generator: Weblate 2.2-dev\n"
21 21  
  22 +#: plugins/ldap/lib/ldap_plugin.rb:11
  23 +#, fuzzy
  24 +msgid "A plugin that add ldap support."
  25 +msgstr "Ein Plugin, welches dies und jenes tut."
  26 +
22 27 #: plugins/ldap/controllers/ldap_plugin_admin_controller.rb:10
23 28 #, fuzzy
24 29 msgid "Ldap configuration updated successfully."
... ... @@ -29,16 +34,15 @@ msgstr &quot;Optionen erfolgreich aktualisiert.&quot;
29 34 msgid "Ldap configuration could not be saved."
30 35 msgstr "Die Konfiguration konnte nicht gespeichert werden"
31 36  
32   -#: plugins/ldap/lib/ldap_plugin.rb:11
33   -#, fuzzy
34   -msgid "A plugin that add ldap support."
35   -msgstr "Ein Plugin, welches dies und jenes tut."
36   -
37 37 #: plugins/ldap/views/ldap_plugin_admin/index.html.erb:1
38 38 #, fuzzy
39 39 msgid "Ldap Management"
40 40 msgstr "Inhalt verwalten"
41 41  
  42 +#: plugins/ldap/views/ldap_plugin_admin/index.html.erb:7
  43 +msgid "LDAP Configuration"
  44 +msgstr ""
  45 +
42 46 #: plugins/ldap/views/ldap_plugin_admin/index.html.erb:8
43 47 msgid "Value"
44 48 msgstr "Wert"
... ... @@ -83,17 +87,30 @@ msgstr &quot;&quot;
83 87 msgid "Attributes"
84 88 msgstr ""
85 89  
86   -#: plugins/ldap/views/ldap_plugin_admin/index.html.erb:53
  90 +#: plugins/ldap/views/ldap_plugin_admin/index.html.erb:47
  91 +#, fuzzy
  92 +msgid "LDAP Field"
  93 +msgstr "Filter"
  94 +
  95 +#: plugins/ldap/views/ldap_plugin_admin/index.html.erb:54
87 96 #, fuzzy
88 97 msgid "Fullname"
89 98 msgstr "Vollständiger Name"
90 99  
91   -#: plugins/ldap/views/ldap_plugin_admin/index.html.erb:57
  100 +#: plugins/ldap/views/ldap_plugin_admin/index.html.erb:58
92 101 #, fuzzy
93 102 msgid "Mail"
94 103 msgstr "E-Mail"
95 104  
96 105 #: plugins/ldap/views/ldap_plugin_admin/index.html.erb:65
  106 +msgid "Behaviour Configuration"
  107 +msgstr ""
  108 +
  109 +#: plugins/ldap/views/ldap_plugin_admin/index.html.erb:70
  110 +msgid "Allow password recovery"
  111 +msgstr ""
  112 +
  113 +#: plugins/ldap/views/ldap_plugin_admin/index.html.erb:78
97 114 #, fuzzy
98 115 msgid "Back to plugins administration panel"
99 116 msgstr "Zurück zum Adminfeld"
... ...
plugins/ldap/po/ldap.pot
... ... @@ -6,8 +6,8 @@
6 6 #, fuzzy
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.1-882-g0c116ba\n"
10   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
11 11 "PO-Revision-Date: 2015-08-06 17:21-0300\n"
12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 13 "Language-Team: LANGUAGE <LL@li.org>\n"
... ... @@ -17,6 +17,10 @@ msgstr &quot;&quot;
17 17 "Content-Transfer-Encoding: 8bit\n"
18 18 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
19 19  
  20 +#: plugins/ldap/lib/ldap_plugin.rb:11
  21 +msgid "A plugin that add ldap support."
  22 +msgstr ""
  23 +
20 24 #: plugins/ldap/controllers/ldap_plugin_admin_controller.rb:10
21 25 msgid "Ldap configuration updated successfully."
22 26 msgstr ""
... ... @@ -25,14 +29,14 @@ msgstr &quot;&quot;
25 29 msgid "Ldap configuration could not be saved."
26 30 msgstr ""
27 31  
28   -#: plugins/ldap/lib/ldap_plugin.rb:11
29   -msgid "A plugin that add ldap support."
30   -msgstr ""
31   -
32 32 #: plugins/ldap/views/ldap_plugin_admin/index.html.erb:1
33 33 msgid "Ldap Management"
34 34 msgstr ""
35 35  
  36 +#: plugins/ldap/views/ldap_plugin_admin/index.html.erb:7
  37 +msgid "LDAP Configuration"
  38 +msgstr ""
  39 +
36 40 #: plugins/ldap/views/ldap_plugin_admin/index.html.erb:8
37 41 msgid "Value"
38 42 msgstr ""
... ... @@ -73,14 +77,26 @@ msgstr &quot;&quot;
73 77 msgid "Attributes"
74 78 msgstr ""
75 79  
76   -#: plugins/ldap/views/ldap_plugin_admin/index.html.erb:53
  80 +#: plugins/ldap/views/ldap_plugin_admin/index.html.erb:47
  81 +msgid "LDAP Field"
  82 +msgstr ""
  83 +
  84 +#: plugins/ldap/views/ldap_plugin_admin/index.html.erb:54
77 85 msgid "Fullname"
78 86 msgstr ""
79 87  
80   -#: plugins/ldap/views/ldap_plugin_admin/index.html.erb:57
  88 +#: plugins/ldap/views/ldap_plugin_admin/index.html.erb:58
81 89 msgid "Mail"
82 90 msgstr ""
83 91  
84 92 #: plugins/ldap/views/ldap_plugin_admin/index.html.erb:65
  93 +msgid "Behaviour Configuration"
  94 +msgstr ""
  95 +
  96 +#: plugins/ldap/views/ldap_plugin_admin/index.html.erb:70
  97 +msgid "Allow password recovery"
  98 +msgstr ""
  99 +
  100 +#: plugins/ldap/views/ldap_plugin_admin/index.html.erb:78
85 101 msgid "Back to plugins administration panel"
86 102 msgstr ""
... ...
plugins/ldap/po/pt/ldap.po
... ... @@ -11,8 +11,8 @@
11 11 #
12 12 msgid ""
13 13 msgstr ""
14   -"Project-Id-Version: 1.1-882-g0c116ba\n"
15   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  14 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  15 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
16 16 "PO-Revision-Date: 2014-12-18 18:40-0200\n"
17 17 "Last-Translator: Luciano Prestes Cavalcanti <lucianopcbr@gmail.com>\n"
18 18 "Language-Team: Portuguese <https://hosted.weblate.org/projects/noosfero/"
... ... @@ -24,6 +24,10 @@ msgstr &quot;&quot;
24 24 "Plural-Forms: nplurals=2; plural=n != 1;\n"
25 25 "X-Generator: Weblate 2.0\n"
26 26  
  27 +#: plugins/ldap/lib/ldap_plugin.rb:11
  28 +msgid "A plugin that add ldap support."
  29 +msgstr "Um plugin que adiciona suporte a ldap."
  30 +
27 31 #: plugins/ldap/controllers/ldap_plugin_admin_controller.rb:10
28 32 msgid "Ldap configuration updated successfully."
29 33 msgstr "Configuração do Ldap atualizada com sucesso."
... ... @@ -32,14 +36,14 @@ msgstr &quot;Configuração do Ldap atualizada com sucesso.&quot;
32 36 msgid "Ldap configuration could not be saved."
33 37 msgstr "Configuração do Ldap não pode ser salva."
34 38  
35   -#: plugins/ldap/lib/ldap_plugin.rb:11
36   -msgid "A plugin that add ldap support."
37   -msgstr "Um plugin que adiciona suporte a ldap."
38   -
39 39 #: plugins/ldap/views/ldap_plugin_admin/index.html.erb:1
40 40 msgid "Ldap Management"
41 41 msgstr "Gerenciamento do Ldap"
42 42  
  43 +#: plugins/ldap/views/ldap_plugin_admin/index.html.erb:7
  44 +msgid "LDAP Configuration"
  45 +msgstr ""
  46 +
43 47 #: plugins/ldap/views/ldap_plugin_admin/index.html.erb:8
44 48 msgid "Value"
45 49 msgstr "Valor"
... ... @@ -80,14 +84,27 @@ msgstr &quot;LDAPS&quot;
80 84 msgid "Attributes"
81 85 msgstr "Atributos"
82 86  
83   -#: plugins/ldap/views/ldap_plugin_admin/index.html.erb:53
  87 +#: plugins/ldap/views/ldap_plugin_admin/index.html.erb:47
  88 +#, fuzzy
  89 +msgid "LDAP Field"
  90 +msgstr "Filtro LDAP"
  91 +
  92 +#: plugins/ldap/views/ldap_plugin_admin/index.html.erb:54
84 93 msgid "Fullname"
85 94 msgstr "Nome completo"
86 95  
87   -#: plugins/ldap/views/ldap_plugin_admin/index.html.erb:57
  96 +#: plugins/ldap/views/ldap_plugin_admin/index.html.erb:58
88 97 msgid "Mail"
89 98 msgstr "Mail"
90 99  
91 100 #: plugins/ldap/views/ldap_plugin_admin/index.html.erb:65
  101 +msgid "Behaviour Configuration"
  102 +msgstr ""
  103 +
  104 +#: plugins/ldap/views/ldap_plugin_admin/index.html.erb:70
  105 +msgid "Allow password recovery"
  106 +msgstr ""
  107 +
  108 +#: plugins/ldap/views/ldap_plugin_admin/index.html.erb:78
92 109 msgid "Back to plugins administration panel"
93 110 msgstr "Voltar ao painel de administração"
... ...
plugins/ldap/test/unit/ldap_plugin_test.rb
... ... @@ -9,6 +9,8 @@ class LdapPluginTest &lt; ActiveSupport::TestCase
9 9  
10 10 should "not allow password recovery" do
11 11 plugin = LdapPlugin.new
  12 + plugin.context = mock
  13 + plugin.context.expects(:environment).returns(Environment.default)
12 14 refute plugin.allow_password_recovery
13 15 end
14 16  
... ...
plugins/ldap/views/ldap_plugin_admin/index.html.erb
... ... @@ -4,7 +4,7 @@
4 4  
5 5 <table>
6 6 <tr>
7   - <th><%= c_('Configuration') %></th>
  7 + <th><%= _('LDAP Configuration') %></th>
8 8 <th><%= _('Value') %></th>
9 9 </tr>
10 10 <tr>
... ... @@ -43,7 +43,8 @@
43 43  
44 44 <table>
45 45 <tr>
46   - <th colspan='2'> <%= _('Attributes') %> </th>
  46 + <th><%= _('Attributes') %></th>
  47 + <th><%= _('LDAP Field') %></th>
47 48 </tr>
48 49 <tr>
49 50 <td><%= c_('Login') %></td>
... ... @@ -59,6 +60,18 @@
59 60 </tr>
60 61 </table>
61 62  
  63 +<table>
  64 + <tr>
  65 + <th><%= _('Behaviour Configuration') %></th>
  66 + </tr>
  67 + <tr>
  68 + <td><label>
  69 + <%= check_box :environment, :ldap_plugin_allow_password_recovery, {}, '1', '0' %>
  70 + <%= _('Allow password recovery') %>
  71 + </label></td>
  72 + </tr>
  73 +</table>
  74 +
62 75 <div>
63 76 <% button_bar do %>
64 77 <%= submit_button('save', c_('Save changes')) %>
... ...
plugins/mark_comment_as_read/po/mark_comment_as_read.pot
... ... @@ -6,8 +6,8 @@
6 6 #, fuzzy
7 7 msgid ""
8 8 msgstr ""
9   -"Project-Id-Version: 1.1-882-g0c116ba\n"
10   -"POT-Creation-Date: 2015-09-25 15:42-0000\n"
  9 +"Project-Id-Version: 1.3~rc2-1-ga15645d\n"
  10 +"POT-Creation-Date: 2015-10-30 16:35-0300\n"
11 11 "PO-Revision-Date: 2015-08-06 17:21-0300\n"
12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 13 "Language-Team: LANGUAGE <LL@li.org>\n"
... ...