decidim-comments 0.31.6 → 0.31.7

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 47a6931a2765bd42e7aeee4ae9510abbe50921284d4bce71ef82839eb7ab1267
4
- data.tar.gz: 1f5b3fce5fa4468b472c5c54334a0540804380df8367669057cabe27102b2aad
3
+ metadata.gz: 9ef4324547a6ac84299c5cdd0cb0756f68053150a3659ca90fb2ada241a7c2f7
4
+ data.tar.gz: ab8742a0688abcf1b3169def06175e76ce104d5abd3c39576f10d3cfae0cd14f
5
5
  SHA512:
6
- metadata.gz: c0325595a7cd3e26dff2f8fb1a009816e45b3fbab10ec396ee7db8633a8586e44205627601c540153152d823735e692b82ad14223ff63d7b4a24ddaca5e59f26
7
- data.tar.gz: df779b790cb424253bc6395b5a134e35e612bfd8562162343443495f0aa12bc7c47ecc9c059a06fa3c09fe8c35d2440c10ba4d9add5141fb838ab039a725f75c
6
+ metadata.gz: 57a3d57fb15a230c72b20958d5c8049b37340fea9acc02185312f8f1acd9183676a74c6015514e76756adf36d4ed77e54d24f864eff4bd0fe4c2f4f744c59def
7
+ data.tar.gz: 7bb94666799b1ad8d3c4e1e130bc333a1f291785930114d004fc11a9d0581005627c58905a4f6cd41e78ef03ca6e87dadd6aa4d61207204bf91b8fb19964a837
@@ -3,6 +3,10 @@
3
3
 
4
4
  var $comments = $("#" + rootCommentableId);
5
5
  var component = $comments.data("comments");
6
+
7
+ // Save the focused element id to restore focus after reload
8
+ var activeElementId = document.activeElement ? document.activeElement.id : null;
9
+
6
10
  component.unmountComponent();
7
11
 
8
12
  var commentsHtml = '<%== j(inline_comments_for(commentable, order:).inline).strip %>';
@@ -16,4 +20,12 @@
16
20
  // Update the comments count
17
21
  $(".comments-count", $comments).text(<%== t("decidim.components.comments.title", count: @comments_count).to_json %>);
18
22
 
23
+ // Restore focus to the previously focused element if it still exists
24
+ if (activeElementId) {
25
+ var newActiveElement = document.getElementById(activeElementId);
26
+ if (newActiveElement) {
27
+ newActiveElement.focus();
28
+ }
29
+ }
30
+
19
31
  }());
@@ -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: не може да има коментари
@@ -166,12 +166,12 @@ ca-IT:
166
166
  email_intro: "%{author_name} ha deixat un comentari a %{resource_title}. Podeu llegir-lo en aquesta pàgina:"
167
167
  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.
168
168
  email_subject: Hi ha un nou comentari de %{author_name} en %{resource_title}
169
- 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>.
169
+ notification_title: Hi ha un nou comentari de <a href="%{author_path}">%{author_name}</a> a<a href="%{resource_path}">%{resource_title}</a>.
170
170
  comment_created:
171
171
  email_intro: "Algú ha deixat un comentari a \"%{resource_title}\". Pots llegir el comentari a través del següent enllaç:"
172
172
  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.
173
173
  email_subject: Hi ha un nou comentari de %{author_name} a %{resource_title}
174
- 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>
174
+ notification_title: Hi ha un nou comentari de <a href="%{author_path}">%{author_name}</a> a<a href="%{resource_path}">%{resource_title}</a>
175
175
  comment_downvoted:
176
176
  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.
177
177
  email_outro: Has rebut aquesta notificació perquè vas fer aquest comentari.
@@ -186,12 +186,12 @@ ca-IT:
186
186
  email_intro: "%{author_name} ha respost el teu comentari a %{resource_title}. Pots llegir-lo en aquesta pàgina:"
187
187
  email_outro: Has rebut aquesta notificació perquè s'ha respost el teu comentari.
188
188
  email_subject: "%{author_name} ha respost el teu comentari a %{resource_title}"
189
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> ha respost el teu comentari a <a href="%{resource_path}">%{resource_title}</a>
189
+ notification_title: <a href="%{author_path}">%{author_name}</a> ha respost el teu comentari a <a href="%{resource_path}">%{resource_title}</a>
190
190
  user_mentioned:
191
191
  email_intro: Has estat esmentada
192
192
  email_outro: Has rebut aquesta notificació perquè t'han esmentat al comentari "%{resource_title}".
193
193
  email_subject: Has estat esmentada a %{resource_title}
194
- notification_title: Has estat esmentada a <a href="%{resource_path}">%{resource_title}</a> per <a href="%{author_path}">%{author_name} %{author_nickname}</a>
194
+ notification_title: Has estat esmentada per <a href="%{author_path}">%{author_name}</a> a <a href="%{resource_path}">%{resource_title}</a>
195
195
  errors:
196
196
  messages:
197
197
  cannot_have_comments: no es poden fer comentaris
@@ -166,12 +166,12 @@ ca:
166
166
  email_intro: "%{author_name} ha deixat un comentari a %{resource_title}. Podeu llegir-lo en aquesta pàgina:"
167
167
  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.
168
168
  email_subject: Hi ha un nou comentari de %{author_name} en %{resource_title}
169
- 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>.
169
+ notification_title: Hi ha un nou comentari de <a href="%{author_path}">%{author_name}</a> a<a href="%{resource_path}">%{resource_title}</a>.
170
170
  comment_created:
171
171
  email_intro: "Algú ha deixat un comentari a \"%{resource_title}\". Pots llegir el comentari a través del següent enllaç:"
172
172
  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.
173
173
  email_subject: Hi ha un nou comentari de %{author_name} a %{resource_title}
174
- 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>
174
+ notification_title: Hi ha un nou comentari de <a href="%{author_path}">%{author_name}</a> a<a href="%{resource_path}">%{resource_title}</a>
175
175
  comment_downvoted:
176
176
  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.
177
177
  email_outro: Has rebut aquesta notificació perquè vas fer aquest comentari.
@@ -186,12 +186,12 @@ ca:
186
186
  email_intro: "%{author_name} ha respost el teu comentari a %{resource_title}. Pots llegir-lo en aquesta pàgina:"
187
187
  email_outro: Has rebut aquesta notificació perquè s'ha respost el teu comentari.
188
188
  email_subject: "%{author_name} ha respost el teu comentari a %{resource_title}"
189
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> ha respost el teu comentari a <a href="%{resource_path}">%{resource_title}</a>
189
+ notification_title: <a href="%{author_path}">%{author_name}</a> ha respost el teu comentari a <a href="%{resource_path}">%{resource_title}</a>
190
190
  user_mentioned:
191
191
  email_intro: Has estat esmentada
192
192
  email_outro: Has rebut aquesta notificació perquè t'han esmentat al comentari "%{resource_title}".
193
193
  email_subject: Has estat esmentada a %{resource_title}
194
- notification_title: Has estat esmentada a <a href="%{resource_path}">%{resource_title}</a> per <a href="%{author_path}">%{author_name} %{author_nickname}</a>
194
+ notification_title: Has estat esmentada per <a href="%{author_path}">%{author_name}</a> a <a href="%{resource_path}">%{resource_title}</a>
195
195
  errors:
196
196
  messages:
197
197
  cannot_have_comments: no es poden fer comentaris
@@ -172,12 +172,12 @@ cs:
172
172
  email_intro: "%{author_name} zanechal komentář v %{resource_title}. Můžete si je přečíst na této stránce:"
173
173
  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.
174
174
  email_subject: K dispozici je nový komentář %{author_name} v %{resource_title}
175
- notification_title: Je tu nový komentář <a href="%{author_path}">%{author_name} %{author_nickname}</a> v <a href="%{resource_path}">%{resource_title}</a>.
175
+ notification_title: Nový komentář od <a href="%{author_path}">%{author_name}</a> v <a href="%{resource_path}">%{resource_title}</a>.
176
176
  comment_created:
177
177
  email_intro: "%{resource_title} bylo komentováno. Můžete si přečíst komentář na této stránce:"
178
178
  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.
179
179
  email_subject: K dispozici je nový komentář od %{author_name} do %{resource_title}
180
- notification_title: Je tu nový komentář od <a href="%{author_path}">%{author_name} %{author_nickname}</a> do <a href="%{resource_path}">%{resource_title}</a>
180
+ notification_title: Nový komentář od <a href="%{author_path}">%{author_name}</a> v <a href="%{resource_path}">%{resource_title}</a>
181
181
  comment_downvoted:
182
182
  email_intro: Váš komentář v "%{resource_title}" byl nepodpořen. Nyní má celkem %{upvotes} hlasů podpory a %{downvotes} hlasuje proti.
183
183
  email_outro: Obdrželi jste toto oznámení, protože jste autorem tohoto komentáře.
@@ -192,12 +192,10 @@ cs:
192
192
  email_intro: "%{author_name} odpověděl váš komentář v %{resource_title}. Můžete si je přečíst na této stránce:"
193
193
  email_outro: Toto oznámení jste obdrželi, protože váš komentář byl zodpovězen.
194
194
  email_subject: "%{author_name} odpověděl váš komentář v %{resource_title}"
195
- 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>
196
195
  user_mentioned:
197
196
  email_intro: Byl jste zmíněn
198
197
  email_outro: Toto oznámení jste obdrželi, protože jste byli uvedeni v %{resource_title}.
199
198
  email_subject: Byl jste zmíněn v %{resource_title}
200
- 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>
201
199
  errors:
202
200
  messages:
203
201
  cannot_have_comments: nelze komentovat
@@ -166,12 +166,10 @@ de:
166
166
  email_intro: "%{author_name} hat einen Kommentar zu %{resource_title} hinterlassen. Sie können diesen auf dieser Seite lesen:"
167
167
  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.
168
168
  email_subject: Neuer Kommentar von %{author_name} zu %{resource_title}
169
- 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>.
170
169
  comment_created:
171
170
  email_intro: "%{resource_title} wurde kommentiert. Sie können den Kommentar auf dieser Seite lesen:"
172
171
  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.
173
172
  email_subject: Neuer Kommentar von %{author_name} zu %{resource_title}
174
- 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>
175
173
  comment_downvoted:
176
174
  email_intro: Ihr Kommentar in "%{resource_title}" wurde negativ bewertet. Er hat nun insgesamt %{upvotes} positive und %{downvotes} negative Stimmen.
177
175
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie der Autor des Vorschlags sind.
@@ -186,12 +184,10 @@ de:
186
184
  email_intro: "%{author_name} hat auf Ihren Kommentar zu %{resource_title} geantwortet. Sie können das auf dieser Seite lesen:"
187
185
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Ihr Kommentar beantwortet wurde.
188
186
  email_subject: "%{author_name} hat auf Ihren Kommentar zu %{resource_title} geantwortet"
189
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> hat auf Ihren Kommentar in <a href="%{resource_path}">%{resource_title}</a> geantwortet
190
187
  user_mentioned:
191
188
  email_intro: Sie wurden erwähnt
192
189
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie in %{resource_title} erwähnt wurden.
193
190
  email_subject: Sie wurden in %{resource_title} erwähnt
194
- notification_title: Sie wurden in <a href="%{resource_path}">%{resource_title}</a> von <a href="%{author_path}">%{author_name} %{author_nickname}</a> erwähnt
195
191
  errors:
196
192
  messages:
197
193
  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: δεν μπορεί να έχει σχόλια
@@ -166,12 +166,12 @@ en:
166
166
  email_intro: "%{author_name} has left a comment in %{resource_title}. You can read it in this page:"
167
167
  email_outro: You have received this notification because you are following %{author_name}. You can unfollow this user from their profile page.
168
168
  email_subject: There is a new comment by %{author_name} in %{resource_title}
169
- 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>.
169
+ notification_title: There is a new comment by <a href="%{author_path}">%{author_name}</a> in <a href="%{resource_path}">%{resource_title}</a>.
170
170
  comment_created:
171
171
  email_intro: "%{resource_title} has been commented. You can read the comment in this page:"
172
172
  email_outro: You have received this notification because you are following "%{resource_title}" or its author. You can unfollow it from the previous link.
173
173
  email_subject: There is a new comment from %{author_name} in %{resource_title}
174
- 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>
174
+ notification_title: There is a new comment from <a href="%{author_path}">%{author_name}</a> in <a href="%{resource_path}">%{resource_title}</a>
175
175
  comment_downvoted:
176
176
  email_intro: Your comment in "%{resource_title}" has been downvoted. It now has a total of %{upvotes} upvotes and %{downvotes} downvotes.
177
177
  email_outro: You have received this notification because you are the author of this comment.
@@ -186,12 +186,12 @@ en:
186
186
  email_intro: "%{author_name} has replied your comment in %{resource_title}. You can read it in this page:"
187
187
  email_outro: You have received this notification because your comment was replied.
188
188
  email_subject: "%{author_name} has replied your comment in %{resource_title}"
189
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> has replied your comment in <a href="%{resource_path}">%{resource_title}</a>
189
+ notification_title: <a href="%{author_path}">%{author_name}</a> has replied your comment in <a href="%{resource_path}">%{resource_title}</a>
190
190
  user_mentioned:
191
191
  email_intro: You have been mentioned
192
192
  email_outro: You have received this notification because you have been mentioned in %{resource_title}.
193
193
  email_subject: You have been mentioned in %{resource_title}
194
- notification_title: You have been mentioned in <a href="%{resource_path}">%{resource_title}</a> by <a href="%{author_path}">%{author_name} %{author_nickname}</a>
194
+ notification_title: You have been mentioned in <a href="%{resource_path}">%{resource_title}</a> by <a href="%{author_path}">%{author_name}</a>
195
195
  errors:
196
196
  messages:
197
197
  cannot_have_comments: cannot have comments
@@ -166,12 +166,12 @@ es-MX:
166
166
  email_intro: "%{author_name} ha dejado un comentario en %{resource_title}. Puedes leerlo en esta página:"
167
167
  email_outro: Has recibido esta notificación porque sigues "%{author_name}". Puedes dejar de seguirlo desde el enlace anterior.
168
168
  email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
169
- notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>.
169
+ notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name}</a> en <a href="%{resource_path}">%{resource_title}</a>.
170
170
  comment_created:
171
171
  email_intro: "%{resource_title} ha sido comentado. Puedes leer el comentario en esta página:"
172
172
  email_outro: Has recibido esta notificación porque está siguiendo "%{resource_title}" o su autor. Puedes dejar de seguirlo desde el enlace anterior.
173
173
  email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
174
- notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>
174
+ notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name}</a> en <a href="%{resource_path}">%{resource_title}</a>
175
175
  comment_downvoted:
176
176
  email_intro: Tu comentario en "%{resource_title}" ha sido votado negativamente. Ahora tiene un total de %{upvotes} votos positivos y %{downvotes} votos negativos.
177
177
  email_outro: Has recibido esta notificación porque eres la autora de este comentario.
@@ -186,12 +186,12 @@ es-MX:
186
186
  email_intro: "%{author_name} ha respondido a tu comentario en %{resource_title}. Puedes leerlo en esta página:"
187
187
  email_outro: Has recibido esta notificación porque tu comentario fue respondido.
188
188
  email_subject: "%{author_name} ha respondido a tu comentario en %{resource_title}"
189
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> ha respondido a tu comentario en <a href="%{resource_path}">%{resource_title}</a>
189
+ notification_title: <a href="%{author_path}">%{author_name}</a> ha respondido a tu comentario en <a href="%{resource_path}">%{resource_title}</a>
190
190
  user_mentioned:
191
191
  email_intro: Has sido mencionado
192
192
  email_outro: Has recibido esta notificación porque has sido mencionado en %{resource_title}.
193
193
  email_subject: Has sido mencionado en %{resource_title}
194
- notification_title: Has sido mencionado en <a href="%{resource_path}">%{resource_title}</a> por <a href="%{author_path}">%{author_name} %{author_nickname}</a>
194
+ notification_title: Has sido mencionada por <a href="%{author_path}">%{author_name}</a> en <a href="%{resource_path}">%{resource_title}</a>
195
195
  errors:
196
196
  messages:
197
197
  cannot_have_comments: no se pueden hacer comentarios
@@ -166,12 +166,12 @@ es-PY:
166
166
  email_intro: "%{author_name} ha dejado un comentario en %{resource_title}. Puedes leerlo en esta página:"
167
167
  email_outro: Has recibido esta notificación porque sigues "%{author_name}". Puedes dejar de seguirlo desde el enlace anterior.
168
168
  email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
169
- notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>.
169
+ notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name}</a> en <a href="%{resource_path}">%{resource_title}</a>.
170
170
  comment_created:
171
171
  email_intro: "%{resource_title} ha sido comentado. Puedes leer el comentario en esta página:"
172
172
  email_outro: Has recibido esta notificación porque está siguiendo "%{resource_title}" o su autor. Puedes dejar de seguirlo desde el enlace anterior.
173
173
  email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
174
- notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>
174
+ notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name}</a> en <a href="%{resource_path}">%{resource_title}</a>
175
175
  comment_downvoted:
176
176
  email_intro: Tu comentario en "%{resource_title}" ha sido votado negativamente. Ahora tiene un total de %{upvotes} votos positivos y %{downvotes} votos negativos.
177
177
  email_outro: Has recibido esta notificación porque eres la autora de este comentario.
@@ -186,12 +186,12 @@ es-PY:
186
186
  email_intro: "%{author_name} ha respondido a tu comentario en %{resource_title}. Puedes leerlo en esta página:"
187
187
  email_outro: Has recibido esta notificación porque tu comentario fue respondido.
188
188
  email_subject: "%{author_name} ha respondido a tu comentario en %{resource_title}"
189
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> ha respondido a tu comentario en <a href="%{resource_path}">%{resource_title}</a>
189
+ notification_title: <a href="%{author_path}">%{author_name}</a> ha respondido a tu comentario en <a href="%{resource_path}">%{resource_title}</a>
190
190
  user_mentioned:
191
191
  email_intro: Has sido mencionado
192
192
  email_outro: Has recibido esta notificación porque has sido mencionado en %{resource_title}.
193
193
  email_subject: Has sido mencionado en %{resource_title}
194
- notification_title: Has sido mencionado en <a href="%{resource_path}">%{resource_title}</a> por <a href="%{author_path}">%{author_name} %{author_nickname}</a>
194
+ notification_title: Has sido mencionada por <a href="%{author_path}">%{author_name}</a> en <a href="%{resource_path}">%{resource_title}</a>
195
195
  errors:
196
196
  messages:
197
197
  cannot_have_comments: no se pueden hacer comentarios
@@ -166,12 +166,12 @@ es:
166
166
  email_intro: "%{author_name} ha dejado un comentario en %{resource_title}. Puedes leerlo en esta página:"
167
167
  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.
168
168
  email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
169
- notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>.
169
+ notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name}</a> en <a href="%{resource_path}">%{resource_title}</a>.
170
170
  comment_created:
171
171
  email_intro: "Alguien ha dejado un comentario en \"%{resource_title}\". Puedes leer el comentario a través del siguiente enlace:"
172
172
  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.
173
173
  email_subject: Hay un nuevo comentario de %{author_name} en %{resource_title}
174
- notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>
174
+ notification_title: Hay un nuevo comentario de <a href="%{author_path}">%{author_name}</a> en <a href="%{resource_path}">%{resource_title}</a>
175
175
  comment_downvoted:
176
176
  email_intro: Tu comentario en "%{resource_title}" ha sido votado negativamente. Ahora tiene un total de %{upvotes} votos positivos y %{downvotes} votos negativos.
177
177
  email_outro: Has recibido esta notificación porque hiciste este comentario.
@@ -186,12 +186,12 @@ es:
186
186
  email_intro: "%{author_name} ha respondido a tu comentario en %{resource_title}. Puedes leerlo en esta página:"
187
187
  email_outro: Has recibido esta notificación porque han respondido a tu comentario.
188
188
  email_subject: "%{author_name} ha respondido a tu comentario en %{resource_title}"
189
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> ha respondido a tu comentario en <a href="%{resource_path}">%{resource_title}</a>
189
+ notification_title: <a href="%{author_path}">%{author_name}</a> ha respondido a tu comentario en <a href="%{resource_path}">%{resource_title}</a>
190
190
  user_mentioned:
191
191
  email_intro: Has sido mencionada
192
192
  email_outro: Has recibido esta notificación porque te han mencionado en el comentario "%{resource_title}".
193
193
  email_subject: Has sido mencionada en %{resource_title}
194
- notification_title: Has sido mencionada en <a href="%{resource_path}">%{resource_title}</a> por <a href="%{author_path}">%{author_name} %{author_nickname}</a>
194
+ notification_title: Has sido mencionada por <a href="%{author_path}">%{author_name}</a> en <a href="%{resource_path}">%{resource_title}</a>
195
195
  errors:
196
196
  messages:
197
197
  cannot_have_comments: no se pueden hacer comentarios
@@ -166,12 +166,12 @@ eu:
166
166
  email_intro: "%{author_name} egileak iruzkin bat utzi du %{resource_title} helbidean. Orri honetan irakur dezakezu:"
167
167
  email_outro: Jakinarazpen hau jaso duzu %{author_name} parte-hartzailea jarraitzen duzulako. Nahi izatekotan erabiltzaile hori bere profil-orritik jarraitzeari utz diezaiokezu.
168
168
  email_subject: '%{author_name} egileak beste iruzkin bat egin du hemen: %{resource_title}'
169
- 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>.'
169
+ notification_title: '<a href="%{author_path}">%{author_name}</a> egileak beste iruzkin bat egin du hemen: <a href="%{resource_path}">%{resource_title}</a>.'
170
170
  comment_created:
171
171
  email_intro: "Norbaitek iruzkin bat egin du hemen: %{resource_title}. Orri honetan irakur dezakezu:"
172
172
  email_outro: Jakinarazpen hau jaso duzu "%{resource_title}" edo bere egilea jarraitzen duzulako. Aurreko estekan jarrai dezakezu.
173
173
  email_subject: '%{author_name} egileak beste iruzkin berri bat egin du hemen: %{resource_title}'
174
- 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>'
174
+ notification_title: '<a href="%{author_path}">%{author_name}</a> egileak beste iruzkin bat egin du hemen: <a href="%{resource_path}">%{resource_title}</a>'
175
175
  comment_downvoted:
176
176
  email_intro: Zure iruzkina hemen "%{resource_title}" negatiboki bozkatu da. Orain %{upvotes} babes positibo eta %{downvotes} boto negatibo dituzu guztira.
177
177
  email_outro: Jakinarazpen hau jaso duzu iruzkin honen egilea zarelako.
@@ -186,12 +186,12 @@ eu:
186
186
  email_intro: "%{author_name} egileak zure iruzkina erantzun du hemen: %{resource_title}. Orri honetan irakur dezakezu:"
187
187
  email_outro: Jakinarazpen hau jaso duzu zure iruzkinak erantzuna izan duelako.
188
188
  email_subject: "%{author_name} parte-hartzaileak zure iruzkina erantzun du hemen: %{resource_title}"
189
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> -k zure iruzkinari erantzun dio hemen <a href="%{resource_path}">%{resource_title}</a>
189
+ notification_title: '<a href="%{author_path}">%{author_name}</a> parte-hartzaileak zure iruzkina erantzun du hemen: <a href="%{resource_path}">%{resource_title}</a>'
190
190
  user_mentioned:
191
191
  email_intro: Aipatu zaituzte
192
192
  email_outro: 'Jakinarazpen hau jaso duzu hemen aipatu zaituztelako: %{resource_title}.'
193
193
  email_subject: 'Hemen: %{resource_title} aipatu zaituzte'
194
- 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'
194
+ notification_title: '<a href="%{author_path}">%{author_name}</a> parte-hartzaileak aipatu zaitu hemen: <a href="%{resource_path}">%{resource_title}</a>'
195
195
  errors:
196
196
  messages:
197
197
  cannot_have_comments: ezin zaio iruzkinik egin
@@ -166,12 +166,12 @@ fi-pl:
166
166
  email_intro: "%{author_name} on jättänyt kommentin %{resource_title}. Voit lukea sen tällä sivulla:"
167
167
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat %{author_name}. Voit perua seuraamisen kyseisen käyttäjän profiilisivulta.
168
168
  email_subject: '%{author_name} on jättänyt uuden kommentin kohtaan %{resource_title}'
169
- 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>.
169
+ notification_title: Uusi kommentti osallistujalta <a href="%{author_path}">%{author_name}</a> kohteeseen <a href="%{resource_path}">%{resource_title}</a>.
170
170
  comment_created:
171
171
  email_intro: "%{resource_title} on kommentoitu. Voit lukea kommentin tällä sivulla:"
172
172
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat "%{resource_title}" tai sen kirjoittajaa. Voit lopettaa seuraamisen edellä esitetyn linkin kautta.
173
173
  email_subject: '%{author_name} on jättänyt uuden kommentin kohtaan %{resource_title}'
174
- 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>
174
+ notification_title: Uusi kommentti osallistujalta <a href="%{author_path}">%{author_name}</a> kohteeseen <a href="%{resource_path}">%{resource_title}</a>
175
175
  comment_downvoted:
176
176
  email_intro: Kommenttisi kohteessa "%{resource_title}" sai miinusäänen. Sillä on yhteensä %{upvotes} ääntä ja %{downvotes} miinusääntä.
177
177
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet jättänyt tämän kommentin.
@@ -186,12 +186,12 @@ fi-pl:
186
186
  email_intro: "%{author_name} on vastannut kommentiisi kohdassa %{resource_title}. Voit lukea sen tällä sivulla:"
187
187
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska kommenttiisi vastattiin.
188
188
  email_subject: "%{author_name} on vastannut kommentiisi %{resource_title}"
189
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on vastannut kommentiisi kohdassa <a href="%{resource_path}">%{resource_title}</a>
189
+ notification_title: <a href="%{author_path}">%{author_name}</a> vastasi kommenttiisi kohteessa <a href="%{resource_path}">%{resource_title}</a>
190
190
  user_mentioned:
191
191
  email_intro: Sinut on mainittu
192
192
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska sinut on mainittu kohdssa %{resource_title}.
193
193
  email_subject: Sinut on mainittu kohdassa %{resource_title}
194
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on maininnut sinut kohdassa <a href="%{resource_path}">%{resource_title}</a>
194
+ notification_title: <a href="%{author_path}">%{author_name} </a> on maininnut sinut kohteessa <a href="%{resource_path}">%{resource_title}</a>
195
195
  errors:
196
196
  messages:
197
197
  cannot_have_comments: ei voi sisältää kommentteja
@@ -166,12 +166,12 @@ fi:
166
166
  email_intro: "%{author_name} on jättänyt kommentin kohteessa %{resource_title}. Voit lukea sen sivulta:"
167
167
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat osallistujaa %{author_name}. Voit perua seuraamisen kyseisen osallistujan profiilisivulta.
168
168
  email_subject: '%{author_name} on jättänyt uuden kommentin kohteessa %{resource_title}'
169
- 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>.
169
+ notification_title: Uusi kommentti osallistujalta <a href="%{author_path}">%{author_name}</a> kohteeseen <a href="%{resource_path}">%{resource_title}</a>.
170
170
  comment_created:
171
171
  email_intro: "%{resource_title} on kommentoitu. Voit lukea kommentin sivulta:"
172
172
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat "%{resource_title}" tai sen kirjoittajaa. Voit lopettaa seuraamisen edellä esitetyn linkin kautta.
173
173
  email_subject: '%{author_name} on jättänyt uuden kommentin kohteessa %{resource_title}'
174
- 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>
174
+ notification_title: Uusi kommentti osallistujalta <a href="%{author_path}">%{author_name}</a> kohteeseen <a href="%{resource_path}">%{resource_title}</a>
175
175
  comment_downvoted:
176
176
  email_intro: Kommenttisi kohteessa "%{resource_title}" sai miinusäänen. Sillä on yhteensä %{upvotes} ääntä ja %{downvotes} miinusääntä.
177
177
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet jättänyt tämän kommentin.
@@ -186,12 +186,12 @@ fi:
186
186
  email_intro: "%{author_name} on vastannut kommentiisi kohdassa %{resource_title}. Voit lukea sen sivulta:"
187
187
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska kommenttiisi vastattiin.
188
188
  email_subject: "%{author_name} on vastannut kommentiisi %{resource_title}"
189
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on vastannut kommentiisi kohteessa <a href="%{resource_path}">%{resource_title}</a>
189
+ notification_title: <a href="%{author_path}">%{author_name}</a> vastasi kommenttiisi kohteessa <a href="%{resource_path}">%{resource_title}</a>
190
190
  user_mentioned:
191
191
  email_intro: Sinut on mainittu
192
192
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska sinut on mainittu kohteessa %{resource_title}.
193
193
  email_subject: Sinut on mainittu kohdassa %{resource_title}
194
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on maininnut sinut kohteessa <a href="%{resource_path}">%{resource_title}</a>
194
+ notification_title: <a href="%{author_path}">%{author_name} </a> on maininnut sinut kohteessa <a href="%{resource_path}">%{resource_title}</a>
195
195
  errors:
196
196
  messages:
197
197
  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
@@ -109,19 +109,15 @@ gl:
109
109
  email_intro: "%{author_name} deixou un comentario en %{resource_title}. Podes lelo nesta páxina:"
110
110
  email_outro: Recibiches esta notificación porque estás seguindo %{author_name}. Podes deixar de seguir este usuario desde a súa páxina de perfil.
111
111
  email_subject: Hai un novo comentario por %{author_name} en %{resource_title}
112
- notification_title: Hai un novo comentario <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>.
113
112
  comment_created:
114
113
  email_intro: "Comentouse %{resource_title} . Podes ler o comentario nesta páxina:"
115
114
  email_outro: Recibiches esta notificación porque estás seguindo "%{resource_title}" ou o seu autor. Podes deixar de seguir desde a ligazón anterior.
116
115
  email_subject: Hai un novo comentario de %{author_name} en %{resource_title}
117
- notification_title: Hai un novo comentario de <a href="%{author_path}">%{author_name} %{author_nickname}</a> en <a href="%{resource_path}">%{resource_title}</a>
118
116
  reply_created:
119
117
  email_intro: "%{author_name} respondeu o teu comentario en %{resource_title}. Podes lelo nesta páxina:"
120
118
  email_outro: Recibiches esta notificación porque o teu comentario foi respondido.
121
119
  email_subject: "%{author_name} respondeu o teu comentario en %{resource_title}"
122
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> respondeu o seu comentario en <a href="%{resource_path}">%{resource_title}</a>
123
120
  user_mentioned:
124
121
  email_intro: Foi mencionado
125
122
  email_outro: Recibiches esta notificación porque foi mencionado en %{resource_title}.
126
123
  email_subject: Foi mencionado en %{resource_title}
127
- notification_title: Foi mencionado en <a href="%{resource_path}">%{resource_title}</a> por <a href="%{author_path}">%{author_name} %{author_nickname}</a>
@@ -120,12 +120,10 @@ hu:
120
120
  email_intro: "%{author_name} megjegyzést hagyott itt: %{resource_title}. Ezen az oldalon megtalálod:"
121
121
  email_outro: 'Ezt az értesítést azért kaptad, mert ezt követed: "%{author_name}". Leiratkozás az előző link segítségével.'
122
122
  email_subject: '%{author_name} új megjegyzése itt: %{resource_title}'
123
- notification_title: 'Új megjegyzés: <a href="%{author_path}">%{author_name} %{author_nickname}</a> <a href="%{resource_path}">%{resource_title}</a>.'
124
123
  comment_created:
125
124
  email_intro: "A \"%{resource_title}\" témához megjegyzést fűzött valaki. Itt tudod elolvasni:"
126
125
  email_outro: 'Ezt az értesítést azért kaptad, mert ezt (vagy ennek szerzőjét) követed: "%{resource_title}". Ha szeretnél, a link segítségével leiratkozhatsz.'
127
126
  email_subject: 'Új megjegyzés érkezett ehhez: %{resource_title}, tőle: %{author_name}'
128
- notification_title: 'Új megjegyzés tőle: <a href="%{author_path}">%{author_name} %{author_nickname}</a>, ehhez: <a href="%{resource_path}">%{resource_title}</a>'
129
127
  comment_downvoted:
130
128
  email_intro: A hozzászólásod itt %{resource_title} leszavazásra került. Most %{upvotes} szavazat van mellette és %{downvotes} ellene.
131
129
  email_outro: Ezt az értesítést kaptad, mert te vagy a hozzászólás szerzője.
@@ -140,12 +138,10 @@ hu:
140
138
  email_intro: "%{author_name} megjegyzést fűzött ehhez: %{resource_title}. Ezen az oldalon megtalálod:"
141
139
  email_outro: Ezt az értesítést azért kaptad, mert valaki választolt a mejegyzésedre.
142
140
  email_subject: "%{author_name} megjegyzést tett a kommentedhez itt: %{resource_title}"
143
- notification_title: '<a href="%{author_path}">%{author_name} %{author_nickname}</a> válaszolt a megjegyzésedre itt: <a href="%{resource_path}">%{resource_title}</a>'
144
141
  user_mentioned:
145
142
  email_intro: Valaki említette a neved
146
143
  email_outro: Ezt az értesítést azért kaptad, mert korábban megemlítettek a(z) "%{resource_title}" témában.
147
144
  email_subject: Megemlítettek a(z) %{resource_title} témában
148
- notification_title: '<a href="%{author_path}">%{author_name} %{author_nickname}</a> megemlített itt: <a href="%{resource_path}">%{resource_title}</a>'
149
145
  errors:
150
146
  messages:
151
147
  cannot_have_comments: nem adhat hozzá hozzászólásokat