social_stream 2.1.1 → 2.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (188) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +5 -2
  3. data/LICENSE +1 -1
  4. data/base/Rakefile +3 -17
  5. data/base/app/assets/images/flags/de.png +0 -0
  6. data/base/app/assets/images/flags/fr.png +0 -0
  7. data/base/app/assets/images/flags/hu.png +0 -0
  8. data/base/app/assets/images/flags/nl.png +0 -0
  9. data/base/app/assets/javascripts/social_stream/actor.js +34 -0
  10. data/base/app/assets/javascripts/social_stream/contact.js +40 -5
  11. data/base/app/assets/javascripts/social_stream/flash.js +6 -1
  12. data/base/app/assets/javascripts/social_stream/group.js +6 -5
  13. data/base/app/assets/javascripts/social_stream/relation_customs.js +0 -1
  14. data/base/app/assets/stylesheets/social_stream/base/adjust/layout/_adjust.css.sass +3 -0
  15. data/base/app/assets/stylesheets/social_stream/base/buttons/_buttons.scss.sass +0 -2
  16. data/base/app/assets/stylesheets/social_stream/base/contacts/_contacts.css.sass +1 -11
  17. data/base/app/assets/stylesheets/social_stream/base/contacts/layouts/_contacts.css.sass +1 -29
  18. data/base/app/assets/stylesheets/social_stream/base/layouts/_header.css.sass +0 -1
  19. data/base/app/assets/stylesheets/social_stream/base/mixins/_buttons.css.sass +5 -0
  20. data/base/app/assets/stylesheets/social_stream/base/mixins/_layout.css.sass +36 -7
  21. data/base/app/controllers/actors_controller.rb +25 -0
  22. data/base/app/controllers/contacts_controller.rb +38 -8
  23. data/base/app/controllers/groups_controller.rb +2 -21
  24. data/base/app/controllers/profiles_controller.rb +4 -0
  25. data/base/app/controllers/settings_controller.rb +12 -2
  26. data/base/app/controllers/users_controller.rb +0 -8
  27. data/base/app/helpers/contacts_helper.rb +8 -0
  28. data/base/app/models/activity.rb +19 -6
  29. data/base/app/models/actor.rb +49 -11
  30. data/base/app/models/contact.rb +12 -5
  31. data/base/app/models/group.rb +13 -11
  32. data/base/app/models/permission.rb +30 -0
  33. data/base/app/models/relation.rb +17 -7
  34. data/base/app/models/relation/custom.rb +2 -40
  35. data/base/app/models/relation/follow.rb +8 -2
  36. data/base/app/models/relation/owner.rb +10 -0
  37. data/base/app/models/relation/single.rb +7 -4
  38. data/base/app/models/site.rb +1 -1
  39. data/base/app/models/tie.rb +8 -4
  40. data/base/app/views/contacts/_add_button.html.erb +9 -0
  41. data/base/app/views/contacts/_button.html.erb +3 -3
  42. data/base/app/views/contacts/_button_multiple.html.erb +4 -0
  43. data/base/app/views/contacts/_button_simple.html.erb +17 -0
  44. data/base/app/views/contacts/_new_modal.html.erb +22 -0
  45. data/base/app/views/contacts/destroy.js.erb +5 -4
  46. data/base/app/views/contacts/update.js.erb +5 -4
  47. data/base/app/views/devise/confirmations/new.html.erb +14 -9
  48. data/base/app/views/frontpage/_presentation.html.erb +2 -2
  49. data/base/app/views/groups/_form.html.erb +20 -20
  50. data/base/app/views/groups/show.html.erb +5 -5
  51. data/base/app/views/layouts/_header_dropdown_menu.html.erb +3 -5
  52. data/base/app/views/layouts/_header_signed_in.erb +3 -3
  53. data/base/app/views/layouts/_logo_in.html.erb +1 -1
  54. data/base/app/views/layouts/application.html.erb +2 -0
  55. data/base/app/views/permissions/_list.html.erb +1 -1
  56. data/base/app/views/profiles/_avatar.html.erb +1 -5
  57. data/base/app/views/profiles/_avatar_edit.html.erb +5 -0
  58. data/base/app/views/profiles/_comunication-info.html.erb +2 -36
  59. data/base/app/views/profiles/_comunication-info_edit.html.erb +27 -0
  60. data/base/app/views/profiles/_edit_icon.html.erb +0 -1
  61. data/base/app/views/profiles/_experience.html.erb +1 -6
  62. data/base/app/views/profiles/_experience_edit.html.erb +5 -0
  63. data/base/app/views/profiles/_personal.html.erb +1 -39
  64. data/base/app/views/profiles/_personal_edit.html.erb +31 -0
  65. data/base/app/views/profiles/_profile_edit.html.erb +7 -0
  66. data/base/app/views/profiles/_tags.html.erb +1 -4
  67. data/base/app/views/profiles/_tags_edit.html.erb +4 -0
  68. data/base/app/views/profiles/edit.html.erb +24 -0
  69. data/base/app/views/settings/_notifications.html.erb +12 -4
  70. data/base/app/views/users/show.html.erb +5 -5
  71. data/base/config/locales/de.yml +654 -0
  72. data/base/config/locales/en.yml +20 -9
  73. data/base/config/locales/es.yml +151 -140
  74. data/base/config/locales/fr.yml +656 -0
  75. data/base/config/locales/hu.yml +653 -0
  76. data/base/config/locales/nl.yml +656 -0
  77. data/base/config/locales/pt.yml +250 -239
  78. data/base/config/locales/rails.de.yml +203 -0
  79. data/base/config/locales/rails.fr.yml +222 -0
  80. data/base/config/locales/rails.hu.yml +199 -0
  81. data/base/config/locales/rails.nl.yml +199 -0
  82. data/base/config/locales/zh.yml +214 -202
  83. data/base/config/routes.rb +22 -30
  84. data/base/db/migrate/20130708152633_set_group_owners.rb +19 -0
  85. data/base/db/migrate/20130723133530_actor_notification_settings.rb +10 -0
  86. data/base/lib/generators/social_stream/base/templates/initializer.rb +13 -7
  87. data/base/lib/rails/social_stream.rb +2 -0
  88. data/base/lib/social_stream/base.rb +27 -7
  89. data/base/lib/social_stream/base/ability.rb +3 -5
  90. data/base/lib/social_stream/base/autoload.rb +1 -0
  91. data/base/lib/social_stream/base/version.rb +1 -1
  92. data/base/lib/social_stream/controllers/authorship.rb +18 -0
  93. data/base/lib/social_stream/controllers/helpers.rb +18 -4
  94. data/base/lib/social_stream/controllers/objects.rb +2 -8
  95. data/base/lib/social_stream/controllers/subjects.rb +9 -2
  96. data/base/lib/social_stream/models/supertype.rb +2 -0
  97. data/base/lib/social_stream/population/activity_object.rb +6 -8
  98. data/base/lib/social_stream/routing/mapper.rb +52 -0
  99. data/base/social_stream-base.gemspec +4 -7
  100. data/base/spec/controllers/groups_controller_spec.rb +19 -8
  101. data/base/spec/controllers/posts_controller_spec.rb +114 -147
  102. data/base/spec/models/post_authorization_spec.rb +190 -204
  103. data/base/spec/models/post_spec.rb +17 -63
  104. data/base/vendor/assets/javascripts/bootstrap-multiselect.js +434 -127
  105. data/documents/Rakefile +1 -6
  106. data/documents/config/locales/de.yml +93 -0
  107. data/documents/config/locales/es.yml +2 -2
  108. data/documents/config/locales/fr.yml +93 -0
  109. data/documents/config/locales/hu.yml +93 -0
  110. data/documents/config/locales/nl.yml +93 -0
  111. data/documents/config/locales/zh.yml +4 -4
  112. data/documents/config/routes.rb +7 -9
  113. data/documents/lib/social_stream/documents/version.rb +1 -1
  114. data/documents/social_stream-documents.gemspec +4 -4
  115. data/events/Rakefile +1 -6
  116. data/events/config/locales/es.yml +3 -3
  117. data/events/config/locales/zh.yml +3 -3
  118. data/events/lib/social_stream/events/models/actor.rb +2 -1
  119. data/events/lib/social_stream/events/version.rb +1 -1
  120. data/events/social_stream-events.gemspec +1 -1
  121. data/lib/generators/social_stream/install_generator.rb +1 -0
  122. data/lib/social_stream.rb +1 -0
  123. data/lib/social_stream/version.rb +1 -1
  124. data/lib/tasks/i18n.rake +22 -2
  125. data/linkser/Rakefile +1 -6
  126. data/linkser/config/locales/de.yml +17 -0
  127. data/linkser/config/locales/es.yml +2 -2
  128. data/linkser/config/locales/fr.yml +17 -0
  129. data/linkser/config/locales/hu.yml +17 -0
  130. data/linkser/config/locales/nl.yml +17 -0
  131. data/linkser/config/locales/zh.yml +2 -2
  132. data/linkser/lib/social_stream/linkser/version.rb +1 -1
  133. data/linkser/social_stream-linkser.gemspec +1 -1
  134. data/oauth2_server/Rakefile +1 -6
  135. data/oauth2_server/app/assets/images/step_1.png +0 -0
  136. data/oauth2_server/app/assets/images/step_2.png +0 -0
  137. data/oauth2_server/app/assets/images/step_3.png +0 -0
  138. data/oauth2_server/app/assets/javascripts/social_stream/site_client.js +27 -0
  139. data/oauth2_server/app/assets/stylesheets/social_stream/oauth2_server/applications/layout/_applications-oauth2server.css.sass +0 -5
  140. data/oauth2_server/app/assets/stylesheets/social_stream/oauth2_server/create/layout/_create-oauth2server.css.sass +3 -5
  141. data/oauth2_server/app/assets/stylesheets/social_stream/oauth2_server/show/layout/_show-oauth2server.css.sass +8 -6
  142. data/oauth2_server/app/controllers/site/clients_controller.rb +17 -41
  143. data/oauth2_server/app/decorators/social_stream/base/relation_decorator.rb +2 -0
  144. data/oauth2_server/app/decorators/social_stream/base/user_decorator.rb +1 -20
  145. data/oauth2_server/app/models/relation/manager.rb +1 -10
  146. data/oauth2_server/app/models/site/client.rb +4 -2
  147. data/oauth2_server/app/views/site/clients/_destroy.html.erb +11 -0
  148. data/oauth2_server/app/views/site/clients/_edit.html.erb +9 -2
  149. data/oauth2_server/app/views/site/clients/_edit_step_2.html.erb +6 -6
  150. data/oauth2_server/app/views/site/clients/_edit_step_3.html.erb +8 -6
  151. data/oauth2_server/app/views/site/clients/_form.html.erb +11 -11
  152. data/oauth2_server/app/views/site/clients/_list.html.erb +23 -11
  153. data/oauth2_server/app/views/site/clients/edit.html.erb +1 -1
  154. data/oauth2_server/app/views/site/clients/index.html.erb +9 -40
  155. data/oauth2_server/app/views/site/clients/show.html.erb +66 -68
  156. data/oauth2_server/config/locales/en.yml +19 -0
  157. data/oauth2_server/config/locales/es.yml +23 -4
  158. data/oauth2_server/config/locales/zh.yml +32 -13
  159. data/oauth2_server/config/routes.rb +3 -1
  160. data/oauth2_server/lib/social_stream/oauth2_server.rb +4 -1
  161. data/oauth2_server/lib/social_stream/oauth2_server/ability.rb +1 -1
  162. data/oauth2_server/lib/social_stream/oauth2_server/models/user.rb +18 -0
  163. data/oauth2_server/lib/social_stream/oauth2_server/version.rb +1 -1
  164. data/oauth2_server/social_stream-oauth2_server.gemspec +1 -1
  165. data/oauth2_server/spec/controllers/site_clients_controller_authorization_spec.rb +7 -0
  166. data/ostatus/Rakefile +1 -6
  167. data/ostatus/config/locales/zh.yml +8 -8
  168. data/ostatus/lib/social_stream-ostatus.rb +3 -0
  169. data/ostatus/lib/social_stream/ostatus/version.rb +1 -1
  170. data/ostatus/social_stream-ostatus.gemspec +1 -1
  171. data/places/config/locales/es.yml +51 -51
  172. data/presence/config/locales/es.yml +48 -48
  173. data/presence/config/locales/zh.yml +48 -48
  174. data/presence/lib/social_stream/presence/version.rb +1 -1
  175. data/presence/social_stream-presence.gemspec +1 -1
  176. data/social_stream.gemspec +8 -7
  177. metadata +60 -29
  178. data/base/app/assets/javascripts/social_stream/follow.js +0 -28
  179. data/base/app/controllers/followers_controller.rb +0 -34
  180. data/base/app/helpers/followers_helper.rb +0 -5
  181. data/base/app/views/contacts/_link_follow.html.erb +0 -16
  182. data/base/app/views/followers/destroy.js.erb +0 -1
  183. data/base/app/views/followers/index.html.erb +0 -30
  184. data/base/app/views/followers/update.js.erb +0 -3
  185. data/base/app/views/frontpage/_characteristics.html.erb +0 -23
  186. data/base/lib/social_stream/routing/constraints/custom.rb +0 -11
  187. data/base/lib/social_stream/routing/constraints/follow.rb +0 -11
  188. data/base/spec/controllers/followers_controller_spec.rb +0 -37
@@ -1,6 +1,5 @@
1
1
  <% if can?(:update, @profile) %>
2
2
  <div class="edit_icon">
3
3
  <%= link_to(raw("<i class='icon_tool16-edit'></i> "), '#')%>
4
-
5
4
  </div>
6
5
  <% end %>
@@ -16,12 +16,7 @@
16
16
 
17
17
  <% if can? :update, @profile %>
18
18
  <div class="update">
19
- <%= form_for(@profile, :url => [current_subject, :profile]) do |f| %>
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>
@@ -0,0 +1,5 @@
1
+ <%= form_for(@profile, :url => [current_subject, :profile]) do |f| %>
2
+ <%= f.text_area :experience, :maxlength => 246, :rows => 5 %>
3
+
4
+ <%= f.submit :class => "btn" %>
5
+ <% end %>
@@ -68,45 +68,7 @@
68
68
 
69
69
  <div class="update">
70
70
  <% if can? :update, @profile %>
71
- <%= form_for(@profile, :url => [current_subject, :profile]) do |f| %>
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 %>
@@ -0,0 +1,7 @@
1
+ <div id="profile-info_edit">
2
+ <%= render partial: "personal_edit" %>
3
+
4
+ <%= render :partial => "comunication-info_edit" %>
5
+
6
+ <%= render :partial => "avatar_edit" %>
7
+ </div>
@@ -14,10 +14,7 @@
14
14
  </div>
15
15
  <% if can?(:update, @profile) %>
16
16
  <div class="update">
17
- <%= form_for(@profile, :url => [ @profile.subject, :profile ]) do |f| %>
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,4 @@
1
+ <%= form_for(@profile, :url => [ @profile.subject, :profile ]) do |f| %>
2
+ <%= f.text_field :tag_list, "data-path" => tags_path(format: :json) %>
3
+ <%= f.submit %>
4
+ <% end %>
@@ -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
- <%= "#{ @user.name } | #{ t 'site.name' }" %>
2
+ <%= "#{ resource.name } | #{ t 'site.name' }" %>
3
3
  <% end %>
4
4
 
5
5
  <% content_for :description do %>
6
- <% if @user.profile.description? %>
7
- <%= @user.profile.description%>
6
+ <% if resource.profile.description? %>
7
+ <%= resource.profile.description%>
8
8
  <% else %>
9
- <%= "#{ @user.name } #{ t('profile.is_on') } #{ t('site.name') }" %>
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
- <%= @user.profile.subject.tag_list%>
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}!