Commit 99b8b9f9033967a149494b0c3fc40faed84fd33d
1 parent
35568d4d
Exists in
master
and in
29 other branches
Change wording of the member invitation message
Showing
4 changed files
with
10 additions
and
10 deletions
Show diff stats
app/models/invite_member.rb
... | ... | @@ -16,7 +16,7 @@ class InviteMember < Invitation |
16 | 16 | end |
17 | 17 | |
18 | 18 | def description |
19 | - _('%s invites you to join the community %s.') % [person.name, community.name] | |
19 | + _('%s invited you to join the community %s') % [person.name, community.name] | |
20 | 20 | end |
21 | 21 | |
22 | 22 | def expanded_message | ... | ... |
app/views/tasks/_invite_member.rhtml
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | |
3 | 3 | <%= link_to( profile_image(task.requestor, :minor, :border => 0), task.requestor.public_profile_url ) %> |
4 | 4 | |
5 | -<%= _('%s invites you to join the community %s.') % | |
5 | +<%= _('%s invited you to join the community %s') % | |
6 | 6 | [content_tag('strong', link_to( task.requestor.name, task.requestor.public_profile_url ) ), |
7 | 7 | content_tag('strong', link_to( task.community.name, task.community.public_profile_url ) )] %> |
8 | 8 | ... | ... |
features/invitation.feature
... | ... | @@ -93,7 +93,7 @@ Feature: invitation |
93 | 93 | Given there are no pending jobs |
94 | 94 | When I am logged in as "josesantos" |
95 | 95 | And I go to the Control panel |
96 | - And I should see "josesilva invites you to join the community 26 Bsslines." | |
96 | + And I should see "josesilva invited you to join the community 26 Bsslines" | |
97 | 97 | |
98 | 98 | Scenario: noosfero user accepts to join community |
99 | 99 | Given I invite email "santos@invalid.br" to join community "26 Bsslines" |
... | ... | @@ -101,10 +101,10 @@ Feature: invitation |
101 | 101 | When I am logged in as "josesantos" |
102 | 102 | And I go to the Control panel |
103 | 103 | And I follow "Process requests" |
104 | - And I should see "josesilva invites you to join the community 26 Bsslines." | |
104 | + And I should see "josesilva invited you to join the community 26 Bsslines" | |
105 | 105 | And I choose "Accept" |
106 | 106 | When I press "Ok!" |
107 | - Then I should not see "josesilva invites you to join the community 26 Bsslines." | |
107 | + Then I should not see "josesilva invited you to join the community 26 Bsslines" | |
108 | 108 | When I go to the Control panel |
109 | 109 | And I follow "Manage my groups" |
110 | 110 | Then I should see "26 Bsslines" |
... | ... | @@ -115,10 +115,10 @@ Feature: invitation |
115 | 115 | When I am logged in as "josesantos" |
116 | 116 | And I go to the Control panel |
117 | 117 | And I follow "Process requests" |
118 | - And I should see "josesilva invites you to join the community 26 Bsslines." | |
118 | + And I should see "josesilva invited you to join the community 26 Bsslines" | |
119 | 119 | And I choose "Reject" |
120 | 120 | When I press "Ok!" |
121 | - Then I should not see "josesilva invites you to join the community 26 Bsslines." | |
121 | + Then I should not see "josesilva invited you to join the community 26 Bsslines" | |
122 | 122 | When I go to the Control panel |
123 | 123 | And I follow "Manage my groups" |
124 | 124 | Then I should not see "26 Bsslines" | ... | ... |
po/pt/noosfero.po
... | ... | @@ -13,7 +13,7 @@ msgid "" |
13 | 13 | msgstr "" |
14 | 14 | "Project-Id-Version: noosfero 0.25.3\n" |
15 | 15 | "POT-Creation-Date: 2010-08-30 16:46-0300\n" |
16 | -"PO-Revision-Date: 2010-08-30 16:47-0300\n" | |
16 | +"PO-Revision-Date: 2010-08-31 19:55-0300\n" | |
17 | 17 | "Last-Translator: Joenio Costa <joenio@colivre.coop.br>\n" |
18 | 18 | "Language-Team: LANGUAGE TEAM <E-MAIL@ADDRESS or HOME PAGE>\n" |
19 | 19 | "MIME-Version: 1.0\n" |
... | ... | @@ -3207,8 +3207,8 @@ msgid "'%{user} wants to activate email '%{email}'" |
3207 | 3207 | msgstr "%{user} quer ativar o e-mail '%{email}'" |
3208 | 3208 | |
3209 | 3209 | #: app/models/invite_member.rb:19 app/views/tasks/_invite_member.rhtml:5 |
3210 | -msgid "%s invites you to join the community %s." | |
3211 | -msgstr "%s te está te convidando para entrar na comunidade %s." | |
3210 | +msgid "%s invited you to join the community %s" | |
3211 | +msgstr "%s te convidou para entrar na comunidade %s" | |
3212 | 3212 | |
3213 | 3213 | #: app/models/invite_member.rb:28 app/models/invite_friend.rb:20 |
3214 | 3214 | msgid "Hello <friend>," | ... | ... |