social_stream 0.10.4 → 0.11.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.
- data/base/app/assets/javascripts/activities.js.erb +0 -2
- data/base/app/assets/javascripts/search.js.erb +0 -4
- data/base/app/assets/stylesheets/_colors.scss +22 -0
- data/base/app/assets/stylesheets/{activities.css → activities.css.scss} +20 -23
- data/base/app/assets/stylesheets/{base.css → base.css.scss} +43 -35
- data/base/app/assets/stylesheets/{contacts.css → contacts.css.scss} +5 -3
- data/base/app/assets/stylesheets/footer.css.scss +22 -0
- data/base/app/assets/stylesheets/{frontpage.css → frontpage.css.scss} +7 -13
- data/base/app/assets/stylesheets/{header.css → header.css.scss} +23 -20
- data/base/app/assets/stylesheets/search.css +15 -17
- data/base/app/assets/stylesheets/toolbar.css +7 -0
- data/base/app/controllers/invitations_controller.rb +2 -0
- data/base/app/controllers/search_controller.rb +27 -45
- data/base/app/helpers/contacts_helper.rb +1 -5
- data/base/app/helpers/search_helper.rb +4 -4
- data/base/app/models/actor.rb +1 -3
- data/base/app/views/activity_objects/_activity_object.html.erb +1 -1
- data/base/app/views/contacts/_link.html.erb +9 -0
- data/base/app/views/frontpage/_caracteristics.html.erb +23 -0
- data/base/app/views/frontpage/index.html.erb +3 -25
- data/base/app/views/groups/_index.html.erb +1 -1
- data/base/app/views/invitation_mailer/send_invitation.html.erb +3 -3
- data/base/app/views/invitation_mailer/send_invitation.text.erb +3 -2
- data/base/app/views/invitations/_new.html.erb +2 -2
- data/base/app/views/layouts/_header_dropdown_menu.html.erb +1 -1
- data/base/app/views/layouts/_header_dropdown_menu_sessions.html.erb +1 -1
- data/base/app/views/posts/_new_activity.html.erb +1 -1
- data/base/app/views/posts/_new_activity_fields.erb +6 -0
- data/base/app/views/search/_extended_search.html.erb +14 -0
- data/base/app/views/search/_form.html.erb +25 -13
- data/base/app/views/search/_header_search.html.erb +7 -13
- data/base/app/views/search/_index.html.erb +1 -6
- data/base/app/views/search/_index_frontpage.html.erb +2 -18
- data/base/app/views/search/index.js.erb +1 -1
- data/base/app/views/subjects/_subject_with_details.html.erb +1 -1
- data/base/app/views/toolbar/_home.html.erb +1 -1
- data/base/app/views/toolbar/_messages.html.erb +1 -1
- data/base/app/views/toolbar/_subject.html.erb +10 -0
- data/base/app/views/users/_index.html.erb +1 -1
- data/base/config/locales/en.yml +13 -22
- data/base/config/locales/es.yml +356 -0
- data/base/lib/generators/social_stream/base/templates/initializer.rb +6 -0
- data/base/lib/social_stream/base/version.rb +1 -1
- data/base/lib/social_stream/models/object.rb +7 -1
- data/base/lib/social_stream-base.rb +8 -0
- data/base/social_stream-base.gemspec +2 -0
- data/base/spec/controllers/invitations_controller_spec.rb +34 -0
- data/base/spec/dummy/config/initializers/social_stream.rb +6 -0
- data/base/spec/support/thinking-sphinx.rb +10 -0
- data/documents/app/models/audio.rb +10 -1
- data/documents/app/models/document.rb +11 -0
- data/documents/app/models/picture.rb +10 -1
- data/documents/app/models/video.rb +9 -0
- data/documents/app/views/audios/_audio_with_details.html.erb +3 -0
- data/documents/app/views/documents/_document_with_details.html.erb +13 -0
- data/documents/app/views/pictures/_picture_with_details.html.erb +2 -0
- data/documents/app/views/videos/_video_with_details.html.erb +2 -0
- data/documents/config/locales/en.yml +0 -7
- data/documents/config/locales/es.yml +38 -0
- data/documents/db/migrate/20111005112707_add_title_and_description_to_document.rb +11 -0
- data/documents/lib/social_stream/documents/version.rb +1 -1
- data/documents/social_stream-documents.gemspec +1 -1
- data/events/app/views/events/_new_activity_fields.html.erb +5 -0
- data/events/lib/social_stream/events/version.rb +1 -1
- data/events/social_stream-events.gemspec +1 -1
- data/lib/social_stream/version.rb +1 -1
- data/social_stream.gemspec +3 -3
- data/spec/support/components.rb +1 -1
- metadata +35 -24
- data/base/app/assets/stylesheets/footer.css +0 -26
- data/base/app/views/search/_focus_search.html.erb +0 -17
- data/base/app/views/search/_global_search.html.erb +0 -19
- data/events/app/views/events/_jquery.html.erb +0 -125
@@ -8,12 +8,22 @@
|
|
8
8
|
<div id="focus_options" class="form_row search_row">
|
9
9
|
<ul class="menu_plain_list">
|
10
10
|
<li><%= link_to content_tag(:span,t('search.show_all'),:class => params[:focus].blank? ? 'global selected' : 'global'), search_path(:search_query => params[:search_query]), :remote => true %></li>
|
11
|
-
<% SocialStream.
|
12
|
-
<% selected_class = (params[:focus].present? and params[:focus].pluralize.downcase.eql?(
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
11
|
+
<% SocialStream.extended_search_models.each do |model_sym| %>
|
12
|
+
<% selected_class = (params[:focus].present? and params[:focus].pluralize.downcase.eql?(model_sym.to_s.pluralize.downcase)) ? 'selected' : ''%>
|
13
|
+
<% disabled =ThinkingSphinx.count(get_search_query, :classes => [model_sym.to_s.classify.constantize])==0 %>
|
14
|
+
<% disabled_class = (disabled ? 'disabled' : '') %>
|
15
|
+
<li>
|
16
|
+
<% unless disabled %>
|
17
|
+
<%= focus_search_link content_tag(:span, model_sym.to_s.pluralize.capitalize,
|
18
|
+
:class => selected_class + " " + disabled_class + " " + model_sym.to_s.pluralize.downcase),
|
19
|
+
model_sym.to_s.classify.constantize,
|
20
|
+
params[:search_query] %>
|
21
|
+
<% else %>
|
22
|
+
<%= content_tag(:span, model_sym.to_s.pluralize.capitalize,
|
23
|
+
:class => selected_class + " " + disabled_class + " " + model_sym.to_s.pluralize.downcase,
|
24
|
+
:title => I18n.t('search.no_subject_found', :subject => model_sym.to_s)) %>
|
25
|
+
<% end %>
|
26
|
+
</li>
|
17
27
|
<% end %>
|
18
28
|
</ul>
|
19
29
|
</div>
|
@@ -21,11 +31,11 @@
|
|
21
31
|
</form>
|
22
32
|
|
23
33
|
<%= javascript_tag do %>
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
34
|
+
$(function() {
|
35
|
+
$.preloadImages ("assets/mini-loading.gif");
|
36
|
+
|
37
|
+
$('#search_form').submit(function() {
|
38
|
+
query = $('#global_search_input').val();
|
29
39
|
if((query=="")||(query.length < 2)||(query=="<%= t('search.write') %>")){
|
30
40
|
$('#too_short_error').show();
|
31
41
|
$('#global_search_input').removeClass("searching");
|
@@ -37,6 +47,8 @@
|
|
37
47
|
$('#global_search_input').blur();
|
38
48
|
}
|
39
49
|
return true;
|
40
|
-
|
41
|
-
|
50
|
+
});
|
51
|
+
|
52
|
+
$("#global_search_input").Watermark("<%= I18n.t('search.write') %>");
|
53
|
+
});
|
42
54
|
<% end %>
|
@@ -1,22 +1,16 @@
|
|
1
1
|
<% total = 0 %>
|
2
2
|
<ul>
|
3
|
-
<%
|
4
|
-
|
5
|
-
<li class="title">
|
6
|
-
<%= subject_type.to_s.capitalize.pluralize %>
|
7
|
-
</li>
|
8
|
-
<% @search_result[subject_type].each do |subject|%>
|
3
|
+
<% unless @search_result.empty? %>
|
4
|
+
<% @search_result.each do |model|%>
|
9
5
|
<% total+=1 %>
|
10
|
-
<li class="
|
6
|
+
<li class="result"><%= model_with_details model %></li>
|
11
7
|
<% end %>
|
12
8
|
<% end %>
|
13
9
|
</li>
|
14
|
-
<% end %>
|
15
|
-
|
16
10
|
<%= link_to raw('<li class="more">' +
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
11
|
+
t("search.global.first_result.#{ total == 1 ? 'one' : 'more' }", :count => total) +
|
12
|
+
'<br>' +
|
13
|
+
t('search.global.query', :query => truncate(h(params[:search_query]),:length => 20)) +
|
14
|
+
'</li>'),
|
21
15
|
search_path(:search_query => params[:search_query]) %>
|
22
16
|
</ul>
|
@@ -7,11 +7,6 @@
|
|
7
7
|
<%= render :partial => 'form' %>
|
8
8
|
</div>
|
9
9
|
<div class="space_center"></div>
|
10
|
-
<div class="space_center"></div>
|
11
10
|
<div id="search_results" class="block">
|
12
|
-
|
13
|
-
<%= render :partial => 'global_search' %>
|
14
|
-
<% else %>
|
15
|
-
<%= render :partial => 'focus_search' %>
|
16
|
-
<% end %>
|
11
|
+
<%= render :partial => 'extended_search' %>
|
17
12
|
</div>
|
@@ -4,24 +4,8 @@
|
|
4
4
|
</div>
|
5
5
|
</nav>
|
6
6
|
<div id= "center_body">
|
7
|
-
<section id="content">
|
8
|
-
|
9
|
-
<br class="clearfloat" />
|
10
|
-
<div class="space_center"></div>
|
11
|
-
<h2><%= t('search.name') %></h2>
|
12
|
-
<div class="space_center"></div>
|
13
|
-
<div id="search_form_div">
|
14
|
-
<%= render :partial => 'form' %>
|
15
|
-
</div>
|
16
|
-
<div class="space_center"></div>
|
17
|
-
<div class="space_center"></div>
|
18
|
-
<div id="search_results" class="block">
|
19
|
-
<% unless params[:focus].present? %>
|
20
|
-
<%= render :partial => 'global_search' %>
|
21
|
-
<% else %>
|
22
|
-
<%= render :partial => 'focus_search' %>
|
23
|
-
<% end %>
|
24
|
-
</div>
|
7
|
+
<section id="content">
|
8
|
+
<%= render :partial => 'index' %>
|
25
9
|
</section>
|
26
10
|
</div>
|
27
11
|
<aside id="sidebar">
|
@@ -1,4 +1,4 @@
|
|
1
|
-
$('#search_results').html("
|
1
|
+
$('#search_results').html("<%= escape_javascript render :partial => 'extended_search' %>");
|
2
2
|
$('#search_form_div').html("<%= escape_javascript render :partial => 'form' %>");
|
3
3
|
|
4
4
|
$('#focus_options ul li a span').removeClass('selected');
|
@@ -0,0 +1,10 @@
|
|
1
|
+
<div class="model_with_details">
|
2
|
+
<div class="logo">
|
3
|
+
<%= link_to (image_tag(current_subject.logo.url , :size => "50x50", :alt => current_subject.name )), current_subject %>
|
4
|
+
</div>
|
5
|
+
<div class="sub-block">
|
6
|
+
<div class="name black" >
|
7
|
+
<%= link_to truncate_name(current_subject.name, :length => 80), current_subject %>
|
8
|
+
</div>
|
9
|
+
</div>
|
10
|
+
</div>
|
data/base/config/locales/en.yml
CHANGED
@@ -21,7 +21,6 @@ en:
|
|
21
21
|
hidden: "Shared with spheres of %{audience}"
|
22
22
|
confirm_delete: "Delete activity?"
|
23
23
|
delete: "Delete"
|
24
|
-
input: "What are you doing?"
|
25
24
|
last: "Last Activities"
|
26
25
|
like: "I like"
|
27
26
|
one: "Activity"
|
@@ -69,7 +68,9 @@ en:
|
|
69
68
|
view_all: "View all comments"
|
70
69
|
contact:
|
71
70
|
all_n: "All contacts (%{count})"
|
71
|
+
confirm_delete: "Delete contact?"
|
72
72
|
current: "Current"
|
73
|
+
delete: "Delete"
|
73
74
|
edit:
|
74
75
|
title: "Edit contact to %{name}"
|
75
76
|
submit: "Edit contact"
|
@@ -126,19 +127,19 @@ en:
|
|
126
127
|
comments: "Comments"
|
127
128
|
networks: "Social Networks"
|
128
129
|
organizers: "Organizers"
|
129
|
-
participants: "
|
130
|
+
participants: "Video conferences"
|
130
131
|
groups: "Groups"
|
131
132
|
tags: "Tags"
|
132
133
|
main_title: "Social Stream is a core for building social network websites."
|
133
134
|
meet:
|
134
135
|
default: "Meet"
|
135
136
|
sentence1: "Meet interesting people and groups"
|
137
|
+
sentence2: "Find last activity of your contacts"
|
136
138
|
share:
|
137
139
|
default: "Share"
|
138
|
-
sentence1: "Your
|
139
|
-
sentence2: "Posts,
|
140
|
+
sentence1: "Your proyects and activities"
|
141
|
+
sentence2: "Posts, photos, audio and videos"
|
140
142
|
stats: "%{users} users and %{groups} groups registered"
|
141
|
-
find: "Find"
|
142
143
|
group:
|
143
144
|
one: "Group"
|
144
145
|
other: "Groups"
|
@@ -172,9 +173,9 @@ en:
|
|
172
173
|
invitation:
|
173
174
|
e-mails: "E-mail addresses"
|
174
175
|
error: "Your request was unprocessable. Make sure you wrote correct e-mail addresses."
|
175
|
-
invited: " has invited you to
|
176
|
-
join: "Invite other people to join
|
177
|
-
join_me: "Join me at
|
176
|
+
invited: "%{sender} has invited you to %{site}!"
|
177
|
+
join: "Invite other people to join %{site}!"
|
178
|
+
join_me: "Join me at %{site}!"
|
178
179
|
one: "Invitation"
|
179
180
|
other: "Invitations"
|
180
181
|
toolbar: "Invite"
|
@@ -222,6 +223,7 @@ en:
|
|
222
223
|
confirm_delete: "Delete post?"
|
223
224
|
form:
|
224
225
|
title: "Post"
|
226
|
+
input: "What are you doing?"
|
225
227
|
title: "Posts"
|
226
228
|
preposition:
|
227
229
|
and: "and"
|
@@ -261,12 +263,6 @@ en:
|
|
261
263
|
success: "Your profile has been updated"
|
262
264
|
public:
|
263
265
|
other: "Everybody"
|
264
|
-
representation:
|
265
|
-
action: "as"
|
266
|
-
change: "Change"
|
267
|
-
service:
|
268
|
-
one: "Service"
|
269
|
-
other: "Services"
|
270
266
|
permission:
|
271
267
|
description:
|
272
268
|
brief:
|
@@ -296,9 +292,6 @@ en:
|
|
296
292
|
add: "Add"
|
297
293
|
title: "Privacy rules"
|
298
294
|
saved: "Privacy rules saved"
|
299
|
-
products:
|
300
|
-
one: "Product"
|
301
|
-
other: "Products"
|
302
295
|
relation_custom:
|
303
296
|
choose: "1. Choose sphere"
|
304
297
|
confirm_delete: "Delete this sphere?"
|
@@ -310,9 +303,7 @@ en:
|
|
310
303
|
name: "Public"
|
311
304
|
required: "(*) These fields are required"
|
312
305
|
search:
|
313
|
-
|
314
|
-
none: "Nothing found"
|
315
|
-
all_subject_results: "Search all %{subject} (%{count})"
|
306
|
+
all_results: "Search all %{subject} (%{count})"
|
316
307
|
at_least: "Write at least two characters"
|
317
308
|
global:
|
318
309
|
name: "Global search"
|
@@ -322,6 +313,7 @@ en:
|
|
322
313
|
query: "See more results for %{query} >"
|
323
314
|
name: "Search"
|
324
315
|
no_subject_found: "No %{subject} was found."
|
316
|
+
nothing: "Nothing found"
|
325
317
|
searching: "Searching: %{query}"
|
326
318
|
show_all: "Show all results"
|
327
319
|
write: "Write your query ..."
|
@@ -367,5 +359,4 @@ en:
|
|
367
359
|
other: "Users"
|
368
360
|
all: "All users"
|
369
361
|
all_n: "All users (%{count})"
|
370
|
-
welcome: "Welcome to
|
371
|
-
|
362
|
+
welcome: "Welcome to %{site}!"
|
@@ -0,0 +1,356 @@
|
|
1
|
+
es:
|
2
|
+
actor:
|
3
|
+
name: "Nombre"
|
4
|
+
action:
|
5
|
+
send: "Enviar"
|
6
|
+
accept: "Aceptar"
|
7
|
+
account:
|
8
|
+
cancel: "Cancelar lar cuenta"
|
9
|
+
edit: "Editar cuenta"
|
10
|
+
email:
|
11
|
+
change: "Cambiar dirección de correo"
|
12
|
+
one: "Cuenta"
|
13
|
+
password:
|
14
|
+
change: "Cambiar contraseña"
|
15
|
+
new: "Nueva contraseña"
|
16
|
+
retype: "Repetir nueva contraseña"
|
17
|
+
privacy: "Privacidad"
|
18
|
+
activity:
|
19
|
+
audience:
|
20
|
+
visible: "Compartido con %{audience}"
|
21
|
+
hidden: "Compartido con esferas de %{audience}"
|
22
|
+
confirm_delete: "¿Borrar actividad?"
|
23
|
+
delete: "Borrar"
|
24
|
+
last: "Últimas actividades"
|
25
|
+
like: "Me gusta"
|
26
|
+
one: "Actividad"
|
27
|
+
other: "Actividades"
|
28
|
+
sending: "Enviando"
|
29
|
+
title: "Actividades"
|
30
|
+
to_comment: "Comentar"
|
31
|
+
unlike: "Ya no me gusta"
|
32
|
+
verb:
|
33
|
+
follow:
|
34
|
+
User:
|
35
|
+
title: "%{subject} añadió %{contact} como contacto."
|
36
|
+
message: "%{name} te añadió como contacto."
|
37
|
+
Group:
|
38
|
+
title: "%{subject} se unió al grupo %{contact}."
|
39
|
+
message: "%{name} te añadió como contacto."
|
40
|
+
like:
|
41
|
+
User:
|
42
|
+
title: "%{subject} es fan de %{contact}."
|
43
|
+
message: "%{name} es tu fan."
|
44
|
+
Group:
|
45
|
+
title: "%{subject} es fan de %{contact}."
|
46
|
+
message: "%{name} es tu fan."
|
47
|
+
make-friend:
|
48
|
+
User:
|
49
|
+
title: "%{subject} y %{contact} ahora están conectados."
|
50
|
+
message: "%{name} también te añadió como su contacto."
|
51
|
+
Group:
|
52
|
+
title: "%{subject} añadió a %{contact}."
|
53
|
+
message: "%{name} te añadió."
|
54
|
+
post:
|
55
|
+
title:
|
56
|
+
other_wall: "%{sender} → %{receiver}"
|
57
|
+
browse: "Descubrir"
|
58
|
+
button:
|
59
|
+
cancel: "Cancelar"
|
60
|
+
save: "Guardar"
|
61
|
+
update: "Actualizar"
|
62
|
+
cleditor:
|
63
|
+
controls: "negrita cursiva subrayado tachado subíndice superíndice | tamaño estilo | lista | imagen enlazar desenlazar"
|
64
|
+
comment:
|
65
|
+
input: "Comentar..."
|
66
|
+
confirm_delete: "¿Borrar commentario?"
|
67
|
+
view_all: "Ver todos los comentarios"
|
68
|
+
contact:
|
69
|
+
all_n: "Todos los contactos (%{count})"
|
70
|
+
confirm_delete: "¿Borrar contacto?"
|
71
|
+
current: "Actuales"
|
72
|
+
delete: "Borrar"
|
73
|
+
edit:
|
74
|
+
title: "Editar contacto con %{name}"
|
75
|
+
submit: "Editar contacto"
|
76
|
+
graph:
|
77
|
+
one: "Gráfico"
|
78
|
+
empty: "Lo sentimos pero aún no tienes contactos, pero ¡puedes probar a buscar en la caja de búsqueda!"
|
79
|
+
in_common:
|
80
|
+
one: "1 contacto en común"
|
81
|
+
other: "%{count} contactos en común"
|
82
|
+
new:
|
83
|
+
link: "+ Añadir contacto"
|
84
|
+
title: "Añadir a %{name} como contacto"
|
85
|
+
menu: "Añadir contacto"
|
86
|
+
submit: "Añadir"
|
87
|
+
one: "Contacto"
|
88
|
+
other: "Contactos"
|
89
|
+
pending:
|
90
|
+
other: "Pendientes"
|
91
|
+
all: "Todos"
|
92
|
+
all_n: "Ver todas los contactos pendientes (%{count})"
|
93
|
+
relation:
|
94
|
+
one: "Tipo de contacto"
|
95
|
+
new: "Nuevo tipo"
|
96
|
+
reply:
|
97
|
+
link: "+ Responder contacto"
|
98
|
+
title: "Responder contacto con %{name}"
|
99
|
+
submit: "Responder contacto"
|
100
|
+
suggestion:
|
101
|
+
one: "Sugerencia"
|
102
|
+
other: "Sugerencias"
|
103
|
+
all: "Todas"
|
104
|
+
type:
|
105
|
+
new: "+ Nuevo tipo"
|
106
|
+
copyright: "2011 Copyright - Derechos reservados"
|
107
|
+
delete:
|
108
|
+
confirm: "¿Borrar %{element}}?"
|
109
|
+
devise:
|
110
|
+
passwords:
|
111
|
+
confirm: "Confirmar contraseña"
|
112
|
+
forgot: "¿Olvidaste tu contraseña?"
|
113
|
+
instructions: "Introduce el correo electrónico y te mandaremos instrucciones para cambiarlo"
|
114
|
+
update: "Cambiar contraseña"
|
115
|
+
follower:
|
116
|
+
n:
|
117
|
+
one: "1 seguidor/a"
|
118
|
+
other: "%{count} seguidores"
|
119
|
+
forgot_password: "¿Olvidaste tu contraseña?"
|
120
|
+
frontpage:
|
121
|
+
collaborate:
|
122
|
+
default: "Colabora"
|
123
|
+
sentence1: "Organiza tus proyectos y actividades"
|
124
|
+
sentence2: "Crea tus propios grupos"
|
125
|
+
elements:
|
126
|
+
comments: "Comentarios"
|
127
|
+
networks: "Redes sociales"
|
128
|
+
organizers: "Organizadores"
|
129
|
+
participants: "Participantes"
|
130
|
+
groups: "Grupos"
|
131
|
+
tags: "Etiquetas"
|
132
|
+
main_title: "Social Stream es un núcleo para construir webs con características de red social"
|
133
|
+
meet:
|
134
|
+
default: "Encuentra"
|
135
|
+
sentence1: "Descubre grupos y gente interesante"
|
136
|
+
sentence2: "Encuentra la última actividad de tus contactos"
|
137
|
+
share:
|
138
|
+
default: "Comparte"
|
139
|
+
sentence1: "Tus proyectos y actividades"
|
140
|
+
sentence2: "Comentarios, fotos, audio y vídeo"
|
141
|
+
stats: "%{users} personas and %{groups} grupos registrados"
|
142
|
+
group:
|
143
|
+
one: "Grupo"
|
144
|
+
other: "Grupos"
|
145
|
+
all: "Todos los grupos"
|
146
|
+
all_n: "Todos los grupos (%{count})"
|
147
|
+
by: "Por grupos"
|
148
|
+
form:
|
149
|
+
title: "Grupo"
|
150
|
+
input: "¿Cuál es el nombre del grupo?"
|
151
|
+
last: "Últimos grupos"
|
152
|
+
my: "Mis grupos"
|
153
|
+
new:
|
154
|
+
action: "Nuevo grupo"
|
155
|
+
name: "Nombre"
|
156
|
+
description: "Descripción"
|
157
|
+
participants: "Participantes"
|
158
|
+
cloud: "Nube de etiquetas de grupos"
|
159
|
+
most:
|
160
|
+
followed: "Más seguidos"
|
161
|
+
liked: "Más populares"
|
162
|
+
tags: "Etiquetas"
|
163
|
+
help: "Ayuda"
|
164
|
+
helpers:
|
165
|
+
submit:
|
166
|
+
relation_custom:
|
167
|
+
create: "Guardar"
|
168
|
+
update: "Actualizar"
|
169
|
+
home: "Inicio"
|
170
|
+
inbox:
|
171
|
+
one: "Entrada"
|
172
|
+
invitation:
|
173
|
+
e-mails: "Correo electrónico"
|
174
|
+
error: "No se pudo atender a la petición. Asegurate de haber escrito una dirección de correo correcta"
|
175
|
+
invited: "%{sender} te ha invitado a %{site}"
|
176
|
+
join: "¡Invita a otras personas a unirse a %{site}!"
|
177
|
+
join_me: "¡Únete a mi en %{site}!"
|
178
|
+
one: "Invitación"
|
179
|
+
other: "Invitaciones"
|
180
|
+
toolbar: "Invitar"
|
181
|
+
success: "Se han enviado tus invitaciones"
|
182
|
+
text: "Escribe tu mensaje"
|
183
|
+
like:
|
184
|
+
n:
|
185
|
+
one: "1 fan"
|
186
|
+
other: "%{count} fans"
|
187
|
+
location:
|
188
|
+
message: "Estás aquí > %{location}"
|
189
|
+
base: "Estás aquí"
|
190
|
+
separator: " > "
|
191
|
+
mailboxer:
|
192
|
+
message_mailer:
|
193
|
+
subject_new: "%{subject}"
|
194
|
+
subject_reply: "%{subject}"
|
195
|
+
notification_mailer:
|
196
|
+
subject: "%{subject}"
|
197
|
+
menu:
|
198
|
+
options: "Opciones"
|
199
|
+
information: "Información"
|
200
|
+
wall: "Muro"
|
201
|
+
message:
|
202
|
+
answer: "Responder"
|
203
|
+
inbox: "Entrada"
|
204
|
+
look: "Échale un vistazo a esta conversación"
|
205
|
+
new: "Nuevo mensaje"
|
206
|
+
one: "Mensaje"
|
207
|
+
other: "Mensajes"
|
208
|
+
participants: "Participantes"
|
209
|
+
send: "Enviar un mensaje"
|
210
|
+
sentbox: "Salida"
|
211
|
+
trash: "Papelera"
|
212
|
+
notification:
|
213
|
+
confirm: "¿Confirmar contacto con %{sender.name}?"
|
214
|
+
destroy_sure: "¿Borrar notificación?"
|
215
|
+
look: "Écha un vistazo al muro de %{sender.name}"
|
216
|
+
one: "Notificación"
|
217
|
+
other: "Notificaciones"
|
218
|
+
read: "Marcar como leída"
|
219
|
+
read_all: "Marcar todas como leídas"
|
220
|
+
unread: "Marcar como no leídas"
|
221
|
+
post:
|
222
|
+
confirm_delete: "¿Borrar texto?"
|
223
|
+
form:
|
224
|
+
title: "Texto"
|
225
|
+
input: "¿Qué quieres compartir?"
|
226
|
+
title: "Textos"
|
227
|
+
profile:
|
228
|
+
one: "Perfil"
|
229
|
+
age: "Edad"
|
230
|
+
must_be_signed_id: "Debes identificarte"
|
231
|
+
group:
|
232
|
+
about: "Sobre nosotros"
|
233
|
+
birthday: "Aniversario"
|
234
|
+
experience: "Temas que se trabajan"
|
235
|
+
info: "Información sobre el grupo"
|
236
|
+
tags: "Etiquetas del grupo"
|
237
|
+
user:
|
238
|
+
about: "Sobre mí"
|
239
|
+
birthday: "Cumpleaños"
|
240
|
+
experience: "Intereses"
|
241
|
+
info: "Información personal"
|
242
|
+
tags: "Etiquetas"
|
243
|
+
actualcity: "Ciudad actual"
|
244
|
+
address: "Dirección"
|
245
|
+
contact: "Información de contacto"
|
246
|
+
country: "País"
|
247
|
+
email: "Correo electrónico"
|
248
|
+
empty: "Estos campos están vacíos. ¡Actualízalos!"
|
249
|
+
fax: "Fax"
|
250
|
+
mobile: "Móvil"
|
251
|
+
organization: "Organización"
|
252
|
+
phone: "Teléfono"
|
253
|
+
profile: "Editar perfil"
|
254
|
+
tags:
|
255
|
+
default: "social, stream,"
|
256
|
+
other: "Etiquetas"
|
257
|
+
website: "Sitio web"
|
258
|
+
update:
|
259
|
+
error: "Por favor, comprueba el formato de tu perfil:"
|
260
|
+
success: "Tu perfil se ha actualizado"
|
261
|
+
public:
|
262
|
+
other: "Todo el mundo"
|
263
|
+
permission:
|
264
|
+
description:
|
265
|
+
brief:
|
266
|
+
create:
|
267
|
+
activity: "Publicar en el muro"
|
268
|
+
follow:
|
269
|
+
nil: "Seguir su actividad"
|
270
|
+
read:
|
271
|
+
activity: "Leer muro"
|
272
|
+
represent:
|
273
|
+
nil: "Administrar"
|
274
|
+
detailed:
|
275
|
+
create:
|
276
|
+
activity: "Publicar en el muro de\"%{relation}\""
|
277
|
+
follow:
|
278
|
+
nil: "Las actividades de los contactos en %{relation} aparecerán en tu página de inicio"
|
279
|
+
read:
|
280
|
+
activity: "Leer publicaciones en el muro de \"%{relation}\""
|
281
|
+
tie: "Ver contactos en los niveles: %{relations} y %{public}"
|
282
|
+
represent:
|
283
|
+
nil: "Cambiar sesión para actuar en nombre de %{subject}"
|
284
|
+
of_relation:
|
285
|
+
choose: "2. Permisos para <strong>%{name}</strong>"
|
286
|
+
privacy:
|
287
|
+
intro: "Los contactos en <strong>%{relation}</strong> solo pueden:"
|
288
|
+
rule:
|
289
|
+
add: "Añadir"
|
290
|
+
title: "Reglas de privacidad"
|
291
|
+
saved: "Reglas de privacidad guardadas"
|
292
|
+
relation_custom:
|
293
|
+
choose: "1. Elegir tipo de relación"
|
294
|
+
confirm_delete: "¿Borrar este tipo de relación?"
|
295
|
+
delete: "Borrar"
|
296
|
+
edit: "Cambiar nombre"
|
297
|
+
new: "+ Nuevo tipo"
|
298
|
+
title: "Privacidad y contexto"
|
299
|
+
relation_public:
|
300
|
+
name: "Público"
|
301
|
+
required: "(*) Estos campos son obligatorios"
|
302
|
+
search:
|
303
|
+
all_subject_results: "Ver todos %{subject} (%{count})"
|
304
|
+
at_least: "Escribe al menos 2 letras"
|
305
|
+
global:
|
306
|
+
name: "Búsqueda global"
|
307
|
+
first_result:
|
308
|
+
more: "Mostrando los primeros %{count} resultados."
|
309
|
+
one: "Mostrando el primer resultado"
|
310
|
+
query: "Más resultados para %{query} >"
|
311
|
+
name: "Buscar"
|
312
|
+
no_subject_found: "No se encontró a %{subject}."
|
313
|
+
nothing: "No se ha econtrado nada."
|
314
|
+
searching: "Buscando: %{query}"
|
315
|
+
show_all: "Todos los resultados"
|
316
|
+
write: "Escribe tu búsqueda..."
|
317
|
+
wrong: "Parece que hay un problema con el motor de búsqueda"
|
318
|
+
settings:
|
319
|
+
error: "Hubo errores al guardar los cambios"
|
320
|
+
for: "Ajustes para"
|
321
|
+
main: "Ajustes principales"
|
322
|
+
one: "Ajustes"
|
323
|
+
success: "Ajustes guardados con éxito"
|
324
|
+
api_key:
|
325
|
+
briefing: "Gestiona tu clave API"
|
326
|
+
confirm: "¿Estás seguro?"
|
327
|
+
empty: "Token vacío"
|
328
|
+
explanation: "Ésta es tu clave API"
|
329
|
+
name: "Clave API"
|
330
|
+
regenerate: "Regenerar clave API"
|
331
|
+
notifications:
|
332
|
+
briefing: "Ajustes sobre notificaciones y alertas por correo"
|
333
|
+
name: "Notificaciones"
|
334
|
+
by_email:
|
335
|
+
name: "Mandarme un correo cuando me llega una notificación"
|
336
|
+
always: "Siempre"
|
337
|
+
never: "Nunca"
|
338
|
+
share: "Compartir"
|
339
|
+
sign_in: "Entrar"
|
340
|
+
sign_out: "Salir"
|
341
|
+
sign_up: "Registrarse"
|
342
|
+
site:
|
343
|
+
name: "Social Stream"
|
344
|
+
subject:
|
345
|
+
this_is_you: "¡Eres tú!"
|
346
|
+
sure: "¿Seguro?"
|
347
|
+
time:
|
348
|
+
ago: "hace %{time}"
|
349
|
+
user:
|
350
|
+
by: "Por usuarios"
|
351
|
+
one: "Usuario"
|
352
|
+
other: "Usuarios"
|
353
|
+
all: "Todos los usuarios"
|
354
|
+
all_n: "Todos los usuarios (%{count})"
|
355
|
+
welcome: "¡Bienvenid@ a %{site}!"
|
356
|
+
|