decidim-blogs 0.29.1 → 0.30.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (87) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/blogs/content_blocks/highlighted_posts_cell.rb +0 -3
  3. data/app/commands/decidim/blogs/create_post.rb +35 -0
  4. data/app/commands/decidim/blogs/update_post.rb +21 -0
  5. data/app/controllers/decidim/blogs/admin/posts_controller.rb +12 -9
  6. data/app/controllers/decidim/blogs/posts_controller.rb +61 -1
  7. data/app/forms/decidim/blogs/admin/post_form.rb +1 -1
  8. data/app/forms/decidim/blogs/post_form.rb +52 -0
  9. data/app/helpers/decidim/blogs/posts_helper.rb +5 -0
  10. data/app/helpers/decidim/blogs/posts_select_helper.rb +32 -0
  11. data/app/models/decidim/blogs/post.rb +2 -1
  12. data/app/packs/stylesheets/blogs.scss +0 -20
  13. data/app/permissions/decidim/blog/permissions.rb +85 -2
  14. data/app/presenters/decidim/blogs/admin_log/post_presenter.rb +1 -1
  15. data/app/presenters/decidim/blogs/post_presenter.rb +25 -1
  16. data/app/views/decidim/blogs/admin/posts/_actions.html.erb +21 -0
  17. data/app/views/decidim/blogs/admin/posts/_post-tr.html.erb +25 -0
  18. data/app/views/decidim/blogs/admin/posts/_posts-thead.html.erb +9 -0
  19. data/app/views/decidim/blogs/admin/posts/index.html.erb +16 -55
  20. data/app/views/decidim/blogs/admin/posts/manage_trash.html.erb +20 -0
  21. data/app/views/decidim/blogs/posts/_actions.html.erb +7 -14
  22. data/app/views/decidim/blogs/posts/_form.html.erb +11 -0
  23. data/app/views/decidim/blogs/posts/_menu_actions.html.erb +21 -0
  24. data/app/views/decidim/blogs/posts/_schema_org_blog_posting_post.html.erb +3 -0
  25. data/app/views/decidim/blogs/posts/edit.html.erb +21 -0
  26. data/app/views/decidim/blogs/posts/index.html.erb +16 -1
  27. data/app/views/decidim/blogs/posts/new.html.erb +21 -0
  28. data/app/views/decidim/blogs/posts/show.html.erb +15 -6
  29. data/config/locales/ar.yml +3 -2
  30. data/config/locales/bg.yml +0 -4
  31. data/config/locales/bn-BD.yml +1 -0
  32. data/config/locales/bs-BA.yml +9 -0
  33. data/config/locales/ca.yml +58 -3
  34. data/config/locales/cs.yml +39 -4
  35. data/config/locales/de.yml +58 -3
  36. data/config/locales/el.yml +0 -4
  37. data/config/locales/en.yml +58 -3
  38. data/config/locales/es-MX.yml +58 -3
  39. data/config/locales/es-PY.yml +58 -3
  40. data/config/locales/es.yml +58 -3
  41. data/config/locales/eu.yml +64 -9
  42. data/config/locales/fi-plain.yml +39 -4
  43. data/config/locales/fi.yml +39 -4
  44. data/config/locales/fr-CA.yml +32 -2
  45. data/config/locales/fr.yml +32 -2
  46. data/config/locales/ga-IE.yml +0 -1
  47. data/config/locales/gl.yml +0 -2
  48. data/config/locales/hu.yml +0 -4
  49. data/config/locales/id-ID.yml +0 -2
  50. data/config/locales/is-IS.yml +0 -2
  51. data/config/locales/it.yml +0 -2
  52. data/config/locales/ja.yml +57 -2
  53. data/config/locales/kaa.yml +0 -1
  54. data/config/locales/ko.yml +0 -3
  55. data/config/locales/lb.yml +0 -2
  56. data/config/locales/lt.yml +0 -4
  57. data/config/locales/lv.yml +0 -2
  58. data/config/locales/nl.yml +0 -2
  59. data/config/locales/no.yml +0 -2
  60. data/config/locales/pl.yml +0 -4
  61. data/config/locales/pt-BR.yml +0 -4
  62. data/config/locales/pt.yml +0 -2
  63. data/config/locales/ro-RO.yml +20 -2
  64. data/config/locales/ru.yml +0 -4
  65. data/config/locales/sk.yml +0 -2
  66. data/config/locales/sl.yml +0 -5
  67. data/config/locales/sq-AL.yml +0 -4
  68. data/config/locales/sv.yml +58 -3
  69. data/config/locales/tr-TR.yml +0 -2
  70. data/config/locales/uk.yml +0 -2
  71. data/config/locales/zh-CN.yml +0 -2
  72. data/config/locales/zh-TW.yml +0 -4
  73. data/db/migrate/20200827153709_add_commentable_counter_cache_to_posts.rb +1 -1
  74. data/db/migrate/20210310120514_add_followable_counter_cache_to_blogs.rb +1 -1
  75. data/db/migrate/20240828103324_add_deleted_at_to_decidim_blogs_posts.rb +8 -0
  76. data/decidim-blogs.gemspec +2 -2
  77. data/lib/decidim/api/blogs_type.rb +5 -8
  78. data/lib/decidim/api/post_type.rb +15 -2
  79. data/lib/decidim/blogs/admin_engine.rb +7 -1
  80. data/lib/decidim/blogs/component.rb +27 -0
  81. data/lib/decidim/blogs/engine.rb +1 -1
  82. data/lib/decidim/blogs/post_serializer.rb +70 -0
  83. data/lib/decidim/blogs/schema_org_blog_posting_post_serializer.rb +81 -0
  84. data/lib/decidim/blogs/test/factories.rb +16 -1
  85. data/lib/decidim/blogs/version.rb +1 -1
  86. data/lib/decidim/blogs.rb +2 -0
  87. metadata +37 -19
@@ -15,27 +15,32 @@ fi:
15
15
  one: Artikkeli
16
16
  other: Artikkelia
17
17
  decidim:
18
+ admin:
19
+ admin_log:
20
+ changeset:
21
+ posts: Artikkelit
18
22
  blogs:
19
23
  actions:
20
24
  author_id: Luo artikkeli käyttäjänä
21
- confirm_destroy: Haluatko varmasti poistaa tämän artikkelin?
22
- destroy: Poista
25
+ confirm_delete_post: Haluatko varmasti poistaa tämän artikkelin?
26
+ deleted_posts_info: Poistetut artikkelit voidaan palauttaa roskakorista.
23
27
  edit: Muokkaa
24
28
  new: Uusi artikkeli
25
29
  title: Toiminnot
30
+ view_deleted_posts: Näytä poistetut artikkelit
26
31
  admin:
27
32
  posts:
28
33
  create:
29
34
  invalid: Artikkelin luonti epäonnistui.
30
35
  success: Artikkelin luonti onnistui.
31
- destroy:
32
- success: Artikkelin poisto onnistui.
33
36
  edit:
34
37
  save: Päivitä
35
38
  title: Muokkaa artikkelia
36
39
  index:
37
40
  not_published_yet: Ei vielä julkaistu.
38
41
  title: Artikkelit
42
+ manage_trash:
43
+ title: Poistetut artikkelit
39
44
  new:
40
45
  create: Luo
41
46
  title: Luo artikkeli
@@ -46,6 +51,8 @@ fi:
46
51
  post:
47
52
  create: "%{user_name} loi blogikirjoituksen %{resource_name} tilassa %{space_name}"
48
53
  delete: "%{user_name} poisti blogikirjoituksen %{resource_name} tilasta %{space_name}"
54
+ restore: "%{user_name} palautti artikkelin %{resource_name} tilassa %{space_name}"
55
+ soft_delete: "%{user_name} siirsi artikkelin %{resource_name} roskakoriin tilassa %{space_name}"
49
56
  update: "%{user_name} päivitti blogikirjoitusta %{resource_name} tilassa %{space_name}"
50
57
  content_blocks:
51
58
  highlighted_posts:
@@ -94,5 +101,33 @@ fi:
94
101
  email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat kohdetta "%{participatory_space_title}". Voit lopettaa seuraamisen edellä esitetyn linkin kautta.
95
102
  email_subject: Uusi artikkeli julkaistiin osallistumistilassa %{participatory_space_title}
96
103
  notification_title: Kohteessa %{participatory_space_title} on julkaistu artikkeli <a href="%{resource_path}">%{resource_title}</a>
104
+ open_data:
105
+ help:
106
+ post_comments:
107
+ alignment: Kertoo, oliko tämä kommentti puolesta, vastaan vai neutraali
108
+ author: Kommentin laatijan nimi
109
+ body: Kommentin teksti
110
+ commentable_id: Kommentoitavan asian yksilöivä tunniste
111
+ commentable_type: Kommentoitavan asian tyyppi (tulos, ehdotus, jne.)
112
+ created_at: Kommentin laatimisaika
113
+ depth: Kommentin paikka keskusteluketjussa, eli millä tasolla kommentti oli (oliko se vastaus vai vastauksen vastaus)
114
+ id: Kommentin yksilöivä tunniste
115
+ locale: Kommentoijan valitsema kieliasetus sivustolla
116
+ root_commentable_url: URL-osoite kommentoitavaan asiaan, eli millä sivulla kommentti luotiin
117
+ user_group: Kommentin laatijan käyttäjäryhmä, mikäli kommentti laadittiin ryhmän puolesta
118
+ posts:
119
+ author: Tietoja laatijasta
120
+ body: Artikkelin tekstisisältö
121
+ comments_count: Artikkelin saamien kommenttien määrä
122
+ component: Artikkelin komponentti
123
+ created_at: Artikkelin laatimisaika
124
+ endorsements_count: Artikkelin suositusten ("tykkäykset") lukumäärä
125
+ follows_count: Artikkelin seuraajien lukumäärä
126
+ id: Artikkelin yksilöivä tunniste
127
+ participatory_space: Mihin osallistumistilaan (esim. prosessi tai ryhmä) tämä artikkeli kuuluu
128
+ published_at: Artikkelin julkaisuaika
129
+ title: Artikkelin otsikko
130
+ updated_at: Artikkelin viimeisimmän päivityksen ajankohta
131
+ url: Artikkelin URL-osoite
97
132
  statistics:
98
133
  posts_count: Artikkelia
@@ -18,11 +18,12 @@ fr-CA:
18
18
  blogs:
19
19
  actions:
20
20
  author_id: Créer un article comme
21
- confirm_destroy: Êtes-vous certain de vouloir supprimer cet article ?
22
- destroy: Supprimer
21
+ confirm_delete_post: Êtes-vous sûr(e) de vouloir supprimer cet article ?
22
+ deleted_posts_info: Les articles supprimés peuvent être restaurés depuis la corbeille.
23
23
  edit: Modifier
24
24
  new: Nouvel article
25
25
  title: Actions
26
+ view_deleted_posts: Voir les articles supprimés
26
27
  admin:
27
28
  posts:
28
29
  create:
@@ -36,6 +37,8 @@ fr-CA:
36
37
  index:
37
38
  not_published_yet: Pas encore publié.
38
39
  title: Articles
40
+ manage_trash:
41
+ title: Articles supprimés
39
42
  new:
40
43
  create: Créer
41
44
  title: Créer un article
@@ -63,11 +66,28 @@ fr-CA:
63
66
  published_at: Date de publication
64
67
  title: Titre
65
68
  posts:
69
+ edit:
70
+ back: Retour à l'article
71
+ button: Mettre à jour
72
+ title: Modifier l'article
73
+ form:
74
+ author_id: Auteur
75
+ body: Corps de texte
76
+ title: Titre
66
77
  index:
67
78
  count:
68
79
  one: "%{count} article"
69
80
  other: "%{count} articles"
70
81
  empty: Il n'y a pas encore d'articles.
82
+ new_post: Nouvel article
83
+ menu_actions:
84
+ button_destroy: Supprimer l'article
85
+ button_destroy_confirm: Êtes-vous sûr(e) de vouloir supprimer cet article ?
86
+ button_edit: Modifier l'article
87
+ new:
88
+ back: Retour aux articles
89
+ button: Créer
90
+ title: Créer un nouvel article
71
91
  components:
72
92
  blogs:
73
93
  actions:
@@ -82,6 +102,7 @@ fr-CA:
82
102
  announcement: Annonce
83
103
  comments_enabled: Activer le module de commentaire
84
104
  comments_max_length: Longueur max des commentaires (laisser 0 pour la valeur par défaut)
105
+ creation_enabled_for_participants: Les participants peuvent créer des articles
85
106
  step:
86
107
  announcement: Annonce
87
108
  comments_blocked: Commentaires désactivés
@@ -94,5 +115,14 @@ fr-CA:
94
115
  email_outro: Vous avez reçu cette notification parce que vous suivez "%{participatory_space_title}". Vous pouvez le retirer du lien précédent.
95
116
  email_subject: Nouvel article publié dans %{participatory_space_title}
96
117
  notification_title: L'article <a href="%{resource_path}">%{resource_title}</a> a été publié dans %{participatory_space_title}
118
+ open_data:
119
+ help:
120
+ post_comments:
121
+ alignment: Si ce commentaire était pour, contre ou neutre
122
+ author: Le nom du participant qui a fait ce commentaire
123
+ body: Le commentaire lui-même
124
+ commentable_id: L'identifiant unique du commentaire
125
+ created_at: La date de création de ce commentaire
126
+ id: L'id de ce commentaire
97
127
  statistics:
98
128
  posts_count: Publications
@@ -18,11 +18,12 @@ fr:
18
18
  blogs:
19
19
  actions:
20
20
  author_id: Créer un article en tant que
21
- confirm_destroy: Êtes-vous certain de vouloir supprimer cet article ?
22
- destroy: Supprimer
21
+ confirm_delete_post: Êtes-vous sûr(e) de vouloir supprimer cet article ?
22
+ deleted_posts_info: Les articles supprimés peuvent être restaurés depuis la corbeille.
23
23
  edit: Modifier
24
24
  new: Nouvel article
25
25
  title: Actions
26
+ view_deleted_posts: Voir les articles supprimés
26
27
  admin:
27
28
  posts:
28
29
  create:
@@ -36,6 +37,8 @@ fr:
36
37
  index:
37
38
  not_published_yet: Pas encore publié.
38
39
  title: Articles
40
+ manage_trash:
41
+ title: Articles supprimés
39
42
  new:
40
43
  create: Créer
41
44
  title: Créer un article
@@ -63,11 +66,28 @@ fr:
63
66
  published_at: Date de publication
64
67
  title: Titre
65
68
  posts:
69
+ edit:
70
+ back: Retour à l'article
71
+ button: Mettre à jour
72
+ title: Modifier l'article
73
+ form:
74
+ author_id: Auteur
75
+ body: Corps de texte
76
+ title: Titre
66
77
  index:
67
78
  count:
68
79
  one: "%{count} article"
69
80
  other: "%{count} articles"
70
81
  empty: Il n'y a pas encore d'articles.
82
+ new_post: Nouvel article
83
+ menu_actions:
84
+ button_destroy: Supprimer l'article
85
+ button_destroy_confirm: Êtes-vous sûr(e) de vouloir supprimer cet article ?
86
+ button_edit: Modifier l'article
87
+ new:
88
+ back: Retour aux articles
89
+ button: Créer
90
+ title: Créer un nouvel article
71
91
  components:
72
92
  blogs:
73
93
  actions:
@@ -82,6 +102,7 @@ fr:
82
102
  announcement: Annonce
83
103
  comments_enabled: Activer le module de commentaire
84
104
  comments_max_length: Longueur max des commentaires (laisser 0 pour la valeur par défaut)
105
+ creation_enabled_for_participants: Les participants peuvent créer des articles
85
106
  step:
86
107
  announcement: Annonce
87
108
  comments_blocked: Commentaires désactivés
@@ -94,5 +115,14 @@ fr:
94
115
  email_outro: Vous avez reçu cette notification parce que vous suivez "%{participatory_space_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”.
95
116
  email_subject: Nouvel article publié dans %{participatory_space_title}
96
117
  notification_title: L'article <a href="%{resource_path}">%{resource_title}</a> a été publié dans %{participatory_space_title}
118
+ open_data:
119
+ help:
120
+ post_comments:
121
+ alignment: Si ce commentaire était pour, contre ou neutre
122
+ author: Le nom du participant qui a fait ce commentaire
123
+ body: Le commentaire lui-même
124
+ commentable_id: L'identifiant unique du commentaire
125
+ created_at: La date de création de ce commentaire
126
+ id: L'id de ce commentaire
97
127
  statistics:
98
128
  posts_count: Articles
@@ -11,7 +11,6 @@ ga:
11
11
  decidim:
12
12
  blogs:
13
13
  actions:
14
- destroy: Scrios
15
14
  edit: Eagar
16
15
  new: Postáil nua
17
16
  title: Gníomhartha
@@ -12,8 +12,6 @@ gl:
12
12
  blogs:
13
13
  actions:
14
14
  author_id: Crear publicación como
15
- confirm_destroy: Tes a certeza de querer eliminar esta publicación?
16
- destroy: Eliminar
17
15
  edit: Editar
18
16
  new: Nova publicación
19
17
  title: Accións
@@ -18,8 +18,6 @@ hu:
18
18
  blogs:
19
19
  actions:
20
20
  author_id: Bejegyzés létrehozása
21
- confirm_destroy: Biztos, hogy törlöd ezt a bejegyzést?
22
- destroy: Törlés
23
21
  edit: Szerkesztés
24
22
  new: Új bejegyzés
25
23
  title: Műveletek
@@ -28,8 +26,6 @@ hu:
28
26
  create:
29
27
  invalid: Probléma történt a bejegyzés létrehozásakor.
30
28
  success: Bejegyzés sikeresen létrehozva.
31
- destroy:
32
- success: Bejegyzés sikeresen törölve.
33
29
  edit:
34
30
  save: Frissítés
35
31
  title: Bejegyzés szerkesztése
@@ -10,8 +10,6 @@ id:
10
10
  decidim:
11
11
  blogs:
12
12
  actions:
13
- confirm_destroy: Anda yakin ingin menghapus posting ini?
14
- destroy: Menghapus
15
13
  edit: Edit
16
14
  new: Berita Baru
17
15
  title: Tindakan
@@ -3,8 +3,6 @@ is:
3
3
  decidim:
4
4
  blogs:
5
5
  actions:
6
- confirm_destroy: Ertu viss um að þú viljir eyða þessu færslu?
7
- destroy: Eyða
8
6
  edit: Breyta
9
7
  title: Aðgerðir
10
8
  admin:
@@ -12,8 +12,6 @@ it:
12
12
  blogs:
13
13
  actions:
14
14
  author_id: Crea post come
15
- confirm_destroy: Sei sicuro di voler eliminare questo post?
16
- destroy: Elimina
17
15
  edit: Modifica
18
16
  new: Nuovo post
19
17
  title: Azioni
@@ -14,14 +14,19 @@ ja:
14
14
  decidim/blogs/post:
15
15
  other: 投稿
16
16
  decidim:
17
+ admin:
18
+ admin_log:
19
+ changeset:
20
+ posts: 投稿
17
21
  blogs:
18
22
  actions:
19
23
  author_id: 次のように投稿を作成
20
- confirm_destroy: この投稿を削除してもよろしいですか?
21
- destroy: 削除
24
+ confirm_delete_post: この投稿を削除してもよろしいですか?
25
+ deleted_posts_info: 削除された投稿はゴミ箱から復元できます。
22
26
  edit: 編集
23
27
  new: 新規投稿
24
28
  title: アクション
29
+ view_deleted_posts: 削除された投稿を表示
25
30
  admin:
26
31
  posts:
27
32
  create:
@@ -35,6 +40,8 @@ ja:
35
40
  index:
36
41
  not_published_yet: まだ公開されていません。
37
42
  title: 投稿
43
+ manage_trash:
44
+ title: 削除された投稿
38
45
  new:
39
46
  create: 作成
40
47
  title: 投稿を作成
@@ -45,6 +52,8 @@ ja:
45
52
  post:
46
53
  create: "%{user_name} が %{space_name} でブログ投稿 %{resource_name} を作成しました"
47
54
  delete: "%{user_name} がブログ投稿 %{resource_name} を %{space_name} から削除しました"
55
+ restore: "%{user_name} が %{space_name} のブログ投稿 %{resource_name} を復元しました"
56
+ soft_delete: "%{user_name} は %{space_name} のブログ投稿 %{resource_name} をゴミ箱に移動しました"
48
57
  update: "%{user_name} が %{space_name} のブログ投稿 %{resource_name} を更新しました"
49
58
  content_blocks:
50
59
  highlighted_posts:
@@ -62,10 +71,27 @@ ja:
62
71
  published_at: 公開時刻
63
72
  title: タイトル
64
73
  posts:
74
+ edit:
75
+ back: 投稿に戻る
76
+ button: 更新
77
+ title: 投稿を編集
78
+ form:
79
+ author_id: 作成者
80
+ body: 本文
81
+ title: タイトル
65
82
  index:
66
83
  count:
67
84
  other: "%{count} 件の投稿"
68
85
  empty: 投稿はまだありません。
86
+ new_post: 新規投稿
87
+ menu_actions:
88
+ button_destroy: 投稿の削除
89
+ button_destroy_confirm: この投稿を削除してもよろしいですか?
90
+ button_edit: 投稿を編集
91
+ new:
92
+ back: 投稿に戻る
93
+ button: 作成
94
+ title: 新しい投稿を作成
69
95
  components:
70
96
  blogs:
71
97
  actions:
@@ -80,6 +106,7 @@ ja:
80
106
  announcement: お知らせ
81
107
  comments_enabled: コメントを有効にする
82
108
  comments_max_length: コメント最大長 (デフォルト値は 0 のまま)
109
+ creation_enabled_for_participants: 参加者は投稿を作成できます
83
110
  step:
84
111
  announcement: お知らせ
85
112
  comments_blocked: コメントをブロック
@@ -92,5 +119,33 @@ ja:
92
119
  email_outro: '「%{participatory_space_title}」をフォローしているため、この通知を受け取りました。前のリンクからこの通知をアンフォローすることができます。'
93
120
  email_subject: '%{participatory_space_title} に新しい投稿が公開されました'
94
121
  notification_title: '%{participatory_space_title} で投稿 <a href="%{resource_path}">%{resource_title}</a> が公開されました'
122
+ open_data:
123
+ help:
124
+ post_comments:
125
+ alignment: このコメントが好意的、敵対的、中立的であった場合
126
+ author: このコメントを作成した参加者の名前
127
+ body: コメントそのもの
128
+ commentable_id: コメント対象の固有ID
129
+ commentable_type: コメント対象の種別 (結果、提案など)
130
+ created_at: コメントの作成日時
131
+ depth: コメントがコメントツリーのどこに位置しているか(回答、または回答の回答である場合)
132
+ id: コメントのID
133
+ locale: コメントを残した参加者の使っていたロケール(言語)
134
+ root_commentable_url: コメントに関連するリソースの URL
135
+ user_group: コメントを作成したユーザーグループの名前 (もしあれば)
136
+ posts:
137
+ author: 作者の情報
138
+ body: 投稿の本文
139
+ comments_count: 投稿のコメント数
140
+ component: ポストが属するコンポーネント
141
+ created_at: この投稿の作成日時
142
+ endorsements_count: 投稿のオススメ数
143
+ follows_count: 投稿のフォロー数
144
+ id: 投稿の固有ID
145
+ participatory_space: この投稿が所属するスペース(参加型プロセス、参加スペースなど)
146
+ published_at: この投稿の公開日時
147
+ title: 投稿のタイトル
148
+ updated_at: この投稿が更新された日時
149
+ url: この投稿の URL
95
150
  statistics:
96
151
  posts_count: 投稿
@@ -3,7 +3,6 @@ kaa:
3
3
  decidim:
4
4
  blogs:
5
5
  actions:
6
- destroy: Óshiriw
7
6
  edit: Ózgeris kirgiziw
8
7
  title: Háreketler
9
8
  admin:
@@ -8,7 +8,6 @@ ko:
8
8
  decidim:
9
9
  blogs:
10
10
  actions:
11
- destroy: 삭제
12
11
  edit: 수정
13
12
  new: 새 게시물
14
13
  title: 작업
@@ -17,8 +16,6 @@ ko:
17
16
  create:
18
17
  invalid: 게시물을 생성하는 도중 문제가 생겼습니다.
19
18
  success: 게시물이 성공적으로 생성되었습니다.
20
- destroy:
21
- success: 게시물이 성공적으로 삭제되었습니다.
22
19
  edit:
23
20
  save: 업데이트
24
21
  content_blocks:
@@ -12,8 +12,6 @@ lb:
12
12
  blogs:
13
13
  actions:
14
14
  author_id: Beitrag erstellen als
15
- confirm_destroy: Möchten Sie diesen Beitrag wirklich löschen?
16
- destroy: Löschen
17
15
  edit: Bearbeiten
18
16
  new: Neuer Beitrag
19
17
  title: Aktionen
@@ -20,8 +20,6 @@ lt:
20
20
  blogs:
21
21
  actions:
22
22
  author_id: Sukurti įrašą kaip
23
- confirm_destroy: Ar tikrai norite ištrinti šį įrašą?
24
- destroy: Ištrinti
25
23
  edit: Redaguoti
26
24
  new: Naujas įrašas
27
25
  title: Veiksmai
@@ -30,8 +28,6 @@ lt:
30
28
  create:
31
29
  invalid: Kuriant šį įrašą iškilo problema.
32
30
  success: Įrašas sukurtas sėkmingai.
33
- destroy:
34
- success: Įrašas pašalintas.
35
31
  edit:
36
32
  save: Atnaujinimas
37
33
  title: Redaguoti publikaciją
@@ -12,8 +12,6 @@ lv:
12
12
  decidim:
13
13
  blogs:
14
14
  actions:
15
- confirm_destroy: Vai tiešām vēlaties dzēst šo ziņu?
16
- destroy: Dzēst
17
15
  edit: Labot
18
16
  new: Jauna ziņa
19
17
  title: Darbības
@@ -12,8 +12,6 @@ nl:
12
12
  blogs:
13
13
  actions:
14
14
  author_id: Bericht aanmaken als
15
- confirm_destroy: Weet je zeker dat je dit bericht wilt verwijderen?
16
- destroy: Verwijder
17
15
  edit: Bewerk
18
16
  new: Nieuwe blogpost
19
17
  title: acties
@@ -12,8 +12,6 @@
12
12
  blogs:
13
13
  actions:
14
14
  author_id: Opprett innlegg som
15
- confirm_destroy: Er du sikker på at du vil slette dette innlegget?
16
- destroy: Slett
17
15
  edit: Editar
18
16
  new: Nytt innlegg
19
17
  title: Handlinger
@@ -20,8 +20,6 @@ pl:
20
20
  blogs:
21
21
  actions:
22
22
  author_id: Utwórz wpis jako
23
- confirm_destroy: Czy na pewno chcesz usunąć ten wpis?
24
- destroy: Usuń
25
23
  edit: Edytuj
26
24
  new: Nowy wpis
27
25
  title: Działania
@@ -30,8 +28,6 @@ pl:
30
28
  create:
31
29
  invalid: Podczas tworzenia tego posta wystąpił błąd.
32
30
  success: Post został utworzony.
33
- destroy:
34
- success: Post został usunięty.
35
31
  edit:
36
32
  save: Aktualizuj
37
33
  title: Edytuj wpis
@@ -18,8 +18,6 @@ pt-BR:
18
18
  blogs:
19
19
  actions:
20
20
  author_id: Criar publicação como
21
- confirm_destroy: Deseja mesmo excluir este post?
22
- destroy: Excluir
23
21
  edit: Editar
24
22
  new: Nova postagem
25
23
  title: Ações
@@ -28,8 +26,6 @@ pt-BR:
28
26
  create:
29
27
  invalid: Houve um problema ao criar esta postagem.
30
28
  success: Post criado com sucesso.
31
- destroy:
32
- success: Postagem excluída com sucesso.
33
29
  edit:
34
30
  save: Atualizar
35
31
  title: Editar publicação
@@ -12,8 +12,6 @@ pt:
12
12
  blogs:
13
13
  actions:
14
14
  author_id: Criar publicação como
15
- confirm_destroy: Tem a certeza de que deseja eliminar esta publicação?
16
- destroy: Eliminar
17
15
  edit: Editar
18
16
  new: Nova publicação
19
17
  title: Ações
@@ -19,8 +19,6 @@ ro:
19
19
  blogs:
20
20
  actions:
21
21
  author_id: Creează postare ca
22
- confirm_destroy: Sigur dorești să ştergi această postare?
23
- destroy: Șterge
24
22
  edit: Editează
25
23
  new: Postare nouă
26
24
  title: Acțiuni
@@ -58,6 +56,25 @@ ro:
58
56
  official_blog_post: Postare oficială
59
57
  published_at: Publicat la
60
58
  title: Titlu
59
+ posts:
60
+ edit:
61
+ back: Înapoi la postare
62
+ button: Actualizați
63
+ title: Modificați postarea
64
+ form:
65
+ author_id: Autor
66
+ body: Conținut
67
+ title: Titlu
68
+ index:
69
+ new_post: Postare nouă
70
+ menu_actions:
71
+ button_destroy: Ștergeți postarea
72
+ button_destroy_confirm: Sunteți sigur că doriți să ștergeți această postare?
73
+ button_edit: Modificați postarea
74
+ new:
75
+ back: Înapoi la postări
76
+ button: Creați
77
+ title: Creați o postare nouă
61
78
  components:
62
79
  blogs:
63
80
  actions:
@@ -72,6 +89,7 @@ ro:
72
89
  announcement: Anunţ
73
90
  comments_enabled: Comentarii activate
74
91
  comments_max_length: Lungimea maximă a comentariilor (lăsați 0 pentru valoarea implicită)
92
+ creation_enabled_for_participants: Participanții pot crea postări
75
93
  step:
76
94
  announcement: Anunţ
77
95
  comments_blocked: Comentarii blocate
@@ -20,8 +20,6 @@ ru:
20
20
  blogs:
21
21
  actions:
22
22
  author_id: Создать пост как
23
- confirm_destroy: Вы действительно хотите удалить этот пост?
24
- destroy: Удалить
25
23
  edit: Редактировать
26
24
  new: Создать новый пост
27
25
  title: Действия
@@ -30,8 +28,6 @@ ru:
30
28
  create:
31
29
  invalid: При попытке добавить этот пост произошла ошибка.
32
30
  success: Пост успешно создан.
33
- destroy:
34
- success: Пост успешно удален.
35
31
  edit:
36
32
  save: Обновить
37
33
  title: Изменить пост
@@ -13,8 +13,6 @@ sk:
13
13
  decidim:
14
14
  blogs:
15
15
  actions:
16
- confirm_destroy: Naozaj chcete odstrániť tento príspevok?
17
- destroy: Odstrániť
18
16
  edit: Upraviť
19
17
  new: Nový príspevok
20
18
  title: Akcie
@@ -1,6 +1 @@
1
- ---
2
1
  sl:
3
- decidim:
4
- blogs:
5
- actions:
6
- destroy: Izbriši
@@ -18,8 +18,6 @@ sq:
18
18
  blogs:
19
19
  actions:
20
20
  author_id: Krijo postimin si
21
- confirm_destroy: Je i sigurt që dëshiron ta fshish këtë postim?
22
- destroy: Fshij
23
21
  edit: Përpuno
24
22
  new: Postim i ri
25
23
  title: Veprime
@@ -28,8 +26,6 @@ sq:
28
26
  create:
29
27
  invalid: Ndodhi një gabim gjatë krijimit të këtij postimi.
30
28
  success: Postimi u krijua me sukses.
31
- destroy:
32
- success: Postimi u fshi me sukses.
33
29
  edit:
34
30
  save: Përditëso
35
31
  title: Përpuno postimin