social_stream 0.23.4 → 0.24.0
Sign up to get free protection for your applications and to get access to all the features.
- data/base/app/assets/images/flags/pt.png +0 -0
- data/base/app/assets/javascripts/social_stream.toolbar.js +41 -0
- data/base/app/assets/stylesheets/settings.css +1 -0
- data/base/app/controllers/activity_actions_controller.rb +44 -0
- data/base/app/controllers/followers_controller.rb +39 -0
- data/base/app/helpers/activities_helper.rb +10 -10
- data/base/app/helpers/activity_actions_helper.rb +35 -0
- data/base/app/helpers/contacts_helper.rb +1 -1
- data/base/app/helpers/followers_helper.rb +5 -0
- data/base/app/helpers/toolbar_helper.rb +55 -68
- data/base/app/models/activity_action.rb +28 -0
- data/base/app/models/activity_object.rb +11 -2
- data/base/app/models/actor.rb +23 -33
- data/base/app/models/contact.rb +32 -43
- data/base/app/models/group.rb +2 -6
- data/base/app/models/relation.rb +1 -1
- data/base/app/models/relation/follow.rb +14 -0
- data/base/app/models/tie.rb +30 -30
- data/base/app/models/user.rb +8 -0
- data/base/app/views/activities/_options.html.erb +0 -1
- data/base/app/views/activity_actions/_follow_form.html.erb +10 -0
- data/base/app/views/activity_actions/_follow_sentence.html.erb +3 -0
- data/base/app/views/activity_actions/_update_form.js.erb +2 -0
- data/base/app/views/activity_actions/create.js.erb +1 -0
- data/base/app/views/activity_actions/update.js.erb +1 -0
- data/base/app/views/avatars/index.html.erb +1 -1
- data/base/app/views/cheesecake/index.html.erb +1 -1
- data/base/app/views/contacts/{_link.html.erb → _link_custom.html.erb} +0 -0
- data/base/app/views/contacts/_link_follow.html.erb +12 -0
- data/base/app/views/contacts/edit.html.erb +1 -1
- data/base/app/views/contacts/index.html.erb +1 -1
- data/base/app/views/contacts/index.js.erb +1 -1
- data/base/app/views/contacts/new.html.erb +1 -1
- data/base/app/views/conversations/index.html.erb +1 -1
- data/base/app/views/conversations/index.js.erb +1 -1
- data/base/app/views/conversations/show.html.erb +1 -1
- data/base/app/views/conversations/show.js.erb +1 -1
- data/base/app/views/devise/registrations/edit.html.erb +1 -1
- data/base/app/views/followers/destroy.js.erb +1 -0
- data/base/app/views/followers/index.html.erb +5 -0
- data/base/app/views/followers/update.js.erb +1 -0
- data/base/app/views/groups/_show.html.erb +1 -1
- data/base/app/views/groups/new.html.erb +1 -1
- data/base/app/views/layouts/_header_dropdown_menu.html.erb +5 -3
- data/base/app/views/messages/new.html.erb +1 -1
- data/base/app/views/messages/new.js.erb +1 -1
- data/base/app/views/objects/_show.html.erb +1 -1
- data/base/app/views/profiles/edit.html.erb +1 -1
- data/base/app/views/profiles/show.html.erb +1 -1
- data/base/app/views/relation/customs/index.html.erb +1 -1
- data/base/app/views/settings/index.html.erb +1 -1
- data/base/app/views/settings/index.js.erb +1 -0
- data/base/app/views/ties/index.html.erb +1 -1
- data/base/app/views/toolbar/_logo.html.erb +0 -7
- data/base/app/views/users/_show.html.erb +1 -1
- data/base/config/locales/en.yml +16 -6
- data/base/config/locales/es.yml +15 -6
- data/base/config/locales/pt.yml +507 -0
- data/base/config/locales/rails.pt.yml +192 -0
- data/base/config/routes.rb +20 -7
- data/base/db/migrate/20120316093946_create_activity_actions.rb +15 -0
- data/base/db/migrate/20120316113728_activity_action_follow.rb +23 -0
- data/base/lib/generators/social_stream/base/install_generator.rb +0 -4
- data/base/lib/generators/social_stream/base/templates/initializer.rb +7 -0
- data/base/lib/inherited_resources/social_stream.rb +18 -0
- data/base/lib/rails/social_stream.rb +23 -0
- data/base/lib/social_stream-base.rb +7 -3
- data/base/lib/social_stream/base/dependencies.rb +3 -2
- data/base/lib/social_stream/base/engine.rb +6 -6
- data/base/lib/social_stream/base/version.rb +1 -1
- data/base/lib/social_stream/models/channeled.rb +8 -0
- data/base/lib/social_stream/models/object.rb +1 -3
- data/base/lib/social_stream/models/subtype.rb +31 -25
- data/base/lib/social_stream/models/supertype.rb +54 -19
- data/base/lib/social_stream/views/toolbar/base.rb +143 -0
- data/base/lib/tasks/db/populate.rake +1 -1
- data/base/social_stream-base.gemspec +1 -3
- data/base/spec/dummy/config/initializers/social_stream.rb +7 -0
- data/base/spec/models/activity_action_spec.rb +26 -0
- data/base/spec/models/tie_spec.rb +2 -2
- data/documents/app/views/common_documents/_headers.html.erb +1 -1
- data/documents/lib/social_stream-documents.rb +4 -2
- data/documents/lib/social_stream/documents/engine.rb +3 -3
- data/documents/lib/social_stream/documents/version.rb +1 -1
- data/documents/lib/social_stream/views/toolbar/documents.rb +28 -0
- data/documents/social_stream-documents.gemspec +1 -1
- data/events/app/assets/javascripts/social_stream.event.js +33 -0
- data/events/app/assets/stylesheets/events.css.scss +37 -0
- data/events/app/views/events/_event.html.erb +3 -44
- data/events/app/views/events/_event_date.html.erb +20 -0
- data/events/app/views/events/_event_date_sidebar.html.erb +14 -0
- data/events/app/views/events/_event_details.html.erb +21 -0
- data/events/app/views/events/_event_poster.html.erb +9 -0
- data/events/app/views/events/_event_sidebar.html.erb +10 -0
- data/events/app/views/events/index.html.erb +1 -1
- data/events/app/views/events/index.js.erb +1 -1
- data/events/config/locales/en.yml +6 -0
- data/events/config/locales/es.yml +7 -0
- data/events/lib/social_stream/events/version.rb +1 -1
- data/events/social_stream-events.gemspec +2 -2
- data/lib/social_stream/version.rb +1 -1
- data/linkser/lib/social_stream/linkser/version.rb +1 -1
- data/linkser/social_stream-linkser.gemspec +1 -1
- data/presence/app/assets/images/games/sfighter/abobo/abobo.png +0 -0
- data/presence/app/assets/images/games/sfighter/abobo/abobo_block_81x130x1.png +0 -0
- data/presence/app/assets/images/games/sfighter/abobo/abobo_die_156x119x1.png +0 -0
- data/presence/app/assets/images/games/sfighter/abobo/abobo_hit_108x120x3.png +0 -0
- data/presence/app/assets/images/games/sfighter/abobo/abobo_idle_100x121x3.png +0 -0
- data/presence/app/assets/images/games/sfighter/abobo/abobo_kick_137x130x2.png +0 -0
- data/presence/app/assets/images/games/sfighter/abobo/abobo_punch_131x170x4.png +0 -0
- data/presence/app/assets/images/games/sfighter/abobo/abobo_walk_backward_94x126x6.png +0 -0
- data/presence/app/assets/images/games/sfighter/abobo/abobo_walk_forward_94x126x6.png +0 -0
- data/presence/app/assets/images/games/sfighter/cvs/cvs_block_69x99x2.png +0 -0
- data/presence/app/assets/images/games/sfighter/cvs/cvs_die_150x110x1.png +0 -0
- data/presence/app/assets/images/games/sfighter/cvs/cvs_hit_59x103x1.png +0 -0
- data/presence/app/assets/images/games/sfighter/cvs/cvs_idle_59x106x6.png +0 -0
- data/presence/app/assets/images/games/sfighter/cvs/cvs_kick_156x106x9.png +0 -0
- data/presence/app/assets/images/games/sfighter/cvs/cvs_punch_120x104x6.png +0 -0
- data/presence/app/assets/images/games/sfighter/cvs/cvs_walk_backward_58x106x5.png +0 -0
- data/presence/app/assets/images/games/sfighter/cvs/cvs_walk_forward_58x106x5.png +0 -0
- data/presence/app/assets/images/games/sfighter/stage/background1.png +0 -0
- data/presence/app/assets/images/games/sfighter/stage/background2.png +0 -0
- data/presence/app/assets/images/games/sfighter/stage/background3.png +0 -0
- data/presence/app/assets/images/games/sfighter/stage/foreground.png +0 -0
- data/presence/app/assets/images/games/sfighter/stage/ground.png +0 -0
- data/presence/app/assets/images/games/sfighter/thumbnail.png +0 -0
- data/presence/app/assets/images/games/ter/classic_circle.png +0 -0
- data/presence/app/assets/images/games/ter/classic_thumbnail.png +0 -0
- data/presence/app/assets/images/games/ter/modern_thumbnail.png +0 -0
- data/presence/app/assets/images/webcam.png +0 -0
- data/presence/app/assets/javascripts/jquery.ui.chatbox.sstreampresence.js +2 -2
- data/presence/app/assets/javascripts/presence_XmppClient.js.erb +3 -1
- data/presence/app/assets/javascripts/presence_game.js.erb +13 -6
- data/presence/app/assets/javascripts/presence_game_comunication.js.erb +83 -13
- data/presence/app/assets/javascripts/presence_game_factory.js.erb +47 -0
- data/presence/app/assets/javascripts/presence_game_interface.js.erb +143 -53
- data/presence/app/assets/javascripts/presence_game_sfighter.js.erb +583 -0
- data/presence/app/assets/javascripts/presence_game_ter.js.erb +20 -9
- data/presence/app/assets/javascripts/presence_uiManager.js.erb +0 -2
- data/presence/app/assets/javascripts/presence_utilities.js +1 -1
- data/presence/app/assets/javascripts/presence_videochat.js.erb +5 -0
- data/presence/app/assets/javascripts/social_stream-presence.js +1 -0
- data/presence/app/assets/stylesheets/chat.css.scss +59 -6
- data/presence/config/locales/en.yml +1 -1
- data/presence/config/locales/es.yml +1 -1
- data/presence/lib/social_stream-presence.rb +4 -0
- data/presence/lib/social_stream/presence/engine.rb +6 -0
- data/presence/lib/social_stream/presence/version.rb +1 -1
- data/presence/lib/social_stream/views/toolbar/presence.rb +28 -0
- data/presence/social_stream-presence.gemspec +1 -1
- data/social_stream.gemspec +5 -5
- metadata +92 -41
- data/base/app/assets/javascripts/toolbar.js +0 -22
- data/base/app/views/layouts/_settings.html.erb +0 -18
- data/base/app/views/toolbar/_home.html.erb +0 -15
- data/base/app/views/toolbar/_messages.html.erb +0 -15
- data/base/app/views/toolbar/_profile.html.erb +0 -28
- data/base/lib/generators/social_stream/base/templates/navigation.rb +0 -4
- data/base/lib/social_stream/toolbar_config/base.rb +0 -94
- data/documents/lib/social_stream/toolbar_config/documents.rb +0 -27
- data/events/lib/social_stream/toolbar_config/events.rb +0 -22
@@ -1,4 +1,4 @@
|
|
1
|
-
<% toolbar :profile => @contact.receiver_subject, :option => 'contacts' %>
|
1
|
+
<% toolbar :profile, :subject => @contact.receiver_subject, :option => 'contacts' %>
|
2
2
|
<% location link_to(image_tag("btn/btn_friend.png", :class => "menu_icon") +
|
3
3
|
t('contact.new.title', :name => @contact.receiver.name), new_contact_path(:id => @contact.to_param)) %>
|
4
4
|
|
@@ -0,0 +1 @@
|
|
1
|
+
$(".<%= follow_link_class @contact %>").html("<%= escape_javascript render(:partial => "contacts/link_follow", :locals => { :contact => @contact.reload } )%>");
|
@@ -0,0 +1 @@
|
|
1
|
+
$(".<%= follow_link_class @contact %>").html("<%= escape_javascript render(:partial => "contacts/link_follow", :locals => { :contact => @contact.reload } )%>");
|
@@ -7,9 +7,11 @@
|
|
7
7
|
<li>
|
8
8
|
<%= link_to t('settings.main'), settings_path, :id => "btn_menu_settings" %>
|
9
9
|
</li>
|
10
|
-
|
11
|
-
|
12
|
-
|
10
|
+
<% if SocialStream.relation_model == :custom %>
|
11
|
+
<li>
|
12
|
+
<%= link_to t('account.privacy'), relation_customs_path %>
|
13
|
+
</li>
|
14
|
+
<% end %>
|
13
15
|
<li>
|
14
16
|
<%= link_to t('sign_out'), destroy_user_session_path, :method => :delete %>
|
15
17
|
</li>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
$("#content").html("<%= escape_javascript(render :partial => 'new') %>");
|
2
2
|
|
3
|
-
<%= toolbar :
|
3
|
+
<%= toolbar :messages %>
|
4
4
|
|
5
5
|
<%= location(
|
6
6
|
link_to(image_tag("btn/new.png", :class => "menu_icon")+t('message.other'), conversations_path,:remote => true),
|
@@ -14,10 +14,3 @@
|
|
14
14
|
<%= link_to image_tag(subject.logo.url, :alt => subject.name , :size => "119x119"), subject %>
|
15
15
|
<% end %>
|
16
16
|
</div>
|
17
|
-
<% if subject.subject_type == 'Event' %>
|
18
|
-
<% @founder = Actor.normalize(subject.founder_id) %>
|
19
|
-
<div id="founder">
|
20
|
-
<div id="created"><%=t('actor.created')%></div>
|
21
|
-
<div id="thumb"><%= link_to(image_tag(@founder.logo.url(:representation), :width => 20, :height => 20, :class => 'menu_icon', :id=> 'current_user_avatar_img'), @founder.subject ) %></div>
|
22
|
-
</div>
|
23
|
-
<% end %>
|
data/base/config/locales/en.yml
CHANGED
@@ -46,12 +46,9 @@ en:
|
|
46
46
|
last: "Last Activities"
|
47
47
|
like: "I like"
|
48
48
|
like_sentence:
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
many:
|
53
|
-
one: "%{likers} and %{count} more person like this"
|
54
|
-
other: "%{likers} and %{count} more people like this"
|
49
|
+
one: "%{likers} likes this"
|
50
|
+
other: "%{likers} like this"
|
51
|
+
more:
|
55
52
|
one: "Activity"
|
56
53
|
other: "Activities"
|
57
54
|
privacy:
|
@@ -92,6 +89,16 @@ en:
|
|
92
89
|
post:
|
93
90
|
title:
|
94
91
|
other_wall: "%{sender} → %{receiver}"
|
92
|
+
activity_action:
|
93
|
+
follow: "Follow"
|
94
|
+
sentence:
|
95
|
+
follow:
|
96
|
+
one: "%{followers} follows this"
|
97
|
+
other: "%{followers} follow this"
|
98
|
+
more:
|
99
|
+
one: "%{count} more person"
|
100
|
+
other: "%{count} more people"
|
101
|
+
unfollow: "Unfollow"
|
95
102
|
browse: "Browse"
|
96
103
|
button:
|
97
104
|
cancel: "Cancel"
|
@@ -134,6 +141,8 @@ en:
|
|
134
141
|
error_count:
|
135
142
|
one: "1 error prohibited this contact from being saved:"
|
136
143
|
other: "%{count} errors prohibited this contact from being saved:"
|
144
|
+
follow: "Follow"
|
145
|
+
following: "Following"
|
137
146
|
graph:
|
138
147
|
one: "Graph"
|
139
148
|
empty: "We're sorry but you don't have any contacts yet. You can try the search box to look for somebody!"
|
@@ -164,6 +173,7 @@ en:
|
|
164
173
|
all: "All"
|
165
174
|
type:
|
166
175
|
new: "+ New type"
|
176
|
+
unfollow: "Unfollow"
|
167
177
|
copyright: "2010 Copyright - All rights reserved"
|
168
178
|
delete:
|
169
179
|
confirm: Delete %{element}}?
|
data/base/config/locales/es.yml
CHANGED
@@ -46,12 +46,8 @@ es:
|
|
46
46
|
last: "Últimas actividades"
|
47
47
|
like: "Me gusta"
|
48
48
|
like_sentence:
|
49
|
-
|
50
|
-
|
51
|
-
other: "A %{likers} les gusta esto"
|
52
|
-
many:
|
53
|
-
one: "A %{likers} y %{count} persona más les gusta esto"
|
54
|
-
other: "A %{likers} y %{count} personas más les gusta esto"
|
49
|
+
one: "A %{likers} le gusta esto"
|
50
|
+
other: "A %{likers} les gusta esto"
|
55
51
|
one: "Actividad"
|
56
52
|
other: "Actividades"
|
57
53
|
privacy:
|
@@ -92,6 +88,16 @@ es:
|
|
92
88
|
post:
|
93
89
|
title:
|
94
90
|
other_wall: "%{sender} → %{receiver}"
|
91
|
+
activity_action:
|
92
|
+
follow: "Seguir"
|
93
|
+
sentence:
|
94
|
+
follow:
|
95
|
+
one: "%{count} sigue esto"
|
96
|
+
other: "%{count} siguen esto"
|
97
|
+
more:
|
98
|
+
one: "%{count} persona más"
|
99
|
+
other: "%{count} personas más"
|
100
|
+
unfollow: "Dejar de seguir"
|
95
101
|
browse: "Descubrir"
|
96
102
|
button:
|
97
103
|
cancel: "Cancelar"
|
@@ -134,6 +140,8 @@ es:
|
|
134
140
|
error_count:
|
135
141
|
one: "1 error impidió que se guardara este contacto:"
|
136
142
|
other: "%{count} errores impidieron que se guardara este contacto"
|
143
|
+
follow: "Seguir"
|
144
|
+
following: "Siguiendo"
|
137
145
|
graph:
|
138
146
|
one: "Gráfico"
|
139
147
|
empty: "Lo sentimos pero aún no tienes contactos, pero ¡puedes probar a buscar en la caja de búsqueda!"
|
@@ -164,6 +172,7 @@ es:
|
|
164
172
|
all: "Todas"
|
165
173
|
type:
|
166
174
|
new: "+ Nuevo tipo"
|
175
|
+
unfollow: "Dejar de seguir"
|
167
176
|
copyright: "2011 Copyright - Derechos reservados"
|
168
177
|
delete:
|
169
178
|
confirm: "¿Borrar %{element}}?"
|
@@ -0,0 +1,507 @@
|
|
1
|
+
pt:
|
2
|
+
language_name: "Português"
|
3
|
+
actor:
|
4
|
+
name: "Nome"
|
5
|
+
action:
|
6
|
+
send: "Enviar"
|
7
|
+
accept: "Aceitar"
|
8
|
+
account:
|
9
|
+
cancel: "Cancelar a conta"
|
10
|
+
edit: "Editar a conta"
|
11
|
+
email:
|
12
|
+
change: "Mudar endereço de email"
|
13
|
+
lang:
|
14
|
+
change: "Mudar idioma"
|
15
|
+
one: "Conta"
|
16
|
+
password:
|
17
|
+
change: "Mudar senha"
|
18
|
+
new: "Nova senha"
|
19
|
+
retype: "Repetir nova senha"
|
20
|
+
privacy: "Privacidade"
|
21
|
+
activerecord:
|
22
|
+
attributes:
|
23
|
+
contact:
|
24
|
+
relation_ids: "Tipo de contato"
|
25
|
+
relation/custom:
|
26
|
+
name: "Nome"
|
27
|
+
user:
|
28
|
+
email: "Email"
|
29
|
+
name: "Nome"
|
30
|
+
password: "Senha"
|
31
|
+
password_confirmation: "Confirmar senha"
|
32
|
+
remember_me: "Lembrar-me"
|
33
|
+
activity:
|
34
|
+
audience:
|
35
|
+
hidden:
|
36
|
+
summary: "Restrito"
|
37
|
+
full: "Compartilhado com contatos de %{audience}"
|
38
|
+
public:
|
39
|
+
summary: "Público"
|
40
|
+
full: "Acessível por toda Internet"
|
41
|
+
visible:
|
42
|
+
summary: "Restrito"
|
43
|
+
full: "Compartilhado com %{audience}"
|
44
|
+
confirm_delete: "Apagar atividade?"
|
45
|
+
delete: "Apagar"
|
46
|
+
last: "Últimas Atividades"
|
47
|
+
like: "Curtir"
|
48
|
+
one: "Atividade"
|
49
|
+
other: "Atividades"
|
50
|
+
privacy:
|
51
|
+
myself:
|
52
|
+
contacts:
|
53
|
+
group: "Todos os integrantes"
|
54
|
+
user: "Seus contatos"
|
55
|
+
outside:
|
56
|
+
contacts:
|
57
|
+
group: "Membros de %{receiver}"
|
58
|
+
user: "Contatos de %{receiver}"
|
59
|
+
sending: "Enviando"
|
60
|
+
title: "Atividades"
|
61
|
+
to_comment: "Comentário"
|
62
|
+
unlike: "Curtir (desfazer)"
|
63
|
+
verb:
|
64
|
+
follow:
|
65
|
+
User:
|
66
|
+
title: "%{subject} adicionou %{contact} como contato."
|
67
|
+
message: "%{name} adicionou você como contato."
|
68
|
+
Group:
|
69
|
+
title: "%{subject} adicionou %{contact} como contato."
|
70
|
+
message: "%{name} adicionou você como contato."
|
71
|
+
like:
|
72
|
+
User:
|
73
|
+
title: "%{subject} é fã de %{contact}."
|
74
|
+
message: "%{name} agora é seu fã."
|
75
|
+
Group:
|
76
|
+
title: "%{subject} é fã de %{contact}."
|
77
|
+
message: "%{name} agora é seu fã."
|
78
|
+
make-friend:
|
79
|
+
User:
|
80
|
+
title: "%{subject} e %{contact} estão agora conectados."
|
81
|
+
message: "%{name} também adicionou você como contato."
|
82
|
+
Group:
|
83
|
+
title: "%{subject} adicionou %{contact} como contato."
|
84
|
+
message: "%{name} adicionou você como contato."
|
85
|
+
post:
|
86
|
+
title:
|
87
|
+
other_wall: "%{sender} → %{receiver}"
|
88
|
+
browse: "Browse"
|
89
|
+
button:
|
90
|
+
cancel: "Cancelar"
|
91
|
+
create: "Criar"
|
92
|
+
save: "Salvar"
|
93
|
+
update: "Atualizar"
|
94
|
+
cheesecake:
|
95
|
+
changes:
|
96
|
+
details: "Alterar detalhes"
|
97
|
+
none: "Sem alterações"
|
98
|
+
save: "Salvar alterações"
|
99
|
+
saving: "Salvando..."
|
100
|
+
form:
|
101
|
+
editing: "Editando"
|
102
|
+
fields:
|
103
|
+
color: "Cor"
|
104
|
+
name: "Nome"
|
105
|
+
permissions: "Permissões"
|
106
|
+
subsector: "Segmento"
|
107
|
+
select:
|
108
|
+
hint: "Selecione clicando nos retratos"
|
109
|
+
comment:
|
110
|
+
input: "Escreva um comentário..."
|
111
|
+
confirm_delete: "Excluir comentário?"
|
112
|
+
name: "comentário"
|
113
|
+
one: "um comentário"
|
114
|
+
view_all: "Veja todos comentários"
|
115
|
+
contact:
|
116
|
+
addressbook: "Catálogo de endereços"
|
117
|
+
all_n: "Todos os contatos (%{count})"
|
118
|
+
confirm_delete: "Excluir contato?"
|
119
|
+
current: "Atual"
|
120
|
+
delete: "Excluir"
|
121
|
+
edit:
|
122
|
+
title: "Editar contato com %{name}"
|
123
|
+
submit: "Editar contato"
|
124
|
+
error_count:
|
125
|
+
one: "1 erro impediu que este contato fosse salvo:"
|
126
|
+
other: "%{count} erros impediram que este contato fosse salvo:"
|
127
|
+
graph:
|
128
|
+
one: "Gráfico"
|
129
|
+
empty: "Lamentamos, mas você não tem nenhum contato ainda. Você pode tentar a caixa de pesquisa para procurar alguém!"
|
130
|
+
in_common:
|
131
|
+
one: "1 contato em comum"
|
132
|
+
other: "%{count} contatos em comum"
|
133
|
+
new:
|
134
|
+
link: "+ Adicionar contato"
|
135
|
+
title: "Adicionar %{name} aos seus contatos"
|
136
|
+
menu: "Adicionar contato"
|
137
|
+
submit: "Adicionar"
|
138
|
+
one: "Contato"
|
139
|
+
other: "Contatos"
|
140
|
+
pending:
|
141
|
+
other: "Pendente"
|
142
|
+
all: "Todos"
|
143
|
+
all_n: "Veja todos os contatos pendentes (%{count})"
|
144
|
+
relation:
|
145
|
+
one: "Tipo de contato"
|
146
|
+
new: "Novo tipo"
|
147
|
+
reply:
|
148
|
+
link: "+ Responder contato"
|
149
|
+
title: "Responder pedido de contato para %{name}"
|
150
|
+
submit: "Responder contato"
|
151
|
+
suggestion:
|
152
|
+
one: "Sugestão"
|
153
|
+
other: "Sugestões"
|
154
|
+
all: "Todas"
|
155
|
+
type:
|
156
|
+
new: "+ Novo tipo"
|
157
|
+
copyright: "2010 Copyright - todos direitos reservados"
|
158
|
+
delete:
|
159
|
+
confirm: "Apagar %{element}}?"
|
160
|
+
devise:
|
161
|
+
links:
|
162
|
+
sign_in: "Entrar"
|
163
|
+
sign_up: "Registrar"
|
164
|
+
forgot_password: "Esqueceu sua senha?"
|
165
|
+
confirmation_instructions: "Não recebeu instruções de confirmação?"
|
166
|
+
unlock_instructions: "Não recebeu instruções para desbloquear?"
|
167
|
+
sign_in_with: "Entrar com %{provider}"
|
168
|
+
passwords:
|
169
|
+
confirm: "Confirmar senha"
|
170
|
+
forgot: "Esqueceu sua senha?"
|
171
|
+
instructions: "Digite o endereço de e-mail vinculado a sua conta e nós lhe enviaremos instruções para alterá-la:"
|
172
|
+
update: "Mude sua senha"
|
173
|
+
follower:
|
174
|
+
n:
|
175
|
+
one: "1 seguidor"
|
176
|
+
other: "%{count} seguidores"
|
177
|
+
forgot_password: "Esqueceu sua senha?"
|
178
|
+
frontpage:
|
179
|
+
collaborate:
|
180
|
+
default: "Colaborar"
|
181
|
+
sentence1: "Organize seus projetos e atividades"
|
182
|
+
sentence2: "Participar de congressos e eventos"
|
183
|
+
sentence3: "Crie seu próprio grupo e conferências"
|
184
|
+
elements:
|
185
|
+
comments: "Comentários"
|
186
|
+
conferences: "Conferências"
|
187
|
+
networks: "Redes Sociais"
|
188
|
+
organizers: "Organizadores"
|
189
|
+
participants: "Participantes"
|
190
|
+
groups: "Grupos"
|
191
|
+
tags: "Tags"
|
192
|
+
main_title: "Social Stream é a base para a construção de sites de rede social."
|
193
|
+
meet:
|
194
|
+
default: "Encontrar"
|
195
|
+
sentence1: "Descubra grupos e pessoas interessantes"
|
196
|
+
sentence2: "Encontre a última atividade dos seus contatos"
|
197
|
+
register: "Registre agora!"
|
198
|
+
share:
|
199
|
+
default: "Compartilhar"
|
200
|
+
sentence1: "Seus projetos e atividades"
|
201
|
+
sentence2: "Comentários, fotos, audio e vídeos"
|
202
|
+
stats: "%{users} usuários e %{groups} grupos registrados"
|
203
|
+
group:
|
204
|
+
one: "Grupo"
|
205
|
+
other: "Grupos"
|
206
|
+
all: "Todos os grupos"
|
207
|
+
all_n: "Todos os grupos (%{count})"
|
208
|
+
by: "Por grupos"
|
209
|
+
destroy:
|
210
|
+
one: "Excluir grupo"
|
211
|
+
explanation: "Todas as atividades, informações e contatos deste grupo serão excluídos!"
|
212
|
+
go_ahead: "Sim, tenho certeza. Excluir tudo!"
|
213
|
+
last_confirm: "Esta é sua última chance. Você realmente tem certeza?"
|
214
|
+
form:
|
215
|
+
title: "Grupo"
|
216
|
+
input: "Qual o nome do grupo?"
|
217
|
+
last: "Últimos grupos"
|
218
|
+
my: "Meus grupos"
|
219
|
+
new:
|
220
|
+
action: "Novo grupo"
|
221
|
+
name: "Nome"
|
222
|
+
description: "Descrição"
|
223
|
+
participants: "Participantes"
|
224
|
+
cloud: "Nuvem de tags de grupos"
|
225
|
+
most:
|
226
|
+
followed: "Mais seguidos"
|
227
|
+
liked: "Mais populares"
|
228
|
+
tags: "Tags"
|
229
|
+
help: "Ajuda"
|
230
|
+
helpers:
|
231
|
+
submit:
|
232
|
+
relation_custom:
|
233
|
+
create: "Salvar"
|
234
|
+
update: "Atualizar"
|
235
|
+
home: "Página inicial"
|
236
|
+
inbox:
|
237
|
+
one: "Entrada"
|
238
|
+
invitation:
|
239
|
+
e-mails: "Correio eletrônico"
|
240
|
+
error: "Sua solicitação não foi processada. Certifique-se de que você escreveu os endereços de correio eletrônico corretamente."
|
241
|
+
invited: "%{sender} convidou você para %{site}!"
|
242
|
+
join: "Convide outras pessoas para se juntar ao %{site}!"
|
243
|
+
join_me: "Junte-se a mim no %{site}!"
|
244
|
+
one: "Convite"
|
245
|
+
other: "Convites"
|
246
|
+
toolbar: "Convidar"
|
247
|
+
success: "Seus convites foram enviados com sucesso"
|
248
|
+
text: "Escreva sua mensagem"
|
249
|
+
like:
|
250
|
+
n:
|
251
|
+
one: "1 fã"
|
252
|
+
other: "%{count} fãs"
|
253
|
+
location:
|
254
|
+
message: "Você está aqui > %{location}"
|
255
|
+
base: "Você está aqui"
|
256
|
+
separator: " > "
|
257
|
+
mailboxer:
|
258
|
+
delete: "Excluir"
|
259
|
+
delete_confirm: "Você quer mover '%{object}' para o lixo?"
|
260
|
+
form:
|
261
|
+
body: "Mensagem"
|
262
|
+
recipients: "Para"
|
263
|
+
subject: "Assunto"
|
264
|
+
mark_as_read: "Marcar como lido"
|
265
|
+
message_mailer:
|
266
|
+
has_sent_new:
|
267
|
+
event: "enviou uma nova mensagem para %{receiver}"
|
268
|
+
group: "enviou uma nova mensagem para %{receiver}"
|
269
|
+
user: "enviou-lhe uma nova mensagem"
|
270
|
+
has_sent_reply:
|
271
|
+
event: "enviou uma resposta para %{receiver}"
|
272
|
+
group: "enviou uma resposta para %{receiver}"
|
273
|
+
user: "enviou-lhe uma resposta"
|
274
|
+
subject_new: "%{subject}"
|
275
|
+
subject_reply: "%{subject}"
|
276
|
+
notification_mailer:
|
277
|
+
subject: "%{subject}"
|
278
|
+
reply: "Responder"
|
279
|
+
send: "Enviar mensagem"
|
280
|
+
sent: "Sua mensagem foi enviada"
|
281
|
+
menu:
|
282
|
+
options: "Opções"
|
283
|
+
information: "Informação"
|
284
|
+
wall: "Mural"
|
285
|
+
message:
|
286
|
+
answer: "Escreva sua resposta"
|
287
|
+
inbox: "Entrada"
|
288
|
+
look: "Dê uma olhada nesta conversa"
|
289
|
+
new: "Nova mensagem"
|
290
|
+
one: "Mensagem"
|
291
|
+
other: "Mensagens"
|
292
|
+
participants: "Participantes"
|
293
|
+
send: "Enviar uma mensagem"
|
294
|
+
sentbox: "Enviadas"
|
295
|
+
trash: "Lixeira"
|
296
|
+
notification:
|
297
|
+
all_text: "Leia o texto todo em %{url}"
|
298
|
+
confirm: "Confirmar %{sender} como contato?"
|
299
|
+
default: "Você tem uma nova notificação"
|
300
|
+
destroy_sure: "Você deseja excluir esta notificação?"
|
301
|
+
fan: "%{sender} é agora %{whose} fã."
|
302
|
+
follow:
|
303
|
+
group: "%{sender} adicionado %{who} como contato."
|
304
|
+
user: "%{sender} adicionado %{who} como contato."
|
305
|
+
hello: "Olá %{receiver},"
|
306
|
+
like:
|
307
|
+
group: "%{sender} curte %{whose} %{thing}."
|
308
|
+
user: "%{sender} curte %{whose} %{thing}."
|
309
|
+
look: "Dê uma olhada no mural de %{sender}"
|
310
|
+
makefriend:
|
311
|
+
group: "%{sender} também adicionou %{who} como contato."
|
312
|
+
user: "%{sender} também adicionou %{who} como contato."
|
313
|
+
one: "Notificação"
|
314
|
+
other: "Notificações"
|
315
|
+
post:
|
316
|
+
group: "%{title} -- por %{sender} no mural %{whose}"
|
317
|
+
user: "%{title} -- por %{sender} no seu mural"
|
318
|
+
read: "Marcar como lida"
|
319
|
+
read_all: "Marcar todas como lidas"
|
320
|
+
unread: "Marcar como não lida"
|
321
|
+
update:
|
322
|
+
group: "%{sender} atualizou %{thing} no mural %{whose}."
|
323
|
+
user: "%{sender} atualizou %{thing} no seu mural."
|
324
|
+
visit: "Visite %{url} e confira todas as suas notificações."
|
325
|
+
watch: "Dê uma olhada em %{url}"
|
326
|
+
watch_it: "Confira!"
|
327
|
+
who:
|
328
|
+
group: "%{name}"
|
329
|
+
user: "você"
|
330
|
+
whose:
|
331
|
+
group: "%{receiver}'s"
|
332
|
+
user: "seu"
|
333
|
+
post:
|
334
|
+
confirm_delete: "Excluir postagem?"
|
335
|
+
form:
|
336
|
+
title: "Postagem"
|
337
|
+
input: "O que você está fazendo?"
|
338
|
+
name: "postagem"
|
339
|
+
one: "uma postagem"
|
340
|
+
title: "Postagens"
|
341
|
+
preposition:
|
342
|
+
and: "e"
|
343
|
+
on: "em"
|
344
|
+
profile:
|
345
|
+
one: "Perfil"
|
346
|
+
age: "Idade"
|
347
|
+
is_on: "está em"
|
348
|
+
must_be_signed_id: "Você precisa efetuar login"
|
349
|
+
group:
|
350
|
+
about: "Sobre nós"
|
351
|
+
birthday: "Anniversary"
|
352
|
+
experience: "Área de especialização"
|
353
|
+
info: "Informação sobre o grupo"
|
354
|
+
tags: "Tags do grupo"
|
355
|
+
user:
|
356
|
+
about: "Sobre mim"
|
357
|
+
birthday: "Aniversário"
|
358
|
+
experience: "Interesses"
|
359
|
+
info: "Informação pessoal"
|
360
|
+
tags: "Tags do usuário"
|
361
|
+
actualcity: "Cidade atual"
|
362
|
+
address: "Enderesso"
|
363
|
+
contact: "Informção de contato"
|
364
|
+
country: "País"
|
365
|
+
email: "E-mail"
|
366
|
+
empty: "Estes campos estão vazios. Por favor, atualize-os."
|
367
|
+
fax: "Fax"
|
368
|
+
mobile: "Celular"
|
369
|
+
organization: "Organização"
|
370
|
+
phone: "Telefone"
|
371
|
+
profile: "Editar perfil"
|
372
|
+
tags:
|
373
|
+
default: "social, stream,"
|
374
|
+
other: "Tags"
|
375
|
+
website: "Website"
|
376
|
+
update:
|
377
|
+
error: "Por favor, verifique o formato do seu perfil"
|
378
|
+
success: "Seu perfil foi atualizado"
|
379
|
+
public:
|
380
|
+
other: "Todos"
|
381
|
+
permission:
|
382
|
+
description:
|
383
|
+
default:
|
384
|
+
brief:
|
385
|
+
create:
|
386
|
+
activity: "Publicar em seu mural"
|
387
|
+
follow:
|
388
|
+
nil: "Seguir atividade deles"
|
389
|
+
read:
|
390
|
+
activity: "Ler seu mural"
|
391
|
+
represent:
|
392
|
+
nil: "Administrar"
|
393
|
+
notify:
|
394
|
+
nil: "Notificar"
|
395
|
+
detailed:
|
396
|
+
create:
|
397
|
+
activity:
|
398
|
+
positive: "SERÃO CAPAZES DE postar novas atividades em seu mural"
|
399
|
+
negative: "NÃO SERÃO CAPAZES DE postar novas atividades em seu mural"
|
400
|
+
follow:
|
401
|
+
nil:
|
402
|
+
positive: "As atividades dos contatos em %{relation} IRÃO APARECER em seu mural"
|
403
|
+
negative: "As atividades dos contatos em %{relation} NÃO IRÃO APARECER em seu mural"
|
404
|
+
read:
|
405
|
+
activity:
|
406
|
+
positive: "SERÃO CAPAZES de ler as mensagens em seu mural, exceto aquelas compartilhadas com contatos específicos"
|
407
|
+
negative: "NÃO SERÃO CAPAZES de ler as mensagens em seu mural, exceto aquelas compartilhadas com contatos específicos"
|
408
|
+
represent:
|
409
|
+
nil:
|
410
|
+
positive: "SERÃO CAPAZES de mudar de sessão e agir como %{subject}"
|
411
|
+
negative: "NÃO SERÃO CAPAZES de mudar de sessão e agir como %{subject}"
|
412
|
+
notify:
|
413
|
+
nil:
|
414
|
+
positive: "As atividades SERÃO notificados para contatos em %{name}"
|
415
|
+
negative: "As atividades NÃO SERÃO notificados para contatos em %{name}"
|
416
|
+
of_relation:
|
417
|
+
choose: "2. Permissões para <strong>%{name}</strong>"
|
418
|
+
privacy:
|
419
|
+
intro: "Os contatos em <strong>%{relation}</strong>:"
|
420
|
+
rule:
|
421
|
+
add: "Adicionar"
|
422
|
+
title: "Regras de privacidade"
|
423
|
+
saved: "Regras de privacidade salvas"
|
424
|
+
relation_custom:
|
425
|
+
choose: "1. Escolha o tipo de relação"
|
426
|
+
confirm_delete: "Excluir esse relação?"
|
427
|
+
delete: "Excluir"
|
428
|
+
edit: "Mudar nome"
|
429
|
+
new: "+ Nova relação"
|
430
|
+
title: "Privacidade & contexto"
|
431
|
+
relation_public:
|
432
|
+
name: "Publico"
|
433
|
+
representation:
|
434
|
+
notice: "Sua sessão foi alterada. Agora você está agindo em nome de %{subject}. Use o menu superior direito para retornar à sua sessão"
|
435
|
+
switch: "Alterne sessão"
|
436
|
+
required: "(*) Estes campos são obrigatórios"
|
437
|
+
search:
|
438
|
+
all_results: "Pesquisar todos os %{subject} (%{count})"
|
439
|
+
at_least: "Escrever pelo menos dois caracteres"
|
440
|
+
global:
|
441
|
+
name: "Pesquisa global"
|
442
|
+
first_result:
|
443
|
+
more: "Mostrando os primeiros %{count} resultados."
|
444
|
+
one: "Mostrando o primeiro resultado."
|
445
|
+
query: "Veja mais resultados para %{query} >"
|
446
|
+
name: "Search"
|
447
|
+
no_subject_found: "Nenhum %{subject} foi encontrado."
|
448
|
+
nothing: "Nada foi encontrado"
|
449
|
+
searching: "Pesquisando: %{query}"
|
450
|
+
show_all: "Todos"
|
451
|
+
write: "Escreva sua pesquisa ..."
|
452
|
+
wrong: "Parece haver um problema com o mecanismo de pesquisa"
|
453
|
+
settings:
|
454
|
+
api_key:
|
455
|
+
briefing: "Gerenciar a sua chave da API"
|
456
|
+
confirm: "Você tem certeza?"
|
457
|
+
empty: "Token vazio"
|
458
|
+
explanation: "Esta é sua chave da API"
|
459
|
+
name: "Chave da API"
|
460
|
+
regenerate: "Regerar chave da API"
|
461
|
+
cancel_account:
|
462
|
+
briefing: "Permite que você cancele sua conta"
|
463
|
+
email_change:
|
464
|
+
briefing: "Mude o seu e-mail"
|
465
|
+
lang_change:
|
466
|
+
briefing: "Alterar o idioma"
|
467
|
+
name: "Alterar o idioma"
|
468
|
+
error: "Alguns erros gerados ao salvar suas alterações"
|
469
|
+
for: "Configurações para"
|
470
|
+
main: "Configurações"
|
471
|
+
manage:
|
472
|
+
name: "Administrar Contatos"
|
473
|
+
briefing: "Configuração para contatos"
|
474
|
+
explanation: "Mudar as permissões dos contatos"
|
475
|
+
notifications:
|
476
|
+
briefing: "Configurações de notificações alertas de email"
|
477
|
+
name: "Notificaões"
|
478
|
+
by_email:
|
479
|
+
name: "Envie-me um email quando eu receber uma notificação"
|
480
|
+
always: "Sempre"
|
481
|
+
never: "Nunca"
|
482
|
+
one: "Configurações"
|
483
|
+
password_change:
|
484
|
+
briefing: "Mude sua senha"
|
485
|
+
success: "Suas configurações foram alteradas corretamente"
|
486
|
+
share: "Compartilhar"
|
487
|
+
sign_in: "Entrar"
|
488
|
+
sign_out: "Sair"
|
489
|
+
sign_up: "Cadastrar-se"
|
490
|
+
site:
|
491
|
+
name: "Social Stream"
|
492
|
+
subject:
|
493
|
+
this_is_you: "Este é você!"
|
494
|
+
sure: "Você tem certeza?"
|
495
|
+
time:
|
496
|
+
ago: "%{time} atrás"
|
497
|
+
unknown: "Desconhecido"
|
498
|
+
user:
|
499
|
+
by: "Por usuários"
|
500
|
+
one: "Usuário"
|
501
|
+
other: "Usuários"
|
502
|
+
all: "Todos os usuários"
|
503
|
+
all_n: "Todos os usuários (%{count})"
|
504
|
+
welcome: "Bem-vindo ao %{site}!"
|
505
|
+
lang:
|
506
|
+
browser: "Auto-detecção do idioma do navegador"
|
507
|
+
none: "Conteúdo independente da linguagem"
|