thredded 0.13.0 → 0.14.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/README.md +29 -25
- data/app/assets/images/thredded/lock.svg +1 -0
- data/app/assets/javascripts/thredded/components/mention_autocompletion.es6 +2 -1
- data/app/assets/javascripts/thredded/components/post_form.es6 +1 -1
- data/app/assets/javascripts/thredded/components/time_stamps.es6 +1 -1
- data/app/assets/javascripts/thredded/components/topic_form.es6 +1 -1
- data/app/assets/javascripts/thredded/components/users_select.es6 +1 -1
- data/app/assets/javascripts/thredded/dependencies/autosize.js +1 -0
- data/app/assets/javascripts/thredded/dependencies.js +1 -1
- data/app/assets/stylesheets/thredded/base/_variables.scss +4 -0
- data/app/assets/stylesheets/thredded/components/_form-list.scss +2 -1
- data/app/assets/stylesheets/thredded/components/_messageboard.scss +10 -1
- data/app/assets/stylesheets/thredded/components/_onebox.scss +0 -9
- data/app/assets/stylesheets/thredded/components/_post.scss +7 -1
- data/app/assets/stylesheets/thredded/components/_topics.scss +12 -0
- data/app/commands/thredded/create_messageboard.rb +3 -3
- data/app/commands/thredded/mark_all_read.rb +1 -1
- data/app/commands/thredded/notify_following_users.rb +40 -22
- data/app/commands/thredded/notify_private_topic_users.rb +1 -1
- data/app/controllers/concerns/thredded/new_post_params.rb +1 -1
- data/app/controllers/concerns/thredded/new_private_post_params.rb +1 -1
- data/app/controllers/thredded/application_controller.rb +1 -1
- data/app/controllers/thredded/autocomplete_users_controller.rb +1 -1
- data/app/controllers/thredded/messageboard_groups_controller.rb +2 -2
- data/app/controllers/thredded/messageboards_controller.rb +7 -7
- data/app/controllers/thredded/moderation_controller.rb +1 -1
- data/app/controllers/thredded/post_permalinks_controller.rb +1 -1
- data/app/controllers/thredded/post_previews_controller.rb +3 -3
- data/app/controllers/thredded/posts_controller.rb +9 -5
- data/app/controllers/thredded/preferences_controller.rb +2 -2
- data/app/controllers/thredded/private_post_permalinks_controller.rb +1 -1
- data/app/controllers/thredded/private_post_previews_controller.rb +3 -3
- data/app/controllers/thredded/private_posts_controller.rb +5 -5
- data/app/controllers/thredded/private_topic_previews_controller.rb +1 -1
- data/app/controllers/thredded/read_states_controller.rb +1 -1
- data/app/controllers/thredded/theme_previews_controller.rb +23 -23
- data/app/controllers/thredded/topic_previews_controller.rb +1 -1
- data/app/forms/thredded/private_topic_form.rb +1 -1
- data/app/forms/thredded/topic_form.rb +2 -2
- data/app/forms/thredded/user_preferences_form.rb +2 -2
- data/app/helpers/thredded/render_helper.rb +1 -1
- data/app/jobs/thredded/auto_follow_and_notify_job.rb +3 -3
- data/app/mailer_previews/thredded/base_mailer_preview.rb +5 -5
- data/app/mailer_previews/thredded/private_topic_mailer_preview.rb +1 -5
- data/app/mailers/thredded/post_mailer.rb +11 -6
- data/app/mailers/thredded/private_topic_mailer.rb +12 -8
- data/app/models/concerns/thredded/content_moderation_state.rb +1 -1
- data/app/models/thredded/topic.rb +1 -1
- data/app/models/thredded/user_permissions/moderate/if_moderator_column_true.rb +0 -11
- data/app/models/thredded/user_permissions/moderate/none.rb +0 -11
- data/app/models/thredded/user_permissions/write/all.rb +0 -11
- data/app/models/thredded/user_permissions/write/none.rb +0 -11
- data/app/models/thredded/user_topic_follow.rb +4 -2
- data/app/notifiers/thredded/email_notifier.rb +6 -2
- data/app/policies/thredded/messageboard_policy.rb +3 -1
- data/app/policies/thredded/post_policy.rb +5 -1
- data/app/view_models/thredded/private_topic_view.rb +1 -1
- data/app/view_models/thredded/topic_email_view.rb +0 -4
- data/app/views/thredded/messageboards/_form.html.erb +6 -0
- data/app/views/thredded/messageboards/_messageboard.html.erb +1 -5
- data/app/views/thredded/messageboards/_messageboard_meta.html.erb +13 -0
- data/app/views/thredded/moderation/users.html.erb +2 -2
- data/app/views/thredded/post_mailer/post_notification.html.erb +9 -6
- data/app/views/thredded/post_mailer/post_notification.text.erb +9 -5
- data/app/views/thredded/preferences/_form.html.erb +9 -9
- data/app/views/thredded/private_topic_mailer/message_notification.html.erb +10 -4
- data/app/views/thredded/private_topic_mailer/message_notification.text.erb +11 -8
- data/app/views/thredded/private_topics/new.html.erb +1 -1
- data/app/views/thredded/shared/nav/_standalone.html.erb +1 -1
- data/app/views/thredded/theme_previews/show.html.erb +6 -4
- data/app/views/thredded/topics/_topic.html.erb +2 -1
- data/app/views/thredded/topics/index.html.erb +6 -1
- data/app/views/thredded/topics/new.html.erb +1 -1
- data/app/views/thredded/topics/show.html.erb +4 -0
- data/config/locales/de.yml +249 -0
- data/config/locales/en.yml +43 -0
- data/config/locales/es.yml +45 -0
- data/config/locales/fr.yml +247 -0
- data/config/locales/pl.yml +43 -0
- data/config/locales/pt-BR.yml +45 -0
- data/config/locales/ru.yml +43 -1
- data/config/locales/zh-CN.yml +238 -0
- data/db/migrate/20160329231848_create_thredded.rb +3 -2
- data/db/upgrade_migrations/20170811090735_upgrade_thredded_v0_13_to_v_014.rb +21 -0
- data/lib/generators/thredded/install/templates/initializer.rb +3 -3
- data/lib/thredded/database_seeder.rb +12 -12
- data/lib/thredded/engine.rb +1 -1
- data/lib/thredded/html_pipeline/onebox_filter.rb +2 -1
- data/lib/thredded/version.rb +1 -1
- data/lib/thredded.rb +2 -1
- data/vendor/assets/javascripts/autosize.min.js +6 -0
- data/vendor/assets/javascripts/textcomplete.min.js +2 -1
- metadata +19 -12
- data/vendor/assets/javascripts/autosize.js +0 -290
- /data/{app/notifiers → lib}/thredded/base_notifier.rb +0 -0
|
@@ -1,10 +1,14 @@
|
|
|
1
|
+
<%= t 'thredded.emails.post_notification.text.post_lead',
|
|
2
|
+
user: @post.user.thredded_display_name,
|
|
3
|
+
topic_title: @post.postable.title %>
|
|
4
|
+
|
|
1
5
|
<%= @post.content %>
|
|
2
6
|
|
|
3
7
|
---
|
|
4
8
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
9
|
+
<%= t 'thredded.emails.post_notification.text.email_sent_reason',
|
|
10
|
+
topic_title: @post.postable.title,
|
|
11
|
+
post_url: post_permalink_url(@post.id) %>
|
|
8
12
|
|
|
9
|
-
|
|
10
|
-
|
|
13
|
+
<%= t 'thredded.emails.post_notification.text.unsubscribe_instructions',
|
|
14
|
+
unsubscribe_url: edit_messageboard_preferences_url(@post.messageboard) %>
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
class: 'thredded--form thredded--notification-preferences-form',
|
|
4
4
|
'data-thredded-user-preferences-form' => true
|
|
5
5
|
}) do |f| %>
|
|
6
|
-
<ul class="thredded--form-list">
|
|
7
|
-
<li>
|
|
6
|
+
<ul class="thredded--form-list thredded--user-preferences-global">
|
|
7
|
+
<li class="thredded--user-preferences--auto-follow-topics">
|
|
8
8
|
<%= f.label :auto_follow_topics do %>
|
|
9
9
|
<%= f.check_box :auto_follow_topics,
|
|
10
10
|
'data-thredded-update-checkbox-on-change' =>
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
</p>
|
|
16
16
|
<% end %>
|
|
17
17
|
</li>
|
|
18
|
-
<li>
|
|
18
|
+
<li class="thredded--user-preferences--follow-topics-on-mention">
|
|
19
19
|
<%= f.label :follow_topics_on_mention do %>
|
|
20
20
|
<%= f.check_box :follow_topics_on_mention, 'data-thredded-bound-messageboard-pref' => 'user_preferences_form[messageboard_follow_topics_on_mention]' %>
|
|
21
21
|
<%= t 'thredded.preferences.form.follow_topics_on_mention.label' %>
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
<% end %>
|
|
26
26
|
</li>
|
|
27
27
|
<% if Thredded.notifiers.present? %>
|
|
28
|
-
<li>
|
|
28
|
+
<li class="thredded--user-preferences--notifications-for-followed-topics">
|
|
29
29
|
<label><%= t 'thredded.preferences.form.notifications_for_followed_topics.label' %></label>
|
|
30
30
|
<%= f.fields_for :notifications_for_followed_topics, preferences.notifications_for_followed_topics do |fn| %>
|
|
31
31
|
<%= fn.label :enabled do %>
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
<%- end %>
|
|
38
38
|
<%- end %>
|
|
39
39
|
</li>
|
|
40
|
-
<li>
|
|
40
|
+
<li class="thredded--user-preferences--notifications-for-private-topics">
|
|
41
41
|
<label><%= t 'thredded.preferences.form.notifications_for_private_topics.label' %></label>
|
|
42
42
|
<%= f.fields_for :notifications_for_private_topics, preferences.notifications_for_private_topics do |fn| %>
|
|
43
43
|
<%= fn.label :enabled do %>
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
<h2 class="thredded--preferences--title">
|
|
54
54
|
<%= t 'thredded.preferences.messageboard_preferences_title_html', messageboard: messageboard.name %>
|
|
55
55
|
</h2>
|
|
56
|
-
<ul class="thredded--form-list" data-thredded-user-preferences-form-messageboard-fields>
|
|
57
|
-
<li>
|
|
56
|
+
<ul class="thredded--form-list thredded--user-preferences-messageboard" data-thredded-user-preferences-form-messageboard-fields>
|
|
57
|
+
<li class="thredded--user-preferences--auto-follow-topics">
|
|
58
58
|
<%= f.label :messageboard_auto_follow_topics do %>
|
|
59
59
|
<%= f.check_box :messageboard_auto_follow_topics %>
|
|
60
60
|
<%= t 'thredded.preferences.form.messageboard_auto_follow_topics.label' %>
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
</p>
|
|
64
64
|
<% end %>
|
|
65
65
|
</li>
|
|
66
|
-
<li>
|
|
66
|
+
<li class="thredded--user-preferences--follow-topics-on-mention">
|
|
67
67
|
<%= f.label :messageboard_follow_topics_on_mention do %>
|
|
68
68
|
<%= f.check_box :messageboard_follow_topics_on_mention %>
|
|
69
69
|
<%= t 'thredded.preferences.form.messageboard_follow_topics_on_mention.label' %>
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
<% end %>
|
|
74
74
|
</li>
|
|
75
75
|
<% if Thredded.notifiers.present? %>
|
|
76
|
-
<li>
|
|
76
|
+
<li class="thredded--user-preferences--notifications-for-followed-topics">
|
|
77
77
|
<label><%= t 'thredded.preferences.form.messageboard_notifications_for_followed_topics.label' %></label>
|
|
78
78
|
<%= f.fields_for :messageboard_notifications_for_followed_topics,
|
|
79
79
|
preferences.messageboard_notifications_for_followed_topics do |fn| %>
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
<div class="thredded--email">
|
|
2
2
|
<figure class="thredded--email-post">
|
|
3
3
|
<figcaption class="thredded--email-post--author">
|
|
4
|
-
<%=
|
|
4
|
+
<%= t 'thredded.emails.message_notification.html.post_lead_html',
|
|
5
|
+
user: @post.user.thredded_display_name,
|
|
6
|
+
post_url: private_post_permalink_url(@post.id),
|
|
7
|
+
topic_title: @post.postable.title %>
|
|
5
8
|
</figcaption>
|
|
6
9
|
<% cache [@post, 'content-onebox-placeholders'] do %>
|
|
7
10
|
<%= render partial: 'thredded/private_posts/content',
|
|
@@ -10,11 +13,14 @@
|
|
|
10
13
|
</figure>
|
|
11
14
|
<hr/>
|
|
12
15
|
<p>
|
|
13
|
-
|
|
14
|
-
|
|
16
|
+
<%= t 'thredded.emails.message_notification.html.email_sent_reason_html',
|
|
17
|
+
user: @post.postable.user.thredded_display_name,
|
|
18
|
+
post_url: private_post_permalink_url(@post.id),
|
|
19
|
+
topic_title: @post.postable.title %>
|
|
15
20
|
</p>
|
|
16
21
|
|
|
17
22
|
<p>
|
|
18
|
-
|
|
23
|
+
<%= t 'thredded.emails.message_notification.html.unsubscribe_instructions_html',
|
|
24
|
+
preferences_url: edit_preferences_url %>
|
|
19
25
|
</p>
|
|
20
26
|
</div>
|
|
@@ -1,12 +1,15 @@
|
|
|
1
|
-
<%=
|
|
1
|
+
<%= t 'thredded.emails.message_notification.text.post_lead',
|
|
2
|
+
user: @post.user.thredded_display_name,
|
|
3
|
+
topic_title: @post.postable.title %>
|
|
4
|
+
|
|
2
5
|
<%= @post.content %>
|
|
3
|
-
---
|
|
4
6
|
|
|
5
|
-
|
|
6
|
-
included you in the private topic "<%= @topic.title %>".
|
|
7
|
+
---
|
|
7
8
|
|
|
8
|
-
|
|
9
|
-
|
|
9
|
+
<%= t 'thredded.emails.message_notification.text.email_sent_reason',
|
|
10
|
+
user: @post.postable.user.thredded_display_name,
|
|
11
|
+
topic_title: @post.postable.title,
|
|
12
|
+
post_url: private_post_permalink_url(@post.id) %>
|
|
10
13
|
|
|
11
|
-
|
|
12
|
-
|
|
14
|
+
<%= t 'thredded.emails.message_notification.text.unsubscribe_instructions',
|
|
15
|
+
unsubscribe_url: edit_preferences_url %>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<% content_for :thredded_page_title, '
|
|
1
|
+
<% content_for :thredded_page_title, t('thredded.private_topics.create') %>
|
|
2
2
|
<% content_for :thredded_page_id, 'thredded--new-private-topic' %>
|
|
3
3
|
<% content_for :thredded_breadcrumbs, render('thredded/private_topics/breadcrumbs') %>
|
|
4
4
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<li class="thredded--user-navigation--standalone--session thredded--user-navigation--item">
|
|
2
|
-
<% resource_name = Thredded.user_class_name.underscore %>
|
|
2
|
+
<% resource_name = Thredded.user_class_name.demodulize.underscore %>
|
|
3
3
|
<% if thredded_signed_in? %>
|
|
4
4
|
<%= link_to main_app.send(:"destroy_#{resource_name}_session_path"), method: :delete do %>
|
|
5
5
|
Sign Out
|
|
@@ -11,7 +11,9 @@
|
|
|
11
11
|
<%= content_tag :section, class: 'thredded--thredded--main-section thredded--messageboards' do %>
|
|
12
12
|
<%= render @messageboards %>
|
|
13
13
|
<div class="thredded--messageboard--create">
|
|
14
|
-
<a class="thredded--button" href="<%= new_messageboard_path %>">
|
|
14
|
+
<a class="thredded--button" href="<%= new_messageboard_path %>">
|
|
15
|
+
<%= t 'thredded.messageboard.create' %>
|
|
16
|
+
</a>
|
|
15
17
|
</div>
|
|
16
18
|
<% end %>
|
|
17
19
|
|
|
@@ -21,7 +23,7 @@
|
|
|
21
23
|
<%= render 'thredded/topics/form',
|
|
22
24
|
topic: @new_topic,
|
|
23
25
|
css_class: 'thredded--is-compact',
|
|
24
|
-
placeholder: '
|
|
26
|
+
placeholder: t('thredded.topics.form.title_placeholder_start') %>
|
|
25
27
|
<%= render @topics %>
|
|
26
28
|
<% end %>
|
|
27
29
|
<footer>
|
|
@@ -43,11 +45,11 @@
|
|
|
43
45
|
<%= render 'section_title', label: 'topics#new', href: new_messageboard_topic_path(@messageboard) %>
|
|
44
46
|
<%= render 'thredded/topics/form',
|
|
45
47
|
topic: @new_topic,
|
|
46
|
-
placeholder: '
|
|
48
|
+
placeholder: t('thredded.topics.form.title_placeholder_start') %>
|
|
47
49
|
|
|
48
50
|
<%= render 'section_title', label: 'posts#edit', href: edit_messageboard_topic_post_path(@messageboard, @post.postable, @post) %>
|
|
49
51
|
<%= content_tag :section, class: 'thredded--thredded--main-section posts-form' do %>
|
|
50
|
-
<h3 class="thredded--post-form--title"
|
|
52
|
+
<h3 class="thredded--post-form--title"><%= t 'thredded.posts.edit' %></h3>
|
|
51
53
|
|
|
52
54
|
<%= render 'thredded/posts/form',
|
|
53
55
|
post: @post_form,
|
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
<% end %>
|
|
42
42
|
<% end %>
|
|
43
43
|
|
|
44
|
-
<% if
|
|
44
|
+
<% if local_assigns[:sticky_topics_divider] &&
|
|
45
|
+
!topic_iteration.last? && topic.sticky? && !topics[topic_counter + 1].sticky? %>
|
|
45
46
|
<%= render 'thredded/topics/sticky_topics_divider' %>
|
|
46
47
|
<% end %>
|
|
@@ -13,7 +13,12 @@
|
|
|
13
13
|
topic: @new_topic,
|
|
14
14
|
css_class: 'thredded--is-compact',
|
|
15
15
|
placeholder: t('thredded.topics.form.title_placeholder_start') if @new_topic %>
|
|
16
|
-
<%= render partial: 'thredded/topics/topic',
|
|
16
|
+
<%= render partial: 'thredded/topics/topic',
|
|
17
|
+
collection: @topics,
|
|
18
|
+
locals: {
|
|
19
|
+
sticky_topics_divider: true,
|
|
20
|
+
topics: @topics
|
|
21
|
+
} %>
|
|
17
22
|
<% end %>
|
|
18
23
|
|
|
19
24
|
<footer class="thredded--pagination-bottom">
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<% content_for :thredded_page_title, '
|
|
1
|
+
<% content_for :thredded_page_title, t('thredded.topics.create') %>
|
|
2
2
|
<% content_for :thredded_page_id, 'thredded--new-topic' %>
|
|
3
3
|
<% content_for :thredded_breadcrumbs, render('thredded/shared/breadcrumbs') %>
|
|
4
4
|
|
|
@@ -20,6 +20,10 @@
|
|
|
20
20
|
<footer class="thredded--pagination-bottom"><%= paginate @posts %></footer>
|
|
21
21
|
<% end %>
|
|
22
22
|
|
|
23
|
+
<% if topic.locked? %>
|
|
24
|
+
<p class="thredded--topic--locked-notice"><%= t 'thredded.topics.locked.message'%></p>
|
|
25
|
+
<% end %>
|
|
26
|
+
|
|
23
27
|
<% if policy(@new_post.post).create? %>
|
|
24
28
|
<div class="thredded--post-form--wrapper">
|
|
25
29
|
<h3 class="thredded--post-form--title"><%= t('thredded.posts.form.title_label') %></h3>
|
|
@@ -0,0 +1,249 @@
|
|
|
1
|
+
---
|
|
2
|
+
de:
|
|
3
|
+
thredded:
|
|
4
|
+
content_moderation_states:
|
|
5
|
+
content_blocked_notice: Blockiert
|
|
6
|
+
content_blocked_notice_with_record_html: Blockiert von %{moderator} %{time_ago}
|
|
7
|
+
email_notifier:
|
|
8
|
+
by_email: Per E-mail
|
|
9
|
+
emails:
|
|
10
|
+
message_notification:
|
|
11
|
+
html:
|
|
12
|
+
email_sent_reason_html: >-
|
|
13
|
+
Sie erhalten diese E-Mail, da %{user} Sie zu einer privaten Diskussion hinzugefügt hat, “<a href="%{post_url}">%{topic_title}</a>”.
|
|
14
|
+
post_lead_html: 'Eine neue Nachricht von %{user} in <a href="%{post_url}">“%{topic_title}”</a>:'
|
|
15
|
+
unsubscribe_instructions_html: :thredded.emails.post_notification.html.unsubscribe_instructions_html
|
|
16
|
+
subject: Neue Nachricht von %{user} in “%{topic_title}”
|
|
17
|
+
text:
|
|
18
|
+
email_sent_reason: |-
|
|
19
|
+
Sie erhalten diese E-Mail, da %{user} Sie zu einer privaten Diskussion
|
|
20
|
+
“%{topic_title}” hinzugefügt hat.
|
|
21
|
+
|
|
22
|
+
Klicken sie hier um die Diskussion zu sehen:
|
|
23
|
+
%{post_url}
|
|
24
|
+
post_lead: Neue Nachricht von %{user} in “%{topic_title}”
|
|
25
|
+
unsubscribe_instructions: :thredded.emails.post_notification.text.unsubscribe_instructions
|
|
26
|
+
post_notification:
|
|
27
|
+
html:
|
|
28
|
+
email_sent_reason_html: 'Sie erhalten diese E-Mail, da Sie der folgenden Diskussion folgen: “<a href="%{post_url}">%{topic_title}</a>”.'
|
|
29
|
+
post_lead_html: '%{user} <a href="%{post_url}">schrieb in “%{topic_title}”</a>:'
|
|
30
|
+
unsubscribe_instructions_html: >-
|
|
31
|
+
Um keine weiteren E-Mails zu erhalten, ändern Sie hier ihre <a href="%{preferences_url}">Benachrichtigungseinstellungen</a>.
|
|
32
|
+
subject: Ein neuer Beitrag in “%{topic_title}”
|
|
33
|
+
text:
|
|
34
|
+
email_sent_reason: |-
|
|
35
|
+
Sie erhalten diese E-Mail, da Sie der folgenden Diskussion
|
|
36
|
+
“%{topic_title}” folgen.
|
|
37
|
+
|
|
38
|
+
Klicken sie hier um die Diskussion zu sehen:
|
|
39
|
+
%{post_url}
|
|
40
|
+
post_lead: "%{user} schrieb in “%{topic_title}”:"
|
|
41
|
+
unsubscribe_instructions: |-
|
|
42
|
+
Um keine weiteren E-Mails zu erhalten, ändern Sie hier ihre Benachrichtigungseinstellungen:
|
|
43
|
+
%{unsubscribe_url}
|
|
44
|
+
errors:
|
|
45
|
+
login_required: Bitte zuerst anmelden
|
|
46
|
+
not_authorized: Du hast keinen Zugriff auf diese Seite
|
|
47
|
+
private_topic_create_denied: Du bist nicht autorisiert, private Unterhaltungen zu erstellen
|
|
48
|
+
private_topic_not_found: Diese private Unterhaltung existiert nicht
|
|
49
|
+
form:
|
|
50
|
+
create_btn_submitting: Erstellen...
|
|
51
|
+
preview: Vorschau
|
|
52
|
+
update: Änderungen übernehmen
|
|
53
|
+
update_btn_submitting: Änderungen übernehmen...
|
|
54
|
+
messageboard:
|
|
55
|
+
create: Erstelle ein neues Forum
|
|
56
|
+
form:
|
|
57
|
+
create_btn_submitting: :thredded.form.create_btn_submitting
|
|
58
|
+
description_label: Beschreibung
|
|
59
|
+
locked_label: Geschlossen
|
|
60
|
+
locked_notice: Dieses Forum ist geschlossen. Nur Moderatoren können hier neue Beiträge erstellen.
|
|
61
|
+
messageboard_group_id_label: Gruppe
|
|
62
|
+
no_group: Keine Gruppe
|
|
63
|
+
title_label: Name
|
|
64
|
+
update_btn_submitting: :thredded.form.update_btn_submitting
|
|
65
|
+
index:
|
|
66
|
+
page_title: Forum
|
|
67
|
+
last_updated_by_html: Letzter Beitrag %{time_ago} <cite>von %{user}</cite>
|
|
68
|
+
topics_and_posts_counts: "%{topics_count} Diskussionen / %{posts_count} Beiträge"
|
|
69
|
+
update: :thredded.form.update
|
|
70
|
+
updated_notice: Das Forum wurde aktualisiert
|
|
71
|
+
messageboard_group:
|
|
72
|
+
create: Erstelle eine neue Gruppe
|
|
73
|
+
form:
|
|
74
|
+
create_btn_submitting: :thredded.form.create_btn_submitting
|
|
75
|
+
saved: Die Gruppe %{name} wurde erstellt
|
|
76
|
+
moderation:
|
|
77
|
+
approve_btn: Erlauben
|
|
78
|
+
block_btn: Blockieren
|
|
79
|
+
moderation_state:
|
|
80
|
+
name: Moderationsstatus
|
|
81
|
+
pending:
|
|
82
|
+
empty:
|
|
83
|
+
content: Alle Beiträge wurden moderiert
|
|
84
|
+
title: Gute Arbeit!
|
|
85
|
+
post_approved_html: Beitrag wurde von %{moderator} %{time_ago} erlaubt
|
|
86
|
+
post_blocked_html: Beitrag wurde von %{moderator} %{time_ago} blockiert
|
|
87
|
+
post_deleted_notice: Dieser Beitrag wurde gelöscht
|
|
88
|
+
posts_content_changed_since_moderation_html: >-
|
|
89
|
+
Der Beitrag <a href="%{post_url}">post's</a> wurde in seinem Inhalt geändert. Unten wird der ursprüngliche
|
|
90
|
+
Beitrag angezeigt.
|
|
91
|
+
search_users:
|
|
92
|
+
form_label: Benutzer suchen
|
|
93
|
+
form_placeholder: :thredded.moderation.search_users.form_label
|
|
94
|
+
no_results_message: Keine Nutzer mit dem Inhalt %{query} gefunden
|
|
95
|
+
results_message: Nutzer mit dem Inhalt %{query} gefunden
|
|
96
|
+
user:
|
|
97
|
+
name: Benutzer
|
|
98
|
+
nav:
|
|
99
|
+
all_messageboards: Forenübersicht
|
|
100
|
+
edit_messageboard: Forum bearbeiten
|
|
101
|
+
edit_post: Beitrag bearbeiten
|
|
102
|
+
edit_private_topic: :thredded.nav.edit_topic
|
|
103
|
+
edit_topic: Bearbeiten
|
|
104
|
+
mark_all_read: Alles als gelesen markieren
|
|
105
|
+
moderation: Verwaltung
|
|
106
|
+
moderation_activity: Aktivität
|
|
107
|
+
moderation_history: Verlauf
|
|
108
|
+
moderation_pending: Ausstehend
|
|
109
|
+
moderation_users: Nutzer
|
|
110
|
+
private_topics: Private Unterhaltungen
|
|
111
|
+
settings: Benachrichtigungseinstellungen
|
|
112
|
+
null_user_name: Gelöschte Nutzer
|
|
113
|
+
posts:
|
|
114
|
+
delete: Beitrag gelöscht
|
|
115
|
+
delete_confirm: Bist du sicher, dass du diesen Beitrag löschen willst?
|
|
116
|
+
deleted_notice: Dein Beitrag wurde gelöscht
|
|
117
|
+
edit: :thredded.nav.edit_post
|
|
118
|
+
form:
|
|
119
|
+
content_label: Inhalt
|
|
120
|
+
create_btn: Beitrag erstellen
|
|
121
|
+
create_btn_submitting: Beitragen...
|
|
122
|
+
title_label: Erstelle einen neuen Beitrag
|
|
123
|
+
update_btn: Beitrag ändern
|
|
124
|
+
update_btn_submitting: :thredded.form.update_btn_submitting
|
|
125
|
+
pending_moderation_notice: Dein Beitrag wird veröffentlicht, sobald ein Moderator ihn angeschaut hat.
|
|
126
|
+
quote_btn: Zitat
|
|
127
|
+
preferences:
|
|
128
|
+
edit:
|
|
129
|
+
page_title: :thredded.nav.settings
|
|
130
|
+
form:
|
|
131
|
+
auto_follow_topics:
|
|
132
|
+
hint: Automatisch allen neuen Diskussionen folgen. Das Ändern dieser Einstellung wird alle Foren betreffen.
|
|
133
|
+
label: Allen Diskussionen folgen
|
|
134
|
+
follow_topics_on_mention:
|
|
135
|
+
hint: 'Wenn dich jemand mit deinem Nutzernamen erwähnt (eg: @sam) wirst du dem Beitrag folgen.'
|
|
136
|
+
label: Allen Diskussionen folgen, in denen du erwähnt wurdest
|
|
137
|
+
messageboard_auto_follow_topics:
|
|
138
|
+
hint: >-
|
|
139
|
+
Folge automatisch allen neuen Diskussionen in diesem Forum. Dies überschreibt die jeweiligen Einstellungen
|
|
140
|
+
weiter oben.
|
|
141
|
+
label: Folge allen neuen Diskussionen
|
|
142
|
+
messageboard_follow_topics_on_mention:
|
|
143
|
+
hint: 'Wenn jemand deinen Nutzernamen (eg: @sam) in diesem Forum erwähnt, wirst du der Diskussion folgen.'
|
|
144
|
+
label: :thredded.preferences.form.follow_topics_on_mention.label
|
|
145
|
+
messageboard_notifications_for_followed_topics:
|
|
146
|
+
label: :thredded.preferences.form.notifications_for_followed_topics.label
|
|
147
|
+
notifications_for_followed_topics:
|
|
148
|
+
label: Benachrichtigung für Diskussionen, denen du folgst
|
|
149
|
+
notifications_for_private_topics:
|
|
150
|
+
label: Benachrichtigung für private Unterhaltungen
|
|
151
|
+
submit_btn: Einstellungen bearbeiten
|
|
152
|
+
update_btn_submitting: :thredded.form.update_btn_submitting
|
|
153
|
+
global_preferences_title: Allgemeine Einstellungen
|
|
154
|
+
messageboard_preferences_nav_title: Forum bearbeiten
|
|
155
|
+
messageboard_preferences_title_html: Einstellungen für <em>%{messageboard}</em>
|
|
156
|
+
updated_notice: Deine Einstellungen sind jetzt gültig
|
|
157
|
+
private_posts:
|
|
158
|
+
form:
|
|
159
|
+
content_label: Nachricht
|
|
160
|
+
create_btn: Nchricht senden
|
|
161
|
+
create_btn_submitting: Senden...
|
|
162
|
+
update_btn_submitting: :thredded.form.update_btn_submitting
|
|
163
|
+
private_topics:
|
|
164
|
+
create: :thredded.private_topics.form.create_btn
|
|
165
|
+
edit: Bearbeiten
|
|
166
|
+
errors:
|
|
167
|
+
user_ids_length: Bitte nenne mindestens einen anderen Nutzer
|
|
168
|
+
form:
|
|
169
|
+
content_label: :thredded.private_posts.form.content_label
|
|
170
|
+
create_btn: :thredded.private_posts.form.create_btn
|
|
171
|
+
create_btn_submitting: :thredded.private_posts.form.create_btn_submitting
|
|
172
|
+
title_label: :thredded.topics.form.title_label
|
|
173
|
+
title_placeholder_new: Nenne das Thema der Unterhaltung
|
|
174
|
+
title_placeholder_start: Starte eine neue Unterhaltung
|
|
175
|
+
update_btn: Aktualisieren
|
|
176
|
+
update_btn_submitting: :thredded.private_posts.form.update_btn_submitting
|
|
177
|
+
users_label: Teilnehmer
|
|
178
|
+
users_placeholder: Lade Nutzer ein, an dieser Unterhaltung teilzunehmen
|
|
179
|
+
no_private_topics:
|
|
180
|
+
create_btn: Starte deine erste private Unterhaltung
|
|
181
|
+
title: Du hast keine privaten Nachrichten
|
|
182
|
+
updated_notice: Überschrift bearbeitet
|
|
183
|
+
recent_activity: Letzte Aktivität
|
|
184
|
+
search:
|
|
185
|
+
form:
|
|
186
|
+
btn_submit: :thredded.search.form.label
|
|
187
|
+
label: Suche
|
|
188
|
+
placeholder: Foren durchsuchen
|
|
189
|
+
time_ago: 'vor %{time} '
|
|
190
|
+
topics:
|
|
191
|
+
create: :thredded.topics.form.create_btn
|
|
192
|
+
delete_confirm: >-
|
|
193
|
+
Bist du sicher, dass du diese Diskussion endgültig löschen möchtest? Dies kann nicht rückgängig gemacht
|
|
194
|
+
werden.
|
|
195
|
+
delete_topic: Diskussion löschen
|
|
196
|
+
deleted_notice: Diskussion gelöscht
|
|
197
|
+
edit: Diskussion bearbeiten
|
|
198
|
+
follow: Folge dieser Diskussion
|
|
199
|
+
followed_by: 'gefolgt von:'
|
|
200
|
+
followed_by_noone: Die Diskussion wird von Niemandem verfolgt
|
|
201
|
+
followed_notice: Du folgst der Diskussion
|
|
202
|
+
following:
|
|
203
|
+
auto: Du folgst dieser Diskussion, da automatisches Folgen aktiviert ist
|
|
204
|
+
manual: Du folgst dieser Diskussion
|
|
205
|
+
mentioned: Du folgst dieser Diskussion, da du in ihr erwähnt wurdest
|
|
206
|
+
posted: Du folgst dieser Diskussion, da du diese kommentiert hast
|
|
207
|
+
form:
|
|
208
|
+
categories_placeholder: Kategorien
|
|
209
|
+
content_label: :thredded.posts.form.content_label
|
|
210
|
+
create_btn: Erstelle eine neue Diskussion
|
|
211
|
+
messageboard_label: Forum
|
|
212
|
+
title_label: Titel
|
|
213
|
+
title_placeholder: :thredded.topics.form.title_label
|
|
214
|
+
title_placeholder_start: Starte eine neue Diskussion
|
|
215
|
+
update_btn: Beitrag bearbeiten
|
|
216
|
+
locked:
|
|
217
|
+
label: Gesperrt
|
|
218
|
+
message: Der Beitrag wurde von einem Moderator gesperrt
|
|
219
|
+
mark_as_unread: Als ungelesen markieren
|
|
220
|
+
not_following: Du folgst dieser Diskussion nicht
|
|
221
|
+
search:
|
|
222
|
+
no_results_in_messageboard_message_html: Deine Suche nach <q>%{query}</q> in %{messageboard} hat keine Ergebnisse
|
|
223
|
+
erzielt
|
|
224
|
+
no_results_message_html: Deine Suche nach <q>%{query}</q> erzielte keine Treffer
|
|
225
|
+
page_title: Suchergebnisse
|
|
226
|
+
results_in_messageboard_message_html: Suchergebnisse für <q>%{query}</q> in %{messageboard}
|
|
227
|
+
results_message_html: Suchergebnisse für <q>%{query}</q>
|
|
228
|
+
search_in_all_messageboards_btn: Suche überall
|
|
229
|
+
started_by_html: Gestartet %{time_ago} von %{user}
|
|
230
|
+
sticky:
|
|
231
|
+
label: Angepinnt
|
|
232
|
+
unfollow: Nich mehr folgen
|
|
233
|
+
unfollowed_notice: Du folgst der Diskussion nicht mehr
|
|
234
|
+
updated_notice: Beitrag aktualisiert
|
|
235
|
+
users:
|
|
236
|
+
currently_online: Zurzeit Online
|
|
237
|
+
last_active_html: Zuletzt aktiv %{time_ago}
|
|
238
|
+
posted_in_topic_html: Hochgeladen in %{topic_link}
|
|
239
|
+
posts_count:
|
|
240
|
+
one: Einmalig hochgeladen
|
|
241
|
+
other: "%{count} -mal hochgeladen"
|
|
242
|
+
recent_activity: :thredded.recent_activity
|
|
243
|
+
started_topic_html: "%{topic_link} gestartet"
|
|
244
|
+
started_topics_count:
|
|
245
|
+
one: Eine Diskussion gestartet
|
|
246
|
+
other: "%{count} Diskussionen gestartet"
|
|
247
|
+
user_posted_in_topic_html: "%{user_link} hochgeladen in %{topic_link}"
|
|
248
|
+
user_since_html: Nutzer seit %{time_ago}
|
|
249
|
+
user_started_topic_html: "%{user_link} hat %{topic_link} gestartet"
|
data/config/locales/en.yml
CHANGED
|
@@ -6,6 +6,40 @@ en:
|
|
|
6
6
|
content_blocked_notice_with_record_html: Blocked by %{moderator} %{time_ago}
|
|
7
7
|
email_notifier:
|
|
8
8
|
by_email: by email
|
|
9
|
+
emails:
|
|
10
|
+
message_notification:
|
|
11
|
+
html:
|
|
12
|
+
email_sent_reason_html: >-
|
|
13
|
+
This email was sent to you because %{user} included you in a private topic, “<a href="%{post_url}">%{topic_title}</a>”.
|
|
14
|
+
post_lead_html: 'A new message from %{user} in <a href="%{post_url}">“%{topic_title}”</a>:'
|
|
15
|
+
unsubscribe_instructions_html: :thredded.emails.post_notification.html.unsubscribe_instructions_html
|
|
16
|
+
subject: A new message from %{user} in “%{topic_title}”
|
|
17
|
+
text:
|
|
18
|
+
email_sent_reason: |-
|
|
19
|
+
This email was sent to you because %{user} included you in
|
|
20
|
+
the private topic “%{topic_title}”.
|
|
21
|
+
|
|
22
|
+
Go here to view the conversation:
|
|
23
|
+
%{post_url}
|
|
24
|
+
post_lead: 'A new message from %{user} in “%{topic_title}”:'
|
|
25
|
+
unsubscribe_instructions: :thredded.emails.post_notification.text.unsubscribe_instructions
|
|
26
|
+
post_notification:
|
|
27
|
+
html:
|
|
28
|
+
email_sent_reason_html: 'This email was sent to you because you are following this topic: “<a href="%{post_url}">%{topic_title}</a>”.'
|
|
29
|
+
post_lead_html: '%{user} <a href="%{post_url}">said in “%{topic_title}”</a>:'
|
|
30
|
+
unsubscribe_instructions_html: To unsubscribe from these emails, update your <a href="%{preferences_url}">preferences</a>.
|
|
31
|
+
subject: A new post in “%{topic_title}”
|
|
32
|
+
text:
|
|
33
|
+
email_sent_reason: |-
|
|
34
|
+
This email was sent to you because you are following
|
|
35
|
+
the topic “%{topic_title}”.
|
|
36
|
+
|
|
37
|
+
Go here to view the conversation:
|
|
38
|
+
%{post_url}
|
|
39
|
+
post_lead: "%{user} said in “%{topic_title}”:"
|
|
40
|
+
unsubscribe_instructions: |-
|
|
41
|
+
To unsubscribe from these emails, update your preferences here:
|
|
42
|
+
%{unsubscribe_url}
|
|
9
43
|
errors:
|
|
10
44
|
login_required: Please sign in first.
|
|
11
45
|
not_authorized: You are not authorized to access this page.
|
|
@@ -21,6 +55,8 @@ en:
|
|
|
21
55
|
form:
|
|
22
56
|
create_btn_submitting: :thredded.form.create_btn_submitting
|
|
23
57
|
description_label: Description
|
|
58
|
+
locked_label: Locked
|
|
59
|
+
locked_notice: This messageboard is locked. Only moderators can create new topics here.
|
|
24
60
|
messageboard_group_id_label: Messageboard group
|
|
25
61
|
no_group: No Group
|
|
26
62
|
title_label: Name
|
|
@@ -39,6 +75,8 @@ en:
|
|
|
39
75
|
moderation:
|
|
40
76
|
approve_btn: Approve
|
|
41
77
|
block_btn: Block
|
|
78
|
+
moderation_state:
|
|
79
|
+
name: Moderation state
|
|
42
80
|
pending:
|
|
43
81
|
empty:
|
|
44
82
|
content: All posts have been moderated.
|
|
@@ -54,6 +92,8 @@ en:
|
|
|
54
92
|
form_placeholder: :thredded.moderation.search_users.form_label
|
|
55
93
|
no_results_message: No users with name starting with %{query}
|
|
56
94
|
results_message: Users with names starting with %{query}
|
|
95
|
+
user:
|
|
96
|
+
name: User
|
|
57
97
|
nav:
|
|
58
98
|
all_messageboards: All Messageboards
|
|
59
99
|
edit_messageboard: Edit Messageboard
|
|
@@ -120,6 +160,7 @@ en:
|
|
|
120
160
|
create_btn_submitting: Sending...
|
|
121
161
|
update_btn_submitting: :thredded.form.update_btn_submitting
|
|
122
162
|
private_topics:
|
|
163
|
+
create: :thredded.private_topics.form.create_btn
|
|
123
164
|
edit: Edit
|
|
124
165
|
errors:
|
|
125
166
|
user_ids_length: Please specify at least one other user.
|
|
@@ -146,6 +187,7 @@ en:
|
|
|
146
187
|
placeholder: Search Topics and Posts
|
|
147
188
|
time_ago: "%{time} ago"
|
|
148
189
|
topics:
|
|
190
|
+
create: :thredded.topics.form.create_btn
|
|
149
191
|
delete_confirm: Are you sure you want to delete this topic? This CANNOT be undone.
|
|
150
192
|
delete_topic: Delete Topic
|
|
151
193
|
deleted_notice: Topic deleted
|
|
@@ -170,6 +212,7 @@ en:
|
|
|
170
212
|
update_btn: Update Topic
|
|
171
213
|
locked:
|
|
172
214
|
label: Locked
|
|
215
|
+
message: This topic has been locked by a moderator.
|
|
173
216
|
mark_as_unread: Mark unread from here
|
|
174
217
|
not_following: You are not following this topic.
|
|
175
218
|
search:
|
data/config/locales/es.yml
CHANGED
|
@@ -6,6 +6,42 @@ es:
|
|
|
6
6
|
content_blocked_notice_with_record_html: Censurado por %{moderator} hace %{time_ago}
|
|
7
7
|
email_notifier:
|
|
8
8
|
by_email: vía email
|
|
9
|
+
emails:
|
|
10
|
+
message_notification:
|
|
11
|
+
html:
|
|
12
|
+
email_sent_reason_html: >-
|
|
13
|
+
Este correo electrónico se te envió porque %{user} te incluyó en un tema privado, "<a href="%{post_url}">%{topic_title}</a>".
|
|
14
|
+
post_lead_html: 'Un nuevo mensaje de %{user} en <a href="%{post_url}">"%{topic_title}"</a>:'
|
|
15
|
+
unsubscribe_instructions_html: :thredded.emails.post_notification.html.unsubscribe_instructions_html
|
|
16
|
+
subject: Un nuevo mensaje de %{user} en "%{topic_title}"
|
|
17
|
+
text:
|
|
18
|
+
email_sent_reason: |-
|
|
19
|
+
Este correo electrónico se te envió porque %{user} te incluyó en
|
|
20
|
+
el tema privado "%{topic_title}".
|
|
21
|
+
|
|
22
|
+
Ve aquí para ver la conversación:
|
|
23
|
+
%{post_url}
|
|
24
|
+
post_lead: 'Un nuevo mensaje de %{user} en "%{topic_title}":'
|
|
25
|
+
unsubscribe_instructions: :thredded.emails.post_notification.text.unsubscribe_instructions
|
|
26
|
+
post_notification:
|
|
27
|
+
html:
|
|
28
|
+
email_sent_reason_html: >-
|
|
29
|
+
Este correo electrónico se le envió porque está siguiendo este tema: "<a href="%{post_url}">%{topic_title}</a>".
|
|
30
|
+
post_lead_html: '%{user} <a href="%{post_url}">dijo en "%{topic_title}"</a>:'
|
|
31
|
+
unsubscribe_instructions_html: >-
|
|
32
|
+
Para cancelar la suscripción a estos correos electrónicos, actualice sus <a href="%{preferences_url}">preferencias</a>.
|
|
33
|
+
subject: Un nuevo mensaje en "%{topic_title}"
|
|
34
|
+
text:
|
|
35
|
+
email_sent_reason: |-
|
|
36
|
+
Este correo electrónico se te envió porque estás siguiendo
|
|
37
|
+
el tema "%{topic_title}".
|
|
38
|
+
|
|
39
|
+
Ve aquí para ver la conversación:
|
|
40
|
+
%{post_url}
|
|
41
|
+
post_lead: '%{user} dijo en "%{topic_title}":'
|
|
42
|
+
unsubscribe_instructions: |-
|
|
43
|
+
Para anular la suscripción de estos correos electrónicos, actualice sus preferencias aquí:
|
|
44
|
+
%{unsubscribe_url}
|
|
9
45
|
errors:
|
|
10
46
|
login_required: Por favor, inicia sesión.
|
|
11
47
|
not_authorized: No estás autorizado para ver esta página.
|
|
@@ -21,6 +57,8 @@ es:
|
|
|
21
57
|
form:
|
|
22
58
|
create_btn_submitting: :thredded.form.create_btn_submitting
|
|
23
59
|
description_label: Descripción
|
|
60
|
+
locked_label: Bloqueado
|
|
61
|
+
locked_notice: Este mensaje está bloqueado. Solo los moderadores pueden crear nuevos temas aquí.
|
|
24
62
|
messageboard_group_id_label: grupo messageboard
|
|
25
63
|
no_group: Sin grupo
|
|
26
64
|
title_label: Nombre
|
|
@@ -39,6 +77,8 @@ es:
|
|
|
39
77
|
moderation:
|
|
40
78
|
approve_btn: Aprobar
|
|
41
79
|
block_btn: Rechazar
|
|
80
|
+
moderation_state:
|
|
81
|
+
name: Estado de moderación
|
|
42
82
|
pending:
|
|
43
83
|
empty:
|
|
44
84
|
content: Todos los mensajes han sido moderados.
|
|
@@ -54,6 +94,8 @@ es:
|
|
|
54
94
|
form_placeholder: :thredded.moderation.search_users.form_label
|
|
55
95
|
no_results_message: No existen usuarios con el nombre empezando por %{query}
|
|
56
96
|
results_message: Usuarios cuyo nombre empieza por %{query}
|
|
97
|
+
user:
|
|
98
|
+
name: Usuario
|
|
57
99
|
nav:
|
|
58
100
|
all_messageboards: Todos los Foros
|
|
59
101
|
edit_messageboard: Editar Foro
|
|
@@ -122,6 +164,7 @@ es:
|
|
|
122
164
|
create_btn_submitting: Enviando...
|
|
123
165
|
update_btn_submitting: :thredded.form.update_btn_submitting
|
|
124
166
|
private_topics:
|
|
167
|
+
create: :thredded.private_topics.form.create_btn
|
|
125
168
|
edit: Editar
|
|
126
169
|
errors:
|
|
127
170
|
user_ids_length: Por favor, introduce el nombre de al menos un usuario.
|
|
@@ -148,6 +191,7 @@ es:
|
|
|
148
191
|
placeholder: Busca Temas y Mensajes
|
|
149
192
|
time_ago: hace %{time}
|
|
150
193
|
topics:
|
|
194
|
+
create: :thredded.topics.form.create_btn
|
|
151
195
|
delete_confirm: "¿Seguro que queires eliminar este tema? Esta acción NO se puede deshacer."
|
|
152
196
|
delete_topic: Eliminar Tema
|
|
153
197
|
deleted_notice: Tema eliminado
|
|
@@ -172,6 +216,7 @@ es:
|
|
|
172
216
|
update_btn: Actualizar Tema
|
|
173
217
|
locked:
|
|
174
218
|
label: Bloqueado
|
|
219
|
+
message: Este tema ha sido bloqueado por un moderador.
|
|
175
220
|
mark_as_unread: Marcar sin leer desde aquí
|
|
176
221
|
not_following: No estás siguiendo este tema.
|
|
177
222
|
search:
|