decidim-core 0.29.2 → 0.29.3

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 (115) 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/profile_actions/show.erb +1 -1
  4. data/app/cells/decidim/report_button/already_reported_modal.erb +2 -2
  5. data/app/cells/decidim/report_button/flag_modal.erb +13 -27
  6. data/app/cells/decidim/report_button_cell.rb +2 -8
  7. data/app/cells/decidim/report_user_button/already_reported_modal.erb +11 -0
  8. data/app/cells/decidim/report_user_button/flag_modal.erb +46 -0
  9. data/app/cells/decidim/report_user_button/show.erb +2 -0
  10. data/app/cells/decidim/report_user_button_cell.rb +59 -0
  11. data/app/cells/decidim/resource_types_filter/show.erb +1 -1
  12. data/app/cells/decidim/resource_types_filter_cell.rb +6 -6
  13. data/app/cells/decidim/user_activity/show.erb +1 -1
  14. data/app/commands/decidim/create_omniauth_registration.rb +14 -8
  15. data/app/commands/decidim/create_report.rb +1 -6
  16. data/app/commands/decidim/search.rb +14 -0
  17. data/app/controllers/decidim/profiles_controller.rb +2 -2
  18. data/app/controllers/decidim/reports_controller.rb +1 -1
  19. data/app/controllers/decidim/user_activities_controller.rb +1 -1
  20. data/app/forms/decidim/account_form.rb +5 -2
  21. data/app/helpers/decidim/orders_helper.rb +2 -1
  22. data/app/helpers/decidim/participatory_space_helpers.rb +1 -1
  23. data/app/jobs/decidim/hide_child_resources_job.rb +24 -0
  24. data/app/mailers/decidim/reported_mailer.rb +1 -0
  25. data/app/models/decidim/action_log.rb +1 -9
  26. data/app/models/decidim/report.rb +1 -1
  27. data/app/models/decidim/user.rb +0 -4
  28. data/app/models/decidim/user_base_entity.rb +4 -0
  29. data/app/packs/src/decidim/datepicker/datepicker_functions.js +3 -3
  30. data/app/packs/src/decidim/index.js +4 -2
  31. data/app/packs/src/decidim/map/provider/here.js +1 -1
  32. data/app/packs/stylesheets/decidim/_content_blocks.scss +4 -0
  33. data/app/packs/stylesheets/decidim/_hashtags.scss +5 -0
  34. data/app/packs/stylesheets/decidim/_header.scss +11 -5
  35. data/app/packs/stylesheets/decidim/application.scss +1 -0
  36. data/app/presenters/decidim/log/user_presenter.rb +1 -0
  37. data/app/presenters/decidim/user_presenter.rb +1 -1
  38. data/app/services/decidim/base_diff_renderer.rb +2 -0
  39. data/app/services/decidim/static_map_generator.rb +1 -1
  40. data/app/views/decidim/last_activities/index.html.erb +1 -1
  41. data/app/views/decidim/reported_mailer/hide.html.erb +17 -1
  42. data/app/views/decidim/reported_mailer/report.html.erb +1 -1
  43. data/app/views/decidim/searches/_count.html.erb +1 -1
  44. data/app/views/decidim/searches/_filters.html.erb +40 -38
  45. data/app/views/decidim/shared/_orders.html.erb +2 -2
  46. data/app/views/layouts/decidim/footer/_main_legal.html.erb +1 -1
  47. data/config/locales/ar.yml +41 -28
  48. data/config/locales/bg.yml +10 -24
  49. data/config/locales/bs-BA.yml +2 -0
  50. data/config/locales/ca-IT.yml +2111 -0
  51. data/config/locales/ca.yml +57 -29
  52. data/config/locales/cs.yml +55 -32
  53. data/config/locales/de.yml +48 -24
  54. data/config/locales/el.yml +10 -15
  55. data/config/locales/en.yml +44 -16
  56. data/config/locales/eo.yml +2 -0
  57. data/config/locales/es-MX.yml +56 -28
  58. data/config/locales/es-PY.yml +61 -33
  59. data/config/locales/es.yml +60 -32
  60. data/config/locales/eu.yml +112 -87
  61. data/config/locales/fi-plain.yml +44 -28
  62. data/config/locales/fi.yml +46 -30
  63. data/config/locales/fr-CA.yml +58 -25
  64. data/config/locales/fr.yml +57 -24
  65. data/config/locales/ga-IE.yml +4 -4
  66. data/config/locales/gl.yml +25 -15
  67. data/config/locales/hu.yml +9 -23
  68. data/config/locales/id-ID.yml +24 -16
  69. data/config/locales/is-IS.yml +10 -1
  70. data/config/locales/it.yml +35 -27
  71. data/config/locales/ja.yml +55 -25
  72. data/config/locales/lb.yml +24 -22
  73. data/config/locales/lt.yml +5 -17
  74. data/config/locales/lv.yml +18 -15
  75. data/config/locales/nl.yml +23 -18
  76. data/config/locales/no.yml +18 -16
  77. data/config/locales/pl.yml +7 -21
  78. data/config/locales/pt-BR.yml +11 -24
  79. data/config/locales/pt.yml +18 -16
  80. data/config/locales/ro-RO.yml +243 -86
  81. data/config/locales/ru.yml +23 -8
  82. data/config/locales/sk.yml +29 -18
  83. data/config/locales/sl.yml +4 -0
  84. data/config/locales/sr-CS.yml +2 -0
  85. data/config/locales/sv.yml +22 -26
  86. data/config/locales/tr-TR.yml +24 -23
  87. data/config/locales/uk.yml +12 -2
  88. data/config/locales/zh-CN.yml +18 -15
  89. data/config/locales/zh-TW.yml +8 -16
  90. data/lib/decidim/asset_router/storage.rb +7 -2
  91. data/lib/decidim/attributes/time_with_zone.rb +5 -1
  92. data/lib/decidim/content_parsers/blob_parser.rb +10 -8
  93. data/lib/decidim/content_parsers/user_parser.rb +1 -1
  94. data/lib/decidim/core/test/shared_examples/reports_examples.rb +48 -6
  95. data/lib/decidim/core/test/shared_examples/social_share_examples.rb +32 -0
  96. data/lib/decidim/core/test/shared_examples/uncommentable_component_examples.rb +26 -0
  97. data/lib/decidim/core/test/shared_examples/versions_controller_examples.rb +26 -0
  98. data/lib/decidim/core/version.rb +1 -1
  99. data/lib/decidim/map/provider/dynamic_map/here.rb +1 -40
  100. data/lib/decidim/map/provider/static_map/here.rb +34 -0
  101. data/lib/decidim/moderation_tools.rb +16 -2
  102. data/lib/decidim/nicknamizable.rb +1 -1
  103. data/lib/decidim/reportable.rb +6 -2
  104. data/lib/decidim/translatable_attributes.rb +5 -1
  105. data/lib/tasks/upgrade/clean_hidden_resources.rake +33 -0
  106. data/lib/tasks/upgrade/decidim_fix_nickname_uniqueness.rake +23 -20
  107. metadata +15 -14
  108. data/app/cells/decidim/author/flag.erb +0 -6
  109. data/app/cells/decidim/author/flag_user.erb +0 -14
  110. data/app/cells/decidim/flag_modal/flag_user.erb +0 -34
  111. data/app/cells/decidim/flag_modal/show.erb +0 -52
  112. data/app/cells/decidim/flag_modal_cell.rb +0 -56
  113. data/app/cells/decidim/profile_sidebar/show.erb +0 -167
  114. data/app/cells/decidim/profile_sidebar_cell.rb +0 -68
  115. 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
@@ -91,7 +111,7 @@ ca:
91
111
  decidim_with_month_name_short: "%d %b"
92
112
  help:
93
113
  date_format: 'Format: dd/mm/aaaa'
94
- order: d-m-a
114
+ order: d-m-y
95
115
  separator: "/"
96
116
  datetime:
97
117
  distance_in_words:
@@ -146,6 +166,7 @@ ca:
146
166
  front_page_link: Anar a la pàgina principal
147
167
  logo: "Logo oficial de %{organization}"
148
168
  opens_in_new_tab: Obrir en una pestanya nova
169
+ secondary_menu: Menú secundari
149
170
  skip_button: Vés al contingut principal
150
171
  account:
151
172
  blocked: Aquest compte ha estat bloquejat degut a una violació dels termes i condicions d'ús
@@ -496,6 +517,8 @@ ca:
496
517
  dummy_step_attribute1: Atribut de fase de prova 1
497
518
  dummy_step_attribute2: Atribut de fase de prova 2
498
519
  dummy_step_translatable_text: Text de fase traduïble de proves
520
+ pagination:
521
+ page_title: "%{component_name} - Pàgina %{current_page} de %{total_pages}"
499
522
  contact: Contacte
500
523
  content_blocks:
501
524
  announcement:
@@ -734,6 +757,11 @@ ca:
734
757
  email_outro: Has rebut aquesta notificació perquè estàs seguint %{amendable_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
735
758
  email_subject: Esmena rebutjada per %{amendable_title} a %{emendation_author_nickname}
736
759
  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>.
760
+ emendation_promoted:
761
+ follower:
762
+ email_intro: 'S''ha publicat una esmena per a %{amendable_title}. La pots veure en aquesta pàgina:'
763
+ email_outro: Has rebut aquesta notificació perquè és autora de %{amendable_title}.
764
+ email_subject: Una esmena de %{emendation_author_nickname} s'ha publicat com un nou %{amendable_type}
737
765
  attachments:
738
766
  attachment_created:
739
767
  email_intro: 'S''ha afegit un nou document a %{resource_title}. Pots veure''l des d''aquesta pàgina:'
@@ -1025,8 +1053,8 @@ ca:
1025
1053
  success: El grup s'ha abandonat correctament.
1026
1054
  members:
1027
1055
  accept_or_reject_join_requests: 'Les següents participants han sol·licitat unir-se a aquest grup. Accepta o rebutja les seves sol·licituds:'
1028
- accept_request: Accepta
1029
- reject_request: Rebutja
1056
+ accept_request: Acceptar
1057
+ reject_request: Rebutjar
1030
1058
  new:
1031
1059
  create_user_group: Crea un grup
1032
1060
  new_user_group: Nou grup
@@ -1176,16 +1204,22 @@ ca:
1176
1204
  not_started: No s'ha iniciat encara
1177
1205
  remaining: "Resta(en) %{time_distance}"
1178
1206
  metrics:
1207
+ blocked_users:
1208
+ description: Número de participants bloquejades
1179
1209
  download:
1180
1210
  csv: Descarregar les dades (csv)
1181
1211
  followers:
1182
1212
  description: Nombre de participants que segueixen aquest espai de participació
1183
1213
  object: seguidores
1184
- title: Seguidores
1214
+ title: Seguidors
1185
1215
  participants:
1186
1216
  description: Nombre de participants actives a l'organització
1187
1217
  object: participants
1188
1218
  title: Participants
1219
+ reported_users:
1220
+ description: Número de participants reportades
1221
+ user_reports:
1222
+ description: Número de denúncies realitzades per participants
1189
1223
  users:
1190
1224
  description: Nombre de participants a l'organització
1191
1225
  object: participants
@@ -1251,10 +1285,12 @@ ca:
1251
1285
  notifications_digest_mailer:
1252
1286
  header:
1253
1287
  daily: Resum diari de notificacions
1288
+ real_time: En temps real
1254
1289
  weekly: Resum setmanal de notificacions
1255
1290
  hello: Hola %{name},
1256
1291
  intro:
1257
1292
  daily: 'Aquestes són les notificacions del darrer dia basades en l''activitat que segueixes:'
1293
+ real_time: 'Aquesta és una notificació sobre l''activitat que segueixes:'
1258
1294
  weekly: 'Aquestes són les notificacions de la darrera setmana basades en l''activitat que segueixes:'
1259
1295
  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.
1260
1296
  see_more: Veure més notificacions
@@ -1364,44 +1400,35 @@ ca:
1364
1400
  followers: Seguidores
1365
1401
  following: Seguint
1366
1402
  group_admins: Gestionar administradores
1367
- group_members: Gestionar membres
1403
+ group_members: Gestiona els membres
1368
1404
  groups: Grups
1369
1405
  members: Membres
1370
1406
  officialized: Participant oficial
1371
1407
  send_private_message: Enviar missatge privat
1372
- sidebar:
1373
- badges:
1374
- info: Els distintius s'aconsegueixen mitjançant la realització d'activitats específiques a la plataforma.
1375
- title: Insígnies
1376
1408
  user:
1377
1409
  actions:
1378
- create_user_group: Crear un grup
1410
+ create_user_group: Crea un grup
1379
1411
  disabled_message: Missatge
1380
- edit_profile: Editar el perfil
1381
- edit_user_group: Editar el perfil del grup
1382
- invite_user: Convidar participant
1383
- join_user_group: Sol·licitar unir-se al grup
1384
- leave_user_group: Surt del grup
1412
+ edit_profile: Edita el perfil
1413
+ edit_user_group: Edita el perfil del grup
1414
+ invite_user: Convida la participant
1415
+ join_user_group: Sol·licita unir-se al grup
1416
+ leave_user_group: Marxa del grup
1385
1417
  manage_user_group: Gestiona el grup
1386
1418
  manage_user_group_admins: Gestionar administradores
1387
- manage_user_group_users: Gestionar membres
1419
+ manage_user_group_users: Gestiona els membres
1388
1420
  message: Missatge
1389
1421
  resend_email_confirmation_instructions: Reenvia un correu electrònic amb les instruccions de confirmació
1390
1422
  confirmation_instructions_sent: Instruccions de confirmació enviades per correu electrònic.
1391
- create_user_group: Crea un grup
1392
- edit_profile: Edita el perfil
1393
- edit_user_group: Edita el perfil del grup
1394
1423
  fill_in_email_to_confirm_it: Si us plau, omple el correu electrònic del teu grup per confirmar-lo.
1395
- invite_user: Convida la participant
1396
- join_user_group: Sol·licita unir-se al grup
1397
- leave_user_group: Marxa del grup
1398
- manage_user_group_admins: Gestiona les administradores
1399
- manage_user_group_users: Gestiona els membres
1400
- resend_email_confirmation_instructions: Reenvia un correu electrònic amb les instruccions de confirmació
1401
1424
  reported_mailer:
1402
1425
  hide:
1426
+ content: Contingut reportat
1427
+ details: Detalls
1403
1428
  hello: Hola %{name},
1404
1429
  manage_moderations: Gestiona moderacions
1430
+ participatory_space: Espai de participació
1431
+ reason: Motiu
1405
1432
  report_html: <p>El següent <a href="%{url}">contingut</a> s'ha ocultat automàticament.</p>
1406
1433
  subject: Un contingut s'ha ocultat automàticament
1407
1434
  report:
@@ -1421,6 +1448,8 @@ ca:
1421
1448
  create:
1422
1449
  error: S'ha produït un error en denunciar el contingut. Si us plau, torna-ho a intentar.
1423
1450
  success: El contingut s'ha denunciat amb èxit i serà revisat per una administradora.
1451
+ parent_hidden:
1452
+ report_details: El recurs principal estava amagat
1424
1453
  resource_endorsements:
1425
1454
  create:
1426
1455
  error: S'ha produït un error durant l'acció d'adhesió.
@@ -1489,14 +1518,13 @@ ca:
1489
1518
  flag_user_modal:
1490
1519
  already_reported: Aquest contingut ja ha estat reportat i serà revisat per una administradora.
1491
1520
  block: Eliminar aquesta participant
1492
- close: Tancar
1493
- description: Què és inapropiat d'aquesta usuària?
1521
+ description: Què té inapropiat aquesta participant?
1494
1522
  does_not_belong: Conté activitat il·legal, amenaces de suïcidi, informació personal, o qualsevol altra cosa que creguis que no pertany a %{organization_name}.
1495
1523
  hide: Amagar tots els seus continguts
1496
1524
  offensive: Conté racisme, sexisme, insults, atacs personals, amenaces de mort, peticions de suïcidi o qualsevol forma de discurs d'odi.
1497
1525
  report: Reportar
1498
1526
  spam: Conté "clickbait", publicitat o estafes.
1499
- title: Reportar contingut inapropiat
1527
+ title: Reportar participant inapropiada
1500
1528
  floating_help:
1501
1529
  help: Ajuda
1502
1530
  follow_button:
@@ -1674,7 +1702,7 @@ ca:
1674
1702
  invite_collaborator:
1675
1703
  subject: T'han convidat a col·laborar a %{organization}
1676
1704
  invite_private_user:
1677
- subject: T'han convidat a participar en un procés participatiu privat a%{organization}
1705
+ subject: T'han convidat a participar en un espai de participació privat a%{organization}
1678
1706
  organization_admin_invitation_instructions:
1679
1707
  subject: T'han convidat a administrar %{organization}
1680
1708
  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
@@ -99,7 +118,7 @@ cs:
99
118
  decidim_with_month_name_short: "%d %b"
100
119
  help:
101
120
  date_format: 'Formát: dd/mm/rrrr'
102
- order: d-m-r
121
+ order: d-m-y
103
122
  separator: "/"
104
123
  datetime:
105
124
  distance_in_words:
@@ -172,6 +191,7 @@ cs:
172
191
  front_page_link: Přejít na titulní stránku
173
192
  logo: "Oficiální logo %{organization}"
174
193
  opens_in_new_tab: Otevře se v nové kartě
194
+ secondary_menu: Sekundární menu
175
195
  skip_button: Přeskočit na hlavní obsah
176
196
  account:
177
197
  blocked: Tento účet byl zablokován kvůli porušení smluvních podmínek
@@ -533,6 +553,8 @@ cs:
533
553
  dummy_step_attribute1: Atribut 1 zástupného kroku
534
554
  dummy_step_attribute2: Atribut 2 zástupného kroku
535
555
  dummy_step_translatable_text: Zástupný krok textu k přeložení
556
+ pagination:
557
+ page_title: "%{component_name} - Strana %{current_page} z %{total_pages}"
536
558
  contact: Kontakt
537
559
  content_blocks:
538
560
  announcement:
@@ -773,6 +795,11 @@ cs:
773
795
  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í.
774
796
  email_subject: Pozměňovací návrh k %{amendable_title} byl zamítnut od %{emendation_author_nickname}
775
797
  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.
798
+ emendation_promoted:
799
+ follower:
800
+ email_intro: 'Byla zveřejněna oprava pro %{amendable_title}. Můžete si ji prohlédnout na této stránce:'
801
+ email_outro: Toto oznámení jste obdrželi, protože jste autorem %{amendable_title}.
802
+ email_subject: Doplněk z %{emendation_author_nickname} byl zveřejněn jako nový %{amendable_type}
776
803
  attachments:
777
804
  attachment_created:
778
805
  email_intro: 'Do dokumentu %{resource_title} byl přidán nový dokument. Můžete jej vidět z této stránky:'
@@ -1010,7 +1037,7 @@ cs:
1010
1037
  accept:
1011
1038
  error: Při přijetí této pozvánky došlo k chybě.
1012
1039
  success: Pozvánka úspěšně přijata.
1013
- accept_invitation: Akceptovat
1040
+ accept_invitation: Přijmout
1014
1041
  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:'
1015
1042
  index:
1016
1043
  invite: Pozvat
@@ -1068,7 +1095,7 @@ cs:
1068
1095
  success: Skupina úspěšně opustila.
1069
1096
  members:
1070
1097
  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:'
1071
- accept_request: Akceptovat
1098
+ accept_request: Přijmout
1072
1099
  reject_request: Odmítnout
1073
1100
  new:
1074
1101
  create_user_group: Vytvořit skupinu
@@ -1147,13 +1174,13 @@ cs:
1147
1174
  conversation_mailer:
1148
1175
  comanagers_new_conversation:
1149
1176
  admin_in_group: Obdrželi jste to, protože jste administrátor v %{group}.
1150
- greeting: Dobrý den, %{recipient}!
1177
+ greeting: Ahoj, %{recipient}!
1151
1178
  intro: "%{manager} zahájil novou konverzaci s názvem %{group}. Klikněte zde pro její zobrazení:"
1152
1179
  outro: Užijte si platformu!
1153
1180
  subject: "%{manager} zahájil novou konverzaci jako %{group}"
1154
1181
  comanagers_new_message:
1155
1182
  admin_in_group: Obdrželi jste to, protože jste administrátor v %{group}.
1156
- greeting: Dobrý den, %{recipient}!
1183
+ greeting: Ahoj, %{recipient}!
1157
1184
  intro: "%{manager} zveřejnil nové zprávy v konverzaci s názvem %{group}. Klikněte zde pro jejich zobrazení:"
1158
1185
  outro: Užijte si platformu!
1159
1186
  subject: "%{manager} odeslal nové zprávy jako %{group}"
@@ -1164,13 +1191,13 @@ cs:
1164
1191
  subject: "%{sender} začal s vámi konverzovat"
1165
1192
  new_group_conversation:
1166
1193
  admin_in_group: Obdrželi jste to, protože jste administrátor v %{group}.
1167
- greeting: Dobrý den, %{recipient}!
1194
+ greeting: Ahoj, %{recipient}!
1168
1195
  intro: "%{sender} zahájil novou konverzaci se skupinou %{group}. Klikněte zde pro její zobrazení:"
1169
1196
  outro: Užijte si platformu!
1170
1197
  subject: "%{sender} zahájil konverzaci s %{group}"
1171
1198
  new_group_message:
1172
1199
  admin_in_group: Obdrželi jste to, protože jste administrátor v %{group}.
1173
- greeting: Dobrý den, %{recipient}!
1200
+ greeting: Ahoj, %{recipient}!
1174
1201
  intro: "%{sender} přidal nové zprávy do konverzace se skupinou %{group}. Klikněte zde pro jejich zobrazení:"
1175
1202
  outro: Užijte si platformu!
1176
1203
  subject: "%{group} má nové zprávy od %{sender}"
@@ -1219,6 +1246,8 @@ cs:
1219
1246
  not_started: Ještě nezačalo
1220
1247
  remaining: "Zbývá %{time_distance}"
1221
1248
  metrics:
1249
+ blocked_users:
1250
+ description: Počet blokovaných účastníků
1222
1251
  download:
1223
1252
  csv: Stáhnout data (CSV)
1224
1253
  followers:
@@ -1229,10 +1258,14 @@ cs:
1229
1258
  description: Počet aktivních uživatelů v organizaci
1230
1259
  object: účastníků
1231
1260
  title: Účastníci
1261
+ reported_users:
1262
+ description: Počet nahlášených účastníků
1263
+ user_reports:
1264
+ description: Počet zpráv vypracovaných účastníky
1232
1265
  users:
1233
1266
  description: Počet uživatelů v organizaci
1234
1267
  object: uživatelů
1235
- title: Uživatelé
1268
+ title: Účastníci
1236
1269
  newsletter_mailer:
1237
1270
  newsletter:
1238
1271
  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.
@@ -1294,10 +1327,12 @@ cs:
1294
1327
  notifications_digest_mailer:
1295
1328
  header:
1296
1329
  daily: Denní výběr oznámení
1330
+ real_time: V reálném čase
1297
1331
  weekly: Týdenní výběr oznámení
1298
1332
  hello: Dobrý den %{name},
1299
1333
  intro:
1300
1334
  daily: 'Toto jsou oznámení z posledního dne založená na aktivitě, kterou máte:'
1335
+ real_time: 'Toto je oznámení o aktivitě, kterou sledujete:'
1301
1336
  weekly: 'Toto jsou oznámení z minulého týdne založená na aktivitě, kterou máte:'
1302
1337
  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.
1303
1338
  see_more: Zobrazit další oznámení
@@ -1406,41 +1441,28 @@ cs:
1406
1441
  conversations: Konverzace
1407
1442
  followers: Sledující
1408
1443
  following: Sleduje
1409
- group_admins: Spravovat správce
1410
- group_members: Spravovat členy
1444
+ group_admins: Správa administrátorů
1445
+ group_members: Správa členů
1411
1446
  groups: Skupiny
1412
1447
  members: Členové
1413
1448
  officialized: Oficiální účastník
1414
1449
  send_private_message: Odeslat soukromou zprávu
1415
- sidebar:
1416
- badges:
1417
- info: Odznaky jsou získávány prováděním konkrétní činnosti v platformě.
1418
- title: Odznaky
1419
1450
  user:
1420
1451
  actions:
1421
1452
  create_user_group: Vytvořit skupinu
1422
1453
  disabled_message: Zpráva
1423
- edit_profile: Upravit profil
1454
+ edit_profile: Editovat profil
1424
1455
  edit_user_group: Upravit profil skupiny
1425
- invite_user: Pozvat účastníka
1426
- join_user_group: Požádat o připojení ke skupině
1456
+ invite_user: Pozvat uživatele
1457
+ join_user_group: Žádost o připojení ke skupině
1427
1458
  leave_user_group: Opustit skupinu
1428
1459
  manage_user_group: Spravovat skupinu
1429
- manage_user_group_admins: Spravovat správce
1430
- manage_user_group_users: Spravovat členy
1460
+ manage_user_group_admins: Správa administrátorů
1461
+ manage_user_group_users: Správa členů
1431
1462
  message: Zpráva
1432
1463
  resend_email_confirmation_instructions: Znovu odeslat pokyny pro potvrzení e-mailu
1433
1464
  confirmation_instructions_sent: Pokyny pro potvrzení e-mailu byly odeslány.
1434
- create_user_group: Vytvořit skupinu
1435
- edit_profile: Editovat profil
1436
- edit_user_group: Upravit profil skupiny
1437
1465
  fill_in_email_to_confirm_it: Pro potvrzení vyplňte e-mailovou adresu skupiny.
1438
- invite_user: Pozvat uživatele
1439
- join_user_group: Žádost o připojení ke skupině
1440
- leave_user_group: Opustit skupinu
1441
- manage_user_group_admins: Správa administrátorů
1442
- manage_user_group_users: Správa členů
1443
- resend_email_confirmation_instructions: Znovu odeslat pokyny pro potvrzení e-mailu
1444
1466
  reported_mailer:
1445
1467
  hide:
1446
1468
  hello: Zdravím %{name},
@@ -1464,6 +1486,8 @@ cs:
1464
1486
  create:
1465
1487
  error: Při vytváření shromáždění došlo k chybě. Zkuste to znovu.
1466
1488
  success: Zpráva byla úspěšně vytvořena a bude kontrolována administrátorem.
1489
+ parent_hidden:
1490
+ report_details: Nadřazený dokument byl skryt
1467
1491
  resource_endorsements:
1468
1492
  create:
1469
1493
  error: Během akce schválení došlo k chybě.
@@ -1532,14 +1556,13 @@ cs:
1532
1556
  flag_user_modal:
1533
1557
  already_reported: Tento obsah je již nahlášen a bude přezkoumán administrátorem.
1534
1558
  block: Blokovat tohoto uživatele
1535
- close: Zavřít
1536
- description: Co je s uživatelem nevhodné?
1559
+ description: Co je s tímto účastníkem nevhodné?
1537
1560
  does_not_belong: Obsahuje nezákonnou činnost, hrozby sebevraždou, osobní informaci nebo cokoliv jiného, o čem si myslíte, že nepatří do %{organization_name}.
1538
1561
  hide: Skrýt veškerý jejich obsah
1539
1562
  offensive: Obsahuje rasismus, sexismus, urážky, osobní útoky, hrozby smrti, sebevražedné žádosti nebo jakoukoliv formu nenávistného projevu.
1540
1563
  report: Nahlásit
1541
1564
  spam: Obsahuje clickbait, reklamu, podvody nebo škodlivé skripty.
1542
- title: Nahlásit nevhodného uživatele
1565
+ title: Nahlásit nevhodného účastníka
1543
1566
  floating_help:
1544
1567
  help: Pomoc
1545
1568
  follow_button:
@@ -1605,7 +1628,7 @@ cs:
1605
1628
  time_ago: "před %{time}"
1606
1629
  reply:
1607
1630
  placeholder: Vaše odpověď...
1608
- send: Odeslat
1631
+ send: Poslat
1609
1632
  update:
1610
1633
  error: Zpráva nebyla odeslána. Zkuste to později
1611
1634
  user_interests: