decidim-core 0.28.5 → 0.28.6

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 (88) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/participatory_space_dropdown_metadata/show.erb +5 -3
  3. data/app/cells/decidim/resource_types_filter/show.erb +1 -1
  4. data/app/cells/decidim/resource_types_filter_cell.rb +6 -6
  5. data/app/cells/decidim/user_activity/show.erb +1 -1
  6. data/app/commands/decidim/create_omniauth_registration.rb +14 -8
  7. data/app/commands/decidim/search.rb +14 -0
  8. data/app/controllers/decidim/profiles_controller.rb +2 -2
  9. data/app/controllers/decidim/reports_controller.rb +1 -1
  10. data/app/controllers/decidim/user_activities_controller.rb +1 -1
  11. data/app/forms/decidim/account_form.rb +5 -2
  12. data/app/helpers/decidim/orders_helper.rb +2 -1
  13. data/app/helpers/decidim/participatory_space_helpers.rb +1 -1
  14. data/app/models/decidim/user.rb +0 -4
  15. data/app/models/decidim/user_base_entity.rb +4 -0
  16. data/app/packs/src/decidim/index.js +4 -2
  17. data/app/packs/src/decidim/map/provider/here.js +1 -1
  18. data/app/packs/stylesheets/decidim/_hashtags.scss +5 -0
  19. data/app/packs/stylesheets/decidim/_header.scss +20 -2
  20. data/app/packs/stylesheets/decidim/application.scss +1 -0
  21. data/app/presenters/decidim/log/user_presenter.rb +1 -0
  22. data/app/services/decidim/base_diff_renderer.rb +2 -0
  23. data/app/services/decidim/static_map_generator.rb +1 -1
  24. data/app/views/decidim/last_activities/index.html.erb +1 -1
  25. data/app/views/decidim/reported_mailer/hide.html.erb +1 -1
  26. data/app/views/decidim/reported_mailer/report.html.erb +1 -1
  27. data/app/views/decidim/searches/_count.html.erb +1 -1
  28. data/app/views/decidim/searches/_filters.html.erb +40 -38
  29. data/app/views/decidim/shared/_orders.html.erb +2 -2
  30. data/config/locales/ar.yml +44 -13
  31. data/config/locales/bg.yml +17 -8
  32. data/config/locales/bs-BA.yml +2 -0
  33. data/config/locales/ca-IT.yml +2115 -0
  34. data/config/locales/ca.yml +56 -13
  35. data/config/locales/cs.yml +57 -15
  36. data/config/locales/de.yml +51 -8
  37. data/config/locales/el.yml +14 -2
  38. data/config/locales/en.yml +43 -0
  39. data/config/locales/eo.yml +2 -0
  40. data/config/locales/es-MX.yml +56 -13
  41. data/config/locales/es-PY.yml +60 -17
  42. data/config/locales/es.yml +61 -18
  43. data/config/locales/eu.yml +114 -73
  44. data/config/locales/fi-plain.yml +46 -11
  45. data/config/locales/fi.yml +48 -13
  46. data/config/locales/fr-CA.yml +52 -9
  47. data/config/locales/fr.yml +51 -8
  48. data/config/locales/ga-IE.yml +6 -0
  49. data/config/locales/gl.yml +29 -2
  50. data/config/locales/hu.yml +16 -9
  51. data/config/locales/id-ID.yml +28 -3
  52. data/config/locales/is-IS.yml +14 -1
  53. data/config/locales/it.yml +44 -14
  54. data/config/locales/ja.yml +55 -10
  55. data/config/locales/lb.yml +27 -7
  56. data/config/locales/lt.yml +8 -2
  57. data/config/locales/lv.yml +22 -2
  58. data/config/locales/nl.yml +27 -5
  59. data/config/locales/no.yml +20 -0
  60. data/config/locales/pl.yml +14 -5
  61. data/config/locales/pt-BR.yml +17 -7
  62. data/config/locales/pt.yml +20 -0
  63. data/config/locales/ro-RO.yml +232 -73
  64. data/config/locales/ru.yml +29 -1
  65. data/config/locales/sk.yml +34 -6
  66. data/config/locales/sl.yml +4 -0
  67. data/config/locales/sr-CS.yml +2 -0
  68. data/config/locales/sv.yml +28 -9
  69. data/config/locales/tr-TR.yml +26 -7
  70. data/config/locales/uk.yml +16 -1
  71. data/config/locales/zh-CN.yml +22 -2
  72. data/config/locales/zh-TW.yml +10 -0
  73. data/lib/decidim/attributes/time_with_zone.rb +5 -1
  74. data/lib/decidim/content_parsers/blob_parser.rb +10 -8
  75. data/lib/decidim/content_parsers/user_parser.rb +1 -1
  76. data/lib/decidim/core/test/shared_examples/reports_examples.rb +48 -6
  77. data/lib/decidim/core/test/shared_examples/uncommentable_component_examples.rb +26 -0
  78. data/lib/decidim/core/test/shared_examples/versions_controller_examples.rb +26 -0
  79. data/lib/decidim/core/version.rb +1 -1
  80. data/lib/decidim/map/provider/dynamic_map/here.rb +1 -40
  81. data/lib/decidim/map/provider/static_map/here.rb +34 -0
  82. data/lib/decidim/nicknamizable.rb +1 -1
  83. data/lib/decidim/reportable.rb +6 -2
  84. data/lib/decidim/translatable_attributes.rb +5 -1
  85. data/lib/decidim/view_model.rb +1 -0
  86. data/lib/tasks/upgrade/decidim_fix_nickname_uniqueness.rake +23 -20
  87. metadata +8 -7
  88. data/app/packs/src/decidim/vendor/leaflet-tilelayer-here.js +0 -212
@@ -4,10 +4,19 @@ ca:
4
4
  attributes:
5
5
  account:
6
6
  delete_reason: Raó per eliminar el teu compte
7
+ attachment:
8
+ documents: Documents
9
+ image: Imatge
10
+ photos: Fotos
7
11
  common:
8
12
  created_at: Creat el
13
+ content_block_attachment:
14
+ background_image: Imatge de fons
15
+ main_image: Imatge principal
9
16
  conversation:
10
17
  body: Cos
18
+ editor_image:
19
+ file: Arxiu
11
20
  group:
12
21
  about: Quant a
13
22
  avatar: Avatar
@@ -16,12 +25,15 @@ ca:
16
25
  name: Nom
17
26
  nickname: Àlies
18
27
  phone: Telèfon
28
+ import:
29
+ file: Arxiu
19
30
  message:
20
31
  body: Cos
21
32
  report:
22
33
  details: Comentaris addicionals
23
34
  user:
24
35
  about: Quant a
36
+ avatar: Imatge de perfil
25
37
  email: El teu correu electrònic
26
38
  encrypted_password: Contrasenya
27
39
  locale: Configuració regional
@@ -33,6 +45,14 @@ ca:
33
45
  personal_url: URL personal
34
46
  remove_avatar: Elimina la imatge de perfil
35
47
  tos_agreement: Termes i condicions d'ús
48
+ user_group:
49
+ avatar: Avatar
50
+ errors:
51
+ models:
52
+ user:
53
+ attributes:
54
+ nickname:
55
+ format: L'àlies o sobrenom s'ha d'escriure en minúscules i no ha de tenir cap espai
36
56
  models:
37
57
  decidim/attachment_created_event: Arxiu adjunt
38
58
  decidim/component_published_event: Component actiu
@@ -85,6 +105,9 @@ ca:
85
105
  file_size_too_large: La mida del fitxer és massa gran
86
106
  not_inside_organization: L'arxiu no està relacionat amb cap organització
87
107
  date:
108
+ buttons:
109
+ close: Tancar
110
+ select: Seleccionar
88
111
  formats:
89
112
  decidim_short: "%d/%m/%Y"
90
113
  decidim_short_dashed: "%d-%m-%Y"
@@ -92,6 +115,10 @@ ca:
92
115
  decidim_with_day_and_month_name: "%A %d %b %Y"
93
116
  decidim_with_month_name: "%d %B %Y"
94
117
  decidim_with_month_name_short: "%d %b"
118
+ help:
119
+ date_format: 'Format: dd/mm/aaaa'
120
+ order: d-m-y
121
+ separator: "/"
95
122
  datetime:
96
123
  distance_in_words:
97
124
  about_x_hours:
@@ -145,6 +172,7 @@ ca:
145
172
  front_page_link: Anar a la pàgina principal
146
173
  logo: "Logo oficial de %{organization}"
147
174
  opens_in_new_tab: Obrir en una pestanya nova
175
+ secondary_menu: Menú secundari
148
176
  skip_button: Vés al contingut principal
149
177
  account:
150
178
  blocked: Aquest compte ha estat bloquejat degut a una violació dels termes i condicions d'ús
@@ -497,6 +525,8 @@ ca:
497
525
  dummy_step_attribute1: Atribut de fase de prova 1
498
526
  dummy_step_attribute2: Atribut de fase de prova 2
499
527
  dummy_step_translatable_text: Text de fase traduïble de proves
528
+ pagination:
529
+ page_title: "%{component_name} - Pàgina %{current_page} de %{total_pages}"
500
530
  contact: Contacte
501
531
  content_blocks:
502
532
  announcement:
@@ -731,6 +761,11 @@ ca:
731
761
  email_outro: Has rebut aquesta notificació perquè estàs seguint %{amendable_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
732
762
  email_subject: Esmena rebutjada per %{amendable_title} a %{emendation_author_nickname}
733
763
  notification_title: L'<a href="%{emendation_path}">esmena</a> creada per <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> ha estat rebutjada per <a href="%{amendable_path}">%{amendable_title}</a>.
764
+ emendation_promoted:
765
+ follower:
766
+ email_intro: 'S''ha publicat una esmena per a %{amendable_title}. La pots veure en aquesta pàgina:'
767
+ email_outro: Has rebut aquesta notificació perquè és autora de %{amendable_title}.
768
+ email_subject: Una esmena de %{emendation_author_nickname} s'ha publicat com un nou %{amendable_type}
734
769
  attachments:
735
770
  attachment_created:
736
771
  email_intro: 'S''ha afegit un nou document a %{resource_title}. Pots veure''l des d''aquesta pàgina:'
@@ -1017,8 +1052,8 @@ ca:
1017
1052
  success: El grup s'ha abandonat correctament.
1018
1053
  members:
1019
1054
  accept_or_reject_join_requests: 'Les següents participants han sol·licitat unir-se a aquest grup. Accepta o rebutja les seves sol·licituds:'
1020
- accept_request: Accepta
1021
- reject_request: Rebutja
1055
+ accept_request: Acceptar
1056
+ reject_request: Rebutjar
1022
1057
  new:
1023
1058
  create_user_group: Crea un grup
1024
1059
  new_user_group: Nou grup
@@ -1168,16 +1203,22 @@ ca:
1168
1203
  not_started: No s'ha iniciat encara
1169
1204
  remaining: "Resta(en) %{time_distance}"
1170
1205
  metrics:
1206
+ blocked_users:
1207
+ description: Número de participants bloquejades
1171
1208
  download:
1172
1209
  csv: Descarregar les dades (csv)
1173
1210
  followers:
1174
1211
  description: Nombre de participants que segueixen aquest espai de participació
1175
1212
  object: seguidores
1176
- title: Seguidores
1213
+ title: Seguidors
1177
1214
  participants:
1178
1215
  description: Nombre de participants actives a l'organització
1179
1216
  object: participants
1180
1217
  title: Participants
1218
+ reported_users:
1219
+ description: Número de participants reportades
1220
+ user_reports:
1221
+ description: Número de denúncies realitzades per participants
1181
1222
  users:
1182
1223
  description: Nombre de participants a l'organització
1183
1224
  object: participants
@@ -1242,10 +1283,12 @@ ca:
1242
1283
  notifications_digest_mailer:
1243
1284
  header:
1244
1285
  daily: Resum diari de notificacions
1286
+ real_time: En temps real
1245
1287
  weekly: Resum setmanal de notificacions
1246
1288
  hello: Hola %{name},
1247
1289
  intro:
1248
1290
  daily: 'Aquestes són les notificacions del darrer dia basades en l''activitat que segueixes:'
1291
+ real_time: 'Aquesta és una notificació sobre l''activitat que segueixes:'
1249
1292
  weekly: 'Aquestes són les notificacions de la darrera setmana basades en l''activitat que segueixes:'
1250
1293
  outro: Has rebut aquestes notificacions perquè segueixes aquest contingut o les seves autores. Pots deixar de seguir-les des de les seves respectives pàgines.
1251
1294
  see_more: Veure més notificacions
@@ -1357,7 +1400,7 @@ ca:
1357
1400
  followers: Seguidores
1358
1401
  following: Seguint
1359
1402
  group_admins: Gestionar administradores
1360
- group_members: Gestionar membres
1403
+ group_members: Gestiona els membres
1361
1404
  groups: Grups
1362
1405
  members: Membres
1363
1406
  officialized: Participant oficial
@@ -1368,16 +1411,16 @@ ca:
1368
1411
  title: Insígnies
1369
1412
  user:
1370
1413
  actions:
1371
- create_user_group: Crear un grup
1414
+ create_user_group: Crea un grup
1372
1415
  disabled_message: Missatge
1373
- edit_profile: Editar el perfil
1374
- edit_user_group: Editar el perfil del grup
1375
- invite_user: Convidar participant
1376
- join_user_group: Sol·licitar unir-se al grup
1377
- leave_user_group: Surt del grup
1416
+ edit_profile: Edita el perfil
1417
+ edit_user_group: Edita el perfil del grup
1418
+ invite_user: Convida la participant
1419
+ join_user_group: Sol·licita unir-se al grup
1420
+ leave_user_group: Marxa del grup
1378
1421
  manage_user_group: Gestiona el grup
1379
1422
  manage_user_group_admins: Gestionar administradores
1380
- manage_user_group_users: Gestionar membres
1423
+ manage_user_group_users: Gestiona els membres
1381
1424
  message: Missatge
1382
1425
  resend_email_confirmation_instructions: Reenvia un correu electrònic amb les instruccions de confirmació
1383
1426
  confirmation_instructions_sent: Instruccions de confirmació enviades per correu electrònic.
@@ -1388,7 +1431,7 @@ ca:
1388
1431
  invite_user: Convida la participant
1389
1432
  join_user_group: Sol·licita unir-se al grup
1390
1433
  leave_user_group: Marxa del grup
1391
- manage_user_group_admins: Gestiona les administradores
1434
+ manage_user_group_admins: Gestionar administradores
1392
1435
  manage_user_group_users: Gestiona els membres
1393
1436
  resend_email_confirmation_instructions: Reenvia un correu electrònic amb les instruccions de confirmació
1394
1437
  reported_mailer:
@@ -1667,7 +1710,7 @@ ca:
1667
1710
  invite_collaborator:
1668
1711
  subject: T'han convidat a col·laborar a %{organization}
1669
1712
  invite_private_user:
1670
- subject: T'han convidat a participar en un procés participatiu privat a%{organization}
1713
+ subject: T'han convidat a participar en un espai de participació privat a%{organization}
1671
1714
  organization_admin_invitation_instructions:
1672
1715
  subject: T'han convidat a administrar %{organization}
1673
1716
  password_change:
@@ -4,10 +4,18 @@ cs:
4
4
  attributes:
5
5
  account:
6
6
  delete_reason: Důvod odstranění vašeho účtu
7
+ attachment:
8
+ documents: Dokumenty
9
+ photos: Fotky
7
10
  common:
8
11
  created_at: Vytvořeno v
12
+ content_block_attachment:
13
+ background_image: Obrázek pozadí
14
+ main_image: Hlavní obrázek
9
15
  conversation:
10
16
  body: Tělo zprávy
17
+ editor_image:
18
+ file: Soubor
11
19
  group:
12
20
  about: O nás
13
21
  avatar: Avatar
@@ -16,12 +24,15 @@ cs:
16
24
  name: Jméno
17
25
  nickname: Přezdívka
18
26
  phone: Telefon
27
+ import:
28
+ file: Soubor
19
29
  message:
20
30
  body: Tělo zprávy
21
31
  report:
22
32
  details: Další komentáře
23
33
  user:
24
34
  about: O nás
35
+ avatar: Avatar
25
36
  email: Váš email
26
37
  encrypted_password: Heslo
27
38
  locale: Jazyk
@@ -33,6 +44,14 @@ cs:
33
44
  personal_url: Osobní URL
34
45
  remove_avatar: Odstranit avatara
35
46
  tos_agreement: Podmínky smlouvy o poskytování služeb
47
+ user_group:
48
+ avatar: Avatar
49
+ errors:
50
+ models:
51
+ user:
52
+ attributes:
53
+ nickname:
54
+ format: Přezdívka musí být malými písmeny a nesmí obsahovat mezery
36
55
  models:
37
56
  decidim/attachment_created_event: Příloha
38
57
  decidim/component_published_event: Aktivní komponenty
@@ -93,6 +112,9 @@ cs:
93
112
  file_size_too_large: Soubor je příliš velký
94
113
  not_inside_organization: Soubor není připojen k žádné organizaci
95
114
  date:
115
+ buttons:
116
+ close: Zavřít‏
117
+ select: Vybrat
96
118
  formats:
97
119
  decidim_short: "%d/%m/%Y"
98
120
  decidim_short_dashed: "%d-%m-%Y"
@@ -100,6 +122,10 @@ cs:
100
122
  decidim_with_day_and_month_name: "%A %d %b %Y"
101
123
  decidim_with_month_name: "%d %B %Y"
102
124
  decidim_with_month_name_short: "%d %b"
125
+ help:
126
+ date_format: 'Formát: dd/mm/rrrr'
127
+ order: d-m-y
128
+ separator: "/"
103
129
  datetime:
104
130
  distance_in_words:
105
131
  about_x_hours:
@@ -171,6 +197,7 @@ cs:
171
197
  front_page_link: Přejít na titulní stránku
172
198
  logo: "Oficiální logo %{organization}"
173
199
  opens_in_new_tab: Otevře se v nové kartě
200
+ secondary_menu: Sekundární menu
174
201
  skip_button: Přeskočit na hlavní obsah
175
202
  account:
176
203
  blocked: Tento účet byl zablokován kvůli porušení smluvních podmínek
@@ -534,6 +561,8 @@ cs:
534
561
  dummy_step_attribute1: Atribut 1 zástupného kroku
535
562
  dummy_step_attribute2: Atribut 2 zástupného kroku
536
563
  dummy_step_translatable_text: Zástupný krok textu k přeložení
564
+ pagination:
565
+ page_title: "%{component_name} - Strana %{current_page} z %{total_pages}"
537
566
  contact: Kontakt
538
567
  content_blocks:
539
568
  announcement:
@@ -770,6 +799,11 @@ cs:
770
799
  email_outro: Toto oznámení jste obdrželi, protože jste sledovali %{amendable_title}. Po předchozím propojení můžete přestat přijímat oznámení.
771
800
  email_subject: Pozměňovací návrh k %{amendable_title} byl zamítnut od %{emendation_author_nickname}
772
801
  notification_title: <a href="%{emendation_path}">Pozměňovací návrh</a> vytvořen od <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> k <a href="%{amendable_path}">%{amendable_title}</a> byl odmítnut.
802
+ emendation_promoted:
803
+ follower:
804
+ email_intro: 'Byla zveřejněna oprava pro %{amendable_title}. Můžete si ji prohlédnout na této stránce:'
805
+ email_outro: Toto oznámení jste obdrželi, protože jste autorem %{amendable_title}.
806
+ email_subject: Doplněk z %{emendation_author_nickname} byl zveřejněn jako nový %{amendable_type}
773
807
  attachments:
774
808
  attachment_created:
775
809
  email_intro: 'Do dokumentu %{resource_title} byl přidán nový dokument. Můžete jej vidět z této stránky:'
@@ -1002,7 +1036,7 @@ cs:
1002
1036
  accept:
1003
1037
  error: Při přijetí této pozvánky došlo k chybě.
1004
1038
  success: Pozvánka úspěšně přijata.
1005
- accept_invitation: Akceptovat
1039
+ accept_invitation: Přijmout
1006
1040
  accept_or_reject_group_invitations: 'Následující skupiny vás pozvaly, abyste se k nim připojili. Přijmout nebo odmítnout jejich požadavky:'
1007
1041
  index:
1008
1042
  invite: Pozvat
@@ -1060,7 +1094,7 @@ cs:
1060
1094
  success: Skupina úspěšně opustila.
1061
1095
  members:
1062
1096
  accept_or_reject_join_requests: 'Následující uživatelé se připojili k této skupině. Přijmout nebo odmítnout jejich požadavky:'
1063
- accept_request: Akceptovat
1097
+ accept_request: Přijmout
1064
1098
  reject_request: Odmítnout
1065
1099
  new:
1066
1100
  create_user_group: Vytvořit skupinu
@@ -1139,13 +1173,13 @@ cs:
1139
1173
  conversation_mailer:
1140
1174
  comanagers_new_conversation:
1141
1175
  admin_in_group: Obdrželi jste to, protože jste administrátor v %{group}.
1142
- greeting: Dobrý den, %{recipient}!
1176
+ greeting: Ahoj, %{recipient}!
1143
1177
  intro: "%{manager} zahájil novou konverzaci s názvem %{group}. Klikněte zde pro její zobrazení:"
1144
1178
  outro: Užijte si platformu!
1145
1179
  subject: "%{manager} zahájil novou konverzaci jako %{group}"
1146
1180
  comanagers_new_message:
1147
1181
  admin_in_group: Obdrželi jste to, protože jste administrátor v %{group}.
1148
- greeting: Dobrý den, %{recipient}!
1182
+ greeting: Ahoj, %{recipient}!
1149
1183
  intro: "%{manager} zveřejnil nové zprávy v konverzaci s názvem %{group}. Klikněte zde pro jejich zobrazení:"
1150
1184
  outro: Užijte si platformu!
1151
1185
  subject: "%{manager} odeslal nové zprávy jako %{group}"
@@ -1156,13 +1190,13 @@ cs:
1156
1190
  subject: "%{sender} začal s vámi konverzovat"
1157
1191
  new_group_conversation:
1158
1192
  admin_in_group: Obdrželi jste to, protože jste administrátor v %{group}.
1159
- greeting: Dobrý den, %{recipient}!
1193
+ greeting: Ahoj, %{recipient}!
1160
1194
  intro: "%{sender} zahájil novou konverzaci se skupinou %{group}. Klikněte zde pro její zobrazení:"
1161
1195
  outro: Užijte si platformu!
1162
1196
  subject: "%{sender} zahájil konverzaci s %{group}"
1163
1197
  new_group_message:
1164
1198
  admin_in_group: Obdrželi jste to, protože jste administrátor v %{group}.
1165
- greeting: Dobrý den, %{recipient}!
1199
+ greeting: Ahoj, %{recipient}!
1166
1200
  intro: "%{sender} přidal nové zprávy do konverzace se skupinou %{group}. Klikněte zde pro jejich zobrazení:"
1167
1201
  outro: Užijte si platformu!
1168
1202
  subject: "%{group} má nové zprávy od %{sender}"
@@ -1211,6 +1245,8 @@ cs:
1211
1245
  not_started: Ještě nezačalo
1212
1246
  remaining: "Zbývá %{time_distance}"
1213
1247
  metrics:
1248
+ blocked_users:
1249
+ description: Počet blokovaných účastníků
1214
1250
  download:
1215
1251
  csv: Stáhnout data (CSV)
1216
1252
  followers:
@@ -1221,10 +1257,14 @@ cs:
1221
1257
  description: Počet aktivních uživatelů v organizaci
1222
1258
  object: účastníků
1223
1259
  title: Účastníci
1260
+ reported_users:
1261
+ description: Počet nahlášených účastníků
1262
+ user_reports:
1263
+ description: Počet zpráv vypracovaných účastníky
1224
1264
  users:
1225
1265
  description: Počet uživatelů v organizaci
1226
1266
  object: uživatelů
1227
- title: Uživatelé
1267
+ title: Účastníci
1228
1268
  newsletter_mailer:
1229
1269
  newsletter:
1230
1270
  no_reply_notice: Tento e-mail byl odeslán z e-mailové adresy, která nemůže přijmout příchozí email. Prosím, neodpovídejte na tuto zprávu.
@@ -1285,10 +1325,12 @@ cs:
1285
1325
  notifications_digest_mailer:
1286
1326
  header:
1287
1327
  daily: Denní výběr oznámení
1328
+ real_time: V reálném čase
1288
1329
  weekly: Týdenní výběr oznámení
1289
1330
  hello: Dobrý den %{name},
1290
1331
  intro:
1291
1332
  daily: 'Toto jsou oznámení z posledního dne založená na aktivitě, kterou máte:'
1333
+ real_time: 'Toto je oznámení o aktivitě, kterou sledujete:'
1292
1334
  weekly: 'Toto jsou oznámení z minulého týdne založená na aktivitě, kterou máte:'
1293
1335
  outro: Obdrželi jste tato oznámení, protože sledujete tento obsah nebo jeho autory. Můžete je zrušit z jejich příslušných stránek.
1294
1336
  see_more: Zobrazit další oznámení
@@ -1399,8 +1441,8 @@ cs:
1399
1441
  conversations: Konverzace
1400
1442
  followers: Sledující
1401
1443
  following: Sleduje
1402
- group_admins: Spravovat správce
1403
- group_members: Spravovat členy
1444
+ group_admins: Správa administrátorů
1445
+ group_members: Správa členů
1404
1446
  groups: Skupiny
1405
1447
  members: Členové
1406
1448
  officialized: Oficiální účastník
@@ -1413,14 +1455,14 @@ cs:
1413
1455
  actions:
1414
1456
  create_user_group: Vytvořit skupinu
1415
1457
  disabled_message: Zpráva
1416
- edit_profile: Upravit profil
1458
+ edit_profile: Editovat profil
1417
1459
  edit_user_group: Upravit profil skupiny
1418
- invite_user: Pozvat účastníka
1419
- join_user_group: Požádat o připojení ke skupině
1460
+ invite_user: Pozvat uživatele
1461
+ join_user_group: Žádost o připojení ke skupině
1420
1462
  leave_user_group: Opustit skupinu
1421
1463
  manage_user_group: Spravovat skupinu
1422
- manage_user_group_admins: Spravovat správce
1423
- manage_user_group_users: Spravovat členy
1464
+ manage_user_group_admins: Správa administrátorů
1465
+ manage_user_group_users: Správa členů
1424
1466
  message: Zpráva
1425
1467
  resend_email_confirmation_instructions: Znovu odeslat pokyny pro potvrzení e-mailu
1426
1468
  confirmation_instructions_sent: Pokyny pro potvrzení e-mailu byly odeslány.
@@ -1598,7 +1640,7 @@ cs:
1598
1640
  time_ago: "před %{time}"
1599
1641
  reply:
1600
1642
  placeholder: Vaše odpověď...
1601
- send: Odeslat
1643
+ send: Poslat
1602
1644
  update:
1603
1645
  error: Zpráva nebyla odeslána. Zkuste to později
1604
1646
  user_interests:
@@ -4,10 +4,19 @@ de:
4
4
  attributes:
5
5
  account:
6
6
  delete_reason: Grund, Ihr Konto zu löschen
7
+ attachment:
8
+ documents: Dokumente
9
+ image: Bild
10
+ photos: Fotos
7
11
  common:
8
12
  created_at: Erstellt am
13
+ content_block_attachment:
14
+ background_image: Hintergrundbild
15
+ main_image: Hauptbild
9
16
  conversation:
10
17
  body: Haupttext
18
+ editor_image:
19
+ file: Datei
11
20
  group:
12
21
  about: Über
13
22
  avatar: Profilbild
@@ -16,12 +25,15 @@ de:
16
25
  name: Name
17
26
  nickname: Spitzname
18
27
  phone: Telefonnummer
28
+ import:
29
+ file: Datei
19
30
  message:
20
31
  body: Haupttext
21
32
  report:
22
33
  details: Zusätzliche Kommentare
23
34
  user:
24
35
  about: Über
36
+ avatar: Profilbild
25
37
  email: Ihre E-Mail
26
38
  encrypted_password: Passwort
27
39
  locale: Spracheinstellung
@@ -33,6 +45,14 @@ de:
33
45
  personal_url: Persönliche URL
34
46
  remove_avatar: Avatar entfernen
35
47
  tos_agreement: Nutzungsvereinbarung
48
+ user_group:
49
+ avatar: Profilbild
50
+ errors:
51
+ models:
52
+ user:
53
+ attributes:
54
+ nickname:
55
+ format: Der Spitzname muss Kleinbuchstaben sein und keine Leerzeichen enthalten
36
56
  models:
37
57
  decidim/attachment_created_event: Anhang
38
58
  decidim/component_published_event: Aktive Komponente
@@ -85,6 +105,9 @@ de:
85
105
  file_size_too_large: Datei ist zu groß
86
106
  not_inside_organization: Die Datei ist keiner Organisation angefügt.
87
107
  date:
108
+ buttons:
109
+ close: Schliessen
110
+ select: Wählen
88
111
  formats:
89
112
  decidim_short: "%d/%m/%Y"
90
113
  decidim_short_dashed: "%d-%m-%Y"
@@ -92,6 +115,10 @@ de:
92
115
  decidim_with_day_and_month_name: "%A, %d. %b %Y"
93
116
  decidim_with_month_name: "%d %B %Y"
94
117
  decidim_with_month_name_short: "%d. %b"
118
+ help:
119
+ date_format: 'Format: dd/mm/yyyy'
120
+ order: d-m-y
121
+ separator: "/"
95
122
  datetime:
96
123
  distance_in_words:
97
124
  about_x_hours:
@@ -145,6 +172,7 @@ de:
145
172
  front_page_link: Zur Startseite gehen
146
173
  logo: "Offizielles Logo von %{organization}"
147
174
  opens_in_new_tab: In neuem Tab öffnen
175
+ secondary_menu: Sekundäres Menü
148
176
  skip_button: Zu Hauptinhalten überspringen
149
177
  account:
150
178
  blocked: Dieses Konto wurde wegen Verletzung der Nutzungsbedingungen gesperrt
@@ -468,7 +496,7 @@ de:
468
496
  comment: Kommentar
469
497
  debate: Debatte
470
498
  initiative: Initiative
471
- meeting: Treffen
499
+ meeting: Veranstaltung
472
500
  order: Budget-Abstimmung
473
501
  post: Beitrag
474
502
  proposal: Vorschlag
@@ -500,6 +528,8 @@ de:
500
528
  dummy_step_attribute1: Dummy-Schritt-Attribut 1
501
529
  dummy_step_attribute2: Dummy-Schritt-Attribut 2
502
530
  dummy_step_translatable_text: Übersetzbarer Blindtext des Schritts
531
+ pagination:
532
+ page_title: "%{component_name} - Seite %{current_page} von %{total_pages}"
503
533
  contact: Kontakt
504
534
  content_blocks:
505
535
  announcement:
@@ -548,7 +578,7 @@ de:
548
578
  metrics:
549
579
  name: Organisationsmetriken
550
580
  participatory_space_metrics:
551
- name: Metriken
581
+ name: Teilnahme an Zahlen
552
582
  participatory_space_stats:
553
583
  name: Statistiken
554
584
  social_networks_metadata:
@@ -736,6 +766,11 @@ de:
736
766
  email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{amendable_title}. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
737
767
  email_subject: Abgelehnte Änderung für %{amendable_title} von %{emendation_author_nickname}
738
768
  notification_title: Die <a href="%{emendation_path}">Änderung</a> für <a href="%{amendable_path}">%{amendable_title}</a> von <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> wurde abgelehnt.
769
+ emendation_promoted:
770
+ follower:
771
+ email_intro: 'Eine Änderung wurde für %{amendable_title} abgelehnt. Sie können es auf dieser Seite sehen:'
772
+ email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{amendable_title} mitverfasst haben.
773
+ email_subject: Eine Änderung von %{emendation_author_nickname} ist als neuer %{amendable_type} veröffentlicht worden
739
774
  attachments:
740
775
  attachment_created:
741
776
  email_intro: 'Ein neues Dokument wurde zu %{resource_title} hinzugefügt. Sie können es auf dieser Seite sehen:'
@@ -880,7 +915,7 @@ de:
880
915
  error: Beim Folgen dieser Ressource ist ein Fehler aufgetreten.
881
916
  participatory_space: Sie folgen <span class="show-for-sr">%{resource_name}</span>
882
917
  destroy:
883
- button: Entfolgen
918
+ button: Nicht mehr folgen
884
919
  error: Beim Entfolgen dieser Ressource ist ein Fehler aufgetreten.
885
920
  forms:
886
921
  errors:
@@ -1173,20 +1208,26 @@ de:
1173
1208
  not_started: Noch nicht begonnen
1174
1209
  remaining: "%{time_distance} verbleibend"
1175
1210
  metrics:
1211
+ blocked_users:
1212
+ description: Anzahl der blockierten Teilnehmenden
1176
1213
  download:
1177
1214
  csv: Daten herunterladen (CSV)
1178
1215
  followers:
1179
1216
  description: Anzahl der Benutzer, die dieser Teilnahme folgen
1180
1217
  object: Anhänger
1181
- title: Anhänger
1218
+ title: Follower
1182
1219
  participants:
1183
1220
  description: Anzahl der aktiven Benutzer in der Organisation
1184
1221
  object: Teilnehmer
1185
1222
  title: Teilnehmer
1223
+ reported_users:
1224
+ description: Anzahl der gemeldeten Teilnehmenden
1225
+ user_reports:
1226
+ description: Anzahl der von Teilnehmenden getätigten Meldungen
1186
1227
  users:
1187
1228
  description: Anzahl der Benutzer in der Organisation
1188
1229
  object: Benutzer
1189
- title: Benutzer
1230
+ title: Teilnehmer
1190
1231
  newsletter_mailer:
1191
1232
  newsletter:
1192
1233
  no_reply_notice: Diese E-Mail wurde von einer Benachrichtigungs-E-Mail-Adresse versendet, die keine eingehende E-Mails akzeptieren kann. Bitte antworten Sie nicht auf diese Nachricht.
@@ -1247,10 +1288,12 @@ de:
1247
1288
  notifications_digest_mailer:
1248
1289
  header:
1249
1290
  daily: Tägliche Zusammenfassung
1291
+ real_time: In Echtzeit
1250
1292
  weekly: Wöchentliche Zusammenfassung
1251
1293
  hello: Hallo %{name}
1252
1294
  intro:
1253
1295
  daily: 'Dies sind die Benachrichtigungen vom letzten Tag basierend auf den Aktivitäten, denen Sie folgen:'
1296
+ real_time: 'Es gibt eine Benachrichtigung über die Aktivität, die du folgst:'
1254
1297
  weekly: 'Dies sind die Benachrichtigungen der letzten Woche, basierend auf den Aktivitäten, die Sie folgen:'
1255
1298
  outro: Sie haben diese Benachrichtigung erhalten, weil Sie diesen Inhalt oder seine Verfassenden folgen. Sie können dem Inhalt direkt auf seiner Seite entfolgen.
1256
1299
  see_more: Weitere Benachrichtigungen ansehen
@@ -1377,14 +1420,14 @@ de:
1377
1420
  disabled_message: Nachricht
1378
1421
  edit_profile: Profil bearbeiten
1379
1422
  edit_user_group: Gruppenprofil bearbeiten
1380
- invite_user: Teilnehmer einladen
1381
- join_user_group: Gruppenbeitritt anfragen
1423
+ invite_user: Nutzer einladen
1424
+ join_user_group: Anfrage zur Teilnahme an der Gruppe
1382
1425
  leave_user_group: Gruppe verlassen
1383
1426
  manage_user_group: Gruppe verwalten
1384
1427
  manage_user_group_admins: Admins verwalten
1385
1428
  manage_user_group_users: Mitglieder verwalten
1386
1429
  message: Nachricht
1387
- resend_email_confirmation_instructions: E-Mail-Bestätigungsanweisungen erneut versenden
1430
+ resend_email_confirmation_instructions: Senden Sie die E-Mail-Bestätigungsanweisungen erneut
1388
1431
  confirmation_instructions_sent: E-Mail-Bestätigungsanweisungen gesendet.
1389
1432
  create_user_group: Gruppe erstellen
1390
1433
  edit_profile: Profil bearbeiten
@@ -31,6 +31,8 @@ el:
31
31
  personal_url: Προσωπική ιστοσελίδα
32
32
  remove_avatar: Αφαίρεση avatar
33
33
  tos_agreement: Όροι Παροχής Υπηρεσιών
34
+ user_group:
35
+ avatar: Άβαταρ
34
36
  models:
35
37
  decidim/attachment_created_event: Συνημμένο
36
38
  decidim/component_published_event: Ενεργό στοιχείο
@@ -80,6 +82,8 @@ el:
80
82
  errors:
81
83
  file_size_too_large: Το μέγεθος του αρχείου είναι πολύ μεγάλο
82
84
  date:
85
+ buttons:
86
+ select: Επιλέξτε
83
87
  formats:
84
88
  decidim_short: "%d/%m/%Y"
85
89
  decidim_short_with_month_name_short: "%d %b %Y"
@@ -443,6 +447,8 @@ el:
443
447
  view_all: Προβολή όλων
444
448
  metrics:
445
449
  name: Μετρικά οργανισμού
450
+ participatory_space_metrics:
451
+ name: Μετρικά
446
452
  static_page:
447
453
  section:
448
454
  name: Ενότητα
@@ -927,6 +933,8 @@ el:
927
933
  new_conversation: Νέα συνομιλία
928
934
  next: Επόμενο
929
935
  title: Συνομιλίες
936
+ reply_form:
937
+ placeholder: Η απάντησή σας...
930
938
  show:
931
939
  back: Πίσω σε όλες τις συνομιλίες
932
940
  chat_with: Συνομιλία με
@@ -941,11 +949,9 @@ el:
941
949
  participants:
942
950
  description: Αριθμός ενεργών συμμετεχόντων στον οργανισμό
943
951
  object: συμμετέχοντες
944
- title: Συμμετέχοντες
945
952
  users:
946
953
  description: Αριθμός συμμετεχόντων στον οργανισμό
947
954
  object: συμμετέχοντες
948
- title: Συμμετέχοντες
949
955
  newsletter_mailer:
950
956
  newsletter:
951
957
  unsubscribe: Για να εξαιρεθείτε από τη λήψη αυτού του τύπου email, πατήστε <a href="%{link}" target="_blank" class="unsubscribe">Κατάργηση εγγραφής</a>.
@@ -1077,6 +1083,8 @@ el:
1077
1083
  conversations: Συνομιλίες
1078
1084
  followers: Ακόλουθοι
1079
1085
  following: Ακολουθεί
1086
+ group_admins: Διαχείριση διαχειριστών
1087
+ group_members: Διαχείριση μελών
1080
1088
  groups: Ομάδες
1081
1089
  members: Μέλη
1082
1090
  officialized: Επίσημος συμμετέχων
@@ -1092,9 +1100,11 @@ el:
1092
1100
  edit_user_group: Επεξεργασία προφίλ ομάδας
1093
1101
  invite_user: Πρόσκληση συμμετέχοντα
1094
1102
  join_user_group: Αίτημα συμμετοχής σε ομάδα
1103
+ leave_user_group: Αποχώρηση από την ομάδα
1095
1104
  manage_user_group_admins: Διαχείριση διαχειριστών
1096
1105
  manage_user_group_users: Διαχείριση μελών
1097
1106
  message: Μήνυμα
1107
+ resend_email_confirmation_instructions: Επανάληψη αποστολής των οδηγιών επιβεβαίωσης μέσω email
1098
1108
  confirmation_instructions_sent: Στάλθηκαν οι οδηγίες επιβεβαίωσης email.
1099
1109
  create_user_group: Δημιουργία ομάδας
1100
1110
  edit_profile: Επεξεργασία προφίλ
@@ -1187,6 +1197,8 @@ el:
1187
1197
  report: Αναφορά
1188
1198
  spam: Περιέχει clickbait, διαφημίσεις, απάτες ή script bot.
1189
1199
  title: Αναφορά ακατάλληλου περιεχομένου
1200
+ flag_user_modal:
1201
+ close: Κλείσιμο
1190
1202
  floating_help:
1191
1203
  help: Βοήθεια
1192
1204
  login_modal: