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
@@ -16,12 +16,7 @@
|
|
16
16
|
|
17
17
|
<% if can? :update, @profile %>
|
18
18
|
<div class="update">
|
19
|
-
<%=
|
20
|
-
<%= f.text_area :experience, :maxlength => 246, :rows => 5 %>
|
21
|
-
|
22
|
-
<%= f.submit :class => "btn" %>
|
23
|
-
<% end %>
|
19
|
+
<%= render partial: 'experience_edit' %>
|
24
20
|
</div>
|
25
21
|
<% end %>
|
26
|
-
|
27
22
|
</section>
|
@@ -68,45 +68,7 @@
|
|
68
68
|
|
69
69
|
<div class="update">
|
70
70
|
<% if can? :update, @profile %>
|
71
|
-
<%=
|
72
|
-
<h6>
|
73
|
-
<span class="required">*</span>
|
74
|
-
<%= f.label t('actor.name') %>
|
75
|
-
</h6>
|
76
|
-
|
77
|
-
<%= f.text_field :name, :class => "required" %>
|
78
|
-
|
79
|
-
<h6>
|
80
|
-
<%= f.label :description, t("profile.#{ current_subject.class.to_s.downcase }.about") %>
|
81
|
-
</h6>
|
82
|
-
|
83
|
-
<%= f.text_area :description, :maxlength => 200, :rows => 10 %>
|
84
|
-
|
85
|
-
<h6>
|
86
|
-
<%= f.label :organization, t('profile.organization') %>
|
87
|
-
</h6>
|
88
|
-
|
89
|
-
<%= f.text_field :organization %>
|
90
|
-
|
91
|
-
<h6>
|
92
|
-
<%= f.label :birthday, t('profile.' + current_subject.class.to_s.downcase + '.birthday') %>
|
93
|
-
</h6>
|
94
|
-
|
95
|
-
<%= date_select "profile", "birthday", :order => [:day, :month, :year], :end_year => Date.today.year, :start_year => (Date.today.year - 100), :prompt => {:day => 'Day', :month => 'Month', :year => 'Year'} %>
|
96
|
-
|
97
|
-
<%= f.label :city, t('profile.actualcity') %>
|
98
|
-
|
99
|
-
<%= f.text_field :city %>
|
100
|
-
|
101
|
-
<%= f.label :country, t('profile.country') %>
|
102
|
-
|
103
|
-
<%= f.text_field :country %>
|
104
|
-
|
105
|
-
<p>
|
106
|
-
<%= t('required') %>
|
107
|
-
</p>
|
108
|
-
<%= f.submit %>
|
109
|
-
<% end %>
|
71
|
+
<%= render partial: 'personal_edit' %>
|
110
72
|
<% end %>
|
111
73
|
</div>
|
112
74
|
</section>
|
@@ -0,0 +1,31 @@
|
|
1
|
+
<%= form_for(@profile, :url => [current_subject, :profile]) do |f| %>
|
2
|
+
<span class="required">*</span>
|
3
|
+
<%= f.label :name %>
|
4
|
+
|
5
|
+
<%= f.text_field :name, :class => "required" %>
|
6
|
+
|
7
|
+
<%= f.label :description, t("profile.#{ current_subject.class.to_s.downcase }.about") %>
|
8
|
+
|
9
|
+
<%= f.text_area :description, :maxlength => 200, :rows => 10 %>
|
10
|
+
|
11
|
+
<%= f.label :organization, t('profile.organization') %>
|
12
|
+
|
13
|
+
<%= f.text_field :organization %>
|
14
|
+
|
15
|
+
<%= f.label :birthday, t('profile.' + current_subject.class.to_s.downcase + '.birthday') %>
|
16
|
+
|
17
|
+
<%= date_select "profile", "birthday", :order => [:day, :month, :year], :end_year => Date.today.year, :start_year => (Date.today.year - 100), :prompt => {:day => 'Day', :month => 'Month', :year => 'Year'} %>
|
18
|
+
|
19
|
+
<%= f.label :city, t('profile.actualcity') %>
|
20
|
+
|
21
|
+
<%= f.text_field :city %>
|
22
|
+
|
23
|
+
<%= f.label :country, t('profile.country') %>
|
24
|
+
|
25
|
+
<%= f.text_field :country %>
|
26
|
+
|
27
|
+
<p>
|
28
|
+
<%= t('required') %>
|
29
|
+
</p>
|
30
|
+
<%= f.submit %>
|
31
|
+
<% end %>
|
@@ -14,10 +14,7 @@
|
|
14
14
|
</div>
|
15
15
|
<% if can?(:update, @profile) %>
|
16
16
|
<div class="update">
|
17
|
-
<%=
|
18
|
-
<%= f.text_field :tag_list, "data-path" => tags_path(format: :json) %>
|
19
|
-
<%= f.submit %>
|
20
|
-
<% end %>
|
17
|
+
<%= render partial: 'tags_edit' %>
|
21
18
|
</div>
|
22
19
|
<% end %>
|
23
20
|
</section>
|
@@ -0,0 +1,24 @@
|
|
1
|
+
<div id="profile-info_edit">
|
2
|
+
<section class="personal">
|
3
|
+
<header>
|
4
|
+
<%= render partial: 'edit_icon' %>
|
5
|
+
<h4>
|
6
|
+
<%= t("profile.#{ @profile.subject.class.to_s.downcase }.info") %>
|
7
|
+
</h4>
|
8
|
+
</header>
|
9
|
+
|
10
|
+
<%= render partial: "personal_edit" %>
|
11
|
+
</section>
|
12
|
+
|
13
|
+
<section class="comunication-info">
|
14
|
+
<header>
|
15
|
+
<h4>
|
16
|
+
<%= t('profile.contact') %>
|
17
|
+
</h4>
|
18
|
+
</header>
|
19
|
+
|
20
|
+
<%= render :partial => "comunication-info_edit" %>
|
21
|
+
</section>
|
22
|
+
|
23
|
+
<%= render :partial => "avatar" %>
|
24
|
+
</div>
|
@@ -7,15 +7,23 @@
|
|
7
7
|
|
8
8
|
<div class="content settings_content collapse" id="notifications_settings_content">
|
9
9
|
<%= form_tag update_all_settings_path, :method => :put do %>
|
10
|
-
|
10
|
+
|
11
11
|
<%= t('settings.notifications.by_email.name')%>
|
12
12
|
|
13
|
-
<div class="options">
|
13
|
+
<div class="options">
|
14
14
|
<%= radio_button_tag :notify_by_email, 'always', current_subject.notify_by_email %> <%= t('settings.notifications.by_email.always') %>
|
15
15
|
<%= radio_button_tag :notify_by_email, 'never', !current_subject.notify_by_email %> <%= t('settings.notifications.by_email.never') %>
|
16
16
|
</div>
|
17
|
-
|
18
|
-
|
17
|
+
|
18
|
+
<% SocialStream.default_notification_settings.keys.each do |key| %>
|
19
|
+
<%= [t("settings.notification_settings.prefix"), t("settings.notification_settings.#{key}")].join " " %>
|
20
|
+
|
21
|
+
<div class="options">
|
22
|
+
<%= radio_button_tag "notification_settings[#{key}]", 'always', current_subject.notification_settings[key] %> <%= t('settings.notifications.by_email.always') %>
|
23
|
+
<%= radio_button_tag "notification_settings[#{key}]", 'never', !current_subject.notification_settings[key] %> <%= t('settings.notifications.by_email.never') %>
|
24
|
+
</div>
|
25
|
+
<% end %>
|
26
|
+
|
19
27
|
<%= hidden_field_tag :settings_section, :notifications %>
|
20
28
|
<%= submit_tag "Update Settings", :class => "btn" %>
|
21
29
|
<% end %>
|
@@ -1,17 +1,17 @@
|
|
1
1
|
<% content_for :title do %>
|
2
|
-
<%= "#{
|
2
|
+
<%= "#{ resource.name } | #{ t 'site.name' }" %>
|
3
3
|
<% end %>
|
4
4
|
|
5
5
|
<% content_for :description do %>
|
6
|
-
<% if
|
7
|
-
<%=
|
6
|
+
<% if resource.profile.description? %>
|
7
|
+
<%= resource.profile.description%>
|
8
8
|
<% else %>
|
9
|
-
<%= "#{
|
9
|
+
<%= "#{ resource.name } #{ t('profile.is_on') } #{ t('site.name') }" %>
|
10
10
|
<% end %>
|
11
11
|
<% end %>
|
12
12
|
|
13
13
|
<% content_for :keywords do %>
|
14
|
-
<%=
|
14
|
+
<%= resource.tag_list%>
|
15
15
|
<% end %>
|
16
16
|
|
17
17
|
<%= render :partial => 'show' %>
|
@@ -0,0 +1,654 @@
|
|
1
|
+
---
|
2
|
+
de:
|
3
|
+
language_name: German
|
4
|
+
account:
|
5
|
+
cancel: Profil löschen
|
6
|
+
edit: Profil ändern
|
7
|
+
email:
|
8
|
+
change: Email Adresse ändern
|
9
|
+
lang:
|
10
|
+
change: Sprache ändern
|
11
|
+
one: Profil
|
12
|
+
password:
|
13
|
+
change: Passwort ändern
|
14
|
+
new: Neues Passwort
|
15
|
+
retype: Passwort wiederholen
|
16
|
+
action:
|
17
|
+
accept: Akzeptieren
|
18
|
+
send: Senden
|
19
|
+
activerecord:
|
20
|
+
attributes:
|
21
|
+
contact:
|
22
|
+
relation_ids: Kontakttyp
|
23
|
+
profile:
|
24
|
+
name: Name
|
25
|
+
relation/custom:
|
26
|
+
name: Name
|
27
|
+
user:
|
28
|
+
email: Email
|
29
|
+
name: Name
|
30
|
+
password: Passwort
|
31
|
+
password_confirmation: Passwort bestätigen
|
32
|
+
remember_me: Erinnerung
|
33
|
+
activity:
|
34
|
+
audience:
|
35
|
+
hidden:
|
36
|
+
full: 'Zugänglich nur für folgende Kontakte: %{audience}'
|
37
|
+
summary: Eigeschränkt
|
38
|
+
public:
|
39
|
+
full: Zugänglich für alle am Internet
|
40
|
+
summary: Öffentlich
|
41
|
+
show: Zeigen
|
42
|
+
visible:
|
43
|
+
full: Zugänglich für %{audience}
|
44
|
+
summary: Eingeschränkt
|
45
|
+
confirm_delete: Aktivität löschen?
|
46
|
+
delete: Löschen
|
47
|
+
last: Letzte Aktivität
|
48
|
+
like: Gefällt mir
|
49
|
+
like_sentence:
|
50
|
+
one: '%{likers} gefällt das'
|
51
|
+
other: '%{likers} gefällt das'
|
52
|
+
one: Aktivität
|
53
|
+
other: Aktivitäten
|
54
|
+
privacy:
|
55
|
+
contact:
|
56
|
+
myself:
|
57
|
+
group: All members
|
58
|
+
user: Your contacts
|
59
|
+
outside:
|
60
|
+
group: Members of %{receiver}
|
61
|
+
user: Contacts of %{receiver}
|
62
|
+
relation:
|
63
|
+
one: '%{count} group'
|
64
|
+
other: '%{count} groups'
|
65
|
+
sending: Senden
|
66
|
+
share: Share
|
67
|
+
share_loading: Sharing...
|
68
|
+
stream:
|
69
|
+
atom_title: Aktivitäten von %{subject}
|
70
|
+
title:
|
71
|
+
follow: '%{author} hat %{activity_object} als Kontakt hinzugefügt'
|
72
|
+
like: '%{author} gefällt %{activity_object}'
|
73
|
+
make-friend: '%{author} hat auch %{activity_object} als Kontakt hinzugefügt'
|
74
|
+
post: '%{author} hat %{activity_object} gepostet'
|
75
|
+
updated: '%{author} hat %{activity_object} gepostet'
|
76
|
+
title: Aktivitäten
|
77
|
+
to_comment: Kommentieren
|
78
|
+
unlike: Gefällt mir nicht mehr
|
79
|
+
verb:
|
80
|
+
follow:
|
81
|
+
Group:
|
82
|
+
message: '%{name} hat dich als Kontakt hinzugefügt.'
|
83
|
+
title: '%{subject} hat %{contact} als Kontakt hinzugefügt.'
|
84
|
+
User:
|
85
|
+
message: '%{name} hat dich als Kontakt hinzugefügt.'
|
86
|
+
title: '%{subject} hat %{contact} als Kontakt hinzugefügt.'
|
87
|
+
join:
|
88
|
+
one: '%{sender} ist %{title} %{thing} beigetreten.'
|
89
|
+
like:
|
90
|
+
Group:
|
91
|
+
message: '%{name} ist dein Fan.'
|
92
|
+
title: '%{subject} ist ein Fan von %{contact}.'
|
93
|
+
User:
|
94
|
+
message: '%{name} ist dein Fan.'
|
95
|
+
title: '%{subject} ist ein Fan von %{contact}.'
|
96
|
+
make-friend:
|
97
|
+
Group:
|
98
|
+
message: '%{name} hat dich als Kontakt hinzugefügt.'
|
99
|
+
title: '%{subject} hat %{contact} als Kontakt hinzugefügt.'
|
100
|
+
User:
|
101
|
+
message: '%{name} hat dich als Kontakt hinzugefügt.'
|
102
|
+
title: '%{subject} und %{contact} sind verbunden.'
|
103
|
+
post:
|
104
|
+
title:
|
105
|
+
other_wall: '%{sender} → %{receiver}'
|
106
|
+
activity_action:
|
107
|
+
follow: Folgen
|
108
|
+
sentence:
|
109
|
+
follow:
|
110
|
+
one: '%{followers} folgt hier'
|
111
|
+
other: '%{followers} folgen hier'
|
112
|
+
more:
|
113
|
+
one: '%{count} Person mehr'
|
114
|
+
other: '%{count} Personen mehr'
|
115
|
+
unfollow: Nicht mehr folgen
|
116
|
+
actor:
|
117
|
+
name: Name
|
118
|
+
title:
|
119
|
+
other: Actors
|
120
|
+
ajax:
|
121
|
+
error: There was an error in the remote server
|
122
|
+
browse: Browsen
|
123
|
+
button:
|
124
|
+
cancel: Löschen
|
125
|
+
create: Erstellen
|
126
|
+
save: Speichern
|
127
|
+
update: Aktualisieren
|
128
|
+
cheesecake:
|
129
|
+
changes:
|
130
|
+
details: Details ändern
|
131
|
+
none: Keine Änderungen
|
132
|
+
save: Änderungen speichern
|
133
|
+
saving: Speichert...
|
134
|
+
form:
|
135
|
+
editing: Bearbeiten
|
136
|
+
fields:
|
137
|
+
color: Farbe
|
138
|
+
name: Name
|
139
|
+
permissions: Zugriffsrechte
|
140
|
+
subsector: Unterbereich
|
141
|
+
select:
|
142
|
+
hint: Auswahl durch Anklicken des Portraits
|
143
|
+
comment:
|
144
|
+
confirm_delete: Kommentar löschen?
|
145
|
+
input: Kommentieren...
|
146
|
+
name: Kommentar
|
147
|
+
one: Kommentar
|
148
|
+
other: comments
|
149
|
+
title:
|
150
|
+
one: Kommentar
|
151
|
+
other: Kommentare
|
152
|
+
view_all: Alle Kommentare anzeigen
|
153
|
+
contact:
|
154
|
+
all_n: Alle Kontakte (%{count})
|
155
|
+
confirm_delete: Kontakt löschen?
|
156
|
+
current: Aktuell
|
157
|
+
delete: Löschen
|
158
|
+
edit:
|
159
|
+
submit: Kontakt bearbeiten
|
160
|
+
title: Kontakt für %{name} bearbeiten
|
161
|
+
empty: You have not added anybody yet. What about <a href="%{explore}">exploring</a>?
|
162
|
+
error_count:
|
163
|
+
one: '1 Fehler verhindert, dass dieser Kontakt gespeichert werden kann:'
|
164
|
+
other: '%{count} Fehler verhindern, dass dieser Kontakt gespeichert werden kann:'
|
165
|
+
follow: Folgen
|
166
|
+
following: Folgt
|
167
|
+
graph:
|
168
|
+
empty: Du hast leider noch keine Kontakte ausgewählt. Im Suchfeld kannst du
|
169
|
+
nach Kontakten suchen!
|
170
|
+
one: Diagramm
|
171
|
+
in_common:
|
172
|
+
one: 1 gemeinsamer Kontakt
|
173
|
+
other: '%{count} gemeinsame Kontakte'
|
174
|
+
n:
|
175
|
+
one: '%{count} contact'
|
176
|
+
other: '%{count} contacts'
|
177
|
+
new:
|
178
|
+
added:
|
179
|
+
other: '%{actors} successfully added as %{relations}'
|
180
|
+
button:
|
181
|
+
one: '%{count} role'
|
182
|
+
other: '%{count} roles'
|
183
|
+
zero: Add
|
184
|
+
link: + Kontakt hinzufügen
|
185
|
+
menu: Kontakt hinzufügen
|
186
|
+
modal:
|
187
|
+
button: Add
|
188
|
+
title: Add contacts
|
189
|
+
submit: Kontakt hinzufügen
|
190
|
+
title: '%{name} zu Kontakten hinzufügen'
|
191
|
+
one: Kontakt
|
192
|
+
other: Kontakte
|
193
|
+
pending:
|
194
|
+
all: Alle
|
195
|
+
all_n: Alle unbestätigten Anfragen anzeigen (%{count})
|
196
|
+
other: Unbestätigt
|
197
|
+
received: Received
|
198
|
+
relation:
|
199
|
+
new: Neuer Typ
|
200
|
+
one: Kontakttyp
|
201
|
+
reply:
|
202
|
+
link: + Kontakt antworten
|
203
|
+
submit: Kontakt antworten
|
204
|
+
title: Kontaktanfrage von %{name} antworten
|
205
|
+
saving: Saving...
|
206
|
+
sent: Added
|
207
|
+
suggestion:
|
208
|
+
all: Alle
|
209
|
+
one: Vorschlag
|
210
|
+
other: Vorschläge
|
211
|
+
type:
|
212
|
+
new: + Neuer Typ
|
213
|
+
unfollow: Nicht mehr folgen
|
214
|
+
view_all: View all...
|
215
|
+
copyright: 2010 Copyright – Alle Rechte vorbehalten
|
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
|
223
|
+
delete:
|
224
|
+
confirm: Löschen %{element}}?
|
225
|
+
devise:
|
226
|
+
links:
|
227
|
+
confirmation_instructions: Keine Anweisungen zur Bestätigung bekommen?
|
228
|
+
forgot_password: Passwort vergessen?
|
229
|
+
sign_in: Einsteigen
|
230
|
+
sign_in_with: Einsteigen mit %{provider}
|
231
|
+
sign_up: Anmelden
|
232
|
+
unlock_instructions: Keine Anweisungen zum Freischalten bekommen?
|
233
|
+
passwords:
|
234
|
+
confirm: Passwort bestätigen
|
235
|
+
forgot: Passwort vergessen?
|
236
|
+
instructions: Gib bitte die e-mail Adresse ein, unter der du dich angemeldet
|
237
|
+
hast, und wir schicken dir Anweisungen, wie du dein Passwort ändern kannst
|
238
|
+
update: Change your password
|
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
|
269
|
+
follower:
|
270
|
+
follower:
|
271
|
+
title: Followers
|
272
|
+
following:
|
273
|
+
title: Folgt
|
274
|
+
n:
|
275
|
+
one: 1 Follower
|
276
|
+
other: '%{count} Followers'
|
277
|
+
forgot_password: Passwort vergessen?
|
278
|
+
frontpage:
|
279
|
+
main_title: Social Stream ist ein Kernelement, um soziale Netzwerkseiten zu erstellen.
|
280
|
+
presentation:
|
281
|
+
community:
|
282
|
+
header: Community
|
283
|
+
p: Social Stream enjoys a growing community of developers. Feel free to drop
|
284
|
+
a message at <a href="http://groups.google.com/group/social-stream">Social
|
285
|
+
Stream's Google group</a> or <a href="http://stackoverflow.com/questions/tagged/social-stream">StackOverflow</a>
|
286
|
+
if you have problems. <a href="https://github.com/ging/social_stream/issues/new">Open
|
287
|
+
an issue</a> if you find a defect. Pull request are very welcomed!
|
288
|
+
flexible:
|
289
|
+
header: Flexible
|
290
|
+
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
|
291
|
+
any Social Stream component</a>, <a href="https://github.com/ging/social_stream/wiki/How-to-add-new-activity-objects">adding
|
292
|
+
new activity objects</a> or changing the CSS using <a href="http://sass-lang.com/">Sass</a>
|
293
|
+
modular:
|
294
|
+
header: Modular
|
295
|
+
p: Available <a href="https://github.com/ging/social_stream#social-stream-components">Social
|
296
|
+
Stream components</a> provide your application only with the features you
|
297
|
+
need in your social network. Just add your desired gems to your Gemfile
|
298
|
+
stats: '%{users} Nutzer und %{groups} Gruppen registriert'
|
299
|
+
group:
|
300
|
+
all: Alle Gruppen
|
301
|
+
all_n: Alle Gruppen (%{count})
|
302
|
+
by: Nach Gruppe
|
303
|
+
cloud: Tag Cloud der Gruppe
|
304
|
+
destroy:
|
305
|
+
explanation: Alle Aktivitäten, Informationen und Kontakte dieser Gruppe werden
|
306
|
+
gelöscht!
|
307
|
+
go_ahead: Ja, ich bin sicher. Alles löschen!
|
308
|
+
last_confirm: Das ist deine lezte Chance. Bist du wirklich sicher?
|
309
|
+
one: Gruppe auflösen
|
310
|
+
form:
|
311
|
+
title: Gruppe
|
312
|
+
input: Name der Gruppe?
|
313
|
+
last: Letzte Gruppe
|
314
|
+
most:
|
315
|
+
followed: Am moisten gefolgt
|
316
|
+
liked: Am moisten gefällt
|
317
|
+
my: Meine Gruppen
|
318
|
+
n:
|
319
|
+
one: '%{count} group'
|
320
|
+
other: '%{count} groups'
|
321
|
+
new:
|
322
|
+
description: Beschreibung
|
323
|
+
link: New group
|
324
|
+
name: Name
|
325
|
+
participants: Teilnehmer
|
326
|
+
title: New group
|
327
|
+
one: Gruppe
|
328
|
+
other: Gruppen
|
329
|
+
tags: Tags
|
330
|
+
title:
|
331
|
+
one: Gruppe
|
332
|
+
other: Gruppen
|
333
|
+
view_all: View all...
|
334
|
+
header:
|
335
|
+
icon:
|
336
|
+
contacts: Contacts
|
337
|
+
home: Home
|
338
|
+
messages: Messages
|
339
|
+
repository: Repository
|
340
|
+
help: Hilfe
|
341
|
+
helpers:
|
342
|
+
submit:
|
343
|
+
relation_custom:
|
344
|
+
create: Speichern
|
345
|
+
update: Aktualisieren
|
346
|
+
home: Home
|
347
|
+
inbox:
|
348
|
+
one: Inbox
|
349
|
+
invitation:
|
350
|
+
e-mails: E-mail Adressen
|
351
|
+
error: Deine Anfrage konnte nicht bearbeitet werden. Bitte überprüfe, ob die E-mail
|
352
|
+
Addressen korrekt sind.
|
353
|
+
invited: '%{sender} hat dich eingeladen zu %{site}!'
|
354
|
+
join: Lade andere Personen zu %{site} ein!
|
355
|
+
join_me: Mach mit bei %{site}!
|
356
|
+
one: Einladung
|
357
|
+
other: Einladungen
|
358
|
+
success: Deine Einladungen wurden erfolgreich versandt
|
359
|
+
text: Schreibe deine eigene Nachricht
|
360
|
+
toolbar: Einladen
|
361
|
+
lang:
|
362
|
+
browser: Sprache des Browsers automatisch erkennen
|
363
|
+
none: Sprachunabhängiger Inhalt
|
364
|
+
layout:
|
365
|
+
more: See more (%{count})
|
366
|
+
like:
|
367
|
+
n:
|
368
|
+
one: 1 Fan
|
369
|
+
other: '%{count} Fans'
|
370
|
+
location:
|
371
|
+
base: Du bist hier
|
372
|
+
message: Du bist hier > %{location}
|
373
|
+
separator: ' > '
|
374
|
+
mailboxer:
|
375
|
+
delete: Löschen
|
376
|
+
delete_confirm: Möchtest du '%{object}' in den Papierkorb verschieben?
|
377
|
+
form:
|
378
|
+
body: Text
|
379
|
+
recipients: Empfänger
|
380
|
+
subject: Titel
|
381
|
+
mark_as_read: Als gelesen markieren
|
382
|
+
message_mailer:
|
383
|
+
has_sent_new:
|
384
|
+
event: hat eine neue Nachricht an %{receiver} geschickt
|
385
|
+
group: hat eine neue Nachricht an %{receiver} geschickt
|
386
|
+
user: hat dir eine neue Nachricht geschickt
|
387
|
+
has_sent_reply:
|
388
|
+
event: hat eine Antwort an %{receiver} geschickt
|
389
|
+
group: hat eine Antwort an %{receiver} geschickt
|
390
|
+
user: hat dir eine Antwort geschickt
|
391
|
+
subject_new: '%{subject}'
|
392
|
+
subject_reply: '%{subject}'
|
393
|
+
notification_mailer:
|
394
|
+
subject: '%{subject}'
|
395
|
+
reply: Antwort
|
396
|
+
send: Nachricht senden
|
397
|
+
sent: Deine Nachricht wurde versandt
|
398
|
+
menu:
|
399
|
+
information: Information
|
400
|
+
options: Menü Optionen
|
401
|
+
wall: Wall
|
402
|
+
message:
|
403
|
+
answer: Schreibe deine Antwort
|
404
|
+
inbox: Inbox
|
405
|
+
look: Diese Konversation anschauen
|
406
|
+
new: Neue Nachricht
|
407
|
+
one: Nachricht
|
408
|
+
other: Nachrichten
|
409
|
+
participants: Teilnehmer
|
410
|
+
send: Eine Nachricht senden
|
411
|
+
sentbox: gesendete Nachrichten
|
412
|
+
trash: Papierkorb
|
413
|
+
notification:
|
414
|
+
all_text: Den gesamten Text unter %{url} lesen
|
415
|
+
confirm: ' %{sender} als Kontakt bestätigen?'
|
416
|
+
default: Du hast eine Benachrichtigung
|
417
|
+
destroy_sure: Willst du diese Benachrichtigung löschen?
|
418
|
+
fan: '%{sender} ist %{whose} Fan.'
|
419
|
+
follow:
|
420
|
+
group: '%{sender} hat %{who} als Kontakt hinzugefügt.'
|
421
|
+
user: '%{sender} hat %{who} als Kontakt hinzugefügt.'
|
422
|
+
hello: Hallo %{receiver},
|
423
|
+
like:
|
424
|
+
group: '%{sender} gefällt %{whose} %{thing}.'
|
425
|
+
user: '%{sender} gefällt %{whose} %{thing}.'
|
426
|
+
look: Schau dir doch %{sender}'s Wall an
|
427
|
+
makefriend:
|
428
|
+
group: '%{sender} hat auch %{who} als Kontakt hinzugefügt.'
|
429
|
+
user: '%{sender} hat auch %{who} als Kontakt hinzugefügt.'
|
430
|
+
one: Benachrichtigung
|
431
|
+
other: Benachrichtigungen
|
432
|
+
post:
|
433
|
+
group: '%{title} -- von %{sender} in %{whose} Wall'
|
434
|
+
user: '%{title} -- von %{sender} in %{whose} Wall'
|
435
|
+
read: Als gelesen markieren
|
436
|
+
read_all: Alle als gelesen markieren
|
437
|
+
unread: Als ungelesen markieren
|
438
|
+
update:
|
439
|
+
group: '%{sender} hat %{thing} in %{whose} Wall aktualisiert.'
|
440
|
+
user: '%{sender} hat %{thing} in %{whose} Wall aktualisiert.'
|
441
|
+
visit: Gehe auf %{url} und überprüfe alle deine Benachrichtigungen.
|
442
|
+
watch: Unter %{url} anschauen
|
443
|
+
watch_it: Anschauen!
|
444
|
+
who:
|
445
|
+
group: '%{name}'
|
446
|
+
user: Du
|
447
|
+
whose:
|
448
|
+
group: '%{receiver}''s'
|
449
|
+
user: Dein
|
450
|
+
permission:
|
451
|
+
description:
|
452
|
+
default:
|
453
|
+
brief:
|
454
|
+
create:
|
455
|
+
activity: Beitrag auf deine Wall stellen
|
456
|
+
follow:
|
457
|
+
nil: Ihren Aktiviäten folgen
|
458
|
+
notify:
|
459
|
+
nil: Benachritigen
|
460
|
+
read:
|
461
|
+
activity: Deine Wall ansehen
|
462
|
+
represent:
|
463
|
+
nil: Verwalten
|
464
|
+
detailed:
|
465
|
+
create:
|
466
|
+
activity:
|
467
|
+
negative: Sie können KEINE Aktivitäten auf deine Wall posten
|
468
|
+
positive: Sie können neue Aktivitäten auf deine Wall posten
|
469
|
+
follow:
|
470
|
+
nil:
|
471
|
+
negative: Aktivitäten der Kontakte in %{relation} werden NICHT auf deiner
|
472
|
+
Wall angezeigt
|
473
|
+
positive: Aktivitäten der Kontakte in %{relation} werden auf deiner
|
474
|
+
Wall angezeigt
|
475
|
+
notify:
|
476
|
+
nil:
|
477
|
+
negative: Aktivitäten warden den Kontakten unter %{name} NICHT angezeigt
|
478
|
+
positive: Aktivitäten werden den Kontakten unter %{name} angezeigt
|
479
|
+
read:
|
480
|
+
activity:
|
481
|
+
negative: Sie können KEINE Beiträge auf deiner Wall ansehen, außer jene,
|
482
|
+
die als öffentlich gekennzeichnet sind
|
483
|
+
positive: Sie können die Beiträge auf deiner Wall ansehen, außer jene
|
484
|
+
Beiträge, die nur für bestimmte Kontakte freigeschaltet sind
|
485
|
+
represent:
|
486
|
+
nil:
|
487
|
+
negative: Sie können die Session NICHT ändern und auch NICHT als %{subject}
|
488
|
+
agieren
|
489
|
+
positive: Sie können die Session ändern und als %{subject} agieren
|
490
|
+
of_relation:
|
491
|
+
choose: 2. Berechtigung in <strong>%{name}</strong> Sphäre
|
492
|
+
postit: Manage the permissions of your contacts and create new roles
|
493
|
+
post:
|
494
|
+
confirm_delete: Beitrag löschen?
|
495
|
+
form:
|
496
|
+
title: Beitrag
|
497
|
+
input: Was machst du gerade?
|
498
|
+
name: Beitrag
|
499
|
+
one: ein Beitrag
|
500
|
+
other: posts
|
501
|
+
title:
|
502
|
+
one: Beitrag
|
503
|
+
other: Beiträge
|
504
|
+
privacy:
|
505
|
+
intro: 'Kontakte unter <strong>%{relation}</strong> haben nur die Berechtigung
|
506
|
+
zu:'
|
507
|
+
rule:
|
508
|
+
add: Dazufügen
|
509
|
+
saved: ' Regeln zur Privatsphäre gespeichert'
|
510
|
+
title: Regeln zur Privatsphäre
|
511
|
+
profile:
|
512
|
+
actualcity: Derzeitiger Wohnort
|
513
|
+
address: Adresse
|
514
|
+
age: Alter
|
515
|
+
contact: Kontakt Information
|
516
|
+
country: Land
|
517
|
+
email: E-mail
|
518
|
+
empty: Diese Felder sind leer. Kannst du sie bitte ergänzen.
|
519
|
+
fax: Fax
|
520
|
+
group:
|
521
|
+
about: Über uns
|
522
|
+
birthday: Jahrestag
|
523
|
+
experience: Fachliche Expertise
|
524
|
+
info: Information über Gruppe
|
525
|
+
tags: Tags der Gruppe
|
526
|
+
is_on: ist auf
|
527
|
+
mobile: Mobiltelefonnummer
|
528
|
+
must_be_signed_id: Du musst angemeldet sein
|
529
|
+
one: Profil
|
530
|
+
organization: Organisation
|
531
|
+
phone: Telefonnummer
|
532
|
+
profile: Profile editieren
|
533
|
+
tags:
|
534
|
+
default: sozial, Stream,
|
535
|
+
other: Tags
|
536
|
+
update:
|
537
|
+
error: 'Überprüfe bitte das Format in deinem Profil:'
|
538
|
+
success: Dein Profil wurde aktualisiert
|
539
|
+
user:
|
540
|
+
about: Über mich
|
541
|
+
birthday: Geburtstag
|
542
|
+
experience: Erfahrung
|
543
|
+
info: Persönliche Information
|
544
|
+
tags: Tags des Benutzers
|
545
|
+
website: Webseite
|
546
|
+
public:
|
547
|
+
other: Alle
|
548
|
+
relation_custom:
|
549
|
+
confirm_delete: Diesen Bereich löschen?
|
550
|
+
delete: Löschen
|
551
|
+
edit: Name ändern
|
552
|
+
list:
|
553
|
+
title: Roles
|
554
|
+
new: + Neuer Bereich
|
555
|
+
title: Privatsphäre & Kontext
|
556
|
+
relation_owner:
|
557
|
+
name: Owner
|
558
|
+
relation_public:
|
559
|
+
name: Öffentlich
|
560
|
+
repository:
|
561
|
+
filter: filter
|
562
|
+
order:
|
563
|
+
by: Order by
|
564
|
+
last_modified: Last modified
|
565
|
+
most_popular: Most popular
|
566
|
+
title: Repository
|
567
|
+
representation:
|
568
|
+
notice: Deine Session hat sich geändert. Jetzt bist du als %{subject} aktiv. Benutze
|
569
|
+
das Menü rechts oben, um zu deiner Session zurückzukehren
|
570
|
+
switch: Session wechseln
|
571
|
+
required: (*) Diese Felder sind erforderlich
|
572
|
+
search:
|
573
|
+
all_results: Alles suchen %{subject} (%{count})
|
574
|
+
at_least:
|
575
|
+
one: Write at least %{count} character
|
576
|
+
other: Write at least %{count} characters
|
577
|
+
global:
|
578
|
+
first_result:
|
579
|
+
more: Die ersten %{count} Ergebnisse anzeigen.
|
580
|
+
one: Das erste Ergebnis anzeigen.
|
581
|
+
name: Allgemeine Suche
|
582
|
+
query: Mehr Ergebnisse für %{query} ansehen>
|
583
|
+
name: Search
|
584
|
+
no_subject_found: Es wurde kein %{subject} gefunden.
|
585
|
+
nothing: Leider nichts gefunden
|
586
|
+
searching: 'Suche: %{query}'
|
587
|
+
show_all: Alle
|
588
|
+
write: Formuliere deine Suche ...
|
589
|
+
wrong: Es scheint ein Problem mit der Suchmaschine aufgetreten zu sein
|
590
|
+
settings:
|
591
|
+
api_key:
|
592
|
+
briefing: Veralte deinen API Schlüssel
|
593
|
+
confirm: Bist du sicher?
|
594
|
+
empty: Leerer Token
|
595
|
+
explanation: das ist dein API Schüssel
|
596
|
+
name: API Schlüssel
|
597
|
+
regenerate: API Schlüssel neu generieren
|
598
|
+
cancel_account:
|
599
|
+
briefing: Dein Benutzerkonto löschen
|
600
|
+
email_change:
|
601
|
+
briefing: Deine e-mail ändern
|
602
|
+
error: Beim Speichern deiner Änderungen sind Fehler aufgetreten
|
603
|
+
for: Einstellungen für
|
604
|
+
lang_change:
|
605
|
+
briefing: Deine Sprache ändern
|
606
|
+
name: Sprache ändern
|
607
|
+
main: Einstellungen
|
608
|
+
manage:
|
609
|
+
briefing: Einstellungen für Kontakte
|
610
|
+
explanation: Zugriffsrechte der Kontakte ändern
|
611
|
+
name: Administrator Kontakt
|
612
|
+
notification_settings:
|
613
|
+
prefix: Send me an email
|
614
|
+
someone_adds_me_as_a_contact: when someone adds me as a contact
|
615
|
+
someone_comments_on_my_post: when someone comments on my post
|
616
|
+
someone_confirms_my_contact_request: when someone confirms my contact request
|
617
|
+
someone_likes_my_post: when someone likes my post
|
618
|
+
notifications:
|
619
|
+
briefing: Einstellungen zu Benachrichtigungen und e-mail Verständigungen
|
620
|
+
by_email:
|
621
|
+
always: Immer
|
622
|
+
name: Bei Benachrichtigung e-mail schicken
|
623
|
+
never: Nie
|
624
|
+
name: Benachrichtigungen
|
625
|
+
one: Einstellungen
|
626
|
+
password_change:
|
627
|
+
briefing: Passwort ändern
|
628
|
+
success: Deine Einstellungen wurden geändert
|
629
|
+
share: Teilen
|
630
|
+
sign_in: Einsteigen
|
631
|
+
sign_out: Aussteigen
|
632
|
+
sign_up: Anmelden
|
633
|
+
site:
|
634
|
+
current:
|
635
|
+
description: A framework for building distributed social network websites
|
636
|
+
keywords: social stream,social software,framework,ruby on rails
|
637
|
+
title: Social Stream
|
638
|
+
name: Social Stream
|
639
|
+
subject:
|
640
|
+
this_is_you: Das bist du!
|
641
|
+
sure: Bist du sicher?
|
642
|
+
time:
|
643
|
+
ago: vor %{time}
|
644
|
+
unknown: Unbekannt
|
645
|
+
user:
|
646
|
+
all: Alle Benutzer
|
647
|
+
all_n: Alle Benutzer (%{count})
|
648
|
+
by: Nach Benutzer
|
649
|
+
one: Benutzer
|
650
|
+
other: Benutzer
|
651
|
+
title:
|
652
|
+
one: Benutzer
|
653
|
+
other: Benutzer
|
654
|
+
welcome: Willkommen bei %{site}!
|