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 @@ fr:
4
4
  attributes:
5
5
  account:
6
6
  delete_reason: Pour quelle(s) raison(s) supprimez-vous votre compte ?
7
+ attachment:
8
+ documents: Documents
9
+ image: Image
10
+ photos: Photos
7
11
  common:
8
12
  created_at: Créé le
13
+ content_block_attachment:
14
+ background_image: Image d'arrière-plan
15
+ main_image: Image principale
9
16
  conversation:
10
17
  body: Corps de texte
18
+ editor_image:
19
+ file: Fichier
11
20
  group:
12
21
  about: A propos
13
22
  avatar: Avatar
@@ -16,12 +25,15 @@ fr:
16
25
  name: Nom
17
26
  nickname: Pseudonyme
18
27
  phone: Téléphone
28
+ import:
29
+ file: Fichier
19
30
  message:
20
31
  body: Corps de texte
21
32
  report:
22
33
  details: Commentaires supplémentaires
23
34
  user:
24
35
  about: A propos de moi
36
+ avatar: Avatar
25
37
  email: Votre email
26
38
  encrypted_password: Mot de passe
27
39
  locale: Langue
@@ -33,6 +45,14 @@ fr:
33
45
  personal_url: Site internet personnel
34
46
  remove_avatar: Supprimer l'avatar
35
47
  tos_agreement: Conditions d'utilisation
48
+ user_group:
49
+ avatar: Avatar
50
+ errors:
51
+ models:
52
+ user:
53
+ attributes:
54
+ nickname:
55
+ format: Le pseudo doit être en minuscules et ne contenir aucun espace
36
56
  models:
37
57
  decidim/attachment_created_event: Document lié
38
58
  decidim/component_published_event: Fonctionnalité active
@@ -57,7 +77,7 @@ fr:
57
77
  with_participatory_space: Espace participatif
58
78
  decidim/user:
59
79
  current_password: Mot de passe actuel
60
- email: Email
80
+ email: Courriel
61
81
  name: Pseudonyme
62
82
  password: Mot de passe
63
83
  password_confirmation: Confirmation du mot de passe
@@ -85,6 +105,9 @@ fr:
85
105
  file_size_too_large: Le fichier est trop volumineux
86
106
  not_inside_organization: Le fichier n'est attaché à aucune organisation
87
107
  date:
108
+ buttons:
109
+ close: Fermer
110
+ select: Sélectionner
88
111
  formats:
89
112
  decidim_short: "%d/%m/%Y"
90
113
  decidim_short_dashed: "%d-%m-%Y"
@@ -92,6 +115,10 @@ fr:
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: jj/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 @@ fr:
145
172
  front_page_link: Aller à la première page
146
173
  logo: "Logo officiel de %{organization}"
147
174
  opens_in_new_tab: S'ouvre dans un nouvel onglet
175
+ secondary_menu: Menu secondaire
148
176
  skip_button: Passer au contenu principal
149
177
  account:
150
178
  blocked: Ce compte a été bloqué en raison d'une violation des conditions d'utilisation
@@ -500,6 +528,8 @@ fr:
500
528
  dummy_step_attribute1: Attribut d'étape factice 1
501
529
  dummy_step_attribute2: Attribut d'étape factice 2
502
530
  dummy_step_translatable_text: Texte traduisible de l'étape factice
531
+ pagination:
532
+ page_title: "%{component_name} - Page %{current_page} sur %{total_pages}"
503
533
  contact: Contact
504
534
  content_blocks:
505
535
  announcement:
@@ -548,7 +578,7 @@ fr:
548
578
  metrics:
549
579
  name: Historique des statistiques de participation
550
580
  participatory_space_metrics:
551
- name: Métriques
581
+ name: Participation en chiffres
552
582
  participatory_space_stats:
553
583
  name: Statistiques
554
584
  social_networks_metadata:
@@ -735,6 +765,11 @@ fr:
735
765
  email_outro: Vous avez reçu cette notification parce que vous suivez %{amendable_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”.
736
766
  email_subject: Un amendement rejeté pour %{amendable_title} à %{emendation_author_nickname}
737
767
  notification_title: Le <a href="%{emendation_path}">amendement</a> créé par <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> a été rejetée pour <a href="%{amendable_path}">%{amendable_title}</a>.
768
+ emendation_promoted:
769
+ follower:
770
+ email_intro: 'Une correction a été publiée pour %{amendable_title}. Vous pouvez la voir sur cette page :'
771
+ email_outro: Vous avez reçu cette notification parce que vous êtes un(e) auteur/trice de %{amendable_title}.
772
+ email_subject: Une correction réalisée par %{emendation_author_nickname} a été publiée en tant que nouvelle %{amendable_type}
738
773
  attachments:
739
774
  attachment_created:
740
775
  email_intro: 'Un nouveau document a été ajouté à %{resource_title}. Vous pouvez le voir sur cette page :'
@@ -963,7 +998,7 @@ fr:
963
998
  accept:
964
999
  error: Une erreur s'est produite lors de l'acceptation de cette invitation.
965
1000
  success: L’invitation a été acceptée avec succès.
966
- accept_invitation: Acceptez
1001
+ accept_invitation: Accepter
967
1002
  accept_or_reject_group_invitations: 'Les groupes suivants vous ont invité à les rejoindre. Accepter ou rejeter leurs demandes:'
968
1003
  index:
969
1004
  invite: Inviter
@@ -1021,7 +1056,7 @@ fr:
1021
1056
  success: Le groupe est parti avec succès.
1022
1057
  members:
1023
1058
  accept_or_reject_join_requests: 'Les utilisateurs suivants ont demandé à rejoindre ce groupe. Accepter ou rejeter leurs demandes:'
1024
- accept_request: Acceptez
1059
+ accept_request: Accepter
1025
1060
  reject_request: Rejeter
1026
1061
  new:
1027
1062
  create_user_group: Créer un groupe
@@ -1106,7 +1141,7 @@ fr:
1106
1141
  subject: "%{manager} a commencé une nouvelle conversation en tant que %{group}"
1107
1142
  comanagers_new_message:
1108
1143
  admin_in_group: Vous recevez ceci parce que vous êtes un administrateur de %{group}.
1109
- greeting: Bonjour %{recipient} !
1144
+ greeting: Bonjour, %{recipient} !
1110
1145
  intro: "%{manager} a posté de nouveaux messages dans une conversation au nom de %{group}. Cliquez ici pour les voir:"
1111
1146
  outro: Profitez de la plateforme !
1112
1147
  subject: "%{manager} a envoyé de nouveaux messages en tant que %{group}"
@@ -1172,6 +1207,8 @@ fr:
1172
1207
  not_started: Pas encore commencé
1173
1208
  remaining: "%{time_distance} restant"
1174
1209
  metrics:
1210
+ blocked_users:
1211
+ description: Nombre de participants bloqués
1175
1212
  download:
1176
1213
  csv: Télécharger les données (CSV)
1177
1214
  followers:
@@ -1182,10 +1219,14 @@ fr:
1182
1219
  description: Nombre d'utilisateurs actifs dans l'organisation
1183
1220
  object: les participants
1184
1221
  title: Participants
1222
+ reported_users:
1223
+ description: Nombre de participants signalés
1224
+ user_reports:
1225
+ description: Nombre de signalements effectués par les participants
1185
1226
  users:
1186
1227
  description: Nombre d'utilisateurs dans l'organisation
1187
1228
  object: utilisateurs
1188
- title: Utilisateurs
1229
+ title: Participants
1189
1230
  newsletter_mailer:
1190
1231
  newsletter:
1191
1232
  no_reply_notice: Cet e-mail a été envoyé à partir d'une adresse automatique qui ne peut pas recevoir d'e-mail. Veuillez ne pas répondre à ce message.
@@ -1246,10 +1287,12 @@ fr:
1246
1287
  notifications_digest_mailer:
1247
1288
  header:
1248
1289
  daily: Résumé quotidien des notifications
1290
+ real_time: Temps réel
1249
1291
  weekly: Résumé hebdomadaire des notifications
1250
1292
  hello: Bonjour %{name},
1251
1293
  intro:
1252
1294
  daily: 'Voici les notifications de la veille, basées sur les ressources que vous suivez :'
1295
+ real_time: 'Ceci est une notification sur l''activité que vous suivez :'
1253
1296
  weekly: 'Voici les notifications de la semaine dernière, basées sur les ressources que vous suivez :'
1254
1297
  outro: Vous avez reçu ces notifications parce que vous suivez ce contenu ou ses auteurs. Pour arrêter de les suivre, rendez-vous sur la page du contenu ou de l'auteur et cliquez sur "Ne plus suivre".
1255
1298
  see_more: Voir plus de notifications
@@ -1369,12 +1412,12 @@ fr:
1369
1412
  sidebar:
1370
1413
  badges:
1371
1414
  info: Les badges sont gagnés en effectuant des activités spécifiques sur la plateforme.
1372
- title: Badges
1415
+ title: Insignes
1373
1416
  user:
1374
1417
  actions:
1375
1418
  create_user_group: Créer un groupe
1376
1419
  disabled_message: Message
1377
- edit_profile: Modifier le profil
1420
+ edit_profile: Mettre à jour le profil
1378
1421
  edit_user_group: Modifier le profil du groupe
1379
1422
  invite_user: Inviter un utilisateur
1380
1423
  join_user_group: Demander à rejoindre ce groupe
@@ -17,6 +17,8 @@ ga:
17
17
  about: Faoi
18
18
  nickname: Leasainm
19
19
  password: Pasfhocal
20
+ user_group:
21
+ avatar: Abhatár
20
22
  models:
21
23
  decidim/attachment_created_event: Ceangaltán
22
24
  activerecord:
@@ -29,6 +31,8 @@ ga:
29
31
  'false': 'Níl'
30
32
  'true': 'Is ea'
31
33
  date:
34
+ buttons:
35
+ select: Roghnaigh
32
36
  formats:
33
37
  decidim_short: "%d/%m/%Y"
34
38
  decidim_short_with_month_name_short: "%d %b %Y"
@@ -100,6 +104,8 @@ ga:
100
104
  random: Randamach
101
105
  last_activity:
102
106
  view_all: Amharc ar uile
107
+ participatory_space_metrics:
108
+ name: Méadrachtaí
103
109
  core:
104
110
  application_helper:
105
111
  filter_category_values:
@@ -29,7 +29,6 @@ gl:
29
29
  attributes:
30
30
  decidim/user:
31
31
  current_password: Contrasinal actual
32
- email: Correo electrónico
33
32
  name: Nome da usuaria
34
33
  password: Contrasinal
35
34
  password_confirmation: Confirmación por contrasinal
@@ -48,6 +47,8 @@ gl:
48
47
  'false': 'Non'
49
48
  'true': 'Si'
50
49
  date:
50
+ buttons:
51
+ select: Seleccionar
51
52
  formats:
52
53
  decidim_short: "%d/%m/%Y"
53
54
  decidim_short_with_month_name_short: "%d %b %Y"
@@ -269,6 +270,8 @@ gl:
269
270
  view_all: Ver todo
270
271
  metrics:
271
272
  name: Métricas da organización
273
+ participatory_space_metrics:
274
+ name: Participación en números
272
275
  stats:
273
276
  name: Estatísticas da organización
274
277
  sub_hero:
@@ -612,10 +615,18 @@ gl:
612
615
  home: Inicio
613
616
  messaging:
614
617
  conversation_mailer:
618
+ comanagers_new_conversation:
619
+ greeting: Ola, %{recipient}!
620
+ comanagers_new_message:
621
+ greeting: Ola, %{recipient}!
615
622
  new_conversation:
616
623
  greeting: Ola, %{recipient}!
617
624
  intro: "%{sender} comezou unha nova conversa contigo. Prema aquí para velo:"
618
625
  subject: "%{sender} comezou unha conversa contigo"
626
+ new_group_conversation:
627
+ greeting: Ola, %{recipient}!
628
+ new_group_message:
629
+ greeting: Ola, %{recipient}!
619
630
  new_message:
620
631
  greeting: Ola, %{recipient}!
621
632
  intro: "%{sender} publicou novas mensaxes na túa conversa. Prema aquí para velas:"
@@ -639,7 +650,7 @@ gl:
639
650
  users:
640
651
  description: Número de usuarios da organización
641
652
  object: usuarios
642
- title: Usuarios
653
+ title: Participantes
643
654
  newsletter_mailer:
644
655
  newsletter:
645
656
  unsubscribe: Para desactivar a recepción deste tipo de correo electrónico, <a href="%{link}" target="_blank" class="unsubscribe">Subscribe</a>.
@@ -725,6 +736,8 @@ gl:
725
736
  badges: Insignias
726
737
  followers: Seguidores
727
738
  following: Segue
739
+ group_admins: Xestionar os administradores
740
+ group_members: Xestionar membros
728
741
  groups: Grupos
729
742
  members: Membros
730
743
  sidebar:
@@ -732,6 +745,16 @@ gl:
732
745
  info: As insignias obtéñense realizando actividades específicas na plataforma.
733
746
  title: Insignias
734
747
  user:
748
+ actions:
749
+ create_user_group: Crear grupo
750
+ edit_profile: Editar perfil
751
+ edit_user_group: Editar o perfil do grupo
752
+ invite_user: Invitar ao usuario
753
+ join_user_group: Solicitude para unirse ao grupo
754
+ leave_user_group: Deixar de grupo
755
+ manage_user_group_admins: Xestionar os administradores
756
+ manage_user_group_users: Xestionar membros
757
+ resend_email_confirmation_instructions: Reenvía as instrucións de confirmación de correo electrónico
735
758
  create_user_group: Crear grupo
736
759
  edit_profile: Editar perfil
737
760
  edit_user_group: Editar o perfil do grupo
@@ -792,6 +815,8 @@ gl:
792
815
  report: Informe
793
816
  spam: Contén clic, publicidade, fraudes ou bots de script.
794
817
  title: Informar dun problema
818
+ flag_user_modal:
819
+ close: Pechar
795
820
  floating_help:
796
821
  help: Axuda
797
822
  login_modal:
@@ -828,6 +853,8 @@ gl:
828
853
  participants_count: Participantes
829
854
  users_count: Participantes
830
855
  user_conversations:
856
+ reply:
857
+ send: Enviar
831
858
  update:
832
859
  error: Mensaxe non enviada. Téntao de novo máis tarde
833
860
  user_interests:
@@ -33,6 +33,8 @@ hu:
33
33
  personal_url: Személyes URL
34
34
  remove_avatar: Avatár eltávolítása
35
35
  tos_agreement: A szolgáltatás felhasználási feltételei
36
+ user_group:
37
+ avatar: Profilkép
36
38
  models:
37
39
  decidim/attachment_created_event: Melléklet
38
40
  decidim/component_published_event: Aktív elem
@@ -84,6 +86,9 @@ hu:
84
86
  file_size_too_large: Túl nagy a fájl mérete
85
87
  not_inside_organization: A fájl nincs csatolva egyetlen szervezethez sem
86
88
  date:
89
+ buttons:
90
+ close: Bezár
91
+ select: Kijelölés
87
92
  formats:
88
93
  decidim_short: "%Y.%m.%d"
89
94
  decidim_short_dashed: "%d-%m-%Y"
@@ -91,6 +96,8 @@ hu:
91
96
  decidim_with_day_and_month_name: "%A %d %b %Y"
92
97
  decidim_with_month_name: "%d %B %Y"
93
98
  decidim_with_month_name_short: "%d %b"
99
+ help:
100
+ date_format: 'Formátum nn/hh/éééé'
94
101
  datetime:
95
102
  distance_in_words:
96
103
  about_x_hours:
@@ -506,7 +513,7 @@ hu:
506
513
  metrics:
507
514
  name: Szervezeti mutatók
508
515
  participatory_space_metrics:
509
- name: Mérőszámok
516
+ name: Részvétel számokban
510
517
  participatory_space_stats:
511
518
  name: Statisztikák
512
519
  social_networks_metadata:
@@ -1015,13 +1022,13 @@ hu:
1015
1022
  conversation_mailer:
1016
1023
  comanagers_new_conversation:
1017
1024
  admin_in_group: Azért kapta ezt, mert a(z) %{group} csoport adminisztrátora.
1018
- greeting: Kedves %{recipient}!
1025
+ greeting: Szia %{recipient}!
1019
1026
  intro: "%{manager} egy új beszélgetést indított a(z) %{group} csoport nevében. Kattintson ide a megtekintéshez:"
1020
1027
  outro: Örömteli platform használatot kívánunk!
1021
1028
  subject: "%{manager} egy új beszélgetést indított a(z) %{group} nevében"
1022
1029
  comanagers_new_message:
1023
1030
  admin_in_group: Azért kapta ezt, mert a(z) %{group} csoport adminisztrátora.
1024
- greeting: Kedves %{recipient}!
1031
+ greeting: Szia %{recipient}!
1025
1032
  intro: "%{manager} egy új üzenetet tett közzé egy beszélgetésben a(z) %{group} csoport nevében. Kattintson ide a megtekintéshez:"
1026
1033
  outro: Örömteli platform használatot kívánunk!
1027
1034
  subject: "%{manager} új üzeneteket küldött a(z) %{group} nevében"
@@ -1032,13 +1039,13 @@ hu:
1032
1039
  subject: "%{sender} beszélgetést kezdett veled"
1033
1040
  new_group_conversation:
1034
1041
  admin_in_group: Azért kapta ezt, mert a(z) %{group} csoport adminisztrátora.
1035
- greeting: Kedves %{recipient}!
1042
+ greeting: Szia %{recipient}!
1036
1043
  intro: "%{sender} egy új beszélgetést indított a(z) %{group} csoport nevében. Kattintson ide a megtekintéshez:"
1037
1044
  outro: Örömteli platform használatot kívánunk!
1038
1045
  subject: "%{sender} új beszélgetést indított a(z) %{group} csoporttal"
1039
1046
  new_group_message:
1040
1047
  admin_in_group: Azért kapta ezt, mert a(z) %{group} csoport adminisztrátora.
1041
- greeting: Kedves %{recipient}!
1048
+ greeting: Szia %{recipient}!
1042
1049
  intro: "%{sender} új üzeneteket tett közzé a(z) %{group} csoporttal folytatott beszélgetésben. Kattintson ide a megtekintéshez:"
1043
1050
  outro: Örömteli platform használatot kívánunk!
1044
1051
  subject: "%{group} csoportba új üzenetet küldött %{sender}"
@@ -1066,7 +1073,7 @@ hu:
1066
1073
  no_conversations: Még nem rendelkezik beszélgetésekkel.
1067
1074
  title: Beszélgetések
1068
1075
  reply_form:
1069
- placeholder: Az Ön válasza...
1076
+ placeholder: A válaszod...
1070
1077
  send: Küldés
1071
1078
  show:
1072
1079
  back: Vissza az összes beszélgetéshez
@@ -1089,7 +1096,7 @@ hu:
1089
1096
  followers:
1090
1097
  description: A résztvevők száma, akik ezt a részvételi teret követik
1091
1098
  object: követők
1092
- title: Követők
1099
+ title: Követő
1093
1100
  participants:
1094
1101
  description: Az aktív felhasználók száma a szervezetben
1095
1102
  object: résztvevők
@@ -1264,7 +1271,7 @@ hu:
1264
1271
  sidebar:
1265
1272
  badges:
1266
1273
  info: A jelvények a platformon végzett konkrét tevékenység végrehajtásával érhetők el.
1267
- title: Kitűzők
1274
+ title: Jelvények
1268
1275
  user:
1269
1276
  actions:
1270
1277
  create_user_group: Csoport létrehozása
@@ -1378,7 +1385,7 @@ hu:
1378
1385
  flag_user_modal:
1379
1386
  already_reported: Ezt a tartalmat már jelentették, az adminisztrátor éppen felülvizsgálja.
1380
1387
  block: Résztvevő blokkolása
1381
- close: Bezár
1388
+ close: Bezárás
1382
1389
  description: Mi nem megfelelő a felhasználóval kapcsolatban?
1383
1390
  does_not_belong: 'Illegális tevékenységet, öngyilkosságra való felhívást, személyes adatokat vagy más olyan dolgot tartalmaz, amiről úgy gondolja, nem tartozik ide: %{organization_name}.'
1384
1391
  hide: Minden tartalom elrejtése
@@ -29,7 +29,6 @@ id:
29
29
  attributes:
30
30
  decidim/user:
31
31
  current_password: Kata sandi saat ini
32
- email: E-mail
33
32
  name: Nama pengguna
34
33
  password: Kata sandi
35
34
  password_confirmation: konfirmasi kata kunci
@@ -45,6 +44,8 @@ id:
45
44
  'false': 'Tidak'
46
45
  'true': 'iya nih'
47
46
  date:
47
+ buttons:
48
+ select: Memilih
48
49
  formats:
49
50
  decidim_short: "%d/%m/%Y"
50
51
  decidim_short_with_month_name_short: "%d %b %Y"
@@ -252,6 +253,8 @@ id:
252
253
  view_all: Lihat semua
253
254
  metrics:
254
255
  name: Metrik organisasi
256
+ participatory_space_metrics:
257
+ name: Partisipasi dalam angka
255
258
  stats:
256
259
  name: Statistik organisasi
257
260
  sub_hero:
@@ -558,10 +561,18 @@ id:
558
561
  home: Rumah
559
562
  messaging:
560
563
  conversation_mailer:
564
+ comanagers_new_conversation:
565
+ greeting: Hai, %{recipient}!
566
+ comanagers_new_message:
567
+ greeting: Hai, %{recipient}!
561
568
  new_conversation:
562
569
  greeting: Hai, %{recipient}!
563
570
  intro: "%{sender} telah memulai percakapan baru dengan Anda. Klik di sini untuk melihatnya:"
564
571
  subject: "%{sender} telah memulai percakapan dengan Anda"
572
+ new_group_conversation:
573
+ greeting: Hai, %{recipient}!
574
+ new_group_message:
575
+ greeting: Hai, %{recipient}!
565
576
  new_message:
566
577
  greeting: Hai, %{recipient}!
567
578
  intro: "%{sender} telah memposting pesan baru di percakapan Anda. Klik di sini untuk melihatnya:"
@@ -581,11 +592,9 @@ id:
581
592
  participants:
582
593
  description: Jumlah pengguna aktif dalam organisasi
583
594
  object: peserta
584
- title: Peserta
585
595
  users:
586
596
  description: Jumlah pengguna dalam organisasi
587
597
  object: pengguna
588
- title: Pengguna
589
598
  newsletter_mailer:
590
599
  newsletter:
591
600
  unsubscribe: Untuk memilih tidak menerima jenis email ini, <a href="%{link}" target="_blank" class="unsubscribe">Berhenti Berlangganan</a>.
@@ -661,6 +670,8 @@ id:
661
670
  badges: Lencana
662
671
  followers: Pengikut
663
672
  following: Mengikuti
673
+ group_admins: Kelola admin
674
+ group_members: Kelola anggota
664
675
  groups: Grup
665
676
  members: Anggota
666
677
  sidebar:
@@ -668,6 +679,16 @@ id:
668
679
  info: Lencana diperoleh dengan melakukan aktivitas tertentu di platform.
669
680
  title: Lencana
670
681
  user:
682
+ actions:
683
+ create_user_group: Membuat grup
684
+ edit_profile: Edit profil
685
+ edit_user_group: Edit profil grup
686
+ invite_user: Undang pengguna
687
+ join_user_group: Permintaan untuk bergabung dengan grup
688
+ leave_user_group: Meninggalkan grup
689
+ manage_user_group_admins: Kelola admin
690
+ manage_user_group_users: Kelola anggota
691
+ resend_email_confirmation_instructions: Kirim ulang instruksi konfirmasi email
671
692
  create_user_group: Membuat grup
672
693
  edit_profile: Edit profil
673
694
  edit_user_group: Edit profil grup
@@ -727,6 +748,8 @@ id:
727
748
  report: Melaporkan
728
749
  spam: Berisi clickbait, iklan, penipuan, atau bot skrip.
729
750
  title: Laporkan masalah
751
+ flag_user_modal:
752
+ close: Dekat
730
753
  floating_help:
731
754
  help: Membantu
732
755
  login_modal:
@@ -748,6 +771,8 @@ id:
748
771
  statistics:
749
772
  comments_count: Komentar
750
773
  user_conversations:
774
+ reply:
775
+ send: Kirim
751
776
  update:
752
777
  error: Pesan tidak terkirim. Coba lagi nanti
753
778
  user_interests:
@@ -16,7 +16,6 @@ is:
16
16
  attributes:
17
17
  decidim/user:
18
18
  current_password: Núverandi lykilorð
19
- email: Tölvupóstur
20
19
  password: Lykilorð
21
20
  password_confirmation: Staðfesta lykilorð
22
21
  remember_me: Muna eftir mér
@@ -24,6 +23,8 @@ is:
24
23
  'false': 'Nei'
25
24
  'true': 'Já'
26
25
  date:
26
+ buttons:
27
+ select: Veldu
27
28
  formats:
28
29
  decidim_short: "%d/%m/%Y"
29
30
  decidim_with_month_name: "%d %B %Y"
@@ -232,10 +233,18 @@ is:
232
233
  home: Heim
233
234
  messaging:
234
235
  conversation_mailer:
236
+ comanagers_new_conversation:
237
+ greeting: Hæ, %{recipient}!
238
+ comanagers_new_message:
239
+ greeting: Hæ, %{recipient}!
235
240
  new_conversation:
236
241
  greeting: Hæ, %{recipient}!
237
242
  intro: "%{sender} hefur byrjað nýtt samtal við þig. Smelltu hér til að sjá það:"
238
243
  subject: "%{sender} hefur byrjað samtal við þig"
244
+ new_group_conversation:
245
+ greeting: Hæ, %{recipient}!
246
+ new_group_message:
247
+ greeting: Hæ, %{recipient}!
239
248
  new_message:
240
249
  greeting: Hæ, %{recipient}!
241
250
  intro: "%{sender} hefur sent ný skilaboð í samtali þínu. Smelltu hér til að sjá þær:"
@@ -287,6 +296,8 @@ is:
287
296
  report: Skýrsla
288
297
  spam: Inniheldur clickbait, auglýsingar, óþekktarangi eða handritabots.
289
298
  title: Tilkynna um vandamál
299
+ flag_user_modal:
300
+ close: Loka
290
301
  login_modal:
291
302
  sign_up: Skráðu þig
292
303
  reference:
@@ -297,6 +308,8 @@ is:
297
308
  share: Deila
298
309
  share_link: Deila tengil
299
310
  user_conversations:
311
+ reply:
312
+ send: Senda
300
313
  update:
301
314
  error: Skilaboð ekki send. Reyndu aftur seinna
302
315
  devise: