social_stream 2.1.1 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile +5 -2
- data/LICENSE +1 -1
- data/base/Rakefile +3 -17
- data/base/app/assets/images/flags/de.png +0 -0
- data/base/app/assets/images/flags/fr.png +0 -0
- data/base/app/assets/images/flags/hu.png +0 -0
- data/base/app/assets/images/flags/nl.png +0 -0
- data/base/app/assets/javascripts/social_stream/actor.js +34 -0
- data/base/app/assets/javascripts/social_stream/contact.js +40 -5
- data/base/app/assets/javascripts/social_stream/flash.js +6 -1
- data/base/app/assets/javascripts/social_stream/group.js +6 -5
- data/base/app/assets/javascripts/social_stream/relation_customs.js +0 -1
- data/base/app/assets/stylesheets/social_stream/base/adjust/layout/_adjust.css.sass +3 -0
- data/base/app/assets/stylesheets/social_stream/base/buttons/_buttons.scss.sass +0 -2
- data/base/app/assets/stylesheets/social_stream/base/contacts/_contacts.css.sass +1 -11
- data/base/app/assets/stylesheets/social_stream/base/contacts/layouts/_contacts.css.sass +1 -29
- data/base/app/assets/stylesheets/social_stream/base/layouts/_header.css.sass +0 -1
- data/base/app/assets/stylesheets/social_stream/base/mixins/_buttons.css.sass +5 -0
- data/base/app/assets/stylesheets/social_stream/base/mixins/_layout.css.sass +36 -7
- data/base/app/controllers/actors_controller.rb +25 -0
- data/base/app/controllers/contacts_controller.rb +38 -8
- data/base/app/controllers/groups_controller.rb +2 -21
- data/base/app/controllers/profiles_controller.rb +4 -0
- data/base/app/controllers/settings_controller.rb +12 -2
- data/base/app/controllers/users_controller.rb +0 -8
- data/base/app/helpers/contacts_helper.rb +8 -0
- data/base/app/models/activity.rb +19 -6
- data/base/app/models/actor.rb +49 -11
- data/base/app/models/contact.rb +12 -5
- data/base/app/models/group.rb +13 -11
- data/base/app/models/permission.rb +30 -0
- data/base/app/models/relation.rb +17 -7
- data/base/app/models/relation/custom.rb +2 -40
- data/base/app/models/relation/follow.rb +8 -2
- data/base/app/models/relation/owner.rb +10 -0
- data/base/app/models/relation/single.rb +7 -4
- data/base/app/models/site.rb +1 -1
- data/base/app/models/tie.rb +8 -4
- data/base/app/views/contacts/_add_button.html.erb +9 -0
- data/base/app/views/contacts/_button.html.erb +3 -3
- data/base/app/views/contacts/_button_multiple.html.erb +4 -0
- data/base/app/views/contacts/_button_simple.html.erb +17 -0
- data/base/app/views/contacts/_new_modal.html.erb +22 -0
- data/base/app/views/contacts/destroy.js.erb +5 -4
- data/base/app/views/contacts/update.js.erb +5 -4
- data/base/app/views/devise/confirmations/new.html.erb +14 -9
- data/base/app/views/frontpage/_presentation.html.erb +2 -2
- data/base/app/views/groups/_form.html.erb +20 -20
- data/base/app/views/groups/show.html.erb +5 -5
- data/base/app/views/layouts/_header_dropdown_menu.html.erb +3 -5
- data/base/app/views/layouts/_header_signed_in.erb +3 -3
- data/base/app/views/layouts/_logo_in.html.erb +1 -1
- data/base/app/views/layouts/application.html.erb +2 -0
- data/base/app/views/permissions/_list.html.erb +1 -1
- data/base/app/views/profiles/_avatar.html.erb +1 -5
- data/base/app/views/profiles/_avatar_edit.html.erb +5 -0
- data/base/app/views/profiles/_comunication-info.html.erb +2 -36
- data/base/app/views/profiles/_comunication-info_edit.html.erb +27 -0
- data/base/app/views/profiles/_edit_icon.html.erb +0 -1
- data/base/app/views/profiles/_experience.html.erb +1 -6
- data/base/app/views/profiles/_experience_edit.html.erb +5 -0
- data/base/app/views/profiles/_personal.html.erb +1 -39
- data/base/app/views/profiles/_personal_edit.html.erb +31 -0
- data/base/app/views/profiles/_profile_edit.html.erb +7 -0
- data/base/app/views/profiles/_tags.html.erb +1 -4
- data/base/app/views/profiles/_tags_edit.html.erb +4 -0
- data/base/app/views/profiles/edit.html.erb +24 -0
- data/base/app/views/settings/_notifications.html.erb +12 -4
- data/base/app/views/users/show.html.erb +5 -5
- data/base/config/locales/de.yml +654 -0
- data/base/config/locales/en.yml +20 -9
- data/base/config/locales/es.yml +151 -140
- data/base/config/locales/fr.yml +656 -0
- data/base/config/locales/hu.yml +653 -0
- data/base/config/locales/nl.yml +656 -0
- data/base/config/locales/pt.yml +250 -239
- data/base/config/locales/rails.de.yml +203 -0
- data/base/config/locales/rails.fr.yml +222 -0
- data/base/config/locales/rails.hu.yml +199 -0
- data/base/config/locales/rails.nl.yml +199 -0
- data/base/config/locales/zh.yml +214 -202
- data/base/config/routes.rb +22 -30
- data/base/db/migrate/20130708152633_set_group_owners.rb +19 -0
- data/base/db/migrate/20130723133530_actor_notification_settings.rb +10 -0
- data/base/lib/generators/social_stream/base/templates/initializer.rb +13 -7
- data/base/lib/rails/social_stream.rb +2 -0
- data/base/lib/social_stream/base.rb +27 -7
- data/base/lib/social_stream/base/ability.rb +3 -5
- data/base/lib/social_stream/base/autoload.rb +1 -0
- data/base/lib/social_stream/base/version.rb +1 -1
- data/base/lib/social_stream/controllers/authorship.rb +18 -0
- data/base/lib/social_stream/controllers/helpers.rb +18 -4
- data/base/lib/social_stream/controllers/objects.rb +2 -8
- data/base/lib/social_stream/controllers/subjects.rb +9 -2
- data/base/lib/social_stream/models/supertype.rb +2 -0
- data/base/lib/social_stream/population/activity_object.rb +6 -8
- data/base/lib/social_stream/routing/mapper.rb +52 -0
- data/base/social_stream-base.gemspec +4 -7
- data/base/spec/controllers/groups_controller_spec.rb +19 -8
- data/base/spec/controllers/posts_controller_spec.rb +114 -147
- data/base/spec/models/post_authorization_spec.rb +190 -204
- data/base/spec/models/post_spec.rb +17 -63
- data/base/vendor/assets/javascripts/bootstrap-multiselect.js +434 -127
- data/documents/Rakefile +1 -6
- data/documents/config/locales/de.yml +93 -0
- data/documents/config/locales/es.yml +2 -2
- data/documents/config/locales/fr.yml +93 -0
- data/documents/config/locales/hu.yml +93 -0
- data/documents/config/locales/nl.yml +93 -0
- data/documents/config/locales/zh.yml +4 -4
- data/documents/config/routes.rb +7 -9
- data/documents/lib/social_stream/documents/version.rb +1 -1
- data/documents/social_stream-documents.gemspec +4 -4
- data/events/Rakefile +1 -6
- data/events/config/locales/es.yml +3 -3
- data/events/config/locales/zh.yml +3 -3
- data/events/lib/social_stream/events/models/actor.rb +2 -1
- data/events/lib/social_stream/events/version.rb +1 -1
- data/events/social_stream-events.gemspec +1 -1
- data/lib/generators/social_stream/install_generator.rb +1 -0
- data/lib/social_stream.rb +1 -0
- data/lib/social_stream/version.rb +1 -1
- data/lib/tasks/i18n.rake +22 -2
- data/linkser/Rakefile +1 -6
- data/linkser/config/locales/de.yml +17 -0
- data/linkser/config/locales/es.yml +2 -2
- data/linkser/config/locales/fr.yml +17 -0
- data/linkser/config/locales/hu.yml +17 -0
- data/linkser/config/locales/nl.yml +17 -0
- data/linkser/config/locales/zh.yml +2 -2
- data/linkser/lib/social_stream/linkser/version.rb +1 -1
- data/linkser/social_stream-linkser.gemspec +1 -1
- data/oauth2_server/Rakefile +1 -6
- data/oauth2_server/app/assets/images/step_1.png +0 -0
- data/oauth2_server/app/assets/images/step_2.png +0 -0
- data/oauth2_server/app/assets/images/step_3.png +0 -0
- data/oauth2_server/app/assets/javascripts/social_stream/site_client.js +27 -0
- data/oauth2_server/app/assets/stylesheets/social_stream/oauth2_server/applications/layout/_applications-oauth2server.css.sass +0 -5
- data/oauth2_server/app/assets/stylesheets/social_stream/oauth2_server/create/layout/_create-oauth2server.css.sass +3 -5
- data/oauth2_server/app/assets/stylesheets/social_stream/oauth2_server/show/layout/_show-oauth2server.css.sass +8 -6
- data/oauth2_server/app/controllers/site/clients_controller.rb +17 -41
- data/oauth2_server/app/decorators/social_stream/base/relation_decorator.rb +2 -0
- data/oauth2_server/app/decorators/social_stream/base/user_decorator.rb +1 -20
- data/oauth2_server/app/models/relation/manager.rb +1 -10
- data/oauth2_server/app/models/site/client.rb +4 -2
- data/oauth2_server/app/views/site/clients/_destroy.html.erb +11 -0
- data/oauth2_server/app/views/site/clients/_edit.html.erb +9 -2
- data/oauth2_server/app/views/site/clients/_edit_step_2.html.erb +6 -6
- data/oauth2_server/app/views/site/clients/_edit_step_3.html.erb +8 -6
- data/oauth2_server/app/views/site/clients/_form.html.erb +11 -11
- data/oauth2_server/app/views/site/clients/_list.html.erb +23 -11
- data/oauth2_server/app/views/site/clients/edit.html.erb +1 -1
- data/oauth2_server/app/views/site/clients/index.html.erb +9 -40
- data/oauth2_server/app/views/site/clients/show.html.erb +66 -68
- data/oauth2_server/config/locales/en.yml +19 -0
- data/oauth2_server/config/locales/es.yml +23 -4
- data/oauth2_server/config/locales/zh.yml +32 -13
- data/oauth2_server/config/routes.rb +3 -1
- data/oauth2_server/lib/social_stream/oauth2_server.rb +4 -1
- data/oauth2_server/lib/social_stream/oauth2_server/ability.rb +1 -1
- data/oauth2_server/lib/social_stream/oauth2_server/models/user.rb +18 -0
- data/oauth2_server/lib/social_stream/oauth2_server/version.rb +1 -1
- data/oauth2_server/social_stream-oauth2_server.gemspec +1 -1
- data/oauth2_server/spec/controllers/site_clients_controller_authorization_spec.rb +7 -0
- data/ostatus/Rakefile +1 -6
- data/ostatus/config/locales/zh.yml +8 -8
- data/ostatus/lib/social_stream-ostatus.rb +3 -0
- data/ostatus/lib/social_stream/ostatus/version.rb +1 -1
- data/ostatus/social_stream-ostatus.gemspec +1 -1
- data/places/config/locales/es.yml +51 -51
- data/presence/config/locales/es.yml +48 -48
- data/presence/config/locales/zh.yml +48 -48
- data/presence/lib/social_stream/presence/version.rb +1 -1
- data/presence/social_stream-presence.gemspec +1 -1
- data/social_stream.gemspec +8 -7
- metadata +60 -29
- data/base/app/assets/javascripts/social_stream/follow.js +0 -28
- data/base/app/controllers/followers_controller.rb +0 -34
- data/base/app/helpers/followers_helper.rb +0 -5
- data/base/app/views/contacts/_link_follow.html.erb +0 -16
- data/base/app/views/followers/destroy.js.erb +0 -1
- data/base/app/views/followers/index.html.erb +0 -30
- data/base/app/views/followers/update.js.erb +0 -3
- data/base/app/views/frontpage/_characteristics.html.erb +0 -23
- data/base/lib/social_stream/routing/constraints/custom.rb +0 -11
- data/base/lib/social_stream/routing/constraints/follow.rb +0 -11
- data/base/spec/controllers/followers_controller_spec.rb +0 -37
data/base/config/locales/pt.yml
CHANGED
@@ -1,11 +1,6 @@
|
|
1
1
|
---
|
2
2
|
pt:
|
3
3
|
language_name: Português
|
4
|
-
actor:
|
5
|
-
name: Nome
|
6
|
-
action:
|
7
|
-
send: Enviar
|
8
|
-
accept: Aceitar
|
9
4
|
account:
|
10
5
|
cancel: Cancelar a conta
|
11
6
|
edit: Editar a conta
|
@@ -18,10 +13,15 @@ pt:
|
|
18
13
|
change: Mudar senha
|
19
14
|
new: Nova senha
|
20
15
|
retype: Repetir nova senha
|
16
|
+
action:
|
17
|
+
accept: Aceitar
|
18
|
+
send: Enviar
|
21
19
|
activerecord:
|
22
20
|
attributes:
|
23
21
|
contact:
|
24
22
|
relation_ids: Tipo de contato
|
23
|
+
profile:
|
24
|
+
name: Name
|
25
25
|
relation/custom:
|
26
26
|
name: Nome
|
27
27
|
user:
|
@@ -33,19 +33,22 @@ pt:
|
|
33
33
|
activity:
|
34
34
|
audience:
|
35
35
|
hidden:
|
36
|
-
summary: Restrito
|
37
36
|
full: Compartilhado com contatos de %{audience}
|
37
|
+
summary: Restrito
|
38
38
|
public:
|
39
|
-
summary: Público
|
40
39
|
full: Acessível por toda Internet
|
40
|
+
summary: Público
|
41
|
+
show: Show
|
41
42
|
visible:
|
42
|
-
summary: Restrito
|
43
43
|
full: Compartilhado com %{audience}
|
44
|
-
|
44
|
+
summary: Restrito
|
45
45
|
confirm_delete: Apagar atividade?
|
46
46
|
delete: Apagar
|
47
47
|
last: Últimas Atividades
|
48
48
|
like: Curtir
|
49
|
+
like_sentence:
|
50
|
+
one: '%{likers} likes this'
|
51
|
+
other: '%{likers} like this'
|
49
52
|
one: Atividade
|
50
53
|
other: Atividades
|
51
54
|
privacy:
|
@@ -60,50 +63,62 @@ pt:
|
|
60
63
|
one: '%{count} group'
|
61
64
|
other: '%{count} groups'
|
62
65
|
sending: Enviando
|
66
|
+
share: Share
|
67
|
+
share_loading: Sharing...
|
68
|
+
stream:
|
69
|
+
atom_title: Activity Stream from %{subject}
|
70
|
+
title:
|
71
|
+
follow: '%{author} added %{activity_object} as contact'
|
72
|
+
like: '%{author} likes %{activity_object}'
|
73
|
+
make-friend: '%{author} also added %{activity_object} as contact'
|
74
|
+
post: '%{author} posted %{activity_object}'
|
75
|
+
updated: '%{author} posted %{activity_object}'
|
63
76
|
title: Atividades
|
64
77
|
to_comment: Comentário
|
65
78
|
unlike: Curtir (desfazer)
|
66
79
|
verb:
|
67
80
|
follow:
|
68
|
-
User:
|
69
|
-
title: '%{subject} adicionou %{contact} como contato.'
|
70
|
-
message: '%{name} adicionou você como contato.'
|
71
81
|
Group:
|
82
|
+
message: '%{name} adicionou você como contato.'
|
72
83
|
title: '%{subject} adicionou %{contact} como contato.'
|
84
|
+
User:
|
73
85
|
message: '%{name} adicionou você como contato.'
|
86
|
+
title: '%{subject} adicionou %{contact} como contato.'
|
87
|
+
join:
|
88
|
+
one: '%{sender} joined the %{title} %{thing}.'
|
74
89
|
like:
|
75
|
-
User:
|
76
|
-
title: '%{subject} é fã de %{contact}.'
|
77
|
-
message: '%{name} agora é seu fã.'
|
78
90
|
Group:
|
91
|
+
message: '%{name} agora é seu fã.'
|
79
92
|
title: '%{subject} é fã de %{contact}.'
|
93
|
+
User:
|
80
94
|
message: '%{name} agora é seu fã.'
|
95
|
+
title: '%{subject} é fã de %{contact}.'
|
81
96
|
make-friend:
|
82
|
-
User:
|
83
|
-
title: '%{subject} e %{contact} estão agora conectados.'
|
84
|
-
message: '%{name} também adicionou você como contato.'
|
85
97
|
Group:
|
86
|
-
title: '%{subject} adicionou %{contact} como contato.'
|
87
98
|
message: '%{name} adicionou você como contato.'
|
99
|
+
title: '%{subject} adicionou %{contact} como contato.'
|
100
|
+
User:
|
101
|
+
message: '%{name} também adicionou você como contato.'
|
102
|
+
title: '%{subject} e %{contact} estão agora conectados.'
|
88
103
|
post:
|
89
104
|
title:
|
90
105
|
other_wall: '%{sender} → %{receiver}'
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
106
|
+
activity_action:
|
107
|
+
follow: Follow
|
108
|
+
sentence:
|
109
|
+
follow:
|
110
|
+
one: '%{followers} follows this'
|
111
|
+
other: '%{followers} follow this'
|
112
|
+
more:
|
113
|
+
one: '%{count} more person'
|
114
|
+
other: '%{count} more people'
|
115
|
+
unfollow: Unfollow
|
116
|
+
actor:
|
117
|
+
name: Nome
|
118
|
+
title:
|
119
|
+
other: Actors
|
120
|
+
ajax:
|
121
|
+
error: There was an error in the remote server
|
107
122
|
browse: Browse
|
108
123
|
button:
|
109
124
|
cancel: Cancelar
|
@@ -126,111 +141,144 @@ pt:
|
|
126
141
|
select:
|
127
142
|
hint: Selecione clicando nos retratos
|
128
143
|
comment:
|
129
|
-
input: Escreva um comentário...
|
130
144
|
confirm_delete: Excluir comentário?
|
145
|
+
input: Escreva um comentário...
|
131
146
|
name: comentário
|
132
147
|
one: um comentário
|
133
|
-
view_all: Veja todos comentários
|
134
148
|
other: comments
|
135
149
|
title:
|
136
150
|
one: Comment
|
137
151
|
other: Comments
|
152
|
+
view_all: Veja todos comentários
|
138
153
|
contact:
|
139
154
|
all_n: Todos os contatos (%{count})
|
140
155
|
confirm_delete: Excluir contato?
|
141
156
|
current: Atual
|
142
157
|
delete: Excluir
|
143
158
|
edit:
|
144
|
-
title: Editar contato com %{name}
|
145
159
|
submit: Editar contato
|
160
|
+
title: Editar contato com %{name}
|
161
|
+
empty: You have not added anybody yet. What about <a href="%{explore}">exploring</a>?
|
146
162
|
error_count:
|
147
163
|
one: '1 erro impediu que este contato fosse salvo:'
|
148
164
|
other: '%{count} erros impediram que este contato fosse salvo:'
|
165
|
+
follow: Follow
|
166
|
+
following: Following
|
149
167
|
graph:
|
150
|
-
one: Gráfico
|
151
168
|
empty: Lamentamos, mas você não tem nenhum contato ainda. Você pode tentar a
|
152
169
|
caixa de pesquisa para procurar alguém!
|
170
|
+
one: Gráfico
|
153
171
|
in_common:
|
154
172
|
one: 1 contato em comum
|
155
173
|
other: '%{count} contatos em comum'
|
174
|
+
n:
|
175
|
+
one: '%{count} contact'
|
176
|
+
other: '%{count} contacts'
|
156
177
|
new:
|
157
|
-
|
158
|
-
|
159
|
-
menu: Adicionar contato
|
160
|
-
submit: Adicionar
|
178
|
+
added:
|
179
|
+
other: '%{actors} successfully added as %{relations}'
|
161
180
|
button:
|
162
|
-
zero: Add
|
163
181
|
one: '%{count} role'
|
164
182
|
other: '%{count} roles'
|
183
|
+
zero: Add
|
184
|
+
link: + Adicionar contato
|
185
|
+
menu: Adicionar contato
|
186
|
+
modal:
|
187
|
+
button: Add
|
188
|
+
title: Add contacts
|
189
|
+
submit: Adicionar
|
190
|
+
title: Adicionar %{name} aos seus contatos
|
165
191
|
one: Contato
|
166
192
|
other: Contatos
|
167
193
|
pending:
|
168
|
-
other: Pendente
|
169
194
|
all: Todos
|
170
195
|
all_n: Veja todos os contatos pendentes (%{count})
|
196
|
+
other: Pendente
|
197
|
+
received: Received
|
171
198
|
relation:
|
172
|
-
one: Tipo de contato
|
173
199
|
new: Novo tipo
|
200
|
+
one: Tipo de contato
|
174
201
|
reply:
|
175
202
|
link: + Responder contato
|
176
|
-
title: Responder pedido de contato para %{name}
|
177
203
|
submit: Responder contato
|
204
|
+
title: Responder pedido de contato para %{name}
|
205
|
+
saving: Saving...
|
206
|
+
sent: Added
|
178
207
|
suggestion:
|
208
|
+
all: Todas
|
179
209
|
one: Sugestão
|
180
210
|
other: Sugestões
|
181
|
-
all: Todas
|
182
211
|
type:
|
183
212
|
new: + Novo tipo
|
184
|
-
empty: You have not added anybody yet. What about <a href="%{explore}">exploring</a>?
|
185
|
-
follow: Follow
|
186
|
-
following: Following
|
187
|
-
n:
|
188
|
-
one: '%{count} contact'
|
189
|
-
other: '%{count} contacts'
|
190
|
-
received: Received
|
191
|
-
saving: Saving...
|
192
|
-
sent: Added
|
193
213
|
unfollow: Unfollow
|
194
214
|
view_all: View all...
|
195
215
|
copyright: 2010 Copyright - todos direitos reservados
|
216
|
+
counter:
|
217
|
+
like:
|
218
|
+
one: <span class="counter">%{count}</span> like
|
219
|
+
other: <span class="counter">%{count}</span> likes
|
220
|
+
view:
|
221
|
+
one: <span class="counter">%{count}</span> view
|
222
|
+
other: <span class="counter">%{count}</span> views
|
196
223
|
delete:
|
197
224
|
confirm: Apagar %{element}}?
|
198
225
|
devise:
|
199
226
|
links:
|
227
|
+
confirmation_instructions: Não recebeu instruções de confirmação?
|
228
|
+
forgot_password: Esqueceu sua senha?
|
200
229
|
sign_in: Entrar
|
230
|
+
sign_in_with: Entrar com %{provider}
|
201
231
|
sign_up: Registrar
|
202
|
-
forgot_password: Esqueceu sua senha?
|
203
|
-
confirmation_instructions: Não recebeu instruções de confirmação?
|
204
232
|
unlock_instructions: Não recebeu instruções para desbloquear?
|
205
|
-
sign_in_with: Entrar com %{provider}
|
206
233
|
passwords:
|
207
234
|
confirm: Confirmar senha
|
208
235
|
forgot: Esqueceu sua senha?
|
209
236
|
instructions: 'Digite o endereço de e-mail vinculado a sua conta e nós lhe enviaremos
|
210
237
|
instruções para alterá-la:'
|
211
238
|
update: Mude sua senha
|
239
|
+
dropdown:
|
240
|
+
notifications: Notifications
|
241
|
+
privacy: Privacy
|
242
|
+
settings: Settings
|
243
|
+
explore:
|
244
|
+
explore:
|
245
|
+
most_followed: Most followed
|
246
|
+
most_popular: Most popular
|
247
|
+
header:
|
248
|
+
explore: Explore
|
249
|
+
participants: Participants
|
250
|
+
resources: Resources
|
251
|
+
search: Search
|
252
|
+
tags: Tags
|
253
|
+
timeline: Timeline
|
254
|
+
link: Explore
|
255
|
+
or: or Explore
|
256
|
+
participants:
|
257
|
+
last_active: Last active
|
258
|
+
last_registered: Last registered
|
259
|
+
most_members: Most members
|
260
|
+
registered_since: since %{time}
|
261
|
+
resources:
|
262
|
+
last_uploaded: Last uploaded
|
263
|
+
most_visited: Most viewed
|
264
|
+
uploaded_since: since %{time}
|
265
|
+
search:
|
266
|
+
placeholder: looking for...
|
267
|
+
submit: Search
|
268
|
+
title: Advanced search
|
212
269
|
follower:
|
213
|
-
n:
|
214
|
-
one: 1 seguidor
|
215
|
-
other: '%{count} seguidores'
|
216
270
|
follower:
|
217
271
|
title: Followers
|
218
272
|
following:
|
219
273
|
title: Followings
|
274
|
+
n:
|
275
|
+
one: 1 seguidor
|
276
|
+
other: '%{count} seguidores'
|
220
277
|
forgot_password: Esqueceu sua senha?
|
221
278
|
frontpage:
|
222
|
-
|
279
|
+
main_title: Social Stream, a framework for building distributed social network
|
280
|
+
websites.
|
223
281
|
presentation:
|
224
|
-
modular:
|
225
|
-
header: Modular
|
226
|
-
p: Available <a href="https://github.com/ging/social_stream#social-stream-components">Social
|
227
|
-
Stream components</a> provide your application only with the features you
|
228
|
-
need in your social network. Just add your desired gems to your Gemfile
|
229
|
-
flexible:
|
230
|
-
header: Flexible
|
231
|
-
p: Completely customize your social network <a href="https://github.com/ging/social_stream/wiki/How-to-change-controllers%2C-models%2C-views%2C-assets-and-locales">changing
|
232
|
-
any Social Stream component</a>, <a href="https://github.com/ging/social_stream/wiki/How-to-add-new-activity-objects">adding
|
233
|
-
new activity objects</a> or changing the CSS using <a href="http://sass-lang.com/">Sass</a>
|
234
282
|
community:
|
235
283
|
header: Community
|
236
284
|
p: Social Stream enjoys a growing community of developers. Feel free to drop
|
@@ -238,42 +286,57 @@ pt:
|
|
238
286
|
Stream's Google group</a> or <a href="http://stackoverflow.com/questions/tagged/social-stream">StackOverflow</a>
|
239
287
|
if you have problems. <a href="https://github.com/ging/social_stream/issues/new">Open
|
240
288
|
an issue</a> if you find a defect. Pull request are very welcomed!
|
241
|
-
|
242
|
-
|
289
|
+
flexible:
|
290
|
+
header: Flexible
|
291
|
+
p: Completely customize your social network <a href="https://github.com/ging/social_stream/wiki/How-to-change-controllers%2C-models%2C-views%2C-assets-and-locales">changing
|
292
|
+
any Social Stream component</a>, <a href="https://github.com/ging/social_stream/wiki/How-to-add-new-activity-objects">adding
|
293
|
+
new activity objects</a> or changing the CSS using <a href="http://sass-lang.com/">Sass</a>
|
294
|
+
modular:
|
295
|
+
header: Modular
|
296
|
+
p: Available <a href="https://github.com/ging/social_stream#social-stream-components">Social
|
297
|
+
Stream components</a> provide your application only with the features you
|
298
|
+
need in your social network. Just add your desired gems to your Gemfile
|
299
|
+
stats: '%{users} usuários e %{groups} grupos registrados'
|
243
300
|
group:
|
244
|
-
one: Grupo
|
245
|
-
other: Grupos
|
246
301
|
all: Todos os grupos
|
247
302
|
all_n: Todos os grupos (%{count})
|
248
303
|
by: Por grupos
|
304
|
+
cloud: Nuvem de tags de grupos
|
249
305
|
destroy:
|
250
|
-
one: Excluir grupo
|
251
306
|
explanation: Todas as atividades, informações e contatos deste grupo serão excluídos!
|
252
307
|
go_ahead: Sim, tenho certeza. Excluir tudo!
|
253
308
|
last_confirm: Esta é sua última chance. Você realmente tem certeza?
|
309
|
+
one: Excluir grupo
|
254
310
|
form:
|
255
311
|
title: Grupo
|
256
312
|
input: Qual o nome do grupo?
|
257
313
|
last: Últimos grupos
|
314
|
+
most:
|
315
|
+
followed: Mais seguidos
|
316
|
+
liked: Mais populares
|
258
317
|
my: Meus grupos
|
318
|
+
n:
|
319
|
+
one: '%{count} group'
|
320
|
+
other: '%{count} groups'
|
259
321
|
new:
|
322
|
+
description: Descrição
|
260
323
|
link: Novo grupo
|
261
324
|
name: Nome
|
262
|
-
description: Descrição
|
263
325
|
participants: Participantes
|
264
326
|
title: Novo grupo
|
265
|
-
|
266
|
-
|
267
|
-
followed: Mais seguidos
|
268
|
-
liked: Mais populares
|
327
|
+
one: Grupo
|
328
|
+
other: Grupos
|
269
329
|
tags: Tags
|
270
|
-
n:
|
271
|
-
one: '%{count} group'
|
272
|
-
other: '%{count} groups'
|
273
330
|
title:
|
274
331
|
one: Group
|
275
332
|
other: Groups
|
276
333
|
view_all: View all...
|
334
|
+
header:
|
335
|
+
icon:
|
336
|
+
contacts: Contacts
|
337
|
+
home: Home
|
338
|
+
messages: Messages
|
339
|
+
repository: Repository
|
277
340
|
help: Ajuda
|
278
341
|
helpers:
|
279
342
|
submit:
|
@@ -292,16 +355,21 @@ pt:
|
|
292
355
|
join_me: Junte-se a mim no %{site}!
|
293
356
|
one: Convite
|
294
357
|
other: Convites
|
295
|
-
toolbar: Convidar
|
296
358
|
success: Seus convites foram enviados com sucesso
|
297
359
|
text: Escreva sua mensagem
|
360
|
+
toolbar: Convidar
|
361
|
+
lang:
|
362
|
+
browser: Auto-detecção do idioma do navegador
|
363
|
+
none: Conteúdo independente da linguagem
|
364
|
+
layout:
|
365
|
+
more: See more (%{count})
|
298
366
|
like:
|
299
367
|
n:
|
300
368
|
one: 1 fã
|
301
369
|
other: '%{count} fãs'
|
302
370
|
location:
|
303
|
-
message: Você está aqui > %{location}
|
304
371
|
base: Você está aqui
|
372
|
+
message: Você está aqui > %{location}
|
305
373
|
separator: ' > '
|
306
374
|
mailboxer:
|
307
375
|
delete: Excluir
|
@@ -328,8 +396,8 @@ pt:
|
|
328
396
|
send: Enviar mensagem
|
329
397
|
sent: Sua mensagem foi enviada
|
330
398
|
menu:
|
331
|
-
options: Opções
|
332
399
|
information: Informação
|
400
|
+
options: Opções
|
333
401
|
wall: Mural
|
334
402
|
message:
|
335
403
|
answer: Escreva sua resposta
|
@@ -379,57 +447,6 @@ pt:
|
|
379
447
|
whose:
|
380
448
|
group: '%{receiver}''s'
|
381
449
|
user: seu
|
382
|
-
post:
|
383
|
-
confirm_delete: Excluir postagem?
|
384
|
-
form:
|
385
|
-
title: Postagem
|
386
|
-
input: O que você está fazendo?
|
387
|
-
name: postagem
|
388
|
-
one: uma postagem
|
389
|
-
title:
|
390
|
-
one: Post
|
391
|
-
other: Posts
|
392
|
-
other: '%{count} postagens'
|
393
|
-
preposition:
|
394
|
-
and: e
|
395
|
-
true: em
|
396
|
-
profile:
|
397
|
-
one: Perfil
|
398
|
-
age: Idade
|
399
|
-
is_on: está em
|
400
|
-
must_be_signed_id: Você precisa efetuar login
|
401
|
-
group:
|
402
|
-
about: Sobre nós
|
403
|
-
birthday: Anniversary
|
404
|
-
experience: Área de especialização
|
405
|
-
info: Informação sobre o grupo
|
406
|
-
tags: Tags do grupo
|
407
|
-
user:
|
408
|
-
about: Sobre mim
|
409
|
-
birthday: Aniversário
|
410
|
-
experience: Interesses
|
411
|
-
info: Informação pessoal
|
412
|
-
tags: Tags do usuário
|
413
|
-
actualcity: Cidade atual
|
414
|
-
address: Enderesso
|
415
|
-
contact: Informção de contato
|
416
|
-
country: País
|
417
|
-
email: E-mail
|
418
|
-
empty: Estes campos estão vazios. Por favor, atualize-os.
|
419
|
-
fax: Fax
|
420
|
-
mobile: Celular
|
421
|
-
organization: Organização
|
422
|
-
phone: Telefone
|
423
|
-
profile: Editar perfil
|
424
|
-
tags:
|
425
|
-
default: social, stream,
|
426
|
-
other: Tags
|
427
|
-
website: Website
|
428
|
-
update:
|
429
|
-
error: Por favor, verifique o formato do seu perfil
|
430
|
-
success: Seu perfil foi atualizado
|
431
|
-
public:
|
432
|
-
other: Todos
|
433
450
|
permission:
|
434
451
|
description:
|
435
452
|
default:
|
@@ -438,56 +455,113 @@ pt:
|
|
438
455
|
activity: Publicar em seu mural
|
439
456
|
follow:
|
440
457
|
nil: Seguir atividade deles
|
458
|
+
notify:
|
459
|
+
nil: Notificar
|
441
460
|
read:
|
442
461
|
activity: Ler seu mural
|
443
462
|
represent:
|
444
463
|
nil: Administrar
|
445
|
-
notify:
|
446
|
-
nil: Notificar
|
447
464
|
detailed:
|
448
465
|
create:
|
449
466
|
activity:
|
450
|
-
positive: SERÃO CAPAZES DE postar novas atividades em seu mural
|
451
467
|
negative: NÃO SERÃO CAPAZES DE postar novas atividades em seu mural
|
468
|
+
positive: SERÃO CAPAZES DE postar novas atividades em seu mural
|
452
469
|
follow:
|
453
470
|
nil:
|
454
|
-
positive: As atividades dos contatos em %{relation} IRÃO APARECER em
|
455
|
-
seu mural
|
456
471
|
negative: As atividades dos contatos em %{relation} NÃO IRÃO APARECER
|
457
472
|
em seu mural
|
473
|
+
positive: As atividades dos contatos em %{relation} IRÃO APARECER em
|
474
|
+
seu mural
|
475
|
+
notify:
|
476
|
+
nil:
|
477
|
+
negative: As atividades NÃO SERÃO notificados para contatos em %{name}
|
478
|
+
positive: As atividades SERÃO notificados para contatos em %{name}
|
458
479
|
read:
|
459
480
|
activity:
|
460
|
-
positive: SERÃO CAPAZES de ler as mensagens em seu mural, exceto aquelas
|
461
|
-
compartilhadas com contatos específicos
|
462
481
|
negative: NÃO SERÃO CAPAZES de ler as mensagens em seu mural, exceto
|
463
482
|
aquelas compartilhadas com contatos específicos
|
483
|
+
positive: SERÃO CAPAZES de ler as mensagens em seu mural, exceto aquelas
|
484
|
+
compartilhadas com contatos específicos
|
464
485
|
represent:
|
465
486
|
nil:
|
466
|
-
positive: SERÃO CAPAZES de mudar de sessão e agir como %{subject}
|
467
487
|
negative: NÃO SERÃO CAPAZES de mudar de sessão e agir como %{subject}
|
468
|
-
|
469
|
-
nil:
|
470
|
-
positive: As atividades SERÃO notificados para contatos em %{name}
|
471
|
-
negative: As atividades NÃO SERÃO notificados para contatos em %{name}
|
488
|
+
positive: SERÃO CAPAZES de mudar de sessão e agir como %{subject}
|
472
489
|
of_relation:
|
473
490
|
choose: 2. Permissões para <strong>%{name}</strong>
|
474
491
|
postit: Manage the permissions of your contacts and create new roles
|
492
|
+
post:
|
493
|
+
confirm_delete: Excluir postagem?
|
494
|
+
form:
|
495
|
+
title: Postagem
|
496
|
+
input: O que você está fazendo?
|
497
|
+
name: postagem
|
498
|
+
one: uma postagem
|
499
|
+
other: '%{count} postagens'
|
500
|
+
title:
|
501
|
+
one: Post
|
502
|
+
other: Posts
|
475
503
|
privacy:
|
476
504
|
intro: 'Os contatos em <strong>%{relation}</strong>:'
|
477
505
|
rule:
|
478
506
|
add: Adicionar
|
479
|
-
title: Regras de privacidade
|
480
507
|
saved: Regras de privacidade salvas
|
508
|
+
title: Regras de privacidade
|
509
|
+
profile:
|
510
|
+
actualcity: Cidade atual
|
511
|
+
address: Enderesso
|
512
|
+
age: Idade
|
513
|
+
contact: Informção de contato
|
514
|
+
country: País
|
515
|
+
email: E-mail
|
516
|
+
empty: Estes campos estão vazios. Por favor, atualize-os.
|
517
|
+
fax: Fax
|
518
|
+
group:
|
519
|
+
about: Sobre nós
|
520
|
+
birthday: Anniversary
|
521
|
+
experience: Área de especialização
|
522
|
+
info: Informação sobre o grupo
|
523
|
+
tags: Tags do grupo
|
524
|
+
is_on: está em
|
525
|
+
mobile: Celular
|
526
|
+
must_be_signed_id: Você precisa efetuar login
|
527
|
+
one: Perfil
|
528
|
+
organization: Organização
|
529
|
+
phone: Telefone
|
530
|
+
profile: Editar perfil
|
531
|
+
tags:
|
532
|
+
default: social, stream,
|
533
|
+
other: Tags
|
534
|
+
update:
|
535
|
+
error: Por favor, verifique o formato do seu perfil
|
536
|
+
success: Seu perfil foi atualizado
|
537
|
+
user:
|
538
|
+
about: Sobre mim
|
539
|
+
birthday: Aniversário
|
540
|
+
experience: Interesses
|
541
|
+
info: Informação pessoal
|
542
|
+
tags: Tags do usuário
|
543
|
+
website: Website
|
544
|
+
public:
|
545
|
+
other: Todos
|
481
546
|
relation_custom:
|
482
547
|
confirm_delete: Excluir esse relação?
|
483
548
|
delete: Excluir
|
484
549
|
edit: Mudar nome
|
485
|
-
new: + Nova relação
|
486
|
-
title: Privacidade & contexto
|
487
550
|
list:
|
488
551
|
title: Roles
|
552
|
+
new: + Nova relação
|
553
|
+
title: Privacidade & contexto
|
554
|
+
relation_owner:
|
555
|
+
name: Owner
|
489
556
|
relation_public:
|
490
557
|
name: Publico
|
558
|
+
repository:
|
559
|
+
filter: filter
|
560
|
+
order:
|
561
|
+
by: Order by
|
562
|
+
last_modified: Last modified
|
563
|
+
most_popular: Most popular
|
564
|
+
title: Repository
|
491
565
|
representation:
|
492
566
|
notice: Sua sessão foi alterada. Agora você está agindo em nome de %{subject}.
|
493
567
|
Use o menu superior direito para retornar à sua sessão
|
@@ -499,10 +573,10 @@ pt:
|
|
499
573
|
one: Write at least %{count} character
|
500
574
|
other: Write at least %{count} characters
|
501
575
|
global:
|
502
|
-
name: Pesquisa global
|
503
576
|
first_result:
|
504
577
|
more: Mostrando os primeiros %{count} resultados.
|
505
578
|
one: Mostrando o primeiro resultado.
|
579
|
+
name: Pesquisa global
|
506
580
|
query: Veja mais resultados para %{query} >
|
507
581
|
name: Search
|
508
582
|
no_subject_found: Nenhum %{subject} foi encontrado.
|
@@ -523,23 +597,29 @@ pt:
|
|
523
597
|
briefing: Permite que você cancele sua conta
|
524
598
|
email_change:
|
525
599
|
briefing: Mude o seu e-mail
|
600
|
+
error: Alguns erros gerados ao salvar suas alterações
|
601
|
+
for: Configurações para
|
526
602
|
lang_change:
|
527
603
|
briefing: Alterar o idioma
|
528
604
|
name: Alterar o idioma
|
529
|
-
error: Alguns erros gerados ao salvar suas alterações
|
530
|
-
for: Configurações para
|
531
605
|
main: Configurações
|
532
606
|
manage:
|
533
|
-
name: Administrar Contatos
|
534
607
|
briefing: Configuração para contatos
|
535
608
|
explanation: Mudar as permissões dos contatos
|
609
|
+
name: Administrar Contatos
|
610
|
+
notification_settings:
|
611
|
+
prefix: Send me an email
|
612
|
+
someone_adds_me_as_a_contact: when someone adds me as a contact
|
613
|
+
someone_comments_on_my_post: when someone comments on my post
|
614
|
+
someone_confirms_my_contact_request: when someone confirms my contact request
|
615
|
+
someone_likes_my_post: when someone likes my post
|
536
616
|
notifications:
|
537
617
|
briefing: Configurações de notificações alertas de email
|
538
|
-
name: Notificaões
|
539
618
|
by_email:
|
540
|
-
name: Envie-me um email quando eu receber uma notificação
|
541
619
|
always: Sempre
|
620
|
+
name: Envie-me um email quando eu receber uma notificação
|
542
621
|
never: Nunca
|
622
|
+
name: Notificaões
|
543
623
|
one: Configurações
|
544
624
|
password_change:
|
545
625
|
briefing: Mude sua senha
|
@@ -548,6 +628,12 @@ pt:
|
|
548
628
|
sign_in: Entrar
|
549
629
|
sign_out: Sair
|
550
630
|
sign_up: Cadastrar-se
|
631
|
+
site:
|
632
|
+
current:
|
633
|
+
description: A base para a construção de sites de rede social.
|
634
|
+
keywords: social stream,social software,framework,ruby on rails
|
635
|
+
title: Social Stream
|
636
|
+
name: Social Stream
|
551
637
|
subject:
|
552
638
|
this_is_you: Este é você!
|
553
639
|
sure: Você tem certeza?
|
@@ -555,87 +641,12 @@ pt:
|
|
555
641
|
ago: '%{time} atrás'
|
556
642
|
unknown: Desconhecido
|
557
643
|
user:
|
644
|
+
all: Todos os usuários
|
645
|
+
all_n: Todos os usuários (%{count})
|
558
646
|
by: Por usuários
|
559
647
|
one: Usuário
|
560
648
|
other: Usuários
|
561
|
-
all: Todos os usuários
|
562
|
-
all_n: Todos os usuários (%{count})
|
563
649
|
title:
|
564
650
|
one: User
|
565
651
|
other: Users
|
566
652
|
welcome: Bem-vindo ao %{site}!
|
567
|
-
lang:
|
568
|
-
browser: Auto-detecção do idioma do navegador
|
569
|
-
none: Conteúdo independente da linguagem
|
570
|
-
activity_action:
|
571
|
-
follow: Follow
|
572
|
-
sentence:
|
573
|
-
follow:
|
574
|
-
one: '%{followers} follows this'
|
575
|
-
other: '%{followers} follow this'
|
576
|
-
more:
|
577
|
-
one: '%{count} more person'
|
578
|
-
other: '%{count} more people'
|
579
|
-
unfollow: Unfollow
|
580
|
-
ajax:
|
581
|
-
error: There was an error in the remote server
|
582
|
-
counter:
|
583
|
-
like:
|
584
|
-
one: <span class="counter">%{count}</span> like
|
585
|
-
other: <span class="counter">%{count}</span> likes
|
586
|
-
view:
|
587
|
-
one: <span class="counter">%{count}</span> view
|
588
|
-
other: <span class="counter">%{count}</span> views
|
589
|
-
dropdown:
|
590
|
-
notifications: Notifications
|
591
|
-
privacy: Privacy
|
592
|
-
settings: Settings
|
593
|
-
explore:
|
594
|
-
explore:
|
595
|
-
most_followed: Most followed
|
596
|
-
most_popular: Most popular
|
597
|
-
header:
|
598
|
-
explore: Explore
|
599
|
-
participants: Participants
|
600
|
-
resources: Resources
|
601
|
-
timeline: Timeline
|
602
|
-
tags: Tags
|
603
|
-
search: Search
|
604
|
-
link: Explore
|
605
|
-
or: or Explore
|
606
|
-
participants:
|
607
|
-
last_active: Last active
|
608
|
-
last_registered: Last registered
|
609
|
-
most_members: Most members
|
610
|
-
registered_since: since %{time}
|
611
|
-
resources:
|
612
|
-
last_uploaded: Last uploaded
|
613
|
-
most_visited: Most viewed
|
614
|
-
uploaded_since: since %{time}
|
615
|
-
search:
|
616
|
-
title: Advanced search
|
617
|
-
placeholder: looking for...
|
618
|
-
submit: Search
|
619
|
-
header:
|
620
|
-
icon:
|
621
|
-
contacts: Contacts
|
622
|
-
home: Home
|
623
|
-
messages: Messages
|
624
|
-
repository: Repository
|
625
|
-
layout:
|
626
|
-
more: See more (%{count})
|
627
|
-
repository:
|
628
|
-
filter: filter
|
629
|
-
title: Repository
|
630
|
-
order:
|
631
|
-
by: Order by
|
632
|
-
last_modified: Last modified
|
633
|
-
most_popular: Most popular
|
634
|
-
site:
|
635
|
-
current:
|
636
|
-
description: A base para a construção de sites de rede social.
|
637
|
-
keywords: social stream,social software,framework,ruby on rails
|
638
|
-
title: Social Stream
|
639
|
-
name: Social Stream
|
640
|
-
relation_manager:
|
641
|
-
name: Manager
|