decidim-meetings 0.30.2 → 0.31.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/cells/decidim/meetings/cancel_registration_meeting_button/cancelation_modal.erb +7 -4
- data/app/cells/decidim/meetings/cancel_registration_meeting_button/show.erb +1 -1
- data/app/cells/decidim/meetings/cancel_registration_meeting_button_cell.rb +36 -0
- data/app/cells/decidim/meetings/dates_and_map_cell.rb +1 -1
- data/app/cells/decidim/meetings/join_meeting_button/registration_modal.erb +4 -5
- data/app/cells/decidim/meetings/join_meeting_button/show.erb +25 -28
- data/app/cells/decidim/meetings/join_meeting_button/waitlist_button.erb +22 -0
- data/app/cells/decidim/meetings/join_meeting_button_cell.rb +28 -0
- data/app/cells/decidim/meetings/question_responses/show.erb +7 -7
- data/app/cells/decidim/meetings/question_responses_cell.rb +28 -28
- data/app/commands/decidim/meetings/admin/copy_meeting.rb +5 -2
- data/app/commands/decidim/meetings/admin/create_agenda.rb +6 -2
- data/app/commands/decidim/meetings/admin/create_meeting.rb +7 -3
- data/app/commands/decidim/meetings/admin/mark_as_attendee.rb +44 -0
- data/app/commands/decidim/meetings/admin/publish_meeting.rb +2 -1
- data/app/commands/decidim/meetings/admin/update_agenda.rb +6 -2
- data/app/commands/decidim/meetings/admin/update_meeting.rb +15 -6
- data/app/commands/decidim/meetings/admin/update_questionnaire.rb +4 -4
- data/app/commands/decidim/meetings/admin/update_registrations.rb +19 -7
- data/app/commands/decidim/meetings/create_meeting.rb +2 -3
- data/app/commands/decidim/meetings/{create_answer.rb → create_response.rb} +11 -11
- data/app/commands/decidim/meetings/join_meeting.rb +4 -6
- data/app/commands/decidim/meetings/join_waitlist.rb +53 -0
- data/app/commands/decidim/meetings/leave_meeting.rb +14 -5
- data/app/commands/decidim/meetings/update_meeting.rb +1 -2
- data/app/controllers/concerns/decidim/meetings/admin/filterable.rb +1 -1
- data/app/controllers/decidim/meetings/admin/agenda_controller.rb +2 -2
- data/app/controllers/decidim/meetings/admin/invites_controller.rb +1 -1
- data/app/controllers/decidim/meetings/admin/meeting_closes_controller.rb +1 -1
- data/app/controllers/decidim/meetings/admin/meeting_copies_controller.rb +1 -1
- data/app/controllers/decidim/meetings/admin/meetings_controller.rb +4 -4
- data/app/controllers/decidim/meetings/admin/meetings_poll_controller.rb +10 -10
- data/app/controllers/decidim/meetings/admin/registrations_attendees_controller.rb +79 -0
- data/app/controllers/decidim/meetings/admin/registrations_controller.rb +1 -22
- data/app/controllers/decidim/meetings/meeting_closes_controller.rb +1 -1
- data/app/controllers/decidim/meetings/meetings_controller.rb +11 -11
- data/app/controllers/decidim/meetings/polls/{answers_controller.rb → responses_controller.rb} +7 -7
- data/app/controllers/decidim/meetings/registrations_controller.rb +39 -12
- data/app/events/decidim/meetings/registration_marked_as_attendee_event.rb +9 -0
- data/app/events/decidim/meetings/upcoming_meeting_event.rb +41 -0
- data/app/events/decidim/meetings/update_meeting_event.rb +25 -0
- data/app/forms/decidim/meetings/admin/close_meeting_form.rb +2 -1
- data/app/forms/decidim/meetings/admin/meeting_agenda_items_form.rb +4 -0
- data/app/forms/decidim/meetings/admin/meeting_form.rb +28 -3
- data/app/forms/decidim/meetings/admin/question_form.rb +3 -3
- data/app/forms/decidim/meetings/admin/{answer_option_form.rb → response_option_form.rb} +3 -3
- data/app/forms/decidim/meetings/admin/validate_registration_code_form.rb +1 -1
- data/app/forms/decidim/meetings/base_meeting_form.rb +0 -2
- data/app/forms/decidim/meetings/close_meeting_form.rb +2 -1
- data/app/forms/decidim/meetings/join_meeting_form.rb +0 -1
- data/app/forms/decidim/meetings/meeting_form.rb +3 -2
- data/app/forms/decidim/meetings/response_choice_form.rb +14 -0
- data/app/forms/decidim/meetings/{answer_form.rb → response_form.rb} +7 -7
- data/app/helpers/decidim/meetings/application_helper.rb +0 -1
- data/app/helpers/decidim/meetings/meetings_helper.rb +14 -5
- data/app/jobs/decidim/meetings/promote_from_waitlist_job.rb +63 -0
- data/app/jobs/decidim/meetings/upcoming_meeting_notification_job.rb +1 -1
- data/app/mailers/decidim/meetings/registration_mailer.rb +13 -0
- data/app/models/decidim/meetings/agenda_item.rb +5 -0
- data/app/models/decidim/meetings/meeting.rb +15 -12
- data/app/models/decidim/meetings/question.rb +12 -12
- data/app/models/decidim/meetings/questionnaire.rb +1 -1
- data/app/models/decidim/meetings/registration.rb +19 -7
- data/app/models/decidim/meetings/{answer.rb → response.rb} +6 -6
- data/app/models/decidim/meetings/response_choice.rb +15 -0
- data/app/models/decidim/meetings/{answer_option.rb → response_option.rb} +5 -5
- data/app/packs/src/decidim/meetings/admin/destroy_meeting_alert.js +1 -1
- data/app/packs/src/decidim/meetings/admin/meetings_components_form.js +1 -8
- data/app/packs/src/decidim/meetings/admin/meetings_form.js +1 -1
- data/app/packs/src/decidim/meetings/admin/registrations_form.js +1 -1
- data/app/packs/src/decidim/meetings/admin/registrations_invite_form.js +1 -1
- data/app/packs/src/decidim/meetings/meetings_form.js +1 -1
- data/app/packs/src/decidim/meetings/meetings_polls.js +1 -1
- data/app/packs/src/decidim/meetings/poll.component.js +5 -5
- data/app/packs/stylesheets/decidim/meetings/_item.scss +5 -1
- data/app/packs/stylesheets/decidim/meetings/meetings.scss +4 -4
- data/app/permissions/decidim/meetings/admin/agenda_permissions.rb +34 -0
- data/app/permissions/decidim/meetings/admin/meeting_permissions.rb +44 -0
- data/app/permissions/decidim/meetings/admin/permissions.rb +5 -66
- data/app/permissions/decidim/meetings/admin/questionnaire_permissions.rb +30 -0
- data/app/permissions/decidim/meetings/meeting_permissions.rb +90 -0
- data/app/permissions/decidim/meetings/permissions.rb +9 -105
- data/app/presenters/decidim/meetings/admin_log/value_types/meeting_title_description_presenter.rb +1 -1
- data/app/presenters/decidim/meetings/agenda_item_presenter.rb +29 -0
- data/app/presenters/decidim/meetings/meeting_presenter.rb +11 -15
- data/app/presenters/decidim/meetings/registration_presenter.rb +24 -0
- data/app/queries/decidim/meetings/{questionnaire_user_answers.rb → questionnaire_user_responses.rb} +5 -5
- data/app/serializers/decidim/meetings/registration_serializer.rb +5 -6
- data/app/services/decidim/meetings/diff_renderer.rb +0 -1
- data/app/views/decidim/meetings/_calendar_modal.html.erb +1 -0
- data/app/views/decidim/meetings/admin/agenda/_agenda_item_fields.html.erb +1 -1
- data/app/views/decidim/meetings/admin/invites/_form.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meeting_closes/_form.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/_form.html.erb +3 -2
- data/app/views/decidim/meetings/admin/meetings/_linked_spaces.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/_meeting-tr.html.erb +11 -8
- data/app/views/decidim/meetings/admin/meetings/_meeting_actions.html.erb +200 -69
- data/app/views/decidim/meetings/admin/meetings/_reminders.html.erb +19 -0
- data/app/views/decidim/meetings/admin/meetings/_services.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/index.html.erb +7 -5
- data/app/views/decidim/meetings/admin/meetings/manage_trash.html.erb +2 -1
- data/app/views/decidim/meetings/admin/poll/_form.html.erb +6 -6
- data/app/views/decidim/meetings/admin/poll/_question.html.erb +13 -13
- data/app/views/decidim/meetings/admin/poll/_response_option.html.erb +35 -0
- data/app/views/decidim/meetings/admin/poll/_response_option_template.html.erb +7 -0
- data/app/views/decidim/meetings/admin/poll/edit.html.erb +3 -3
- data/app/views/decidim/meetings/admin/registration_form/edit_questions.html.erb +5 -5
- data/app/views/decidim/meetings/admin/registrations/edit.html.erb +19 -39
- data/app/views/decidim/meetings/admin/registrations_attendees/index.html.erb +126 -0
- data/app/views/decidim/meetings/layouts/live_event.html.erb +1 -1
- data/app/views/decidim/meetings/meeting_closes/_form.html.erb +2 -2
- data/app/views/decidim/meetings/meetings/_form.html.erb +2 -11
- data/app/views/decidim/meetings/meetings/_meeting.html.erb +2 -2
- data/app/views/decidim/meetings/meetings/_meeting_actions.html.erb +3 -3
- data/app/views/decidim/meetings/meetings/_meeting_agenda.html.erb +2 -2
- data/app/views/decidim/meetings/meetings/_meeting_aside.html.erb +11 -10
- data/app/views/decidim/meetings/meetings/_meeting_poll_actions.html.erb +3 -3
- data/app/views/decidim/meetings/meetings/_registration_code_modal.html.erb +16 -0
- data/app/views/decidim/meetings/polls/questions/_index_admin.html.erb +1 -1
- data/app/views/decidim/meetings/polls/questions/_published_question.html.erb +5 -5
- data/app/views/decidim/meetings/polls/responses/_multiple_option.html.erb +13 -0
- data/app/views/decidim/meetings/polls/responses/_single_option.html.erb +13 -0
- data/app/views/decidim/meetings/polls/{answers → responses}/admin.html.erb +4 -4
- data/app/views/decidim/meetings/polls/{answers → responses}/index.html.erb +4 -4
- data/app/views/decidim/meetings/registration_mailer/confirmation.html.erb +6 -1
- data/config/assets.rb +2 -2
- data/config/locales/ar.yml +1 -26
- data/config/locales/bg.yml +2 -32
- data/config/locales/ca-IT.yml +86 -40
- data/config/locales/ca.yml +86 -40
- data/config/locales/cs.yml +71 -43
- data/config/locales/de.yml +87 -41
- data/config/locales/el.yml +1 -25
- data/config/locales/en.yml +89 -43
- data/config/locales/es-MX.yml +87 -41
- data/config/locales/es-PY.yml +87 -41
- data/config/locales/es.yml +87 -41
- data/config/locales/eu.yml +86 -40
- data/config/locales/fi-plain.yml +86 -40
- data/config/locales/fi.yml +85 -39
- data/config/locales/fr-CA.yml +79 -38
- data/config/locales/fr.yml +79 -38
- data/config/locales/ga-IE.yml +1 -7
- data/config/locales/gl.yml +1 -19
- data/config/locales/hu.yml +1 -22
- data/config/locales/id-ID.yml +0 -16
- data/config/locales/is-IS.yml +0 -10
- data/config/locales/it.yml +1 -29
- data/config/locales/ja.yml +88 -42
- data/config/locales/lb.yml +1 -15
- data/config/locales/lt.yml +1 -28
- data/config/locales/lv.yml +0 -16
- data/config/locales/nl.yml +1 -26
- data/config/locales/no.yml +1 -28
- data/config/locales/pl.yml +2 -32
- data/config/locales/pt-BR.yml +1 -28
- data/config/locales/pt.yml +1 -28
- data/config/locales/ro-RO.yml +56 -29
- data/config/locales/ru.yml +0 -16
- data/config/locales/sk.yml +0 -16
- data/config/locales/sl.yml +0 -4
- data/config/locales/sv.yml +85 -39
- data/config/locales/tr-TR.yml +0 -20
- data/config/locales/uk.yml +0 -12
- data/config/locales/zh-CN.yml +0 -19
- data/config/locales/zh-TW.yml +1 -26
- data/db/migrate/20181107175558_add_questionnaire_to_existing_meetings.rb +8 -2
- data/db/migrate/20200827153856_add_commentable_counter_cache_to_meetings.rb +8 -2
- data/db/migrate/20201016065302_fix_meetings_registration_terms.rb +8 -2
- data/db/migrate/20210310120731_add_followable_counter_cache_to_meetings.rb +8 -2
- data/db/migrate/20250317103343_rename_answer_to_response_in_decidim_meetings.rb +18 -0
- data/db/migrate/20250403094034_add_reminder_customization_to_decidim_meetings.rb +9 -0
- data/db/migrate/20250408071941_add_status_to_registrations_to_decidim_meetings_registrations.rb +8 -0
- data/lib/decidim/api/agenda_item_type.rb +6 -2
- data/lib/decidim/api/agenda_type.rb +6 -2
- data/lib/decidim/api/linked_resources_interface.rb +1 -1
- data/lib/decidim/api/meeting_type.rb +20 -10
- data/lib/decidim/api/service_type.rb +3 -0
- data/lib/decidim/meetings/admin_engine.rb +9 -1
- data/lib/decidim/meetings/component.rb +29 -8
- data/lib/decidim/meetings/engine.rb +6 -21
- data/lib/decidim/meetings/meeting_serializer.rb +1 -2
- data/lib/decidim/meetings/schema_org_event_meeting_serializer.rb +0 -10
- data/lib/decidim/meetings/seeds.rb +4 -13
- data/lib/decidim/meetings/test/factories.rb +10 -16
- data/lib/decidim/meetings/user_responses_serializer.rb +47 -0
- data/lib/decidim/meetings/version.rb +1 -1
- data/lib/decidim/meetings.rb +7 -9
- metadata +49 -35
- data/app/cells/decidim/meetings/attending_organizations_list_cell.rb +0 -32
- data/app/forms/decidim/meetings/answer_choice_form.rb +0 -14
- data/app/models/decidim/meetings/answer_choice.rb +0 -15
- data/app/queries/decidim/meetings/metrics/meeting_followers_metric_measure.rb +0 -31
- data/app/queries/decidim/meetings/metrics/meetings_metric_manage.rb +0 -48
- data/app/views/decidim/meetings/admin/poll/_answer_option.html.erb +0 -35
- data/app/views/decidim/meetings/admin/poll/_answer_option_template.html.erb +0 -7
- data/app/views/decidim/meetings/polls/answers/_multiple_option.html.erb +0 -13
- data/app/views/decidim/meetings/polls/answers/_single_option.html.erb +0 -13
- data/lib/decidim/meetings/download_your_data_user_answers_serializer.rb +0 -39
- data/lib/decidim/meetings/user_answers_serializer.rb +0 -47
- /data/app/views/decidim/meetings/polls/{answers → responses}/create.js.erb +0 -0
data/config/locales/fr.yml
CHANGED
@@ -2,8 +2,6 @@
|
|
2
2
|
fr:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
answer:
|
6
|
-
add_documents: Ajouter des documents
|
7
5
|
close_meeting:
|
8
6
|
attendees_count: Nombre de participants
|
9
7
|
attending_organizations: Liste des organisations qui ont participé à cette rencontre
|
@@ -19,7 +17,6 @@ fr:
|
|
19
17
|
customize_registration_email: Personnaliser l'email d'inscription
|
20
18
|
decidim_category_id: Catégorie
|
21
19
|
decidim_scope_id: Périmètre d'application
|
22
|
-
decidim_user_group_id: Groupe d'utilisateurs
|
23
20
|
description: Description
|
24
21
|
end_time: Heure de fin
|
25
22
|
id: ID
|
@@ -53,6 +50,8 @@ fr:
|
|
53
50
|
meeting_registration_invite:
|
54
51
|
email: Email
|
55
52
|
name: Nom
|
53
|
+
response:
|
54
|
+
add_documents: Ajouter des documents
|
56
55
|
validate_registration_code:
|
57
56
|
code: Code
|
58
57
|
errors:
|
@@ -123,7 +122,6 @@ fr:
|
|
123
122
|
values:
|
124
123
|
official: Officiel
|
125
124
|
participants: Participants
|
126
|
-
user_group: Groupes d’utilisateurs
|
127
125
|
with_any_type:
|
128
126
|
label: Type de rencontre
|
129
127
|
values:
|
@@ -149,6 +147,16 @@ fr:
|
|
149
147
|
new:
|
150
148
|
copy: Copier
|
151
149
|
title: Dupliquer une rencontre
|
150
|
+
tooltips:
|
151
|
+
cannot_close_meetings: Impossible de fermer cette réunion car elle a été créée par un participant
|
152
|
+
cannot_duplicate_meetings: Impossible de dupliquer cette réunion car elle a été créée par un participant
|
153
|
+
cannot_edit_meetings: Impossible de modifier cette réunion car elle a été créée par un participant
|
154
|
+
cannot_manage_agenda_meetings: Impossible de gérer l'ordre du jour de cette réunion car elle a été créée par un participant
|
155
|
+
cannot_manage_attachments_meetings: Impossible de gérer les pièces jointes de cette réunion car elle a été créée par un participant
|
156
|
+
cannot_manage_poll_meetings: Impossible de gérer le sondage dans cette réunion car elle a été créée par un participant
|
157
|
+
cannot_manage_registrations_meetings: Impossible de gérer les inscriptions à cette réunion car soit elle est a été créée par un participant, soit les inscriptions sont désactivées, soit ces inscriptions sont externes
|
158
|
+
cannot_mark_attendee: Impossible de marquer comme présent car ça a déjà été marqué
|
159
|
+
deleted_meetings_info: Impossible de supprimer cette réunion car elle a été créée par un participant.
|
152
160
|
components:
|
153
161
|
meetings:
|
154
162
|
actions:
|
@@ -167,7 +175,7 @@ fr:
|
|
167
175
|
enable_pads_creation: Activer la création de pads
|
168
176
|
maps_enabled: Cartes activées
|
169
177
|
no_taxonomy_filters_found: Aucun filtre de taxonomie trouvé.
|
170
|
-
registration_code_enabled: Code d'enregistrement
|
178
|
+
registration_code_enabled: Code d'enregistrement et QR activés
|
171
179
|
resources_permissions_enabled: Les autorisations d'actions peuvent être définies pour chaque réunion
|
172
180
|
taxonomy_filters_add: Ajouter un filtre
|
173
181
|
terms_and_conditions_url_for_meeting_creators: URL des conditions générales pour les auteurs de rencontres
|
@@ -175,7 +183,6 @@ fr:
|
|
175
183
|
announcement: Annonce
|
176
184
|
comments_blocked: Commentaires bloqués
|
177
185
|
creation_enabled_for_participants: La création de rencontre par les participants est activée
|
178
|
-
creation_enabled_for_user_groups: La création de rencontres par des groupes d'utilisateurs est activée
|
179
186
|
download_your_data:
|
180
187
|
help:
|
181
188
|
invites:
|
@@ -222,10 +229,17 @@ fr:
|
|
222
229
|
email_subject: Les places réservées pour la rencontre "%{resource_title}" dépassent %{percentage}%
|
223
230
|
notification_title: Les places réservées pour la rencontre <a href="%{resource_path}">%{resource_title}</a> dépassent %{percentage}%.
|
224
231
|
meeting_updated:
|
225
|
-
email_intro: 'La rencontre "%{resource_title}" a été mise à jour. Vous pouvez
|
232
|
+
email_intro: 'La rencontre "%{resource_title}" a été mise à jour avec les modifications apportées à %{changed_fields}. Vous pouvez lire la nouvelle version sur sa page :'
|
226
233
|
email_outro: Vous avez reçu cette notification, car vous suivez la rencontre "%{resource_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”.
|
227
234
|
email_subject: La rencontre "%{resource_title}" a été mise à jour
|
228
|
-
|
235
|
+
field_names:
|
236
|
+
address: l'adresse
|
237
|
+
end_time: l'heure de fin
|
238
|
+
location: l'emplacement
|
239
|
+
start_time: l'heure de début
|
240
|
+
notification_title: La réunion <a href="%{resource_path}">%{resource_title}</a> a été mise à jour avec les modifications apportées à %{changed_fields}.
|
241
|
+
meeting_waitlist_added:
|
242
|
+
notification_title: Vous avez été ajouté à la liste d'attente pour la réunion <a href="%{resource_url}">%{resource_title}</a>.
|
229
243
|
registration_code_validated:
|
230
244
|
email_intro: Votre code d'enregistrement "%{registration_code}" pour la réunion "%{resource_title}" a été validé.
|
231
245
|
email_outro: Vous avez reçu cette notification parce que votre code d'enregistrement pour la réunion "%{resource_title}" a été validé. Si vous souhaitez vous désabonner des notifications, connectez-vous à la plateforme, puis rendez-vous dans l'onglet “Mon compte” > “Paramètres des notifications”.
|
@@ -237,10 +251,11 @@ fr:
|
|
237
251
|
email_subject: Les inscriptions pour la rencontre "%{resource_title}" sont ouvertes.
|
238
252
|
notification_title: Les inscriptions pour la rencontre <a href="%{resource_path}">%{resource_title}</a> sont ouvertes.
|
239
253
|
upcoming_meeting:
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
254
|
+
default_body: La réunion "{{meeting_title}}" débutera dans moins de {{before_hours}}h.
|
255
|
+
email_intro: La réunion "%{resource_title}" débutera dans moins de %{reminders_before_hours}h.
|
256
|
+
email_outro: Vous avez reçu cette notification parce que vous suivez la réunion %{resource_title} . Vous pouvez cesser de la suivre à partir du lien précédent.
|
257
|
+
email_subject: La réunion "%{resource_title}" débutera dans moins de %{reminders_before_hours}h.
|
258
|
+
notification_title: La réunion <a href="%{resource_path}">%{resource_title}</a> commencera dans moins de %{reminders_before_hours}h.
|
244
259
|
forms:
|
245
260
|
meetings:
|
246
261
|
attendees_count_help_text: N'oubliez pas d'inclure le nombre total de participants à votre réunion, que ce soit en personne, en ligne ou hybride.
|
@@ -259,8 +274,6 @@ fr:
|
|
259
274
|
meetings:
|
260
275
|
actions:
|
261
276
|
agenda: Ordre du jour
|
262
|
-
attachment_collections: Dossiers
|
263
|
-
attachments: Documents liés
|
264
277
|
close: Clore
|
265
278
|
confirm_delete_meeting: Êtes-vous sûr(e) de vouloir supprimer cette rencontre ?
|
266
279
|
deleted_meetings_info: Les rencontres supprimées peuvent être restaurées depuis la corbeille.
|
@@ -270,6 +283,7 @@ fr:
|
|
270
283
|
one: 'La rencontre ne peut être supprimée car %{count} proposition y est rattachée:'
|
271
284
|
other: 'La rencontre ne peut être supprimée car %{count} propositions y sont rattachées:'
|
272
285
|
manage_poll: Gérer le sondage
|
286
|
+
mark_as_attendee: Marquer comme participant
|
273
287
|
new_meeting: Nouvelle rencontre
|
274
288
|
preview: Aperçu
|
275
289
|
registrations: Inscriptions
|
@@ -307,10 +321,10 @@ fr:
|
|
307
321
|
invalid: Un problème est survenu lors de la mise à jour de cet ordre du jour.
|
308
322
|
success: Ordre du jour mis à jour avec succès.
|
309
323
|
exports:
|
310
|
-
answers: Réponses
|
311
324
|
meeting_comments: Commentaires
|
312
325
|
meetings: Rencontres
|
313
326
|
registrations: Inscriptions
|
327
|
+
responses: Réponses
|
314
328
|
invite_join_meeting_mailer:
|
315
329
|
invite:
|
316
330
|
decline: Refuser l'invitation
|
@@ -379,6 +393,13 @@ fr:
|
|
379
393
|
publish:
|
380
394
|
invalid: Une erreur s'est produite lors de la publication de la rencontre.
|
381
395
|
success: Rencontre publiée avec succès.
|
396
|
+
reminders:
|
397
|
+
reminder_enabled: Envoyer un rappel pour cette rencontre
|
398
|
+
reminder_message: Contenu de l'email de rappel
|
399
|
+
reminder_message_help_text: Personnalisez le message au besoin. Utilisez {{meeting_title}} pour afficher le nom de la réunion.
|
400
|
+
send_reminder: E-mail de rappel programmé
|
401
|
+
send_reminder_help_text: Moment du rappel (en heures avant la réunion).
|
402
|
+
title: Rappels
|
382
403
|
service:
|
383
404
|
description: Description
|
384
405
|
down: Vers le bas
|
@@ -411,15 +432,14 @@ fr:
|
|
411
432
|
registrations:
|
412
433
|
edit:
|
413
434
|
save: Sauvegarder
|
414
|
-
validate: Valider
|
415
|
-
validate_registration_code: Valider le code d'inscription
|
416
435
|
form:
|
417
436
|
available_slots_help: Laisser à 0 si le nombre de places disponibles est illimité.
|
418
437
|
invites: Invitations
|
419
|
-
manage_questions:
|
438
|
+
manage_questions: Questions
|
420
439
|
recommendation_message: Pour des raisons de confidentialité, nous vous recommandons de supprimer ce formulaire d'inscription lorsque vous n'en avez plus besoin. Par défaut, il le sera 3 mois après la fin de la réunion.
|
421
440
|
registration_email_help: Ce texte apparaîtra au centre de l'e-mail de confirmation d'inscription, juste après le code d'inscription.
|
422
441
|
registration_form: Formulaire d'inscription
|
442
|
+
registrations: Voir les inscriptions
|
423
443
|
registrations_count:
|
424
444
|
one: Il y a eu %{count} inscription.
|
425
445
|
other: Il y a eu %{count} inscriptions.
|
@@ -429,6 +449,11 @@ fr:
|
|
429
449
|
update:
|
430
450
|
invalid: Il y a eu un problème lors de l'enregistrement des paramètres d'inscription.
|
431
451
|
success: Les paramètres d'inscription ont été enregistrés avec succès.
|
452
|
+
registrations_attendees:
|
453
|
+
index:
|
454
|
+
title: Inscriptions
|
455
|
+
validate: Valider
|
456
|
+
validate_registration_code: Valider le code d'inscription
|
432
457
|
validate_registration_code:
|
433
458
|
invalid: Ce code d'inscription est invalide.
|
434
459
|
success: Code d'inscription validé avec succès.
|
@@ -542,7 +567,6 @@ fr:
|
|
542
567
|
all: Toutes
|
543
568
|
official: Officiel
|
544
569
|
participants: Participants
|
545
|
-
user_group: Groupes
|
546
570
|
search: Rechercher
|
547
571
|
type: Type
|
548
572
|
type_values:
|
@@ -553,7 +577,6 @@ fr:
|
|
553
577
|
form:
|
554
578
|
address_help: 'L''adresse entrée est utilisée par le géocodage pour trouver l''emplacement et afficher la réunion sur la carte. Format accepté : [rue] [code postal] [ville]'
|
555
579
|
available_slots_help: Laisser à 0 si le nombre de places disponibles est illimité
|
556
|
-
create_as: Créer une rencontre en tant que
|
557
580
|
disclaimer: 'Avertissement : En utilisant un système d''enregistrement externe, sachez que les organisateurs de %{organization} ne sont pas responsables des données fournies par les utilisateurs au service externe.'
|
558
581
|
iframe_embed_type_html: 'Seuls quelques services permettent d''intégrer des réunions ou des événements en direct depuis les domaines suivants : %{domains}'
|
559
582
|
location_help: 'Emplacement: message adressé aux utilisateurs impliquant le point de rencontre'
|
@@ -590,8 +613,11 @@ fr:
|
|
590
613
|
attendees: Nombre de participants
|
591
614
|
contributions: Décompte des contributions
|
592
615
|
join: Participer à la rencontre
|
616
|
+
join_waitlist: Rejoindre la liste d'attente
|
593
617
|
leave: Annuler votre inscription
|
594
618
|
leave_confirmation: Êtes-vous sûr de vouloir annuler votre inscription à cette rencontre ?
|
619
|
+
leave_waitlist: Quitter la liste d'attente
|
620
|
+
leave_waitlist_confirmation: Êtes-vous sûr(e) de vouloir quitter la liste d'attente pour cette rencontre ?
|
595
621
|
link_available_soon: Lien bientôt disponible
|
596
622
|
link_closed: Le lien pour rejoindre la réunion sera disponible quelques minutes avant le début de la réunion
|
597
623
|
live_event: Cette réunion se déroule en ce moment
|
@@ -599,8 +625,11 @@ fr:
|
|
599
625
|
micro_camera_permissions_warning: Lorsque vous cliquez sur le bouton ci-dessous, on vous demandera des autorisations de microphone et/ou de caméra, et vous rejoindrez la vidéoconférence
|
600
626
|
no_slots_available: Il ne reste plus de place
|
601
627
|
organizations: Organisations participantes
|
628
|
+
pending_address: L'emplacement sera bientôt annoncé.
|
602
629
|
redirect_notice: Cette rencontre fait partie d'un autre espace, vous avez donc été redirigé(e) vers %{current_space_name}. <br>Si vous préférez, vous pouvez revenir à <a href="%{previous_space_url}">%{previous_space_name}</a>.
|
603
|
-
|
630
|
+
registration_and_qr_code: Inscription et QR Code
|
631
|
+
registration_code: 'Code d''inscription : %{code}'
|
632
|
+
registration_code_help_text: Votre inscription et votre QR code
|
604
633
|
registration_state:
|
605
634
|
validated: Validé
|
606
635
|
validation_pending: EN ATTENTE DE VALIDATION
|
@@ -608,6 +637,9 @@ fr:
|
|
608
637
|
one: "Il reste %{count} place"
|
609
638
|
other: "Il reste %{count} places"
|
610
639
|
visit_finished: Consulter l’historique des rencontres
|
640
|
+
waitlist:
|
641
|
+
description: Si une place devient disponible, nous traiterons automatiquement votre inscription et vous en aviserons par courriel.
|
642
|
+
status: Vous êtes sur la liste d'attente
|
611
643
|
withdraw_btn_hint: Vous pouvez annuler votre rencontre si vous changez d'avis. La rencontre n'est pas supprimée, elle apparaîtra dans la liste des rencontres retirées.
|
612
644
|
withdraw_confirmation_html: Êtes-vous sûr de vouloir annuler cette rencontre ?<br><br><strong>Cette action ne peut pas être annulée !</strong>
|
613
645
|
withdraw_meeting: Retirer
|
@@ -635,15 +667,16 @@ fr:
|
|
635
667
|
start_time: Date de début
|
636
668
|
taxonomies: Taxonomies
|
637
669
|
title: Titre
|
670
|
+
registration:
|
671
|
+
actions: Actions
|
672
|
+
fields:
|
673
|
+
email: Email
|
674
|
+
name: Nom
|
675
|
+
status: État
|
676
|
+
status:
|
677
|
+
attended: Participe
|
678
|
+
not_attended: Ne participe pas
|
638
679
|
polls:
|
639
|
-
answers:
|
640
|
-
index:
|
641
|
-
administrate: Administrer
|
642
|
-
title: Sondage
|
643
|
-
index_admin:
|
644
|
-
back_to_meeting: Revenir à la rencontre
|
645
|
-
title: Administrer le sondage
|
646
|
-
view_poll: Voir le sondage
|
647
680
|
questions:
|
648
681
|
closed_question:
|
649
682
|
announcement: Les réponses à cette question sont closes.
|
@@ -654,8 +687,8 @@ fr:
|
|
654
687
|
index_admin:
|
655
688
|
edit: Modifier dans le panneau d'administration
|
656
689
|
question: Question
|
657
|
-
|
658
|
-
|
690
|
+
received_response: réponse reçue
|
691
|
+
received_responses: réponses reçues
|
659
692
|
results: Résultats
|
660
693
|
send: Publier
|
661
694
|
sent: Publiée
|
@@ -668,8 +701,15 @@ fr:
|
|
668
701
|
question: Question
|
669
702
|
question_replied: Réponse envoyée
|
670
703
|
reply_question: Répondre
|
704
|
+
responses:
|
705
|
+
index:
|
706
|
+
administrate: Administrer
|
707
|
+
title: Sondage
|
708
|
+
index_admin:
|
709
|
+
back_to_meeting: Revenir à la rencontre
|
710
|
+
title: Administrer le sondage
|
711
|
+
view_poll: Voir le sondage
|
671
712
|
public_participants_list:
|
672
|
-
attending_organizations: Organisations
|
673
713
|
attending_participants: Participants
|
674
714
|
hidden_participants_count:
|
675
715
|
one: et %{count} personne de plus
|
@@ -679,7 +719,7 @@ fr:
|
|
679
719
|
confirmation:
|
680
720
|
confirmed_html: Votre inscription pour la rencontre <a href="%{url}">%{title}</a> a été confirmée.
|
681
721
|
details: Vous trouverez les détails de la rencontre dans la pièce jointe.
|
682
|
-
registration_code: Votre code d'inscription est %{code}.
|
722
|
+
registration_code: Votre code d'inscription est %{code}. Veuillez montrer le QR code suivant à un administrateur pour valider votre participation.
|
683
723
|
registration_type:
|
684
724
|
on_different_platform: Sur une plateforme différente
|
685
725
|
on_this_platform: Sur cette plateforme
|
@@ -694,6 +734,9 @@ fr:
|
|
694
734
|
destroy:
|
695
735
|
invalid: Il y a eu un problème lors de l'annulation de votre inscription.
|
696
736
|
success: Vous avez annulé votre inscription avec succès.
|
737
|
+
waitlist:
|
738
|
+
invalid: Il y a eu un problème pour rejoindre la liste d'attente.
|
739
|
+
success: Vous avez rejoint la liste d'attente de la rencontre avec succès. Vous serez notifié si votre inscription a été sécurisée avec succès.
|
697
740
|
type_of_meeting:
|
698
741
|
hybrid: Hybride
|
699
742
|
in_person: En présentiel
|
@@ -705,11 +748,6 @@ fr:
|
|
705
748
|
withdraw:
|
706
749
|
error: Une erreur s'est produite lors du retrait de la rencontre.
|
707
750
|
success: La rencontre a été annulée avec succès.
|
708
|
-
metrics:
|
709
|
-
meetings:
|
710
|
-
description: Nombre de rencontres créées
|
711
|
-
object: rencontres
|
712
|
-
title: Rencontres
|
713
751
|
open_data:
|
714
752
|
help:
|
715
753
|
meeting_comments:
|
@@ -717,6 +755,7 @@ fr:
|
|
717
755
|
body: Le commentaire lui-même
|
718
756
|
comments: Les données des commentaires de la réunion
|
719
757
|
created_at: La date de création de ce commentaire
|
758
|
+
depth: L'endroit où ce commentaire se trouve dans l'arborescence des commentaires (si c'est une réponse ou une réponse à une réponse)
|
720
759
|
id: L'identifiant de ce commentaire
|
721
760
|
locale: La langue que le participant a utilisé en créant ce commentaire
|
722
761
|
meetings:
|
@@ -784,6 +823,8 @@ fr:
|
|
784
823
|
statistics:
|
785
824
|
attendees_count: Participants à la rencontre
|
786
825
|
meetings_count: Rencontres
|
826
|
+
meetings_count_tooltip: Le nombre de rencontres qui ont eu lieu, à la fois en ligne et en présentiel.
|
827
|
+
participatory_space_meetings_count: Rencontres
|
787
828
|
devise:
|
788
829
|
mailer:
|
789
830
|
join_meeting:
|
data/config/locales/ga-IE.yml
CHANGED
@@ -42,8 +42,6 @@ ga:
|
|
42
42
|
meetings:
|
43
43
|
actions:
|
44
44
|
agenda: Clár
|
45
|
-
attachment_collections: Fillteáin
|
46
|
-
attachments: Ceangaltáin
|
47
45
|
close: Dún
|
48
46
|
edit: Eagar
|
49
47
|
preview: Réamhamharc
|
@@ -65,7 +63,6 @@ ga:
|
|
65
63
|
new:
|
66
64
|
create: Cruthaigh
|
67
65
|
exports:
|
68
|
-
answers: Freagraí
|
69
66
|
meeting_comments: Tráchtanna
|
70
67
|
meetings: Cruinnithe
|
71
68
|
invites:
|
@@ -96,6 +93,7 @@ ga:
|
|
96
93
|
save: Sábháil
|
97
94
|
form:
|
98
95
|
invites: Cuirí
|
96
|
+
manage_questions: Ceisteanna
|
99
97
|
directory:
|
100
98
|
meetings:
|
101
99
|
index:
|
@@ -159,9 +157,5 @@ ga:
|
|
159
157
|
question: Ceist
|
160
158
|
type_of_meeting:
|
161
159
|
online: Ar líne
|
162
|
-
metrics:
|
163
|
-
meetings:
|
164
|
-
object: cruinnithe
|
165
|
-
title: Cruinnithe
|
166
160
|
statistics:
|
167
161
|
meetings_count: Cruinnithe
|
data/config/locales/gl.yml
CHANGED
@@ -108,10 +108,8 @@ gl:
|
|
108
108
|
email_subject: As xuntas ocupadas con "%{resource_title}" ocuparon máis de %{percentage}%
|
109
109
|
notification_title: As xuntas ocupadas por <a href="%{resource_path}">%{resource_title}</a> ocupadas son máis do %{percentage}%.
|
110
110
|
meeting_updated:
|
111
|
-
email_intro: 'Realizouse a reunión "%{resource_title}". Podes ler a nova versión da súa páxina:'
|
112
111
|
email_outro: Recibiches esta notificación porque estás seguindo a reunión "%{resource_title}". Podes deixar de seguir desde a ligazón anterior.
|
113
112
|
email_subject: Realizouse a reunión "%{resource_title}"
|
114
|
-
notification_title: Reunirase a reunión <a href="%{resource_path}">%{resource_title}</a>.
|
115
113
|
registration_code_validated:
|
116
114
|
email_intro: O seu código de rexistro "%{registration_code}" para a reunión "%{resource_title}" foi validado.
|
117
115
|
email_outro: Recibiches esta notificación porque o teu código de rexistro para a reunión "%{resource_title}" foi validado.
|
@@ -122,11 +120,6 @@ gl:
|
|
122
120
|
email_outro: Recibiches esta notificación porque estás seguindo a reunión "%{resource_title}". Podes deixar de seguir desde a ligazón anterior.
|
123
121
|
email_subject: A xuntanza "%{resource_title}" habilitou as inscricións.
|
124
122
|
notification_title: A reunión <a href="%{resource_path}">%{resource_title}</a> habilitou as inscricións.
|
125
|
-
upcoming_meeting:
|
126
|
-
email_intro: A reunión "%{resource_title}" comezará en menos de 48 horas.
|
127
|
-
email_outro: Recibiches esta notificación porque estás seguindo a reunión "%{resource_title}". Podes deixar de seguir desde a ligazón anterior.
|
128
|
-
email_subject: A reunión "%{resource_title}" comezará en menos de 48 horas.
|
129
|
-
notification_title: A reunión <a href="%{resource_path}">%{resource_title}</a> comezará en menos de 48 horas.
|
130
123
|
gamification:
|
131
124
|
badges:
|
132
125
|
attended_meetings:
|
@@ -140,8 +133,6 @@ gl:
|
|
140
133
|
meetings:
|
141
134
|
actions:
|
142
135
|
agenda: Axenda
|
143
|
-
attachment_collections: Carpetas
|
144
|
-
attachments: Anexos
|
145
136
|
close: Pechar
|
146
137
|
edit: Editar
|
147
138
|
preview: Vista previa
|
@@ -173,7 +164,6 @@ gl:
|
|
173
164
|
create: Crear
|
174
165
|
title: Nova axenda
|
175
166
|
exports:
|
176
|
-
answers: Respostas
|
177
167
|
meetings: Reunións
|
178
168
|
registrations: Rexistros
|
179
169
|
invite_join_meeting_mailer:
|
@@ -223,6 +213,7 @@ gl:
|
|
223
213
|
form:
|
224
214
|
available_slots_help: Déixao a 0 se ten slots ilimitados dispoñibles.
|
225
215
|
invites: Invitacións
|
216
|
+
manage_questions: Preguntas
|
226
217
|
registration_email_help: Este texto aparecerá no medio do correo de confirmación do rexistro, xusto despois do código de rexistro.
|
227
218
|
registration_form: Formulario de inscrición
|
228
219
|
registrations_count:
|
@@ -309,7 +300,6 @@ gl:
|
|
309
300
|
meeting_minutes: Minutos de reunión
|
310
301
|
no_slots_available: Non hai slots dispoñibles
|
311
302
|
organizations: Organizacións asistentes
|
312
|
-
registration_code_help_text: O seu código de rexistro
|
313
303
|
registration_state:
|
314
304
|
validated: VALIDADO
|
315
305
|
validation_pending: VALIDACIÓN PENDENTE
|
@@ -340,8 +330,6 @@ gl:
|
|
340
330
|
questions:
|
341
331
|
index_admin:
|
342
332
|
question: Pregunta
|
343
|
-
received_answer: resposta recibida
|
344
|
-
received_answers: respostas recibidas
|
345
333
|
results: Resultados
|
346
334
|
send: Enviar
|
347
335
|
sent: Enviada
|
@@ -358,7 +346,6 @@ gl:
|
|
358
346
|
confirmation:
|
359
347
|
confirmed_html: Inscríbase o rexistro da reunión <a href="%{url}">%{title}</a>.
|
360
348
|
details: Atoparás os detalles da reunión no anexo.
|
361
|
-
registration_code: O teu código de rexistro é %{code}.
|
362
349
|
registrations:
|
363
350
|
create:
|
364
351
|
invalid: Produciuse un problema ao unirse a esta reunión.
|
@@ -372,11 +359,6 @@ gl:
|
|
372
359
|
private_meeting: Encontro privado
|
373
360
|
transparent: Transparente
|
374
361
|
withdraw: Anular
|
375
|
-
metrics:
|
376
|
-
meetings:
|
377
|
-
description: Número de reunións creadas
|
378
|
-
object: reunións
|
379
|
-
title: Reunións
|
380
362
|
participatory_spaces:
|
381
363
|
highlighted_meetings:
|
382
364
|
past_meetings: Reunións pasadas
|
data/config/locales/hu.yml
CHANGED
@@ -17,7 +17,6 @@ hu:
|
|
17
17
|
customize_registration_email: Regisztrációs email beállítása
|
18
18
|
decidim_category_id: Kategória
|
19
19
|
decidim_scope_id: Hatáskör
|
20
|
-
decidim_user_group_id: Felhasználói csoport
|
21
20
|
description: Leírás
|
22
21
|
id: ID
|
23
22
|
location: Helye
|
@@ -71,7 +70,6 @@ hu:
|
|
71
70
|
values:
|
72
71
|
official: Hivatalos
|
73
72
|
participants: Résztvevő
|
74
|
-
user_group: Felhasználói csoportok
|
75
73
|
with_any_type:
|
76
74
|
label: Értekezlet típusa
|
77
75
|
values:
|
@@ -100,14 +98,12 @@ hu:
|
|
100
98
|
default_registration_terms: Alapértelmezett regisztrációs feltételek
|
101
99
|
enable_pads_creation: A közös dokumentum létrehozásának engedélyezése
|
102
100
|
maps_enabled: Térképek engedélyezve
|
103
|
-
registration_code_enabled: Regisztrációs kód engedélyezve
|
104
101
|
resources_permissions_enabled: Minden találkozóra saját műveleti engedélyt állíthat be
|
105
102
|
terms_and_conditions_url_for_meeting_creators: A találkozó szervezői számára a felhasználás feltételek URL-je
|
106
103
|
step:
|
107
104
|
announcement: Közlemény
|
108
105
|
comments_blocked: Megjegyzések letiltva
|
109
106
|
creation_enabled_for_participants: Résztvevők általi találkozók engedélyezve
|
110
|
-
creation_enabled_for_user_groups: Felhasználói csoportok általi találkozó szervezése engedélyezve
|
111
107
|
events:
|
112
108
|
meetings:
|
113
109
|
meeting_closed:
|
@@ -135,10 +131,8 @@ hu:
|
|
135
131
|
email_subject: 'A(z) "%{resource_title}" találkozó résztvevői helye ilyen arányban telt be: %{percentage}%'
|
136
132
|
notification_title: A(z) rendelkezésre álló helyek a <a href="%{resource_path}">%{resource_title}</a> találkozóra több mint %{percentage}% -ban teltek meg.
|
137
133
|
meeting_updated:
|
138
|
-
email_intro: 'A(z) "%{resource_title}" találkozót frissítettük. Az új verzióról ezen az oldalon olvashatsz:'
|
139
134
|
email_outro: 'Ezt az értesítést azért kaptad, mert követed ezt a találkozót: "%{resource_title}". Leiratkozás az előző link segítségével.'
|
140
135
|
email_subject: A "%{resource_title}" találkozót frissítettük
|
141
|
-
notification_title: A(z) <a href="%{resource_path}">%{resource_title}</a> találkozót frissítettük.
|
142
136
|
registration_code_validated:
|
143
137
|
email_intro: A(z) "%{resource_title}" találkozó "%{registration_code}" regisztrációs kódja érvényesítve lett.
|
144
138
|
email_outro: Ezt az értesítést azért kaptad, mert a(z) "%{resource_title}" találkozó regisztrációs kódjának érvényesítése elkészült.
|
@@ -149,11 +143,6 @@ hu:
|
|
149
143
|
email_outro: 'Ezt az értesítést azért kaptad, mert követed ezt a találkozót: "%{resource_title}". Leiratkozás az előző link segítségével.'
|
150
144
|
email_subject: A(z) "%{resource_title}" találkozóra mostantól regisztrálhatsz.
|
151
145
|
notification_title: A(z) <a href="%{resource_path}">%{resource_title}</a> találkozóra mostantól regisztrálhatsz.
|
152
|
-
upcoming_meeting:
|
153
|
-
email_intro: A(z) "%{resource_title}" találkozó kevesebb, mint 48 óra múlva kezdődik.
|
154
|
-
email_outro: Ezt az értesítést azért kapta, mert a "%{resource_title}" találkozót követi. Leiratkozhat az értesítésről az előző linken.
|
155
|
-
email_subject: A(z) "%{resource_title}" találkozó kevesebb, mint 48 óra múlva kezdődik.
|
156
|
-
notification_title: A(z) <a href="%{resource_path}">%{resource_title}</a> találkozó kevesebb, mint 48 óra múlva kezdődik.
|
157
146
|
gamification:
|
158
147
|
badges:
|
159
148
|
attended_meetings:
|
@@ -167,8 +156,6 @@ hu:
|
|
167
156
|
meetings:
|
168
157
|
actions:
|
169
158
|
agenda: Napirend
|
170
|
-
attachment_collections: Mappák
|
171
|
-
attachments: Mellékletek
|
172
159
|
close: Bezárás
|
173
160
|
edit: Szerkesztés
|
174
161
|
invalid_destroy:
|
@@ -207,7 +194,6 @@ hu:
|
|
207
194
|
create: Létrehozás
|
208
195
|
title: Új napirend
|
209
196
|
exports:
|
210
|
-
answers: Válaszok
|
211
197
|
meeting_comments: Hozzászólások
|
212
198
|
meetings: Találkozók
|
213
199
|
registrations: Regisztrációk
|
@@ -274,6 +260,7 @@ hu:
|
|
274
260
|
form:
|
275
261
|
available_slots_help: Hagyd "0" értéken, ha a jelentkezők száma korlátlan.
|
276
262
|
invites: Meghívók
|
263
|
+
manage_questions: Kérdések
|
277
264
|
recommendation_message: Adatvédelmi okokból javasoljuk, hogy törölje ezt az űrlapot, ha már nincs rá szüksége. Alapértelmezés szerint ez 3 hónap az ülés végét követően.
|
278
265
|
registration_email_help: Ez a szöveg a regisztrációt megerősítő e-mail közepén fog megjelenni. Épp a regisztrációs kód után.
|
279
266
|
registration_form: Regisztrációs űrlap
|
@@ -387,7 +374,6 @@ hu:
|
|
387
374
|
form:
|
388
375
|
address_help: 'Cím: Geocoder használata a helymeghatározáshoz'
|
389
376
|
available_slots_help: Hagyd "0" értéken, ha a jelentkezők száma korlátlan
|
390
|
-
create_as: Ülés létrehozása mint
|
391
377
|
meetings:
|
392
378
|
upcoming_meetings_warning: Jelenleg nincs ütemezett találkozó, de itt megtalálhatod az összes korábbi találkozó listáját.
|
393
379
|
new:
|
@@ -402,7 +388,6 @@ hu:
|
|
402
388
|
meeting_minutes: Találkozó jegyzőkönyve
|
403
389
|
no_slots_available: Nincs szabad hely
|
404
390
|
organizations: Résztvevő szervezetek
|
405
|
-
registration_code_help_text: A regisztrációs kódod
|
406
391
|
registration_state:
|
407
392
|
validated: JÓVÁHAGYOTT
|
408
393
|
validation_pending: ÉRVÉNYESÍTÉS FÜGGŐBEN
|
@@ -439,7 +424,6 @@ hu:
|
|
439
424
|
confirmation:
|
440
425
|
confirmed_html: Regisztrációd a(z) <a href="%{url}">%{title}</a> találkozóra megerősítve.
|
441
426
|
details: A találkozó részletei megtalálhatók a mellékletben.
|
442
|
-
registration_code: 'Regisztrációs kódod: %{code}.'
|
443
427
|
registration_type:
|
444
428
|
on_different_platform: Egy másik platformon
|
445
429
|
on_this_platform: Ezen a platformon
|
@@ -462,11 +446,6 @@ hu:
|
|
462
446
|
private_meeting: Privát találkozó
|
463
447
|
transparent: Átlátszó
|
464
448
|
withdraw: Visszavonva
|
465
|
-
metrics:
|
466
|
-
meetings:
|
467
|
-
description: A létrehozott találkozók száma
|
468
|
-
object: ülések
|
469
|
-
title: Találkozók
|
470
449
|
participatory_spaces:
|
471
450
|
highlighted_meetings:
|
472
451
|
past_meetings: Korábbi találkozók
|
data/config/locales/id-ID.yml
CHANGED
@@ -89,10 +89,8 @@ id:
|
|
89
89
|
email_subject: Slot "%{resource_title}" yang ditempati slot lebih dari %{percentage}%
|
90
90
|
notification_title: Slot pertemuan <a href="%{resource_path}">%{resource_title}</a> diduduki lebih dari %{percentage}%.
|
91
91
|
meeting_updated:
|
92
|
-
email_intro: 'Rapat "%{resource_title}" telah diperbarui. Anda dapat membaca versi baru dari halamannya:'
|
93
92
|
email_outro: Anda telah menerima pemberitahuan ini karena Anda mengikuti rapat "%{resource_title}". Anda dapat berhenti mengikutinya dari tautan sebelumnya.
|
94
93
|
email_subject: Rapat "%{resource_title}" telah diperbarui
|
95
|
-
notification_title: Rapat <a href="%{resource_path}">%{resource_title}</a> telah diperbarui.
|
96
94
|
registration_code_validated:
|
97
95
|
email_intro: Kode registrasi Anda "%{registration_code}" untuk rapat "%{resource_title}" telah divalidasi.
|
98
96
|
email_outro: Anda telah menerima pemberitahuan ini karena kode pendaftaran Anda untuk rapat "%{resource_title}" telah divalidasi.
|
@@ -103,11 +101,6 @@ id:
|
|
103
101
|
email_outro: Anda telah menerima pemberitahuan ini karena Anda mengikuti rapat "%{resource_title}". Anda dapat berhenti mengikutinya dari tautan sebelumnya.
|
104
102
|
email_subject: Rapat "%{resource_title}" telah memungkinkan pendaftaran.
|
105
103
|
notification_title: Pertemuan <a href="%{resource_path}">%{resource_title}</a> telah memungkinkan pendaftaran.
|
106
|
-
upcoming_meeting:
|
107
|
-
email_intro: Pertemuan "%{resource_title}" akan dimulai dalam waktu kurang dari 48 jam.
|
108
|
-
email_outro: Anda telah menerima pemberitahuan ini karena Anda mengikuti rapat "%{resource_title}". Anda dapat berhenti mengikutinya dari tautan sebelumnya.
|
109
|
-
email_subject: Pertemuan "%{resource_title}" akan dimulai dalam waktu kurang dari 48 jam.
|
110
|
-
notification_title: Pertemuan <a href="%{resource_path}">%{resource_title}</a> akan dimulai dalam waktu kurang dari 48 jam.
|
111
104
|
gamification:
|
112
105
|
badges:
|
113
106
|
attended_meetings:
|
@@ -121,8 +114,6 @@ id:
|
|
121
114
|
meetings:
|
122
115
|
actions:
|
123
116
|
agenda: Jadwal acara
|
124
|
-
attachment_collections: Folder
|
125
|
-
attachments: Lampiran
|
126
117
|
close: Dekat
|
127
118
|
edit: Edit
|
128
119
|
preview: Preview
|
@@ -257,7 +248,6 @@ id:
|
|
257
248
|
meeting_minutes: Risalah Pertemuan
|
258
249
|
no_slots_available: Tidak ada slot yang tersedia
|
259
250
|
organizations: Menghadiri organisasi
|
260
|
-
registration_code_help_text: Kode registrasi Anda
|
261
251
|
registration_state:
|
262
252
|
validated: DIvalidasi
|
263
253
|
validation_pending: MENUNGGU VALIDASI
|
@@ -286,7 +276,6 @@ id:
|
|
286
276
|
confirmation:
|
287
277
|
confirmed_html: Pendaftaran Anda untuk pertemuan <a href="%{url}">%{title}</a> telah dikonfirmasi.
|
288
278
|
details: Anda akan menemukan rincian rapat dalam lampiran.
|
289
|
-
registration_code: Kode registrasi Anda adalah %{code}.
|
290
279
|
registrations:
|
291
280
|
create:
|
292
281
|
invalid: Ada masalah saat bergabung dengan rapat ini.
|
@@ -299,11 +288,6 @@ id:
|
|
299
288
|
types:
|
300
289
|
private_meeting: Pertemuan pribadi
|
301
290
|
transparent: Transparan
|
302
|
-
metrics:
|
303
|
-
meetings:
|
304
|
-
description: Jumlah pertemuan yang dibuat
|
305
|
-
object: pertemuan
|
306
|
-
title: Rapat
|
307
291
|
participatory_spaces:
|
308
292
|
highlighted_meetings:
|
309
293
|
past_meetings: Pertemuan sebelumnya
|
data/config/locales/is-IS.yml
CHANGED
@@ -59,22 +59,15 @@ is:
|
|
59
59
|
meeting_registrations_over_percentage:
|
60
60
|
email_outro: Þú hefur fengið þessa tilkynningu vegna þess að þú ert stjórnandi á þátttökustigi fundarins.
|
61
61
|
meeting_updated:
|
62
|
-
email_intro: '"%{resource_title}" fundurinn var uppfærður. Þú getur lesið nýja útgáfu af síðunni:'
|
63
62
|
email_outro: Þú hefur fengið þessa tilkynningu vegna þess að þú fylgir "%{resource_title}" fundinum. Þú getur sleppt því frá fyrri tengilinn.
|
64
63
|
email_subject: '"%{resource_title}" fundurinn var uppfærður'
|
65
|
-
notification_title: <a href="%{resource_path}">%{resource_title}</a> fundurinn var uppfærður.
|
66
64
|
registrations_enabled:
|
67
65
|
email_intro: '"%{resource_title}" fundurinn hefur gert skráningu kleift. Þú getur skráð þig á síðunni:'
|
68
66
|
email_outro: Þú hefur fengið þessa tilkynningu vegna þess að þú fylgir "%{resource_title}" fundinum. Þú getur sleppt því frá fyrri tengilinn.
|
69
67
|
email_subject: '"%{resource_title}" fundurinn hefur gert skráningu kleift.'
|
70
68
|
notification_title: <a href="%{resource_path}">%{resource_title}</a> fundurinn hefur gert skráningu kleift.
|
71
|
-
upcoming_meeting:
|
72
|
-
email_intro: '"%{resource_title}" fundurinn mun byrja á innan við 48 klst.'
|
73
|
-
email_subject: '"%{resource_title}" fundurinn mun byrja á innan við 48 klst.'
|
74
|
-
notification_title: <a href="%{resource_path}">%{resource_title}</a> fundurinn hefst á innan við 48 klst.
|
75
69
|
meetings:
|
76
70
|
actions:
|
77
|
-
attachments: Viðhengi
|
78
71
|
close: Loka
|
79
72
|
edit: Breyta
|
80
73
|
preview: Preview
|
@@ -168,9 +161,6 @@ is:
|
|
168
161
|
types:
|
169
162
|
private_meeting: Einkafundur
|
170
163
|
transparent: Gegnsætt
|
171
|
-
metrics:
|
172
|
-
meetings:
|
173
|
-
title: Fundir
|
174
164
|
participatory_spaces:
|
175
165
|
highlighted_meetings:
|
176
166
|
past_meetings: Fyrri fundi
|