decidim-comments 0.29.1 → 0.30.0.rc1

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 (85) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/comments/comment/actions.erb +0 -8
  3. data/app/cells/decidim/comments/comment/show.erb +41 -5
  4. data/app/cells/decidim/comments/comment_cell.rb +44 -0
  5. data/app/cells/decidim/comments/comment_form/comment_as.erb +24 -6
  6. data/app/cells/decidim/comments/comment_form/opinion.erb +0 -4
  7. data/app/cells/decidim/comments/comment_form/show.erb +31 -29
  8. data/app/cells/decidim/comments/comment_form_cell.rb +7 -2
  9. data/app/cells/decidim/comments/comment_thread/show.erb +1 -1
  10. data/app/cells/decidim/comments/comments/add_comment.erb +12 -14
  11. data/app/cells/decidim/comments/comments/comments_in_single_column.erb +6 -0
  12. data/app/cells/decidim/comments/comments/order_control.erb +32 -9
  13. data/app/cells/decidim/comments/comments/show.erb +7 -7
  14. data/app/cells/decidim/comments/comments_cell.rb +56 -12
  15. data/app/cells/decidim/comments/two_columns_comments/column.erb +20 -0
  16. data/app/cells/decidim/comments/two_columns_comments/show.erb +11 -0
  17. data/app/cells/decidim/comments/two_columns_comments_cell.rb +86 -0
  18. data/app/forms/decidim/comments/comment_form.rb +14 -0
  19. data/app/models/decidim/comments/comment.rb +9 -7
  20. data/app/packs/entrypoints/decidim_comments.js +1 -0
  21. data/app/packs/src/decidim/comments/comments.component.js +151 -24
  22. data/app/packs/src/decidim/comments/comments.component.test.js +2 -1
  23. data/app/packs/src/decidim/comments/comments.js +95 -12
  24. data/app/packs/src/decidim/comments/comments_dropdown.js +57 -0
  25. data/app/packs/src/decidim/comments/comments_mobile_modal.js +46 -0
  26. data/app/packs/stylesheets/comments.scss +203 -50
  27. data/app/queries/decidim/comments/metrics/comment_participants_metric_measure.rb +1 -1
  28. data/app/queries/decidim/comments/metrics/comments_metric_manage.rb +22 -17
  29. data/app/views/decidim/comments/comments/create.js.erb +9 -1
  30. data/app/views/decidim/comments/comments/update.js.erb +6 -0
  31. data/config/locales/ar.yml +0 -1
  32. data/config/locales/bg.yml +0 -1
  33. data/config/locales/bn-BD.yml +1 -0
  34. data/config/locales/bs-BA.yml +15 -0
  35. data/config/locales/ca.yml +36 -3
  36. data/config/locales/cs.yml +37 -2
  37. data/config/locales/de.yml +36 -3
  38. data/config/locales/el.yml +0 -1
  39. data/config/locales/en.yml +35 -2
  40. data/config/locales/es-MX.yml +35 -2
  41. data/config/locales/es-PY.yml +35 -2
  42. data/config/locales/es.yml +36 -3
  43. data/config/locales/eu.yml +55 -19
  44. data/config/locales/fi-plain.yml +35 -2
  45. data/config/locales/fi.yml +39 -6
  46. data/config/locales/fr-CA.yml +8 -2
  47. data/config/locales/fr.yml +8 -2
  48. data/config/locales/gl.yml +0 -1
  49. data/config/locales/hu.yml +0 -1
  50. data/config/locales/id-ID.yml +0 -1
  51. data/config/locales/is-IS.yml +0 -1
  52. data/config/locales/it.yml +1 -1
  53. data/config/locales/ja.yml +34 -2
  54. data/config/locales/lb.yml +0 -1
  55. data/config/locales/lt.yml +0 -1
  56. data/config/locales/lv.yml +0 -1
  57. data/config/locales/nl.yml +0 -1
  58. data/config/locales/no.yml +0 -1
  59. data/config/locales/pl.yml +0 -2
  60. data/config/locales/pt-BR.yml +0 -1
  61. data/config/locales/pt.yml +0 -1
  62. data/config/locales/ro-RO.yml +1 -2
  63. data/config/locales/ru.yml +0 -1
  64. data/config/locales/sk.yml +0 -1
  65. data/config/locales/sv.yml +19 -2
  66. data/config/locales/tr-TR.yml +0 -1
  67. data/config/locales/uk.yml +0 -1
  68. data/config/locales/zh-CN.yml +0 -1
  69. data/config/locales/zh-TW.yml +0 -1
  70. data/decidim-comments.gemspec +2 -2
  71. data/lib/decidim/api/comment_mutation_type.rb +2 -2
  72. data/lib/decidim/api/comment_type.rb +25 -45
  73. data/lib/decidim/api/commentable_interface.rb +10 -16
  74. data/lib/decidim/api/commentable_mutation_type.rb +2 -3
  75. data/lib/decidim/comments/commentable.rb +11 -0
  76. data/lib/decidim/comments/commentable_with_component.rb +3 -1
  77. data/lib/decidim/comments/engine.rb +7 -1
  78. data/lib/decidim/comments/query_extensions.rb +1 -1
  79. data/lib/decidim/comments/test/factories.rb +9 -1
  80. data/lib/decidim/comments/test/shared_examples/comment_event.rb +1 -1
  81. data/lib/decidim/comments/test/shared_examples/comment_voted_event.rb +2 -2
  82. data/lib/decidim/comments/test/shared_examples/create_comment_context.rb +1 -1
  83. data/lib/decidim/comments/test/shared_examples/translatable_comment.rb +2 -2
  84. data/lib/decidim/comments/version.rb +1 -1
  85. metadata +19 -11
@@ -14,15 +14,19 @@ eu:
14
14
  one: Iruzkina
15
15
  other: Iruzkinak
16
16
  decidim/comments/comment_vote:
17
- one: Bozkatu
18
- other: Botoak
17
+ one: Babesa
18
+ other: Babesak
19
19
  decidim:
20
+ admin:
21
+ admin_log:
22
+ changeset:
23
+ comments: Iruzkinak
20
24
  comments:
21
25
  admin:
22
26
  shared:
23
27
  availability_fields:
24
28
  enabled: Iruzkinak gaituta
25
- end_time: Iruzkinak gaituta daude
29
+ end_time: Iruzkinak noiz arte gaituta
26
30
  start_time: Iruzkinak noiztik aktibatuta
27
31
  comments:
28
32
  create:
@@ -33,22 +37,24 @@ eu:
33
37
  error: Arazo bat ego da iruzkina eguneratzean.
34
38
  comments_title: Iruzkina
35
39
  last_activity:
36
- new_comment: 'Beste iruzkin bat:'
40
+ new_comment: 'Iruzkin berria:'
37
41
  votes:
38
42
  create:
39
- error: Arazo bat egon da iruzkina bozkatzean.
43
+ error: Arazo bat dago iruzkina bozkatzeko.
40
44
  components:
41
45
  add_comment_form:
42
- account_message: Sortu kontu bat <a href="%{sign_in_url}">Log in</a> edo <a href="%{sign_up_url}"> </a> zure iruzkina gehitzeko.
46
+ account_message: Sartu edo sortu kontu bat zure iruzkina gehitzeko.
47
+ add_comment: Gehitu iruzkina
43
48
  form:
44
49
  body:
45
50
  label: Iruzkina
46
51
  placeholder: Zer deritzozu honi?
47
52
  form_error: Testua behar da, eta ezin du izan %{length} karaktere baino gehiago.
48
- submit_reply: Argitaratu erantzuna
49
- submit_root_comment: Argitaratu iruzkina
53
+ submit_reply: Erantzuna argitaratu
54
+ submit_root_comment: Iruzkina argitaratu
50
55
  user_group_id:
51
56
  label: 'Egin iruzkina honako honen gisa:'
57
+ your_profile: Zure profila
52
58
  opinion:
53
59
  label: Zure iritzia gai honi buruz
54
60
  negative: Negatiboa
@@ -57,14 +63,17 @@ eu:
57
63
  neutral_selected: Zure iritzia gai honi buruz neutroa da
58
64
  positive: Positiboa
59
65
  positive_selected: Zure iritzia gai honi buruz positiboa da
60
- remaining_characters: "%{count} karaktere geratzen dira"
66
+ remaining_characters: "%{count} kakaktere geratzen dira"
61
67
  remaining_characters_1: "karaktere %{count} geratzen da"
62
68
  title: Gehitu zure iruzkina
63
69
  comment:
64
70
  alignment:
65
71
  against: Aurka
66
72
  in_favor: Alde
67
- cancel_reply: Ezeztatu erantzuna
73
+ answers:
74
+ one: "Erantzun %{count}"
75
+ other: "%{count} erantzun"
76
+ cancel_reply: Erantzuna ezabatu
68
77
  comment_label: Iruzkindu %{comment_id}
69
78
  comment_label_reply: Iruzkindu %{comment_id} (erantzun %{parent_comment_id} iruzkinei)
70
79
  confirm_destroy: Ziur zaude iruzkin hau ezabatu nahi duzula?
@@ -74,11 +83,14 @@ eu:
74
83
  deleted_user: Parte-hartzailea ezabatua
75
84
  edit: Editatu
76
85
  edited: Editatuta
86
+ hide_replies:
87
+ one: Ezkutatu erantzuna
88
+ other: Ezkutatu %{count} erantzun
77
89
  moderated_at: Iruzkina %{date}-an moderatu egin da
78
90
  reply: Erantzuna
79
91
  report:
80
92
  action: Salatu
81
- already_reported: Eduki hau jada salatuta dago, eta administratzaile batek.
93
+ already_reported: Eduki horren berri eman da eta administratzaile batek berrikusiko du.
82
94
  close: Itxi
83
95
  description: Eduki hau desegokia da?
84
96
  details: Iruzkin gehigarriak
@@ -91,6 +103,7 @@ eu:
91
103
  one: Erakutsi erantzuna
92
104
  other: Erakutsi %{count} erantzunak
93
105
  single_comment_link_title: Lortu esteka
106
+ sort_by: 'Nork sortua:'
94
107
  comment_order_selector:
95
108
  order:
96
109
  best_rated: Balorazio onenak
@@ -99,16 +112,19 @@ eu:
99
112
  recent: Berrienak
100
113
  title: 'Ordenatu honen arabera:'
101
114
  comments:
102
- blocked_comments_for_unauthorized_user_warning: Egiaztatuta egon behar zara momentu honetan iruzkina egiteko, baina aurreko iruzkinak irakur ditzakezu.
115
+ against: Aurka
116
+ blocked_comments_for_unauthorized_user_warning: Egiaztatuta egon behar zara momentu honetan iruzkin bat egiteko, baina aurreko iruzkinak irakur ditzakezu.
103
117
  blocked_comments_for_user_warning: Oraindik ez duzu iruzkinik egin, baina aurrekoak irakurri ditzakezu.
104
- blocked_comments_warning: Iruzkinak desgaituta daude une honetan, baina aurrekoak irakur ditzakezu.
118
+ blocked_comments_warning: Iruzkinak desaktibatuta daude, administratzaileek soilik erantzun dezakete edo berriak argitaratu.
105
119
  comment_details_title: Iruzkinaren xehetasunak
120
+ in_favor: Alde
106
121
  loading: Iruzkinak kargatzen...
107
122
  single_comment_warning: <a href="%{url}">k erakusten ditu iruzkin guztiak</a>
108
123
  single_comment_warning_title: Iruzkin bakar bat ikusten ari zara
109
124
  title:
110
- one: "%{count} iruzkin"
125
+ one: "Iruzkin bat"
111
126
  other: "%{count} iruzkin"
127
+ top_comment_label: Bozkatuenak
112
128
  down_vote_button:
113
129
  text: Ez nago ados iruzkin honekin
114
130
  edit_comment_modal_form:
@@ -121,11 +137,31 @@ eu:
121
137
  title: Editatu zure iruzkina
122
138
  up_vote_button:
123
139
  text: Ados nago iruzkin honekin
140
+ download_your_data:
141
+ help:
142
+ comment_votes:
143
+ comment: Bozkatutako iruzkinaren identifikazioa
144
+ created_at: Zein datatan sortu zen bozketa hau
145
+ id: Babesaren identifikazioa
146
+ updated_at: Zein datatan eguneratu zen azken aldiz bozketa hau
147
+ weight: Babesaren balioa (1 boto gehiago, -1 boto gutxiago)
148
+ comments:
149
+ alignment: Iruzkin hau aldekoa bazen, kontrakoa edo neutrala
150
+ author: Iruzkin hau egin duen parte-hartzailearen izena
151
+ body: Iruzkina bera
152
+ commentable_id: Iruzkingarriaren identifikazio bakarra
153
+ commentable_type: Iruzkingarri mota (emaitza, proposamena... bazen)
154
+ created_at: Zein datatan sortu zen iruzkin hau
155
+ depth: Zein lekutan dago iruzkin hau hiru iruzkinetan (iruzkinaren erantzuna bada edo erantzunaren erantzuna bada)
156
+ id: Identifikazioa iruzkin honetarako
157
+ locale: Parte-hartzaileak iruzkin hau uztean erabili du tokiko hizkuntza
158
+ root_commentable_url: Iruzkin honekin lotzen den baliabidearen URLa (web helbidea)
159
+ user_group: Iruzkin hau egin duen partaide-taldearen izena (baldin badago)
124
160
  events:
125
161
  comments:
126
162
  comment_by_followed_user:
127
163
  email_intro: "%{author_name} egileak iruzkin bat utzi du %{resource_title} helbidean. Orri honetan irakur dezakezu:"
128
- email_outro: Jakinarazpen hau jaso duzu %{author_name} erabiltzailea jarraitzen duzulako. Nahi izatekotan erabiltzaile hori bere profil-orritik jarraitzeari utz diezaiokezu.
164
+ email_outro: Jakinarazpen hau jaso duzu %{author_name} parte-hartzailea jarraitzen duzulako. Nahi izatekotan erabiltzaile hori bere profil-orritik jarraitzeari utz diezaiokezu.
129
165
  email_subject: '%{author_name} k beste iruzkin bat egin du hemen: %{resource_title}'
130
166
  notification_title: '<a href="%{author_path}">%{author_name} %{author_nickname}</a> k iruzkin berri bat egin du hemen: <a href="%{resource_path}">%{resource_title}</a>-an.'
131
167
  comment_by_followed_user_group:
@@ -139,7 +175,7 @@ eu:
139
175
  email_subject: '%{author_name} k beste iruzkin berri bat egin du hemen: %{resource_title}'
140
176
  notification_title: '<a href="%{author_path}">%{author_name} %{author_nickname}</a> k iruzkin berri bat egin du hemen: <a href="%{resource_path}">%{resource_title}</a></a>'
141
177
  comment_downvoted:
142
- email_intro: Zure iruzkina hemen "%{resource_title}" negatiboki bozkatu da. Orain %{upvotes} boto positibo eta %{downvotes} boto negatibo dituzu guztira.
178
+ email_intro: Zure iruzkina hemen "%{resource_title}" negatiboki bozkatu da. Orain %{upvotes} babes positibo eta %{downvotes} boto negatibo dituzu guztira.
143
179
  email_outro: Jakinarazpen hau jaso duzu iruzkin honen egilea zarelako.
144
180
  email_subject: Zure iruzkina hemen "%{resource_title}" negatiboki bozkatu da.
145
181
  notification_title: Zure <a href="%{resource_path}">iruzkina</a> hemen "%{resource_title}" negatiboki bozkatu da. Orain guztira %{upvotes} boto positibo eta %{downvotes} boto negatibo dituzu.
@@ -149,9 +185,9 @@ eu:
149
185
  email_subject: Zure iruzkina hemen "%{resource_title}" positiboki bozkatu da.
150
186
  notification_title: Zure <a href="%{resource_path}">iruzkina </a> "%{resource_title}"-an positiboki bozkatu da. Orain guztira %{upvotes} botos positibo eta %{downvotes} boto negatibo dituzu.
151
187
  reply_created:
152
- email_intro: "%{author_name} k zure iruzkina erantzun du hemen: %{resource_title}. Orri honetan irakur dezakezu:"
188
+ email_intro: "%{author_name} egileak zure iruzkina erantzun du hemen: %{resource_title}. Orri honetan irakur dezakezu:"
153
189
  email_outro: Jakinarazpen hau jaso duzu zure iruzkina erantzun delako.
154
- email_subject: "%{author_name}-k zure iruzkina erantzun du hemen: %{resource_title}"
190
+ email_subject: "%{author_name} k zure iruzkina erantzun du hemen: %{resource_title}"
155
191
  notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> -k zure iruzkinari erantzun dio <a href="%{resource_path}">%{resource_title}</a>
156
192
  user_group_mentioned:
157
193
  email_intro: Zure talde bat aipatu dute
@@ -165,7 +201,7 @@ eu:
165
201
  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'
166
202
  metrics:
167
203
  comments:
168
- description: Erabiltzaileek sortutako iruzkin kopurua
204
+ description: Parte-hatzaileek sortutako iruzkin kopurua
169
205
  object: iruzkinak
170
206
  title: Iruzkinak
171
207
  errors:
@@ -17,6 +17,10 @@ fi-pl:
17
17
  one: Ääni
18
18
  other: Äänet
19
19
  decidim:
20
+ admin:
21
+ admin_log:
22
+ changeset:
23
+ comments: Kommentit
20
24
  comments:
21
25
  admin:
22
26
  shared:
@@ -39,7 +43,8 @@ fi-pl:
39
43
  error: Äänestettäessä kommenttia tapahtui virhe.
40
44
  components:
41
45
  add_comment_form:
42
- account_message: <a href="%{sign_in_url}">Kirjaudu sisään</a> tai <a href="%{sign_up_url}">luo tili</a> kommentoidaksesi.
46
+ account_message: Kirjaudu sisään tai luo tili kommentoidaksesi.
47
+ add_comment: Lisää kommentti
43
48
  form:
44
49
  body:
45
50
  label: Kommentti
@@ -49,6 +54,7 @@ fi-pl:
49
54
  submit_root_comment: Julkaise kommentti
50
55
  user_group_id:
51
56
  label: Kommentoi käyttäjänä
57
+ your_profile: Oma profiilisi
52
58
  opinion:
53
59
  label: Mielipiteesi tästä aiheesta
54
60
  negative: Negatiivinen
@@ -64,6 +70,9 @@ fi-pl:
64
70
  alignment:
65
71
  against: Vastaan
66
72
  in_favor: Puolesta
73
+ answers:
74
+ one: "%{count} vastaus"
75
+ other: "%{count} vastausta"
67
76
  cancel_reply: Peruuta vastaus
68
77
  comment_label: Kommentti %{comment_id}
69
78
  comment_label_reply: Kommentti %{comment_id} (vastauksena kommenttiin %{parent_comment_id})
@@ -94,6 +103,7 @@ fi-pl:
94
103
  one: Näytä vastaus
95
104
  other: Näytä %{count} vastausta
96
105
  single_comment_link_title: Linkki kommenttiin
106
+ sort_by: 'Järjestä: '
97
107
  comment_order_selector:
98
108
  order:
99
109
  best_rated: Parhaiksi arvioidut
@@ -102,16 +112,19 @@ fi-pl:
102
112
  recent: Uusimmat
103
113
  title: 'Järjestä tulokset:'
104
114
  comments:
115
+ against: Vastaan
105
116
  blocked_comments_for_unauthorized_user_warning: Tilisi tulee olla varmennettu, jotta voit kommentoida tällä hetkellä. Voit kuitenkin lukea muiden jättämiä kommentteja.
106
117
  blocked_comments_for_user_warning: Et voi kommentoida tällä hetkellä, mutta voit lukea aikaisempia kommentteja.
107
- blocked_comments_warning: Kommentit on poistettu käytöstä tällä hetkellä, mutta voit lukea aikaisempia kommentteja.
118
+ blocked_comments_warning: Kommentit on tällä hetkellä pois käytöstä, vain hallintakäyttäjät voivat vastata tai lähettää uusia kommentteja.
108
119
  comment_details_title: Kommentin yksityiskohdat
120
+ in_favor: Puolesta
109
121
  loading: Ladataan kommentteja ...
110
122
  single_comment_warning: <a href="%{url}">Näytä kaikki kommentit</a>
111
123
  single_comment_warning_title: Näet yhden kommentin
112
124
  title:
113
125
  one: "%{count} kommentti"
114
126
  other: "%{count} kommenttia"
127
+ top_comment_label: Eniten ääniä saaneet ensin
115
128
  down_vote_button:
116
129
  text: Olen eri mieltä tämän kommentin kanssa
117
130
  edit_comment_modal_form:
@@ -124,6 +137,26 @@ fi-pl:
124
137
  title: Muokkaa kommenttiasi
125
138
  up_vote_button:
126
139
  text: Olen samaa mieltä tämän kommentin kanssa
140
+ download_your_data:
141
+ help:
142
+ comment_votes:
143
+ comment: Äänestetyn kommentin yksilöivä tunniste (ID)
144
+ created_at: Äänen antamisen ajankohta
145
+ id: Äänen yksilöivä tunniste (ID)
146
+ updated_at: Äänen viimeisimmän päivityksen ajankohta
147
+ weight: Äänen painoarvo (1 puolesta, -1 vastaan)
148
+ comments:
149
+ alignment: Kertoo, oliko tämä kommentti puolesta, vastaan vai neutraali
150
+ author: Kommentin laatijan nimi
151
+ body: Kommentin teksti
152
+ commentable_id: Kommentoitavan asian yksilöivä tunniste
153
+ commentable_type: Kommentoitavan asian tyyppi (tulos, ehdotus, jne.)
154
+ created_at: Kommentin laatimisaika
155
+ depth: Kommentin paikka keskusteluketjussa, eli millä tasolla kommentti oli (oliko se vastaus vai vastauksen vastaus)
156
+ id: Kommentin yksilöivä tunniste
157
+ locale: Kommentoijan valitsema kieliasetus sivustolla
158
+ root_commentable_url: URL-osoite kommentoitavaan asiaan, eli millä sivulla kommentti luotiin
159
+ user_group: Kommentin laatijan käyttäjäryhmä, mikäli kommentti laadittiin ryhmän puolesta
127
160
  events:
128
161
  comments:
129
162
  comment_by_followed_user:
@@ -17,6 +17,10 @@ fi:
17
17
  one: Ääni
18
18
  other: Äänet
19
19
  decidim:
20
+ admin:
21
+ admin_log:
22
+ changeset:
23
+ comments: Kommentit
20
24
  comments:
21
25
  admin:
22
26
  shared:
@@ -39,7 +43,8 @@ fi:
39
43
  error: Kommentin äänestys epäonnistui.
40
44
  components:
41
45
  add_comment_form:
42
- account_message: <a href="%{sign_in_url}">Kirjaudu sisään</a> tai <a href="%{sign_up_url}">luo tili</a> kommentoidaksesi.
46
+ account_message: Kirjaudu sisään tai luo tili kommentoidaksesi.
47
+ add_comment: Lisää kommentti
43
48
  form:
44
49
  body:
45
50
  label: Kommentti
@@ -49,6 +54,7 @@ fi:
49
54
  submit_root_comment: Julkaise kommentti
50
55
  user_group_id:
51
56
  label: Kommentoi käyttäjänä
57
+ your_profile: Oma profiilisi
52
58
  opinion:
53
59
  label: Mielipiteesi tästä aiheesta
54
60
  negative: Negatiivinen
@@ -64,6 +70,9 @@ fi:
64
70
  alignment:
65
71
  against: Vastaan
66
72
  in_favor: Puolesta
73
+ answers:
74
+ one: "%{count} vastaus"
75
+ other: "%{count} vastausta"
67
76
  cancel_reply: Peruuta vastaus
68
77
  comment_label: Kommentti %{comment_id}
69
78
  comment_label_reply: Kommentti %{comment_id} (vastauksena kommenttiin %{parent_comment_id})
@@ -94,6 +103,7 @@ fi:
94
103
  one: Näytä vastaus
95
104
  other: Näytä %{count} vastausta
96
105
  single_comment_link_title: Linkki kommenttiin
106
+ sort_by: 'Järjestä: '
97
107
  comment_order_selector:
98
108
  order:
99
109
  best_rated: Parhaiksi arvioidut
@@ -102,16 +112,19 @@ fi:
102
112
  recent: Uusimmat
103
113
  title: 'Järjestä tulokset:'
104
114
  comments:
105
- blocked_comments_for_unauthorized_user_warning: Tilisi tulee olla varmennettu, jotta voit kommentoida tällä hetkellä. Voit kuitenkin lukea muiden jättämiä kommentteja.
115
+ against: Vastaan
116
+ blocked_comments_for_unauthorized_user_warning: Tilisi tulee olla vahvistettu, jotta voit kommentoida tällä hetkellä. Voit kuitenkin lukea muiden jättämiä kommentteja.
106
117
  blocked_comments_for_user_warning: Et voi kommentoida tällä hetkellä, mutta voit lukea aikaisempia kommentteja.
107
- blocked_comments_warning: Kommentit on poistettu käytöstä tällä hetkellä, mutta voit lukea aikaisempia kommentteja.
118
+ blocked_comments_warning: Kommentit on tällä hetkellä pois käytöstä, vain hallintakäyttäjät voivat vastata tai lähettää uusia kommentteja.
108
119
  comment_details_title: Kommentin yksityiskohdat
120
+ in_favor: Puolesta
109
121
  loading: Ladataan kommentteja ...
110
122
  single_comment_warning: <a href="%{url}">Näytä kaikki kommentit</a>
111
123
  single_comment_warning_title: Näet yhden kommentin
112
124
  title:
113
125
  one: "%{count} kommentti"
114
126
  other: "%{count} kommenttia"
127
+ top_comment_label: Eniten ääniä saaneet ensin
115
128
  down_vote_button:
116
129
  text: Olen eri mieltä tämän kommentin kanssa
117
130
  edit_comment_modal_form:
@@ -124,11 +137,31 @@ fi:
124
137
  title: Muokkaa kommenttiasi
125
138
  up_vote_button:
126
139
  text: Olen samaa mieltä tämän kommentin kanssa
140
+ download_your_data:
141
+ help:
142
+ comment_votes:
143
+ comment: Äänestetyn kommentin yksilöivä tunniste (ID)
144
+ created_at: Äänen antamisen ajankohta
145
+ id: Äänen yksilöivä tunniste (ID)
146
+ updated_at: Äänen viimeisimmän päivityksen ajankohta
147
+ weight: Äänen painoarvo (1 puolesta, -1 vastaan)
148
+ comments:
149
+ alignment: Kertoo, oliko tämä kommentti puolesta, vastaan vai neutraali
150
+ author: Kommentin laatijan nimi
151
+ body: Kommentin teksti
152
+ commentable_id: Kommentoitavan asian yksilöivä tunniste
153
+ commentable_type: Kommentoitavan asian tyyppi (tulos, ehdotus, jne.)
154
+ created_at: Kommentin laatimisaika
155
+ depth: Kommentin paikka keskusteluketjussa, eli millä tasolla kommentti oli (oliko se vastaus vai vastauksen vastaus)
156
+ id: Kommentin yksilöivä tunniste
157
+ locale: Kommentoijan valitsema kieliasetus sivustolla
158
+ root_commentable_url: URL-osoite kommentoitavaan asiaan, eli millä sivulla kommentti luotiin
159
+ user_group: Kommentin laatijan käyttäjäryhmä, mikäli kommentti laadittiin ryhmän puolesta
127
160
  events:
128
161
  comments:
129
162
  comment_by_followed_user:
130
163
  email_intro: "%{author_name} on jättänyt kommentin kohteessa %{resource_title}. Voit lukea sen sivulta:"
131
- email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat %{author_name}. Voit perua seuraamisen kyseisen käyttäjän profiilisivulta.
164
+ email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat osallistujaa %{author_name}. Voit perua seuraamisen kyseisen osallistujan profiilisivulta.
132
165
  email_subject: '%{author_name} on jättänyt uuden kommentin kohteessa %{resource_title}'
133
166
  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>.
134
167
  comment_by_followed_user_group:
@@ -155,7 +188,7 @@ fi:
155
188
  email_intro: "%{author_name} on vastannut kommentiisi kohdassa %{resource_title}. Voit lukea sen sivulta:"
156
189
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska kommenttiisi vastattiin.
157
190
  email_subject: "%{author_name} on vastannut kommentiisi %{resource_title}"
158
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on vastannut kommentiisi kohdassa <a href="%{resource_path}">%{resource_title}</a>
191
+ notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on vastannut kommentiisi kohteessa <a href="%{resource_path}">%{resource_title}</a>
159
192
  user_group_mentioned:
160
193
  email_intro: Ryhmä, jonka jäsen olet, on mainittu
161
194
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet jäsenenä ryhmässä %{group_name} ja ryhmä on mainittu kohteessa %{resource_title}.
@@ -165,7 +198,7 @@ fi:
165
198
  email_intro: Sinut on mainittu
166
199
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska sinut on mainittu kohteessa %{resource_title}.
167
200
  email_subject: Sinut on mainittu kohdassa %{resource_title}
168
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on maininnut sinut kohdassa <a href="%{resource_path}">%{resource_title}</a>
201
+ notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> on maininnut sinut kohteessa <a href="%{resource_path}">%{resource_title}</a>
169
202
  metrics:
170
203
  comments:
171
204
  description: Käyttäjien kirjoittamien kommenttien määrä
@@ -39,7 +39,8 @@ fr-CA:
39
39
  error: Une erreur s'est produite lors du vote sur le commentaire.
40
40
  components:
41
41
  add_comment_form:
42
- account_message: <a href="%{sign_in_url}">Connectez-vous</a> ou <a href="%{sign_up_url}">créez un compte</a> pour ajouter votre commentaire.
42
+ account_message: Connectez-vous ou créez un compte pour ajouter votre commentaire.
43
+ add_comment: Ajouter un commentaire
43
44
  form:
44
45
  body:
45
46
  label: Commentaire
@@ -49,6 +50,7 @@ fr-CA:
49
50
  submit_root_comment: Publier le commentaire
50
51
  user_group_id:
51
52
  label: Commenter en tant que
53
+ your_profile: Votre profil
52
54
  opinion:
53
55
  label: Votre avis sur ce sujet
54
56
  negative: Négatif
@@ -64,6 +66,9 @@ fr-CA:
64
66
  alignment:
65
67
  against: Contre
66
68
  in_favor: Pour
69
+ answers:
70
+ one: "%{count} réponse"
71
+ other: "%{count} réponses"
67
72
  cancel_reply: Annuler la réponse
68
73
  comment_label: Commentaire %{comment_id}
69
74
  comment_label_reply: Commentaire %{comment_id} (réponse au commentaire %{parent_comment_id})
@@ -94,6 +99,7 @@ fr-CA:
94
99
  one: Afficher la réponse
95
100
  other: Afficher %{count} réponses
96
101
  single_comment_link_title: Obtenir le lien
102
+ sort_by: 'Trier par : '
97
103
  comment_order_selector:
98
104
  order:
99
105
  best_rated: Les mieux notés
@@ -104,7 +110,7 @@ fr-CA:
104
110
  comments:
105
111
  blocked_comments_for_unauthorized_user_warning: Vous devez valider votre inscription pour commenter maintenant, mais vous pouvez lire les commentaires précédents.
106
112
  blocked_comments_for_user_warning: Vous n'êtes pas en mesure de commenter pour le moment, mais vous pouvez lire les précédents.
107
- blocked_comments_warning: Les commentaires sont actuellement désactivés, mais vous pouvez lire ceux déjà saisis.
113
+ blocked_comments_warning: Les commentaires sont actuellement désactivés, seuls les administrateurs peuvent répondre ou en poster de nouveaux.
108
114
  comment_details_title: Détails du commentaire
109
115
  loading: Chargement des commentaires ...
110
116
  single_comment_warning: <a href="%{url}">Voir tous les commentaires</a>
@@ -39,7 +39,8 @@ fr:
39
39
  error: Une erreur s'est produite lors du vote sur le commentaire.
40
40
  components:
41
41
  add_comment_form:
42
- account_message: <a href="%{sign_in_url}">Connectez-vous</a> ou <a href="%{sign_up_url}">créez un compte</a> pour ajouter votre commentaire.
42
+ account_message: Connectez-vous ou créez un compte pour ajouter votre commentaire.
43
+ add_comment: Ajouter un commentaire
43
44
  form:
44
45
  body:
45
46
  label: Commentaire
@@ -49,6 +50,7 @@ fr:
49
50
  submit_root_comment: Publier le commentaire
50
51
  user_group_id:
51
52
  label: Commenter en tant que
53
+ your_profile: Votre profil
52
54
  opinion:
53
55
  label: Que pensez-vous de cela ?
54
56
  negative: Négatif
@@ -64,6 +66,9 @@ fr:
64
66
  alignment:
65
67
  against: Contre
66
68
  in_favor: Pour
69
+ answers:
70
+ one: "%{count} réponse"
71
+ other: "%{count} réponses"
67
72
  cancel_reply: Annuler la réponse
68
73
  comment_label: Commentaire %{comment_id}
69
74
  comment_label_reply: Commentaire %{comment_id} (réponse au commentaire %{parent_comment_id})
@@ -94,6 +99,7 @@ fr:
94
99
  one: Afficher la réponse
95
100
  other: Afficher %{count} réponses
96
101
  single_comment_link_title: Obtenir le lien
102
+ sort_by: 'Trier par : '
97
103
  comment_order_selector:
98
104
  order:
99
105
  best_rated: Les mieux notés
@@ -104,7 +110,7 @@ fr:
104
110
  comments:
105
111
  blocked_comments_for_unauthorized_user_warning: Vous devez faire vérifier votre compte pour commenter, mais vous pouvez lire les commentaires précédents.
106
112
  blocked_comments_for_user_warning: Vous n'êtes pas en mesure de commenter pour le moment, mais vous pouvez lire les précédents.
107
- blocked_comments_warning: Les commentaires sont actuellement désactivés, mais vous pouvez lire ceux déjà saisis.
113
+ blocked_comments_warning: Les commentaires sont actuellement désactivés, seuls les administrateurs peuvent répondre ou en poster de nouveaux.
108
114
  comment_details_title: Détails du commentaire
109
115
  loading: Chargement des commentaires ...
110
116
  single_comment_warning: <a href="%{url}">Voir tous les commentaires</a>
@@ -83,7 +83,6 @@ gl:
83
83
  comments:
84
84
  blocked_comments_for_unauthorized_user_warning: Tes de estar verificado para poder comentar neste intre, porén podes ler os comentarios anteriores.
85
85
  blocked_comments_for_user_warning: Non podes comentar neste momento, pero podes ler os anteriores.
86
- blocked_comments_warning: Os comentarios están desactivados neste momento, pero podes ler os anteriores.
87
86
  comment_details_title: Detalles do comentario
88
87
  loading: Cargando comentarios ...
89
88
  single_comment_warning: <a href="%{url}">Ver todos os comentarios</a>
@@ -94,7 +94,6 @@ hu:
94
94
  comments:
95
95
  blocked_comments_for_unauthorized_user_warning: Ebben a pillanatban nem tud megjegyzéseket tenni, de elolvashatja az előzőeket.
96
96
  blocked_comments_for_user_warning: Ebben a pillanatban nem tud megjegyzéseket tenni, de elolvashatja az előzőeket.
97
- blocked_comments_warning: A megjegyzések jelenleg le vannak tiltva, de a korábbiakat elolvashatod.
98
97
  comment_details_title: Megjegyzés részletei
99
98
  loading: Hozzászólások betöltése ...
100
99
  single_comment_warning: <a href="%{url}"><a href="%{url}">Minden hozzászólás megtekintése</a>
@@ -55,7 +55,6 @@ id:
55
55
  title: 'Dipesan oleh:'
56
56
  comments:
57
57
  blocked_comments_for_user_warning: Anda tidak dapat berkomentar saat ini, tetapi Anda dapat membaca yang sebelumnya.
58
- blocked_comments_warning: Komentar dinonaktifkan saat ini, tetapi Anda dapat membaca yang sebelumnya.
59
58
  loading: Memuat komentar ...
60
59
  events:
61
60
  comments:
@@ -36,7 +36,6 @@ is:
36
36
  recent: Nýleg
37
37
  title: 'Raða eftir:'
38
38
  comments:
39
- blocked_comments_warning: Athugasemdir eru gerðar óvirkar á þessum tíma, en þú getur lesið þau fyrri.
40
39
  loading: Hleð inn athugasemdir ...
41
40
  events:
42
41
  comments:
@@ -82,7 +82,7 @@ it:
82
82
  comments:
83
83
  blocked_comments_for_unauthorized_user_warning: Devi essere verificato prima di poter commentare, ma puoi leggere i commenti precedenti.
84
84
  blocked_comments_for_user_warning: Non sei in grado di commentare in questo momento, ma puoi leggere quelli precedenti.
85
- blocked_comments_warning: I commenti sono disabilitati in questo momento, ma puoi leggere quelli precedenti.
85
+ blocked_comments_warning: I commenti sono attualmente disabilitati, solo gli amministratori possono rispondere o pubblicarne di nuovi.
86
86
  comment_details_title: Dettagli commento
87
87
  loading: Sto caricando i commenti ...
88
88
  single_comment_warning: <a href="%{url}">Visualizza tutti i commenti</a>
@@ -15,6 +15,10 @@ ja:
15
15
  decidim/comments/comment_vote:
16
16
  other: 投票
17
17
  decidim:
18
+ admin:
19
+ admin_log:
20
+ changeset:
21
+ comments: コメント
18
22
  comments:
19
23
  admin:
20
24
  shared:
@@ -37,7 +41,8 @@ ja:
37
41
  error: コメントに投票中に問題がありました。
38
42
  components:
39
43
  add_comment_form:
40
- account_message: コメントを追加するには<a href="%{sign_in_url}">ログインする</a> か <a href="%{sign_up_url}">アカウントを作成</a>してください
44
+ account_message: コメントを追加するにはログインするかアカウントを作成してください
45
+ add_comment: コメントを追加
41
46
  form:
42
47
  body:
43
48
  label: コメント
@@ -47,6 +52,7 @@ ja:
47
52
  submit_root_comment: コメントを公開
48
53
  user_group_id:
49
54
  label: 'コメント:'
55
+ your_profile: あなたのプロフィール
50
56
  opinion:
51
57
  label: このトピックに関するあなたの意見
52
58
  negative: 否定的
@@ -62,6 +68,8 @@ ja:
62
68
  alignment:
63
69
  against: 反対
64
70
  in_favor: 賛成
71
+ answers:
72
+ other: "%{count} 件の回答"
65
73
  cancel_reply: 返信をキャンセル
66
74
  comment_label: コメント %{comment_id}
67
75
  comment_label_reply: コメント %{comment_id} (コメント %{parent_comment_id} への返信)
@@ -90,6 +98,7 @@ ja:
90
98
  show_replies:
91
99
  other: '%{count} 件の返信を表示'
92
100
  single_comment_link_title: リンク取得
101
+ sort_by: '並べ替え: '
93
102
  comment_order_selector:
94
103
  order:
95
104
  best_rated: 評価の高い順
@@ -98,15 +107,18 @@ ja:
98
107
  recent: 新しい順
99
108
  title: '並び順:'
100
109
  comments:
110
+ against: 反対
101
111
  blocked_comments_for_unauthorized_user_warning: 現在、コメントできるのは検証済アカウントのみになりますが、以前のコメントを読むことはできます。
102
112
  blocked_comments_for_user_warning: 現時点ではコメントできませんが、以前のコメントを読むことができます。
103
- blocked_comments_warning: コメントは現時点で無効になっていますが、以前のコメントを読むことができます。
113
+ blocked_comments_warning: コメントは現在無効になっています。管理者のみが新しいコメントを返信または投稿できます。
104
114
  comment_details_title: コメントの詳細
115
+ in_favor: 賛成
105
116
  loading: コメントを読み込んでいます...
106
117
  single_comment_warning: <a href="%{url}">すべてのコメントを表示</a>
107
118
  single_comment_warning_title: コメントを1件のみ表示しています
108
119
  title:
109
120
  other: "%{count} 件のコメント"
121
+ top_comment_label: Upvoteの多い順
110
122
  down_vote_button:
111
123
  text: このコメントに同意しません
112
124
  edit_comment_modal_form:
@@ -119,6 +131,26 @@ ja:
119
131
  title: コメントを編集
120
132
  up_vote_button:
121
133
  text: このコメントに同意します
134
+ download_your_data:
135
+ help:
136
+ comment_votes:
137
+ comment: 投票されたコメントの ID
138
+ created_at: 投票の作成日時
139
+ id: 投票のID
140
+ updated_at: 投票の最終更新日時
141
+ weight: 投票の重みづけ(upvoteは1、downvoteは-1)
142
+ comments:
143
+ alignment: このコメントが好意的、反対的、中立的であった場合
144
+ author: このコメントを作成した参加者の名前
145
+ body: コメントそのもの
146
+ commentable_id: コメント対象の固有ID
147
+ commentable_type: コメント対象の種別 (結果、提案など)
148
+ created_at: コメントの作成日時
149
+ depth: コメントがコメントツリーのどこに位置しているか(回答、または回答の回答である場合)
150
+ id: コメントのID
151
+ locale: コメントを残した参加者の使っていたロケール(言語)
152
+ root_commentable_url: コメントに関連するリソースの URL
153
+ user_group: コメントを作成したユーザーグループの名前 (もしあれば)
122
154
  events:
123
155
  comments:
124
156
  comment_by_followed_user:
@@ -76,7 +76,6 @@ lb:
76
76
  comments:
77
77
  blocked_comments_for_unauthorized_user_warning: Sie müssen aktuell verifiziert sein um zu kommentieren, aber Sie können die bisherigen Kommentare lesen.
78
78
  blocked_comments_for_user_warning: Sie können momentan nichts kommentieren, aber Sie können die vorherigen lesen.
79
- blocked_comments_warning: Kommentare sind zu diesem Zeitpunkt deaktiviert, aber Sie können die vorherigen lesen.
80
79
  comment_details_title: Kommentarinformationen
81
80
  loading: Kommentare werden geladen ...
82
81
  single_comment_warning_title: Ihnen wird ein einzelner Kommentar angezeigt
@@ -103,7 +103,6 @@ lt:
103
103
  comments:
104
104
  blocked_comments_for_unauthorized_user_warning: Norėdami komentuoti turite būti patvirtintas(-a), tačiau galite skaityti egzistuojančius komentarus.
105
105
  blocked_comments_for_user_warning: Šiuo metu komentarų pateikti negalite, tačiau galite perskaityti ankstesnius komentarus.
106
- blocked_comments_warning: Komentarai šiuo metu išjungti, tačiau galite perskaityti ankstesnius komentarus.
107
106
  comment_details_title: Komentaro detalės
108
107
  loading: Komentarai įkeliami...
109
108
  single_comment_warning: <a href="%{url}">Peržiūrėti visus komentarus</a>
@@ -59,7 +59,6 @@ lv:
59
59
  title: 'Sakārtot pēc:'
60
60
  comments:
61
61
  blocked_comments_for_user_warning: Pašlaik jūs nevarat komentēt, bet jūs varat izlasīt iepriekšējos komentārus.
62
- blocked_comments_warning: Komentāri šobrīd ir atspējoti, bet jūs varat lasīt iepriekšējos komentārus.
63
62
  comment_details_title: Komentāra informācija
64
63
  loading: Notiek komentāru ielāde ...
65
64
  single_comment_warning_title: Jūs redzat vienu komentāru
@@ -84,7 +84,6 @@ nl:
84
84
  comments:
85
85
  blocked_comments_for_unauthorized_user_warning: Je kan op dit moment geen opmerkingen toevoegen, maar je kunt de eerdere opmerkingen wel lezen.
86
86
  blocked_comments_for_user_warning: Je kunt op dit moment geen opmerkingen toevoegen, maar je kunt eerdere reacties wel lezen.
87
- blocked_comments_warning: Reacties zijn op dit moment uitgeschakeld, maar je kan de vorige berichten lezen.
88
87
  comment_details_title: Reactieonderdelen
89
88
  loading: Reacties laden...
90
89
  single_comment_warning: <a href="%{url}">Bekijk alle reacties</a>