decidim-meetings 0.28.0 → 0.28.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/meetings/dates_and_map/show.erb +2 -4
  3. data/app/cells/decidim/meetings/dates_and_map_cell.rb +4 -0
  4. data/app/cells/decidim/meetings/highlighted_meetings_for_component/show.erb +1 -1
  5. data/app/cells/decidim/meetings/meeting_card_metadata_cell.rb +1 -1
  6. data/app/cells/decidim/meetings/meeting_l/image.erb +1 -1
  7. data/app/cells/decidim/meetings/online_meeting_link/show.erb +1 -1
  8. data/app/packs/stylesheets/decidim/meetings/_item.scss +6 -6
  9. data/app/views/decidim/meetings/admin/agenda/edit.html.erb +2 -2
  10. data/app/views/decidim/meetings/admin/agenda/new.html.erb +2 -2
  11. data/app/views/decidim/meetings/admin/invites/index.html.erb +2 -2
  12. data/app/views/decidim/meetings/admin/meeting_closes/edit.html.erb +2 -2
  13. data/app/views/decidim/meetings/admin/meeting_copies/new.html.erb +2 -2
  14. data/app/views/decidim/meetings/admin/meetings/edit.html.erb +2 -2
  15. data/app/views/decidim/meetings/admin/meetings/index.html.erb +2 -2
  16. data/app/views/decidim/meetings/admin/meetings/new.html.erb +2 -2
  17. data/app/views/decidim/meetings/admin/poll/edit.html.erb +2 -2
  18. data/app/views/decidim/meetings/admin/registrations/edit.html.erb +2 -2
  19. data/app/views/decidim/meetings/layouts/live_event.html.erb +1 -1
  20. data/app/views/decidim/meetings/meetings/_add_to_calendar_modal.html.erb +1 -1
  21. data/app/views/decidim/meetings/shared/_meetings.html.erb +1 -1
  22. data/config/locales/ca.yml +3 -3
  23. data/config/locales/de.yml +1 -1
  24. data/config/locales/es.yml +4 -4
  25. data/config/locales/fi-plain.yml +2 -0
  26. data/config/locales/fi.yml +3 -1
  27. data/config/locales/fr-CA.yml +2 -0
  28. data/config/locales/fr.yml +2 -0
  29. data/config/locales/he-IL.yml +1 -0
  30. data/config/locales/hu.yml +7 -0
  31. data/config/locales/ja.yml +10 -2
  32. data/config/locales/pl.yml +74 -0
  33. data/config/locales/pt-BR.yml +107 -0
  34. data/config/locales/sv.yml +1 -0
  35. data/decidim-meetings.gemspec +43 -0
  36. data/lib/decidim/meetings/test/factories.rb +56 -122
  37. data/lib/decidim/meetings/version.rb +1 -1
  38. metadata +22 -21
  39. data/config/environment.rb +0 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5b8de2ee7bede30592be558a09be0e7d8a115aea74a326804c82117e434eae0b
4
- data.tar.gz: 0bc799af5e46e7d1269bc76206d1e991fc1c399528dd81e93a6aef313189e07b
3
+ metadata.gz: 2938d2f32497611f571869b77a695164b51a47bcac475980697e0fb05b5ee681
4
+ data.tar.gz: 7eeb90d0095cfd435bc7e1a27bfebff6d9d48eacfb98fa3fcf12fa7f72d6a46e
5
5
  SHA512:
6
- metadata.gz: 70af236becae29700b28fc26371136321a6d5ced3d446c031fca3b4f9cc1354b187bddb0bda1645a5eee24b1705ff0b72bb3992b843fbda8aaa1b451ebdec0c8
7
- data.tar.gz: 1870dd9d98d85ec56a01d564c895f022996ddedb964ff9759e965e11c91e309f81a400c3a27dece73b9be05ea1566a26ae18bb8ba507c38446e575cfd221ac8f
6
+ metadata.gz: 4bd4972aefef8559a1b546210dd95d71d1db90e64406ab796ad6314a3d92a8c6dfbde876394fe68b62194a492f1a4374687b1ae50325cd131e37ef600c5e0076
7
+ data.tar.gz: 9d2d4b400fb87da7ee84d7d8ef1c39e78a8882be1b53465b72c76adbf551af0590fabb312a458235fcf953a5b4f0e3d6b7191e4c8a0a38a0aae2489e92ccaf9d
@@ -10,10 +10,8 @@
10
10
  <span class="meeting__calendar-separator"><%= "-" if !same_day? || !same_month? %></span>
11
11
  <span><%= l(end_time, format: "%d") if !same_day? || !same_month? %></span>
12
12
  </div>
13
- <div class="meeting__calendar-time">
14
- <time datetime="<%= start_time.iso8601 %>"><%= l(start_time, format: "%H:%M") %></time>
15
- <span class="meeting__calendar-separator"><%= "-" %></span>
16
- <time datetime="<%= end_time.iso8601 %>"><%= l(end_time, format: "%H:%M") %></time>
13
+ <div class="meeting__calendar-year">
14
+ <span><%= year %></span>
17
15
  </div>
18
16
  </div>
19
17
 
@@ -17,6 +17,10 @@ module Decidim
17
17
  return render :static_map if display_map?
18
18
  end
19
19
 
20
+ def year
21
+ l model.start_time, format: "%Y"
22
+ end
23
+
20
24
  private
21
25
 
22
26
  def same_month?
@@ -4,7 +4,7 @@
4
4
 
5
5
  <div class="content-block__title">
6
6
  <h2 class="h2 decorator">
7
- <%= single_component? ? translated_attribute(model.name) : t("decidim.components.meetings.name") %>
7
+ <%= single_component? ? decidim_escape_translated(model.name) : t("decidim.components.meetings.name") %>
8
8
  </h2>
9
9
  <div class="label text-lg"><%= meetings_count %></div>
10
10
  <% if see_all_path.present? %>
@@ -23,7 +23,7 @@ module Decidim
23
23
  private
24
24
 
25
25
  def meeting_items
26
- [type, duration_item, comments_count_item, category_item, withdrawn_item]
26
+ [start_date_item, type, comments_count_item, category_item, withdrawn_item]
27
27
  end
28
28
 
29
29
  def meeting_items_for_map
@@ -1,5 +1,5 @@
1
1
  <time class="card__calendar" datetime="<%= meeting.start_time.iso8601 %>">
2
2
  <div class="card__calendar-month"><%= l(meeting.start_time, format: "%b") %></div>
3
3
  <div class="card__calendar-day"><%= l(meeting.start_time, format: "%d") %></div>
4
- <div class="card__calendar-time"><%= l(meeting.start_time, format: "%H:%M") %></div>
4
+ <div class="card__calendar-year"><%= l(meeting.start_time, format: "%Y") %></div>
5
5
  </time>
@@ -16,6 +16,6 @@
16
16
  <p><%= t("micro_camera_permissions_warning", scope: "decidim.meetings.meetings.show") %></p>
17
17
  <% end %>
18
18
 
19
- <%= link_to t("join_meeting", scope: "decidim.meetings.meetings.meeting"), live_event_url, target: "_blank", class: "button button__xl button__secondary", data: { "external-link": false } %>
19
+ <%= link_to t("join_meeting", scope: "decidim.meetings.meetings.meeting"), live_event_url, target: "_blank", class: "button button__xl button__secondary", data: { external_link: "text-only", external_domain_link: false } %>
20
20
  <% end %>
21
21
  </div>
@@ -13,7 +13,7 @@
13
13
  }
14
14
 
15
15
  &-container {
16
- @apply grid grid-cols-[auto_1fr] md:grid-cols-[auto_1fr_1fr] items-center gap-0 md:gap-x-5 border-4 border-background rounded md:h-[120px] overflow-hidden;
16
+ @apply grid grid-cols-[auto_1fr] md:grid-cols-[auto_1fr_1fr] items-center gap-0 md:gap-x-5 border-4 border-background rounded md:h-[140px] overflow-hidden;
17
17
 
18
18
  > *:nth-child(2) {
19
19
  @apply p-4 md:p-0;
@@ -28,7 +28,7 @@
28
28
  }
29
29
 
30
30
  > *:nth-child(3) {
31
- @apply order-1 md:order-2 h-[116px] md:h-full;
31
+ @apply order-1 md:order-2 h-[135px] md:h-full;
32
32
  }
33
33
  }
34
34
 
@@ -40,13 +40,13 @@
40
40
  @apply text-black text-2xl font-bold;
41
41
  }
42
42
 
43
- &-time {
43
+ &-year {
44
44
  @apply text-black text-xs;
45
45
  }
46
46
 
47
47
  &-month,
48
48
  &-day,
49
- &-time {
49
+ &-year {
50
50
  @apply inline-flex items-center justify-evenly empty:[&>span]:hidden;
51
51
  }
52
52
 
@@ -55,7 +55,7 @@
55
55
  }
56
56
 
57
57
  &__lg {
58
- @apply w-fit justify-center [&>*]:px-2;
58
+ @apply w-fit justify-center [&>*]:px-2 min-w-24 h-[8.5rem];
59
59
  }
60
60
 
61
61
  &__lg &-month {
@@ -66,7 +66,7 @@
66
66
  @apply text-5xl;
67
67
  }
68
68
 
69
- &__lg &-time {
69
+ &__lg &-year {
70
70
  @apply text-md pb-2;
71
71
  }
72
72
  }
@@ -1,8 +1,8 @@
1
1
  <% add_decidim_page_title(t(".title")) %>
2
2
  <div class="item_show__header">
3
- <h2 class="item_show__header-title">
3
+ <h1 class="item_show__header-title">
4
4
  <%= t(".title") %>
5
- </h2>
5
+ </h1>
6
6
  </div>
7
7
 
8
8
  <div class="item__edit item__edit-1col">
@@ -1,9 +1,9 @@
1
1
  <% add_decidim_page_title(t(".title")) %>
2
2
 
3
3
  <div class="item_show__header">
4
- <h2 class="item_show__header-title">
4
+ <h1 class="item_show__header-title">
5
5
  <%= t(".title") %>
6
- </h2>
6
+ </h1>
7
7
  </div>
8
8
  <div class="item__edit-1col">
9
9
  <div class="item__edit-form">
@@ -1,8 +1,8 @@
1
1
  <% add_decidim_page_title(t(".invite_attendee")) %>
2
2
  <div class="item_show__header">
3
- <h2 class="item_show__header-title">
3
+ <h1 class="item_show__header-title">
4
4
  <%= t(".invite_attendee") %>
5
- </h2>
5
+ </h1>
6
6
  </div>
7
7
  <div class="item__edit item__edit-1col">
8
8
  <div class="item__edit-form">
@@ -1,9 +1,9 @@
1
1
  <% add_decidim_page_title(t(".title")) %>
2
2
 
3
3
  <div class="item_show__header">
4
- <h2 class="item_show__header-title">
4
+ <h1 class="item_show__header-title">
5
5
  <%= t(".title") %>
6
- </h2>
6
+ </h1>
7
7
  </div>
8
8
  <div class="item__edit item__edit-1col">
9
9
  <div class="item__edit-form">
@@ -1,8 +1,8 @@
1
1
  <% add_decidim_page_title(t("meeting_copies.new.title", scope: "decidim.admin")) %>
2
2
  <div class="item_show__header">
3
- <h2 class="item_show__header-title">
3
+ <h1 class="item_show__header-title">
4
4
  <%= t("meeting_copies.new.title", scope: "decidim.admin") %>
5
- </h2>
5
+ </h1>
6
6
  </div>
7
7
  <div class="item__edit item__edit-1col">
8
8
  <div class="item__edit-form">
@@ -1,8 +1,8 @@
1
1
  <% add_decidim_page_title(t(".title")) %>
2
2
  <div class="item_show__header">
3
- <h2 class="item_show__header-title">
3
+ <h1 class="item_show__header-title">
4
4
  <%= t(".title") %>
5
- </h2>
5
+ </h1>
6
6
  </div>
7
7
  <div class="item__edit item__edit-1col">
8
8
  <div class="item__edit-form">
@@ -1,12 +1,12 @@
1
1
  <% add_decidim_page_title(t(".title")) %>
2
2
  <div class="card">
3
3
  <div class="item_show__header">
4
- <h2 class="item_show__header-title">
4
+ <h1 class="item_show__header-title">
5
5
  <%= t(".title") %>
6
6
  <%= export_dropdowns(query) %>
7
7
  <%= link_to t("actions.new_meeting", scope: "decidim.meetings"), new_meeting_path, class: "button button__sm button__secondary" if allowed_to? :create, :meeting %>
8
8
  <%= render partial: "decidim/admin/components/resource_action" %>
9
- </h2>
9
+ </h1>
10
10
  </div>
11
11
 
12
12
  <%= admin_filter_selector(:meetings) %>
@@ -1,8 +1,8 @@
1
1
  <% add_decidim_page_title(t(".title")) %>
2
2
  <div class="item_show__header">
3
- <h2 class="item_show__header-title">
3
+ <h1 class="item_show__header-title">
4
4
  <%= t(".title") %>
5
- </h2>
5
+ </h1>
6
6
  </div>
7
7
  <div class="item__edit item__edit-1col">
8
8
  <div class="item__edit-form">
@@ -1,6 +1,6 @@
1
1
  <% add_decidim_page_title(edit_questionnaire_title) %>
2
2
  <div class="item_show__header">
3
- <h2 class="item_show__header-title">
3
+ <h1 class="item_show__header-title">
4
4
  <%= edit_questionnaire_title %>
5
5
  <% if questionnaire.answers.any? %>
6
6
  <div class="button--title">
@@ -9,7 +9,7 @@
9
9
  <% else %>
10
10
  <button class="button button__sm button__secondary" disabled><%= t("empty", scope: "decidim.forms.admin.questionnaires.answers") %></button>
11
11
  <% end %>
12
- </h2>
12
+ </h1>
13
13
  </div>
14
14
 
15
15
  <div class="item__edit item__edit-1col">
@@ -1,6 +1,6 @@
1
1
  <% add_decidim_page_title(t("title", scope: "decidim.meetings.admin.registrations.form")) %>
2
2
  <div class="item_show__header">
3
- <h2 class="item_show__header-title">
3
+ <h1 class="item_show__header-title">
4
4
  <%= t("title", scope: "decidim.meetings.admin.registrations.form") %>
5
5
  <div class="flex items-center gap-x-4 ml-auto">
6
6
  <%= link_to t("invites", scope: "decidim.meetings.admin.registrations.form"), meeting_registrations_invites_path(meeting), class: "button button__sm button__secondary #{"disabled" unless allowed_to? :read_invites, :meeting, meeting: meeting}" %>
@@ -19,7 +19,7 @@
19
19
  <% end %>
20
20
  <%= link_to t("registration_form" , scope: "decidim.meetings.admin.registrations.form"), edit_meeting_registrations_form_path(meeting_id: meeting.id), class: "button button__sm button__secondary" %>
21
21
  </div>
22
- </h2>
22
+ </h1>
23
23
  </div>
24
24
 
25
25
  <div class="item__edit item__edit-1col">
@@ -32,7 +32,7 @@
32
32
 
33
33
  <div class="flex gap-10">
34
34
  <% if current_user %>
35
- <%= link_to current_user.name, decidim.account_path, target: "_blank", class: "button button__sm button__text-secondary", data: { "external-link": false }, "aria-label": t("layouts.decidim.user_menu.account", name: current_user.name) %>
35
+ <%= link_to current_user.name, decidim.account_path, target: "_blank", class: "button button__sm button__text-secondary", data: { "external-link": "text-only" }, "aria-label": t("layouts.decidim.user_menu.account", name: current_user.name) %>
36
36
  <% end %>
37
37
 
38
38
  <%= link_to meeting_path(meeting), class: "button button__sm button__text-secondary", "aria-label": t("close", scope: "decidim.meetings.layouts.live_event") do %>
@@ -10,7 +10,7 @@
10
10
  <%= link_to t("apple", scope: "decidim.meetings.meetings.calendar_modal"), ics_url, class: "text-secondary underline" %>
11
11
  </li>
12
12
  <li>
13
- <%= link_to t("google", scope: "decidim.meetings.meetings.calendar_modal"), google_url, target: "_blank", class: "text-secondary underline", data: { "external-link": false } %>
13
+ <%= link_to t("google", scope: "decidim.meetings.meetings.calendar_modal"), google_url, target: "_blank", class: "text-secondary underline", data: { "external-link": "text-only" } %>
14
14
  </li>
15
15
  </ul>
16
16
  </div>
@@ -11,7 +11,7 @@
11
11
  <% if meetings.length.zero? %>
12
12
  <%= cell("decidim/announcement", t("decidim.meetings.meetings.meetings.no_meetings_warning"), callout_class: "warning" ) %>
13
13
  <% else %>
14
- <h2 class="h5 md:h3 decorator"><%= t("meetings_count", scope: "decidim.meetings.meetings.count", count: meetings.length) %></h2>
14
+ <h2 class="h5 md:h3 decorator"><%= t("meetings_count", scope: "decidim.meetings.meetings.count", count: meetings.total_count) %></h2>
15
15
 
16
16
  <%= cell("decidim/announcement", t("decidim.meetings.meetings.meetings.upcoming_meetings_warning"), callout_class: "warning" ) if @forced_past_meetings %>
17
17
 
@@ -166,14 +166,14 @@ ca:
166
166
  meeting_created:
167
167
  button_text: Inscriu-te a la trobada
168
168
  email_intro: S'ha afegit la trobada "%{resource_title}" a l'espai "%{participatory_space_title}" que estàs seguint.
169
- email_outro: Has rebut aquesta notificació perquè estàs seguint "%{participatory_space_title}". Pots deixar de seguir-lo des de l'enllaç anterior.
169
+ email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{participatory_space_title}". Pots deixar de seguir-lo des de l'enllaç anterior.
170
170
  email_subject: Nova trobada afegida a %{participatory_space_title}
171
171
  notification_title: S'ha afegit la trobada <a href="%{resource_path}">%{resource_title}</a> a %{participatory_space_title}
172
172
  meeting_registration_confirmed:
173
173
  notification_title: S'ha confirmat el teu registre per a la trobada <a href="%{resource_url}">%{resource_title}</a>. El teu codi de registre és %{registration_code}.
174
174
  meeting_registrations_over_percentage:
175
175
  email_intro: Les inscripcions per la trobada "%{resource_title}" superen el %{percentage}%.
176
- email_outro: Has rebut aquesta notificació perquè ets administradora de l'espai participatiu de la trobada.
176
+ email_outro: Has rebut aquesta notificació perquè administres l'espai participatiu de la trobada.
177
177
  email_subject: Les inscripcions per la trobada "%{resource_title}" superen el %{percentage}%
178
178
  notification_title: Les inscripcions per la trobada <a href="%{resource_path}">%{resource_title}</a> superen el %{percentage}%.
179
179
  meeting_updated:
@@ -413,7 +413,7 @@ ca:
413
413
  body: La trobada <a href="%{meeting_path}">"%{meeting_title}"</a> està pendent de tancar-se. Si us plau, afegiu un informe de la reunió fent servir el botó "Tancar trobada".
414
414
  greetings: Hola,<br/>%{organization_name}<br/><a href="%{organization_url}">%{organization_url}</a>
415
415
  hello: Hola %{username},
416
- subject: Ara pots tancar la trobada amb un informe a la plataforma %{organization_name}
416
+ subject: Està pendent tancar la trobada amb un informe a la plataforma %{organization_name}
417
417
  conference_venues: Seus de les jornades
418
418
  content_blocks:
419
419
  upcoming_meetings:
@@ -29,7 +29,7 @@ de:
29
29
  online_meeting_url: Online Meeting URL
30
30
  organizer_gid: Erstellt als
31
31
  organizer_id: Veranstalter
32
- private_meeting: Private Sitzung
32
+ private_meeting: Privates Treffen
33
33
  registration_email_custom_content: Angepasster Inhalt des Registrierungs-E-Mails
34
34
  registration_form_enabled: Anmeldeformular aktiviert
35
35
  registration_terms: Registrierungsbedingungen
@@ -155,7 +155,7 @@ es:
155
155
  meeting_closed:
156
156
  affected_user:
157
157
  email_intro: 'Tu encuentro "%{resource_title}" se ha cerrado. Puedes leer las conclusiones desde su página:'
158
- email_outro: Has recibido esta notificación porque has organizaco el encuentro "%{resource_title}".
158
+ email_outro: Has recibido esta notificación porque organizaste el encuentro "%{resource_title}".
159
159
  email_subject: Se ha cerrado el encuentro "%{resource_title}"
160
160
  notification_title: El encuentro <a href="%{resource_path}">%{resource_title}</a> ha sido cerrada.
161
161
  follower:
@@ -166,14 +166,14 @@ es:
166
166
  meeting_created:
167
167
  button_text: Inscribirse en el encuentro
168
168
  email_intro: Se ha añadido el encuentro "%{resource_title}" al espacio "%{participatory_space_title}" que estás siguiendo.
169
- email_outro: Has recibido esta notificación porque sigues "%{participatory_space_title}". Puedes dejar de seguirlo en el enlace anterior.
169
+ email_outro: Has recibido esta notificación porque sigues el espacio "%{participatory_space_title}". Puedes dejar de seguirlo en el enlace anterior.
170
170
  email_subject: Nuevo encuentro añadido en %{participatory_space_title}
171
171
  notification_title: Se ha añadido el encuentro <a href="%{resource_path}">%{resource_title}</a> en %{participatory_space_title}
172
172
  meeting_registration_confirmed:
173
173
  notification_title: Tu inscripción al encuentro <a href="%{resource_url}">%{resource_title}</a> ha sido confirmada. Tu código de registro es %{registration_code}.
174
174
  meeting_registrations_over_percentage:
175
175
  email_intro: Las inscripciones para el encuentro "%{resource_title}" superan el %{percentage}%.
176
- email_outro: Has recibido esta notificación porque eres administradora del espacio participativo del encuentro.
176
+ email_outro: Has recibido esta notificación porque administras el espacio participativo del encuentro.
177
177
  email_subject: Las inscripciones para el encuentro "%{resource_title}" superan el %{percentage}%
178
178
  notification_title: Las inscripciones para el encuentro <a href="%{resource_path}">%{resource_title}</a> superan el %{percentage}%.
179
179
  meeting_updated:
@@ -413,7 +413,7 @@ es:
413
413
  body: El encuentro <a href="%{meeting_path}">"%{meeting_title}"</a> está pendiente de cerrarse. Por favor, agrega un informe de la reunión usando el botón "Cerrar encuentro".
414
414
  greetings: Hola,<br/>%{organization_name}<br/><a href="%{organization_url}">%{organization_url}</a>
415
415
  hello: Hola %{username},
416
- subject: Ahora puedes cerrar el encuentro con un informe en la plataforma %{organization_name}
416
+ subject: Está pendiente cerrar el encuentro con un informe en la plataforma %{organization_name}
417
417
  conference_venues: Sedes de las jornadas
418
418
  content_blocks:
419
419
  upcoming_meetings:
@@ -283,7 +283,9 @@ fi-pl:
283
283
  select_user: Valitse käyttäjä
284
284
  index:
285
285
  filter:
286
+ accepted: Hyväksytyt
286
287
  all: Kaikki
288
+ rejected: Hylätyt
287
289
  sent: Lähetetyt
288
290
  invite_attendee: Kutsu osallistuja
289
291
  invites: Kutsut
@@ -283,7 +283,9 @@ fi:
283
283
  select_user: Valitse käyttäjä
284
284
  index:
285
285
  filter:
286
+ accepted: Hyväksytyt
286
287
  all: Kaikki
288
+ rejected: Hylätyt
287
289
  sent: Lähetetyt
288
290
  invite_attendee: Kutsu osallistuja
289
291
  invites: Kutsut
@@ -399,7 +401,7 @@ fi:
399
401
  read_more: Lue lisää tästä tapaamisesta
400
402
  calendar_modal:
401
403
  calendar_url: Kalenterin URL
402
- copy_calendar_url: Kopio
404
+ copy_calendar_url: Kopioi
403
405
  copy_calendar_url_clarification: Kopioi kalenterin URL-osoite leikepöydälle
404
406
  copy_calendar_url_copied: Kopioitu!
405
407
  copy_calendar_url_description: Näet kaikki julkaistut tapaamiset oman palveluntarjoajasi kalenteriohjelmassa. Kopioi ja liitä tämä URL-osoite kalenteriisi käyttämällä "Lisää uusi kalenteri URL-osoitteesta" -toimintoa.
@@ -283,7 +283,9 @@ fr-CA:
283
283
  select_user: Sélectionner un utilisateur
284
284
  index:
285
285
  filter:
286
+ accepted: Acceptée
286
287
  all: Toutes
288
+ rejected: Rejeté
287
289
  sent: Envoyé
288
290
  invite_attendee: Inviter un participant
289
291
  invites: Invitations
@@ -283,7 +283,9 @@ fr:
283
283
  select_user: Sélectionner un utilisateur
284
284
  index:
285
285
  filter:
286
+ accepted: Acceptée
286
287
  all: Toutes
288
+ rejected: Rejeté
287
289
  sent: Envoyé
288
290
  invite_attendee: Inviter un participant
289
291
  invites: Invitations
@@ -0,0 +1 @@
1
+ he:
@@ -201,6 +201,8 @@ hu:
201
201
  down: Le
202
202
  remove: Eltávolítás
203
203
  up: Fel
204
+ create:
205
+ success: Napirend létrehozása sikeres.
204
206
  edit:
205
207
  title: Napirend szerkesztése
206
208
  update: Frissítés
@@ -246,6 +248,7 @@ hu:
246
248
  title: Ttalálkozó lezárása
247
249
  meetings:
248
250
  create:
251
+ invalid: Probléma történt a találkozó létrehozása során.
249
252
  success: A találkozó létrehozása sikeres - a nyilvánossá tételhez manuálisan kell publikálnia.
250
253
  destroy:
251
254
  invalid:
@@ -416,6 +419,9 @@ hu:
416
419
  create_as: Ülés létrehozása mint
417
420
  meetings:
418
421
  upcoming_meetings_warning: Jelenleg nincs ütemezett találkozó, de itt megtalálhatod az összes korábbi találkozó listáját.
422
+ new:
423
+ create: Létrehoz
424
+ title: Találkozó létrehozása
419
425
  registration_confirm:
420
426
  cancel: Mégse
421
427
  confirm: Megerősítés
@@ -471,6 +477,7 @@ hu:
471
477
  registrations:
472
478
  create:
473
479
  invalid: Probléma történt a találkozóhoz való csatlakozáskor.
480
+ success: Sikeresen csatlakoztál a találkozóhoz. Mivel regisztráltál a találkozóra, értesítünk, ha frissülnek az információk.
474
481
  decline_invitation:
475
482
  invalid: Hiba történt a meghívás visszautasítása során.
476
483
  success: Meghívás elutasítása sikeres.
@@ -23,6 +23,7 @@ ja:
23
23
  id: ID
24
24
  iframe_access_level: iframeアクセスレベル:
25
25
  iframe_embed_type: Iframe 埋め込みタイプ
26
+ iframe_embed_type_html: '「ミーティングページに埋め込む」または「配信イベントページで開く」を許可しているサービスはわずかしかありません。 モバイルでの「ミーティングページに埋め込む」オプションに注意してください。画面が異なる寸法を継承するため、実際には「配信イベントで開く」として機能します。'
26
27
  location: 場所
27
28
  location_hints: 位置情報のヒント
28
29
  online_meeting_url: オンラインミーティングURL
@@ -57,7 +58,7 @@ ja:
57
58
  meeting:
58
59
  attributes:
59
60
  iframe_embed_type:
60
- not_embeddable: このURLは、ミーティングやライブイベントのページに埋め込むことはできません。
61
+ not_embeddable: このURLは、ミーティングや配信イベントのページに埋め込むことはできません。
61
62
  online_meeting_url:
62
63
  url_format: 有効な URL でなければなりません
63
64
  meeting_agenda:
@@ -278,7 +279,9 @@ ja:
278
279
  select_user: 参加者を選択
279
280
  index:
280
281
  filter:
282
+ accepted: 承認済み
281
283
  all: すべて
284
+ rejected: 却下済み
282
285
  sent: 送信済み
283
286
  invite_attendee: 参加者を招待
284
287
  invites: 招待
@@ -306,6 +309,7 @@ ja:
306
309
  form:
307
310
  address_help: 'アドレス: ジオコーダーが場所を見つけるために使用'
308
311
  disclaimer: '免責事項: 外部の登録システムを使用する場合、ユーザーが外部サービスに提供したデータについて%{organization} の主催者が責任を負わないことをあらかじめご了承ください。'
312
+ iframe_embed_type_html: 'ミーティングまたは配信イベントに埋め込めるサービスは以下のドメインに限定されています: %{domains}'
309
313
  location_help: '場所: ユーザーにメッセージが表示されます。'
310
314
  location_hints_help: '位置情報のヒント:追加情報。 例: 対面ミーティングでの建物のフロア、またはアクセス制限のあるオンラインミーティングでのミーティングパスワード。'
311
315
  online_meeting_url_help: 'リンク: 参加者があなたのミーティングに直接接続できるようにします'
@@ -386,6 +390,9 @@ ja:
386
390
  all: すべて
387
391
  filter_meeting_space_values:
388
392
  all: すべて
393
+ calendar:
394
+ meeting_to_event:
395
+ read_more: このミーティングについてもっと読む
389
396
  calendar_modal:
390
397
  calendar_url: カレンダー URL
391
398
  copy_calendar_url: コピー
@@ -417,7 +424,7 @@ ja:
417
424
  iframe_embed_type:
418
425
  embed_in_meeting_page: ミーティングページに埋め込む
419
426
  none: なし
420
- open_in_live_event_page: ライブイベントページで開く (オプションの投票付き)
427
+ open_in_live_event_page: 配信イベントページで開く (オプションの投票付き)
421
428
  open_in_new_tab: URLを新しいタブで開く
422
429
  last_activity:
423
430
  meeting_updated: '更新されたミーティング:'
@@ -486,6 +493,7 @@ ja:
486
493
  available_slots_help: 無制限の場合は0のままにしてください
487
494
  create_as: 次のユーザとしてミーティングを作成:
488
495
  disclaimer: '免責事項: 外部の登録システムを使用する場合、ユーザーが外部サービスに提供したデータについて%{organization} の主催者が責任を負わないことをあらかじめご了承ください。'
496
+ iframe_embed_type_html: 'ミーティングまたは配信イベントに埋め込めるサービスは以下のドメインに限定されています: %{domains}'
489
497
  location_help: '場所: ユーザーにメッセージが表示されます。'
490
498
  location_hints_help: '位置情報のヒント:追加情報。 例: 対面ミーティングでの建物のフロア、またはアクセス制限のあるオンラインミーティングでのミーティングパスワード。'
491
499
  online_meeting_url_help: 'リンク: 参加者があなたのミーティングに直接接続できるようにします'