decidim-comments 0.32.0.rc2 → 0.32.0.rc3

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.
Files changed (47) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/comments/comments/inline.erb +6 -6
  3. data/app/packs/src/decidim/comments/comments_mobile_modal.js +2 -6
  4. data/app/packs/stylesheets/comments.scss +3 -3
  5. data/app/views/decidim/comments/admin/shared/_availability_fields.html.erb +1 -1
  6. data/config/locales/ar.yml +0 -4
  7. data/config/locales/bg.yml +0 -4
  8. data/config/locales/ca-IT.yml +4 -4
  9. data/config/locales/ca.yml +4 -4
  10. data/config/locales/cs.yml +2 -4
  11. data/config/locales/de.yml +0 -4
  12. data/config/locales/el.yml +0 -4
  13. data/config/locales/en.yml +4 -4
  14. data/config/locales/es-MX.yml +4 -4
  15. data/config/locales/es-PY.yml +4 -4
  16. data/config/locales/es.yml +4 -4
  17. data/config/locales/eu.yml +4 -4
  18. data/config/locales/fi-plain.yml +4 -4
  19. data/config/locales/fi.yml +4 -4
  20. data/config/locales/fr-CA.yml +0 -4
  21. data/config/locales/fr.yml +0 -4
  22. data/config/locales/gl.yml +0 -4
  23. data/config/locales/hu.yml +0 -4
  24. data/config/locales/id-ID.yml +0 -4
  25. data/config/locales/is-IS.yml +0 -4
  26. data/config/locales/it.yml +0 -4
  27. data/config/locales/ja.yml +0 -4
  28. data/config/locales/lb.yml +0 -4
  29. data/config/locales/lt.yml +0 -4
  30. data/config/locales/lv.yml +0 -4
  31. data/config/locales/nl.yml +0 -4
  32. data/config/locales/no.yml +0 -4
  33. data/config/locales/pl.yml +0 -4
  34. data/config/locales/pt-BR.yml +0 -4
  35. data/config/locales/pt.yml +0 -4
  36. data/config/locales/ro-RO.yml +0 -4
  37. data/config/locales/ru.yml +0 -4
  38. data/config/locales/sk.yml +0 -4
  39. data/config/locales/sv.yml +4 -4
  40. data/config/locales/tr-TR.yml +0 -4
  41. data/config/locales/uk.yml +0 -4
  42. data/config/locales/zh-CN.yml +0 -4
  43. data/config/locales/zh-TW.yml +0 -4
  44. data/decidim-comments.gemspec +1 -1
  45. data/lib/decidim/comments/engine.rb +0 -11
  46. data/lib/decidim/comments/version.rb +1 -1
  47. metadata +7 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2ee9e25a5b754a9198e11acf09e9f25b71e7b0028df24826f8ace29b720d544d
4
- data.tar.gz: f6ccb06cfda1adcf44556b2091df2d51309b1b9c61c2da754185d16a21b1a7d1
3
+ metadata.gz: 2c868331fba7ce73c9070793fd80693f626c0b2a7bcb97f5f47aa3cd8e9cde7c
4
+ data.tar.gz: fd3dfc1340010ba4f8df20de1a4375a9fe4c690602f7f97359f47048c77a9263
5
5
  SHA512:
6
- metadata.gz: 3a625d05b82356492d39b0af019cae8d7ca8194d6862c4edf6f6e739b2045f7b6b43361414106f5866bd9f2dc7b3a231da5bbb82b5fdb8b467f9a105a275afe3
7
- data.tar.gz: fb833d86bea154f643465ae1a1d8b7d3a704092548081334fc7de8cbddcd048b9457cf8a5f73bf2444a1251d5a37dbbc38698ac86472537f84ee6f3d919d9443
6
+ metadata.gz: b633845393e2d0d0db593fe3b8fedc688d4516580158d300469022512a9d96a613d4300e76ddc1a286ba562cf17dd50c0ff62541446a2f75a369f3b7acc4e18b
7
+ data.tar.gz: da0bc0401bff9c6f04d2059a1915ca21a443eb0d75cbefde6be937699c6f71d9ef45d1f458df0ce44b34d1ac6674678ee3da4e9e253ddb54beba0edba26d54b5
@@ -1,11 +1,5 @@
1
1
  <div id="comments">
2
2
  <div class="comments">
3
- <% if user_signed_in? %>
4
- <button class="button button__lg button__secondary flex md:hidden w-full h-9 text-sm add-comment-mobile">
5
- <%= t("add_comment", scope: "decidim.components.add_comment_form") %>
6
- </button>
7
- <% end %>
8
- <%= add_comment %>
9
3
  <%= user_comments_blocked_warning %>
10
4
  <div class="comments__header mt-8">
11
5
  <h2 class="h4">
@@ -26,6 +20,12 @@
26
20
  </div>
27
21
  <%= single_comment_warning %>
28
22
  <%= blocked_comments_warning %>
23
+ <%= add_comment %>
24
+ <% if user_signed_in? %>
25
+ <button class="button button__lg button__secondary flex md:hidden w-full h-9 text-sm add-comment-mobile">
26
+ <%= t("add_comment", scope: "decidim.components.add_comment_form") %>
27
+ </button>
28
+ <% end %>
29
29
  <%= render_comments %>
30
30
  </div>
31
31
  </div>
@@ -2,16 +2,12 @@
2
2
  // 2. Handles dropdown menus: Dynamically updates button content based on user selection, hides selected items, and manages dropdown visibility.
3
3
  // This creates a responsive, interactive comment interface with mobile-friendly design and dynamic user group selection.
4
4
 
5
- import { screens } from "tailwindcss/defaultTheme"
6
5
  import { initializeCommentsDropdown } from "../../decidim/comments/comments_dropdown";
7
6
 
8
7
  // Add comment card for mobile
9
8
  const addCommentMobile = function (addCommentCard) {
10
- const smBreakpoint = parseInt(screens.sm.replace("px", ""), 10);
11
- if (window.matchMedia(`(max-width: ${smBreakpoint}px)`).matches) {
12
- addCommentCard.classList.remove("hidden");
13
- addCommentCard.classList.add("fullscreen");
14
- }
9
+ addCommentCard.classList.remove("hidden");
10
+ addCommentCard.classList.add("fullscreen");
15
11
  };
16
12
 
17
13
  const closeAddComment = function (addCommentCard) {
@@ -6,7 +6,7 @@
6
6
  }
7
7
 
8
8
  .add-comment {
9
- @apply mt-2 md:bg-gray-5 p-0 md:px-4 md:pb-6 md:pt-1 rounded-lg w-full;
9
+ @apply mt-2 mb-4 md:bg-gray-5 p-0 md:px-4 md:pb-6 md:pt-1 rounded-lg w-full;
10
10
 
11
11
  .new_comment {
12
12
  @apply w-full;
@@ -73,7 +73,7 @@
73
73
  }
74
74
 
75
75
  .comment {
76
- @apply rounded-lg border-2 border-background-5 p-3 pl-6;
76
+ @apply rounded-lg border-2 border-background-5 p-3 pl-6 mt-4 md:mt-0;
77
77
 
78
78
  &.top-comment {
79
79
  @apply border-gray-2;
@@ -140,7 +140,7 @@
140
140
  }
141
141
 
142
142
  &-thread {
143
- @apply mb-8;
143
+ @apply mb-4;
144
144
 
145
145
  .button[aria-expanded="false"] {
146
146
  svg:first-of-type {
@@ -2,7 +2,7 @@
2
2
  <%= form.check_box :comments_enabled, label: t(".enabled"), data: { controller: :toggle, "toggle-toggle-value": "customize_comments_times-div" } %>
3
3
  </div>
4
4
 
5
- <div id="customize_comments_times-div" data-toggler=".hide" class="row column <%= @form.comments_enabled ? nil : "hide" %>">
5
+ <div id="customize_comments_times-div" class="row column <%= @form.comments_enabled ? nil : "hide" %>">
6
6
  <div class="mb-4">
7
7
  <%= form.datetime_field :comments_start_time, label: t(".start_time") %>
8
8
  </div>
@@ -122,12 +122,10 @@ ar:
122
122
  email_intro: "%{author_name} ترك تعليق في %{resource_title}. يمكنك قراءتها في هذه الصفحة:"
123
123
  email_outro: لقد تلقيت هذا الإشعار لأنك تتابع %{author_name}. يمكنك إلغاء تتبع هذا المستخدم من صفحة ملفه الشخصي.
124
124
  email_subject: هناك تعليق جديد مِن %{author_name} على %{resource_title}
125
- notification_title: هناك تعليق جديد مِن <a href="%{author_path}">%{author_name} %{author_nickname}</a> على <a href="%{resource_path}">%{resource_title}</a>.
126
125
  comment_created:
127
126
  email_intro: "%{resource_title} تم التعليق. يمكنك قراءة التعليق في هذه الصفحة:"
128
127
  email_outro: لقد تلقيت هذا الإشعار لأنك تتابع "%{resource_title}" أو مؤلفه. يمكنك إلغاء تتبعه من الرابط السابق.
129
128
  email_subject: هناك تعليق جديد من %{author_name} في %{resource_title}
130
- notification_title: هناك تعليق جديد مِن <a href="%{author_path}">%{author_name} %{author_nickname}</a> على <a href="%{resource_path}">%{resource_title}</a>
131
129
  comment_downvoted:
132
130
  email_intro: تم خفض تعليقك في "%{resource_title}". الآن يحتوي على ما مجموعه %{upvotes} أصوات أعلى و %{downvotes} أصوات أدنى.
133
131
  email_outro: لقد تلقيت هذا الإشعار لأنك مؤلف هذا التعليق.
@@ -142,9 +140,7 @@ ar:
142
140
  email_intro: "%{author_name} رد على تعليقك في %{resource_title}. يمكنك قراءتها في هذه الصفحة:"
143
141
  email_outro: لقد تلقيت هذا الإشعار لأنه تم الرد على تعليقك.
144
142
  email_subject: "%{author_name} رد على تعليقك في %{resource_title}"
145
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> رد على تعليقك في <a href="%{resource_path}">%{resource_title}</a>
146
143
  user_mentioned:
147
144
  email_intro: لقد ذكرت
148
145
  email_outro: لقد تلقيت هذا الإشعار لأنك ذكرت في %{resource_title}.
149
146
  email_subject: لقد ذكرت في %{resource_title}
150
- notification_title: لقد ذكرت في <a href="%{resource_path}">%{resource_title}</a> من <a href="%{author_path}">%{author_name} %{author_nickname}</a>
@@ -129,12 +129,10 @@ bg:
129
129
  email_intro: "%{author_name} остави коментар в %{resource_title}. Можете да го прочетете на тази страница:"
130
130
  email_outro: Получихте това известие, защото следвате %{author_name}. Можете да спрете да следвате този потребител от страницата на неговия профил.
131
131
  email_subject: Има нов коментар от %{author_name} в(ъв) %{resource_title}
132
- notification_title: Има нов коментар от <a href="%{author_path}">%{author_name} %{author_nickname}</a> в(ъв) <a href="%{resource_path}">%{resource_title}</a>.
133
132
  comment_created:
134
133
  email_intro: "%{resource_title} получи коментар. Можете да прочетете коментара на тази страница:"
135
134
  email_outro: Получавате това известие, защото следвате „%{resource_title}“ или неговия автор. Можете да прекратите следването от предходната връзка.
136
135
  email_subject: Има нов коментар от %{author_name} по %{resource_title}
137
- notification_title: Има нов коментар от <a href="%{author_path}">%{author_name} %{author_nickname}</a> по <a href="%{resource_path}">%{resource_title}</a>
138
136
  comment_downvoted:
139
137
  email_intro: Вашият коментар в „%{resource_title}“ беше гласуван против. Вече има общо %{upvotes} гласа за и %{downvotes} гласа против.
140
138
  email_outro: Получихте това известие, защото вие сте авторът на този коментар.
@@ -149,12 +147,10 @@ bg:
149
147
  email_intro: "%{author_name} отговори на вашия коментар в %{resource_title}. Можете да го прочетете на тази страница:"
150
148
  email_outro: Получавате това известие, защото някой отговори на коментара Ви.
151
149
  email_subject: "%{author_name} отговори на коментара Ви по %{resource_title}"
152
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> отговори на коментара Ви по <a href="%{resource_path}">%{resource_title}</a>
153
150
  user_mentioned:
154
151
  email_intro: Бяхте споменати
155
152
  email_outro: Получавате това известие, защото бяхте споменати в(ъв) %{resource_title}.
156
153
  email_subject: Бяхте споменати в(ъв) %{resource_title}
157
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> Ви спомена в(ъв) <a href="%{resource_path}">%{resource_title}</a>
158
154
  errors:
159
155
  messages:
160
156
  cannot_have_comments: не може да има коментари
@@ -169,12 +169,12 @@ ca-IT:
169
169
  email_intro: "%{author_name} ha deixat un comentari a %{resource_title}. Podeu llegir-lo en aquesta pàgina:"
170
170
  email_outro: Has rebut aquesta notificació perquè estàs seguint el comentari "%{author_name}". Pots deixar de seguir a aquesta participant des de la seva pàgina de perfil.
171
171
  email_subject: Hi ha un nou comentari de %{author_name} en %{resource_title}
172
- notification_title: Hi ha un nou comentari per <a href="%{author_path}">%{author_name} %{author_nickname}</a> a <a href="%{resource_path}">%{resource_title}</a>.
172
+ notification_title: Hi ha un nou comentari de <a href="%{author_path}">%{author_name}</a> a<a href="%{resource_path}">%{resource_title}</a>.
173
173
  comment_created:
174
174
  email_intro: "Algú ha deixat un comentari a \"%{resource_title}\". Pots llegir el comentari a través del següent enllaç:"
175
175
  email_outro: Has rebut aquesta notificació perquè estàs seguint el comentari "%{resource_title}" o la seva autora. Pots deixar de seguir-la des de l'enllaç anterior.
176
176
  email_subject: Hi ha un nou comentari de %{author_name} a %{resource_title}
177
- notification_title: Hi ha un nou comentari de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>
177
+ notification_title: Hi ha un nou comentari de <a href="%{author_path}">%{author_name}</a> a<a href="%{resource_path}">%{resource_title}</a>
178
178
  comment_downvoted:
179
179
  email_intro: El teu comentari a "%{resource_title}" ha rebut un vot negatiu. Ara té un total de %{upvotes} vots positius i %{downvotes} vots negatius.
180
180
  email_outro: Has rebut aquesta notificació perquè vas fer aquest comentari.
@@ -189,12 +189,12 @@ ca-IT:
189
189
  email_intro: "%{author_name} ha respost el teu comentari a %{resource_title}. Pots llegir-lo en aquesta pàgina:"
190
190
  email_outro: Has rebut aquesta notificació perquè s'ha respost el teu comentari.
191
191
  email_subject: "%{author_name} ha respost el teu comentari a %{resource_title}"
192
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> ha respost el teu comentari a <a href="%{resource_path}">%{resource_title}</a>
192
+ notification_title: <a href="%{author_path}">%{author_name}</a> ha respost el teu comentari a <a href="%{resource_path}">%{resource_title}</a>
193
193
  user_mentioned:
194
194
  email_intro: Has estat esmentada
195
195
  email_outro: Has rebut aquesta notificació perquè t'han esmentat al comentari "%{resource_title}".
196
196
  email_subject: Has estat esmentada a %{resource_title}
197
- notification_title: Has estat esmentada a <a href="%{resource_path}">%{resource_title}</a> per <a href="%{author_path}">%{author_name} %{author_nickname}</a>
197
+ notification_title: Has estat esmentada per <a href="%{author_path}">%{author_name}</a> a <a href="%{resource_path}">%{resource_title}</a>
198
198
  errors:
199
199
  messages:
200
200
  cannot_have_comments: no es poden fer comentaris
@@ -169,12 +169,12 @@ ca:
169
169
  email_intro: "%{author_name} ha deixat un comentari a %{resource_title}. Podeu llegir-lo en aquesta pàgina:"
170
170
  email_outro: Has rebut aquesta notificació perquè estàs seguint el comentari "%{author_name}". Pots deixar de seguir a aquesta participant des de la seva pàgina de perfil.
171
171
  email_subject: Hi ha un nou comentari de %{author_name} en %{resource_title}
172
- notification_title: Hi ha un nou comentari per <a href="%{author_path}">%{author_name} %{author_nickname}</a> a <a href="%{resource_path}">%{resource_title}</a>.
172
+ notification_title: Hi ha un nou comentari de <a href="%{author_path}">%{author_name}</a> a<a href="%{resource_path}">%{resource_title}</a>.
173
173
  comment_created:
174
174
  email_intro: "Algú ha deixat un comentari a \"%{resource_title}\". Pots llegir el comentari a través del següent enllaç:"
175
175
  email_outro: Has rebut aquesta notificació perquè estàs seguint el comentari "%{resource_title}" o la seva autora. Pots deixar de seguir-la des de l'enllaç anterior.
176
176
  email_subject: Hi ha un nou comentari de %{author_name} a %{resource_title}
177
- notification_title: Hi ha un nou comentari de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>
177
+ notification_title: Hi ha un nou comentari de <a href="%{author_path}">%{author_name}</a> a<a href="%{resource_path}">%{resource_title}</a>
178
178
  comment_downvoted:
179
179
  email_intro: El teu comentari a "%{resource_title}" ha rebut un vot negatiu. Ara té un total de %{upvotes} vots positius i %{downvotes} vots negatius.
180
180
  email_outro: Has rebut aquesta notificació perquè vas fer aquest comentari.
@@ -189,12 +189,12 @@ ca:
189
189
  email_intro: "%{author_name} ha respost el teu comentari a %{resource_title}. Pots llegir-lo en aquesta pàgina:"
190
190
  email_outro: Has rebut aquesta notificació perquè s'ha respost el teu comentari.
191
191
  email_subject: "%{author_name} ha respost el teu comentari a %{resource_title}"
192
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> ha respost el teu comentari a <a href="%{resource_path}">%{resource_title}</a>
192
+ notification_title: <a href="%{author_path}">%{author_name}</a> ha respost el teu comentari a <a href="%{resource_path}">%{resource_title}</a>
193
193
  user_mentioned:
194
194
  email_intro: Has estat esmentada
195
195
  email_outro: Has rebut aquesta notificació perquè t'han esmentat al comentari "%{resource_title}".
196
196
  email_subject: Has estat esmentada a %{resource_title}
197
- notification_title: Has estat esmentada a <a href="%{resource_path}">%{resource_title}</a> per <a href="%{author_path}">%{author_name} %{author_nickname}</a>
197
+ notification_title: Has estat esmentada per <a href="%{author_path}">%{author_name}</a> a <a href="%{resource_path}">%{resource_title}</a>
198
198
  errors:
199
199
  messages:
200
200
  cannot_have_comments: no es poden fer comentaris
@@ -170,12 +170,12 @@ cs:
170
170
  email_intro: "%{author_name} zanechal komentář v %{resource_title}. Můžete si je přečíst na této stránce:"
171
171
  email_outro: Toto oznámení jste obdrželi, protože jste sledovali %{author_name}. Tento uživatel můžete zrušit ze své profilové stránky.
172
172
  email_subject: K dispozici je nový komentář %{author_name} v %{resource_title}
173
- notification_title: Je tu nový komentář <a href="%{author_path}">%{author_name} %{author_nickname}</a> v <a href="%{resource_path}">%{resource_title}</a>.
173
+ notification_title: Nový komentář od <a href="%{author_path}">%{author_name}</a> v <a href="%{resource_path}">%{resource_title}</a>.
174
174
  comment_created:
175
175
  email_intro: "%{resource_title} bylo komentováno. Můžete si přečíst komentář na této stránce:"
176
176
  email_outro: Toto oznámení jste obdrželi, protože jste sledovali "%{resource_title}" nebo jeho autora. Můžete jej odhlásit od předchozího odkazu.
177
177
  email_subject: K dispozici je nový komentář od %{author_name} do %{resource_title}
178
- notification_title: Je tu nový komentář od <a href="%{author_path}">%{author_name} %{author_nickname}</a> do <a href="%{resource_path}">%{resource_title}</a>
178
+ notification_title: Nový komentář od <a href="%{author_path}">%{author_name}</a> v <a href="%{resource_path}">%{resource_title}</a>
179
179
  comment_downvoted:
180
180
  email_intro: Váš komentář v "%{resource_title}" byl nepodpořen. Nyní má celkem %{upvotes} hlasů podpory a %{downvotes} hlasuje proti.
181
181
  email_outro: Obdrželi jste toto oznámení, protože jste autorem tohoto komentáře.
@@ -190,12 +190,10 @@ cs:
190
190
  email_intro: "%{author_name} odpověděl váš komentář v %{resource_title}. Můžete si je přečíst na této stránce:"
191
191
  email_outro: Toto oznámení jste obdrželi, protože váš komentář byl zodpovězen.
192
192
  email_subject: "%{author_name} odpověděl váš komentář v %{resource_title}"
193
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> odpověděl na váš komentář v <a href="%{resource_path}">%{resource_title}</a>
194
193
  user_mentioned:
195
194
  email_intro: Byl jste zmíněn
196
195
  email_outro: Toto oznámení jste obdrželi, protože jste byli uvedeni v %{resource_title}.
197
196
  email_subject: Byl jste zmíněn v %{resource_title}
198
- notification_title: Byli jste zmíněni v <a href="%{resource_path}">%{resource_title}</a> od <a href="%{author_path}">%{author_name} %{author_nickname}</a>
199
197
  errors:
200
198
  messages:
201
199
  cannot_have_comments: nelze komentovat
@@ -169,12 +169,10 @@ de:
169
169
  email_intro: "%{author_name} hat einen Kommentar zu %{resource_title} hinterlassen. Sie können diesen auf dieser Seite lesen:"
170
170
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{author_name} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie die Profil-Seite dieses Benutzers.
171
171
  email_subject: Neuer Kommentar von %{author_name} zu %{resource_title}
172
- notification_title: Es gibt einen neuen Kommentar von <a href="%{author_path}">%{author_name} %{author_nickname}</a> zu <a href="%{resource_path}">%{resource_title}</a>.
173
172
  comment_created:
174
173
  email_intro: "%{resource_title} wurde kommentiert. Sie können den Kommentar auf dieser Seite lesen:"
175
174
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie "%{resource_title}" oder seinem Autor folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
176
175
  email_subject: Neuer Kommentar von %{author_name} zu %{resource_title}
177
- notification_title: Es gibt einen neuen Kommentar von <a href="%{author_path}">%{author_name} %{author_nickname}</a> zu <a href="%{resource_path}">%{resource_title}</a>
178
176
  comment_downvoted:
179
177
  email_intro: Ihr Kommentar in "%{resource_title}" wurde negativ bewertet. Er hat nun insgesamt %{upvotes} positive und %{downvotes} negative Stimmen.
180
178
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie der Autor des Vorschlags sind.
@@ -189,12 +187,10 @@ de:
189
187
  email_intro: "%{author_name} hat auf Ihren Kommentar zu %{resource_title} geantwortet. Sie können das auf dieser Seite lesen:"
190
188
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Ihr Kommentar beantwortet wurde.
191
189
  email_subject: "%{author_name} hat auf Ihren Kommentar zu %{resource_title} geantwortet"
192
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> hat auf Ihren Kommentar in <a href="%{resource_path}">%{resource_title}</a> geantwortet
193
190
  user_mentioned:
194
191
  email_intro: Sie wurden erwähnt
195
192
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie in %{resource_title} erwähnt wurden.
196
193
  email_subject: Sie wurden in %{resource_title} erwähnt
197
- notification_title: Sie wurden in <a href="%{resource_path}">%{resource_title}</a> von <a href="%{author_path}">%{author_name} %{author_nickname}</a> erwähnt
198
194
  errors:
199
195
  messages:
200
196
  cannot_have_comments: kann keine Kommentare haben
@@ -118,12 +118,10 @@ el:
118
118
  email_intro: "Ο συντάκτης %{author_name} έκανε ένα σχόλιο στο στοιχείο %{resource_title}. Μπορείτε να το διαβάσετε σε αυτήν τη σελίδα:"
119
119
  email_outro: Λάβατε αυτήν την ειδοποίηση επειδή ακολουθείτε τον συντάκτη %{author_name}. Μπορείτε να σταματήσετε να ακολουθείτε αυτόν τον χρήστη από τη σελίδα προφίλ του.
120
120
  email_subject: Υπάρχει ένα νέο σχόλιο από τον συντάκτη %{author_name} στο στοιχείο %{resource_title}
121
- notification_title: Υπάρχει ένα νέο σχόλιο από τον συντάκτη <a href="%{author_path}">%{author_name} %{author_nickname}</a> στο στοιχείο <a href="%{resource_path}">%{resource_title}</a>.
122
121
  comment_created:
123
122
  email_intro: "Το στοιχείο %{resource_title} έχει σχολιαστεί. Μπορείτε να διαβάσετε το σχόλιο σε αυτήν τη σελίδα:"
124
123
  email_outro: Λάβατε αυτήν την ειδοποίηση επειδή ακολουθείτε το στοιχείο «%{resource_title}» ή τον συντάκτη του. Μπορείτε να σταματήσετε να την ακολουθείτε από τον προηγούμενο σύνδεσμο.
125
124
  email_subject: Υπάρχει ένα νέο σχόλιο από τον συντάκτη %{author_name} στο στοιχείο %{resource_title}
126
- notification_title: Υπάρχει ένα νέο σχόλιο από τον συντάκτη<a href="%{author_path}">%{author_name} %{author_nickname}</a> στο στοιχείο <a href="%{resource_path}">%{resource_title}</a>
127
125
  comment_downvoted:
128
126
  email_intro: Το σχόλιό σας στο "%{resource_title}" έχει καταψηφιστεί. Τώρα έχει συνολικές ψήφους %{upvotes} υπέρ και %{downvotes} κατά.
129
127
  email_outro: Λάβατε αυτή την ειδοποίηση επειδή είστε ο συγγραφέας αυτού του σχολίου.
@@ -138,12 +136,10 @@ el:
138
136
  email_intro: "Ο συντάκτης %{author_name} απάντησε στο σχόλιό σας στο στοιχείο %{resource_title}. Μπορείτε να το διαβάσετε σε αυτήν τη σελίδα:"
139
137
  email_outro: Λάβατε αυτήν την ειδοποίηση, επειδή το σχόλιό σας απαντήθηκε.
140
138
  email_subject: "Ο συντάκτης %{author_name} απάντησε στο σχόλιό σας στο στοιχείο %{resource_title}"
141
- notification_title: Ο συντάκτης <a href="%{author_path}">%{author_name} %{author_nickname}</a> απάντησε στο σχόλιό σας στο στοιχείο <a href="%{resource_path}">%{resource_title}</a>
142
139
  user_mentioned:
143
140
  email_intro: Έγινε αναφορά σε εσάς
144
141
  email_outro: Λάβατε αυτήν την ειδοποίηση επειδή έγινε αναφορά σε εσάς στο στοιχείο %{resource_title}.
145
142
  email_subject: Έγινε αναφορά σε εσάς στο στοιχείο %{resource_title}
146
- notification_title: Έγινε αναφορά σε εσάς στο στοιχείο <a href="%{resource_path}">%{resource_title}</a> από τον συντάκτη <a href="%{author_path}">%{author_name} %{author_nickname}</a>
147
143
  errors:
148
144
  messages:
149
145
  cannot_have_comments: δεν μπορεί να έχει σχόλια
@@ -169,12 +169,12 @@ en:
169
169
  email_intro: "%{author_name} has left a comment in %{resource_title}. You can read it in this page:"
170
170
  email_outro: You have received this notification because you are following %{author_name}. You can unfollow this user from their profile page.
171
171
  email_subject: There is a new comment by %{author_name} in %{resource_title}
172
- notification_title: There is a new comment by <a href="%{author_path}">%{author_name} %{author_nickname}</a> in <a href="%{resource_path}">%{resource_title}</a>.
172
+ notification_title: There is a new comment by <a href="%{author_path}">%{author_name}</a> in <a href="%{resource_path}">%{resource_title}</a>.
173
173
  comment_created:
174
174
  email_intro: "%{resource_title} has been commented. You can read the comment in this page:"
175
175
  email_outro: You have received this notification because you are following "%{resource_title}" or its author. You can unfollow it from the previous link.
176
176
  email_subject: There is a new comment from %{author_name} in %{resource_title}
177
- notification_title: There is a new comment from <a href="%{author_path}">%{author_name} %{author_nickname}</a> in <a href="%{resource_path}">%{resource_title}</a>
177
+ notification_title: There is a new comment from <a href="%{author_path}">%{author_name}</a> in <a href="%{resource_path}">%{resource_title}</a>
178
178
  comment_downvoted:
179
179
  email_intro: Your comment in "%{resource_title}" has been downvoted. It now has a total of %{upvotes} upvotes and %{downvotes} downvotes.
180
180
  email_outro: You have received this notification because you are the author of this comment.
@@ -189,12 +189,12 @@ en:
189
189
  email_intro: "%{author_name} has replied your comment in %{resource_title}. You can read it in this page:"
190
190
  email_outro: You have received this notification because your comment was replied.
191
191
  email_subject: "%{author_name} has replied your comment in %{resource_title}"
192
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> has replied your comment in <a href="%{resource_path}">%{resource_title}</a>
192
+ notification_title: <a href="%{author_path}">%{author_name}</a> has replied your comment in <a href="%{resource_path}">%{resource_title}</a>
193
193
  user_mentioned:
194
194
  email_intro: You have been mentioned
195
195
  email_outro: You have received this notification because you have been mentioned in %{resource_title}.
196
196
  email_subject: You have been mentioned in %{resource_title}
197
- notification_title: You have been mentioned in <a href="%{resource_path}">%{resource_title}</a> by <a href="%{author_path}">%{author_name} %{author_nickname}</a>
197
+ notification_title: You have been mentioned in <a href="%{resource_path}">%{resource_title}</a> by <a href="%{author_path}">%{author_name}</a>
198
198
  errors:
199
199
  messages:
200
200
  cannot_have_comments: cannot have comments
@@ -169,12 +169,12 @@ es-MX:
169
169
  email_intro: "%{author_name} ha dejado un comentario en %{resource_title}. Puedes leerlo en esta página:"
170
170
  email_outro: Has recibido esta notificación porque sigues "%{author_name}". Puedes dejar de seguirlo desde el enlace anterior.
171
171
  email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
172
- notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>.
172
+ notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name}</a> en <a href="%{resource_path}">%{resource_title}</a>.
173
173
  comment_created:
174
174
  email_intro: "%{resource_title} ha sido comentado. Puedes leer el comentario en esta página:"
175
175
  email_outro: Has recibido esta notificación porque está siguiendo "%{resource_title}" o su autor. Puedes dejar de seguirlo desde el enlace anterior.
176
176
  email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
177
- notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>
177
+ notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name}</a> en <a href="%{resource_path}">%{resource_title}</a>
178
178
  comment_downvoted:
179
179
  email_intro: Tu comentario en "%{resource_title}" ha sido votado negativamente. Ahora tiene un total de %{upvotes} votos positivos y %{downvotes} votos negativos.
180
180
  email_outro: Has recibido esta notificación porque eres la autora de este comentario.
@@ -189,12 +189,12 @@ es-MX:
189
189
  email_intro: "%{author_name} ha respondido a tu comentario en %{resource_title}. Puedes leerlo en esta página:"
190
190
  email_outro: Has recibido esta notificación porque tu comentario fue respondido.
191
191
  email_subject: "%{author_name} ha respondido a tu comentario en %{resource_title}"
192
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> ha respondido a tu comentario en <a href="%{resource_path}">%{resource_title}</a>
192
+ notification_title: <a href="%{author_path}">%{author_name}</a> ha respondido a tu comentario en <a href="%{resource_path}">%{resource_title}</a>
193
193
  user_mentioned:
194
194
  email_intro: Has sido mencionado
195
195
  email_outro: Has recibido esta notificación porque has sido mencionado en %{resource_title}.
196
196
  email_subject: Has sido mencionado en %{resource_title}
197
- notification_title: Has sido mencionado en <a href="%{resource_path}">%{resource_title}</a> por <a href="%{author_path}">%{author_name} %{author_nickname}</a>
197
+ notification_title: Has sido mencionada por <a href="%{author_path}">%{author_name}</a> en <a href="%{resource_path}">%{resource_title}</a>
198
198
  errors:
199
199
  messages:
200
200
  cannot_have_comments: no se pueden hacer comentarios
@@ -169,12 +169,12 @@ es-PY:
169
169
  email_intro: "%{author_name} ha dejado un comentario en %{resource_title}. Puedes leerlo en esta página:"
170
170
  email_outro: Has recibido esta notificación porque sigues "%{author_name}". Puedes dejar de seguirlo desde el enlace anterior.
171
171
  email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
172
- notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>.
172
+ notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name}</a> en <a href="%{resource_path}">%{resource_title}</a>.
173
173
  comment_created:
174
174
  email_intro: "%{resource_title} ha sido comentado. Puedes leer el comentario en esta página:"
175
175
  email_outro: Has recibido esta notificación porque está siguiendo "%{resource_title}" o su autor. Puedes dejar de seguirlo desde el enlace anterior.
176
176
  email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
177
- notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>
177
+ notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name}</a> en <a href="%{resource_path}">%{resource_title}</a>
178
178
  comment_downvoted:
179
179
  email_intro: Tu comentario en "%{resource_title}" ha sido votado negativamente. Ahora tiene un total de %{upvotes} votos positivos y %{downvotes} votos negativos.
180
180
  email_outro: Has recibido esta notificación porque eres la autora de este comentario.
@@ -189,12 +189,12 @@ es-PY:
189
189
  email_intro: "%{author_name} ha respondido a tu comentario en %{resource_title}. Puedes leerlo en esta página:"
190
190
  email_outro: Has recibido esta notificación porque tu comentario fue respondido.
191
191
  email_subject: "%{author_name} ha respondido a tu comentario en %{resource_title}"
192
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> ha respondido a tu comentario en <a href="%{resource_path}">%{resource_title}</a>
192
+ notification_title: <a href="%{author_path}">%{author_name}</a> ha respondido a tu comentario en <a href="%{resource_path}">%{resource_title}</a>
193
193
  user_mentioned:
194
194
  email_intro: Has sido mencionado
195
195
  email_outro: Has recibido esta notificación porque has sido mencionado en %{resource_title}.
196
196
  email_subject: Has sido mencionado en %{resource_title}
197
- notification_title: Has sido mencionado en <a href="%{resource_path}">%{resource_title}</a> por <a href="%{author_path}">%{author_name} %{author_nickname}</a>
197
+ notification_title: Has sido mencionada por <a href="%{author_path}">%{author_name}</a> en <a href="%{resource_path}">%{resource_title}</a>
198
198
  errors:
199
199
  messages:
200
200
  cannot_have_comments: no se pueden hacer comentarios
@@ -169,12 +169,12 @@ es:
169
169
  email_intro: "%{author_name} ha dejado un comentario en %{resource_title}. Puedes leerlo en esta página:"
170
170
  email_outro: Has recibido esta notificación porque sigues a "%{author_name}". Puedes dejar de seguir a esta participante desde su página de perfil.
171
171
  email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
172
- notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>.
172
+ notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name}</a> en <a href="%{resource_path}">%{resource_title}</a>.
173
173
  comment_created:
174
174
  email_intro: "Alguien ha dejado un comentario en \"%{resource_title}\". Puedes leer el comentario a través del siguiente enlace:"
175
175
  email_outro: Has recibido esta notificación porque estás siguiendo el comentario "%{resource_title}" o a su autora. Puedes dejar de seguirla desde el enlace anterior.
176
176
  email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
177
- notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>
177
+ notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name}</a> en <a href="%{resource_path}">%{resource_title}</a>
178
178
  comment_downvoted:
179
179
  email_intro: Tu comentario en "%{resource_title}" ha sido votado negativamente. Ahora tiene un total de %{upvotes} votos positivos y %{downvotes} votos negativos.
180
180
  email_outro: Has recibido esta notificación porque hiciste este comentario.
@@ -189,12 +189,12 @@ es:
189
189
  email_intro: "%{author_name} ha respondido a tu comentario en %{resource_title}. Puedes leerlo en esta página:"
190
190
  email_outro: Has recibido esta notificación porque han respondido a tu comentario.
191
191
  email_subject: "%{author_name} ha respondido a tu comentario en %{resource_title}"
192
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> ha respondido a tu comentario en <a href="%{resource_path}">%{resource_title}</a>
192
+ notification_title: <a href="%{author_path}">%{author_name}</a> ha respondido a tu comentario en <a href="%{resource_path}">%{resource_title}</a>
193
193
  user_mentioned:
194
194
  email_intro: Has sido mencionada
195
195
  email_outro: Has recibido esta notificación porque te han mencionado en el comentario "%{resource_title}".
196
196
  email_subject: Has sido mencionada en %{resource_title}
197
- notification_title: Has sido mencionada en <a href="%{resource_path}">%{resource_title}</a> por <a href="%{author_path}">%{author_name} %{author_nickname}</a>
197
+ notification_title: Has sido mencionada por <a href="%{author_path}">%{author_name}</a> en <a href="%{resource_path}">%{resource_title}</a>
198
198
  errors:
199
199
  messages:
200
200
  cannot_have_comments: no se pueden hacer comentarios
@@ -169,12 +169,12 @@ eu:
169
169
  email_intro: "%{author_name} egileak iruzkin bat utzi du %{resource_title} helbidean. Orri honetan irakur dezakezu:"
170
170
  email_outro: Jakinarazpen hau jaso duzu %{author_name} parte-hartzailea jarraitzen duzulako. Nahi izatekotan erabiltzaile hori bere profil-orritik jarraitzeari utz diezaiokezu.
171
171
  email_subject: '%{author_name} egileak beste iruzkin bat egin du hemen: %{resource_title}'
172
- notification_title: '<a href="%{author_path}">%{author_name} %{author_nickname}</a> parte-hartzaileak iruzkin berri bat egin du hemen: <a href="%{resource_path}">%{resource_title}</a>.'
172
+ notification_title: '<a href="%{author_path}">%{author_name}</a> egileak beste iruzkin bat egin du hemen: <a href="%{resource_path}">%{resource_title}</a>.'
173
173
  comment_created:
174
174
  email_intro: "Norbaitek iruzkin bat egin du hemen: %{resource_title}. Orri honetan irakur dezakezu:"
175
175
  email_outro: Jakinarazpen hau jaso duzu "%{resource_title}" edo bere egilea jarraitzen duzulako. Aurreko estekan jarrai dezakezu.
176
176
  email_subject: '%{author_name} egileak beste iruzkin berri bat egin du hemen: %{resource_title}'
177
- notification_title: '<a href="%{author_path}">%{author_name} %{author_nickname}</a> parte-hartzaileak iruzkin berri bat egin du hemen: <a href="%{resource_path}">%{resource_title}</a>'
177
+ notification_title: '<a href="%{author_path}">%{author_name}</a> egileak beste iruzkin bat egin du hemen: <a href="%{resource_path}">%{resource_title}</a>'
178
178
  comment_downvoted:
179
179
  email_intro: Zure iruzkina hemen "%{resource_title}" negatiboki bozkatu da. Orain %{upvotes} babes positibo eta %{downvotes} boto negatibo dituzu guztira.
180
180
  email_outro: Jakinarazpen hau jaso duzu iruzkin honen egilea zarelako.
@@ -189,12 +189,12 @@ eu:
189
189
  email_intro: "%{author_name} egileak zure iruzkina erantzun du hemen: %{resource_title}. Orri honetan irakur dezakezu:"
190
190
  email_outro: Jakinarazpen hau jaso duzu zure iruzkinak erantzuna izan duelako.
191
191
  email_subject: "%{author_name} parte-hartzaileak zure iruzkina erantzun du hemen: %{resource_title}"
192
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> -k zure iruzkinari erantzun dio hemen <a href="%{resource_path}">%{resource_title}</a>
192
+ notification_title: '<a href="%{author_path}">%{author_name}</a> parte-hartzaileak zure iruzkina erantzun du hemen: <a href="%{resource_path}">%{resource_title}</a>'
193
193
  user_mentioned:
194
194
  email_intro: Aipatu zaituzte
195
195
  email_outro: 'Jakinarazpen hau jaso duzu hemen aipatu zaituztelako: %{resource_title}.'
196
196
  email_subject: 'Hemen: %{resource_title} aipatu zaituzte'
197
- notification_title: 'Hemen: <a href="%{group_path}">%{group_name} %{group_nickname}</a> egile honek: <a href="%{author_path}">%{author_name} %{author_nickname}</a> aipatu zaitu'
197
+ notification_title: '<a href="%{author_path}">%{author_name}</a> parte-hartzaileak aipatu zaitu hemen: <a href="%{resource_path}">%{resource_title}</a>'
198
198
  errors:
199
199
  messages:
200
200
  cannot_have_comments: ezin zaio iruzkinik egin
@@ -169,12 +169,12 @@ fi-pl:
169
169
  email_intro: "%{author_name} on jättänyt kommentin %{resource_title}. Voit lukea sen tällä sivulla:"
170
170
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat %{author_name}. Voit perua seuraamisen kyseisen käyttäjän profiilisivulta.
171
171
  email_subject: '%{author_name} on jättänyt uuden kommentin kohtaan %{resource_title}'
172
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on jättänyt uuden kommentin kohtaan <a href="%{resource_path}">%{resource_title}</a>.
172
+ notification_title: Uusi kommentti osallistujalta <a href="%{author_path}">%{author_name}</a> kohteeseen <a href="%{resource_path}">%{resource_title}</a>.
173
173
  comment_created:
174
174
  email_intro: "%{resource_title} on kommentoitu. Voit lukea kommentin tällä sivulla:"
175
175
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat "%{resource_title}" tai sen kirjoittajaa. Voit lopettaa seuraamisen edellä esitetyn linkin kautta.
176
176
  email_subject: '%{author_name} on jättänyt uuden kommentin kohtaan %{resource_title}'
177
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a>on jättänyt uuden kommentin kohtaan <a href="%{resource_path}">%{resource_title}</a>
177
+ notification_title: Uusi kommentti osallistujalta <a href="%{author_path}">%{author_name}</a> kohteeseen <a href="%{resource_path}">%{resource_title}</a>
178
178
  comment_downvoted:
179
179
  email_intro: Kommenttisi kohteessa "%{resource_title}" sai miinusäänen. Sillä on yhteensä %{upvotes} ääntä ja %{downvotes} miinusääntä.
180
180
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet jättänyt tämän kommentin.
@@ -189,12 +189,12 @@ fi-pl:
189
189
  email_intro: "%{author_name} on vastannut kommentiisi kohdassa %{resource_title}. Voit lukea sen tällä sivulla:"
190
190
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska kommenttiisi vastattiin.
191
191
  email_subject: "%{author_name} on vastannut kommentiisi %{resource_title}"
192
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on vastannut kommentiisi kohdassa <a href="%{resource_path}">%{resource_title}</a>
192
+ notification_title: <a href="%{author_path}">%{author_name}</a> vastasi kommenttiisi kohteessa <a href="%{resource_path}">%{resource_title}</a>
193
193
  user_mentioned:
194
194
  email_intro: Sinut on mainittu
195
195
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska sinut on mainittu kohdssa %{resource_title}.
196
196
  email_subject: Sinut on mainittu kohdassa %{resource_title}
197
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on maininnut sinut kohdassa <a href="%{resource_path}">%{resource_title}</a>
197
+ notification_title: <a href="%{author_path}">%{author_name} </a> on maininnut sinut kohteessa <a href="%{resource_path}">%{resource_title}</a>
198
198
  errors:
199
199
  messages:
200
200
  cannot_have_comments: ei voi sisältää kommentteja
@@ -169,12 +169,12 @@ fi:
169
169
  email_intro: "%{author_name} on jättänyt kommentin kohteessa %{resource_title}. Voit lukea sen sivulta:"
170
170
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat osallistujaa %{author_name}. Voit perua seuraamisen kyseisen osallistujan profiilisivulta.
171
171
  email_subject: '%{author_name} on jättänyt uuden kommentin kohteessa %{resource_title}'
172
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on jättänyt uuden kommentin kohteessa <a href="%{resource_path}">%{resource_title}</a>.
172
+ notification_title: Uusi kommentti osallistujalta <a href="%{author_path}">%{author_name}</a> kohteeseen <a href="%{resource_path}">%{resource_title}</a>.
173
173
  comment_created:
174
174
  email_intro: "%{resource_title} on kommentoitu. Voit lukea kommentin sivulta:"
175
175
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat "%{resource_title}" tai sen kirjoittajaa. Voit lopettaa seuraamisen edellä esitetyn linkin kautta.
176
176
  email_subject: '%{author_name} on jättänyt uuden kommentin kohteessa %{resource_title}'
177
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a>on jättänyt uuden kommentin kohteessa <a href="%{resource_path}">%{resource_title}</a>
177
+ notification_title: Uusi kommentti osallistujalta <a href="%{author_path}">%{author_name}</a> kohteeseen <a href="%{resource_path}">%{resource_title}</a>
178
178
  comment_downvoted:
179
179
  email_intro: Kommenttisi kohteessa "%{resource_title}" sai miinusäänen. Sillä on yhteensä %{upvotes} ääntä ja %{downvotes} miinusääntä.
180
180
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet jättänyt tämän kommentin.
@@ -189,12 +189,12 @@ fi:
189
189
  email_intro: "%{author_name} on vastannut kommentiisi kohdassa %{resource_title}. Voit lukea sen sivulta:"
190
190
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska kommenttiisi vastattiin.
191
191
  email_subject: "%{author_name} on vastannut kommentiisi %{resource_title}"
192
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on vastannut kommentiisi kohteessa <a href="%{resource_path}">%{resource_title}</a>
192
+ notification_title: <a href="%{author_path}">%{author_name}</a> vastasi kommenttiisi kohteessa <a href="%{resource_path}">%{resource_title}</a>
193
193
  user_mentioned:
194
194
  email_intro: Sinut on mainittu
195
195
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska sinut on mainittu kohteessa %{resource_title}.
196
196
  email_subject: Sinut on mainittu kohdassa %{resource_title}
197
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on maininnut sinut kohteessa <a href="%{resource_path}">%{resource_title}</a>
197
+ notification_title: <a href="%{author_path}">%{author_name} </a> on maininnut sinut kohteessa <a href="%{resource_path}">%{resource_title}</a>
198
198
  errors:
199
199
  messages:
200
200
  cannot_have_comments: ei voi sisältää kommentteja
@@ -160,12 +160,10 @@ fr-CA:
160
160
  email_intro: "%{author_name} a laissé un commentaire dans %{resource_title}. Vous pouvez le lire sur la page suivante :"
161
161
  email_outro: Vous avez reçu cette notification, car vous suivez %{author_name}. Vous pouvez vous désabonner de cet utilisateur depuis sa page de profil.
162
162
  email_subject: Un nouveau commentaire vient d'être déposé par %{author_name} dans %{resource_title}
163
- notification_title: Un nouveau commentaire a été publié par <a href="%{author_path}">%{author_name} %{author_nickname}</a> dans <a href="%{resource_path}">%{resource_title}</a>.
164
163
  comment_created:
165
164
  email_intro: "%{resource_title} a été commenté. Vous pouvez lire le commentaire sur cette page :"
166
165
  email_outro: Vous venez de recevoir cette notification parce que vous suivez "%{resource_title}" ou son auteur. Vous pouvez vous désabonner à partir du lien précédant.
167
166
  email_subject: Un nouveau commentaire vient d'être publié par %{author_name} dans %{resource_title}
168
- notification_title: Un nouveau commentaire de <a href="%{author_path}">%{author_name} %{author_nickname}</a> vient d'être publié dans <a href="%{resource_path}">%{resource_title}</a>
169
167
  comment_downvoted:
170
168
  email_intro: Votre commentaire sur "%{resource_title}" a reçu un vote défavorable. Il a maintenant un total de %{upvotes} votes positifs et %{downvotes} votes négatifs.
171
169
  email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de ce commentaire.
@@ -180,12 +178,10 @@ fr-CA:
180
178
  email_intro: "%{author_name} a répondu à votre commentaire dans %{resource_title}. Vous pouvez le lire depuis la page suivante :"
181
179
  email_outro: Vous venez de recevoir une notification à votre commentaire.
182
180
  email_subject: "%{author_name} a répondu à votre commentaire dans %{resource_title}"
183
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> a réagi à votre commentaire sur <a href="%{resource_path}">%{resource_title}</a>
184
181
  user_mentioned:
185
182
  email_intro: Vous avez été mentionné
186
183
  email_outro: Vous avez reçu cette notification parce que vous avez été mentionné dans %{resource_title}.
187
184
  email_subject: Vous avez été mentionné dans %{resource_title}
188
- notification_title: Vous avez été mentionné dans <a href="%{resource_path}">%{resource_title}</a> par <a href="%{author_path}">%{author_name} %{author_nickname}</a>
189
185
  errors:
190
186
  messages:
191
187
  cannot_have_comments: ne peut pas avoir de commentaires
@@ -160,12 +160,10 @@ fr:
160
160
  email_intro: "%{author_name} a laissé un commentaire dans %{resource_title}. Vous pouvez le lire sur la page suivante :"
161
161
  email_outro: Vous avez reçu cette notification, car vous suivez %{author_name}. Vous pouvez vous désabonner de cet utilisateur depuis sa page de profil, ou bien vous rendre dans l'onglet “Mon compte” > “Paramètres des notifications”.
162
162
  email_subject: Un nouveau commentaire vient d'être déposé par %{author_name} dans %{resource_title}
163
- notification_title: Un nouveau commentaire a été publié par <a href="%{author_path}">%{author_name} %{author_nickname}</a> dans <a href="%{resource_path}">%{resource_title}</a>.
164
163
  comment_created:
165
164
  email_intro: "%{resource_title} a été commenté. Vous pouvez lire le commentaire sur cette page :"
166
165
  email_outro: Vous venez de recevoir cette notification parce que vous suivez "%{resource_title}" ou son auteur. Si vous souhaitez vous désabonner des notifications, connectez-vous à la plateforme, puis rendez-vous dans l'onglet “Mon compte” > “Paramètres des notifications”.
167
166
  email_subject: Un nouveau commentaire vient d'être publié par %{author_name} dans %{resource_title}
168
- notification_title: Un nouveau commentaire de <a href="%{author_path}">%{author_name} %{author_nickname}</a> vient d'être publié dans <a href="%{resource_path}">%{resource_title}</a>
169
167
  comment_downvoted:
170
168
  email_intro: Votre commentaire sur "%{resource_title}" a reçu un vote défavorable. Il a maintenant un total de %{upvotes} votes positifs et %{downvotes} votes négatifs.
171
169
  email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de ce commentaire. Si vous souhaitez vous désabonner des notifications, connectez-vous à la plateforme, puis rendez-vous dans l'onglet “Mon compte” > “Paramètres des notifications”.
@@ -180,12 +178,10 @@ fr:
180
178
  email_intro: "%{author_name} a répondu à votre commentaire dans %{resource_title}. Vous pouvez le lire depuis la page suivante :"
181
179
  email_outro: Vous avez reçu cette notification parce que votre commentaire a reçu une réponse. Si vous souhaitez vous désabonner des notifications, connectez-vous à la plateforme, puis rendez-vous dans l'onglet “Mon compte” > “Paramètres des notifications”.
182
180
  email_subject: "%{author_name} a répondu à votre commentaire dans %{resource_title}"
183
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> a réagi à votre commentaire sur <a href="%{resource_path}">%{resource_title}</a>
184
181
  user_mentioned:
185
182
  email_intro: Vous avez été mentionné
186
183
  email_outro: Vous avez reçu cette notification parce que vous avez été mentionné dans %{resource_title}. Si vous souhaitez vous désabonner des notifications, connectez-vous à la plateforme, puis rendez-vous dans l'onglet “Mon compte” > “Paramètres des notifications”.
187
184
  email_subject: Vous avez été mentionné dans %{resource_title}
188
- notification_title: Vous avez été mentionné dans <a href="%{resource_path}">%{resource_title}</a> par <a href="%{author_path}">%{author_name} %{author_nickname}</a>
189
185
  errors:
190
186
  messages:
191
187
  cannot_have_comments: ne peut pas avoir de commentaires