decidim-conferences 0.31.2 → 0.31.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/commands/decidim/conferences/admin/duplicate_conference.rb +6 -4
- data/app/presenters/decidim/conferences/admin_log/conference_presenter.rb +1 -1
- data/config/locales/ar.yml +3 -4
- data/config/locales/bg.yml +2 -3
- data/config/locales/ca-IT.yml +9 -8
- data/config/locales/ca.yml +9 -8
- data/config/locales/cs.yml +2 -15
- data/config/locales/de.yml +6 -19
- data/config/locales/el.yml +0 -4
- data/config/locales/en.yml +1 -0
- data/config/locales/es-MX.yml +12 -11
- data/config/locales/es-PY.yml +12 -11
- data/config/locales/es.yml +11 -10
- data/config/locales/eu.yml +6 -5
- data/config/locales/fi-plain.yml +1 -14
- data/config/locales/fi.yml +0 -13
- data/config/locales/fr-CA.yml +3 -9
- data/config/locales/fr.yml +3 -9
- data/config/locales/gl.yml +3 -5
- data/config/locales/hu.yml +4 -5
- data/config/locales/id-ID.yml +3 -5
- data/config/locales/it.yml +3 -5
- data/config/locales/ja.yml +2 -1
- data/config/locales/lb.yml +3 -3
- data/config/locales/lt.yml +0 -4
- data/config/locales/lv.yml +2 -4
- data/config/locales/nl.yml +2 -4
- data/config/locales/no.yml +2 -4
- data/config/locales/pl.yml +3 -4
- data/config/locales/pt-BR.yml +4 -13
- data/config/locales/pt.yml +2 -4
- data/config/locales/ro-RO.yml +1 -12
- data/config/locales/sk.yml +2 -4
- data/config/locales/sv.yml +1 -13
- data/config/locales/tr-TR.yml +6 -4
- data/config/locales/zh-CN.yml +2 -4
- data/config/locales/zh-TW.yml +0 -4
- data/lib/decidim/conferences/version.rb +1 -1
- metadata +10 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eb1706fa199e68bb05ef9cbddbad137bb946ddcd848606142dd7a6c785245d53
|
|
4
|
+
data.tar.gz: bd10fffef3fcb8b33c19b0e1305579ef8c732936fec266ac775f76d9ea8aed44
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7dfa6aee4bd68049038fc7f49c65d90f26f6e71fac36c3f88805213cab6b794d284de11ca83856f8ba2686f6b603d5b26c1bc56482f2f4b25e785c0bf709be47
|
|
7
|
+
data.tar.gz: 13886acdd634e0b4b5581ad6b594250ff01964f8cb38d0df1fcbe887a93590ba6bf9cd3388c12640f22a3d118f74d484c16e56ba924a130358bc262d6e49cbc5
|
|
@@ -24,10 +24,12 @@ module Decidim
|
|
|
24
24
|
def call
|
|
25
25
|
return broadcast(:invalid) if form.invalid?
|
|
26
26
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
27
|
+
Decidim.traceability.perform_action!("duplicate", @conference, form.current_user) do
|
|
28
|
+
Conference.transaction do
|
|
29
|
+
duplicate_conference
|
|
30
|
+
duplicate_conference_attachments
|
|
31
|
+
duplicate_conference_components if @form.duplicate_components?
|
|
32
|
+
end
|
|
31
33
|
end
|
|
32
34
|
|
|
33
35
|
broadcast(:ok, @duplicated_conference)
|
|
@@ -40,7 +40,7 @@ module Decidim
|
|
|
40
40
|
|
|
41
41
|
def action_string
|
|
42
42
|
case action
|
|
43
|
-
when "create", "publish", "unpublish", "update", "update_diploma", "soft_delete", "restore"
|
|
43
|
+
when "create", "duplicate", "publish", "unpublish", "update", "update_diploma", "soft_delete", "restore"
|
|
44
44
|
"decidim.admin_log.conference.#{action}"
|
|
45
45
|
else
|
|
46
46
|
super
|
data/config/locales/ar.yml
CHANGED
|
@@ -107,8 +107,6 @@ ar:
|
|
|
107
107
|
success: تم حذف رئيس المؤتمر بنجاح.
|
|
108
108
|
edit:
|
|
109
109
|
update: تحديث
|
|
110
|
-
index:
|
|
111
|
-
conference_speakers_title: المتحدثون في المؤتمر
|
|
112
110
|
new:
|
|
113
111
|
create: إنشاء
|
|
114
112
|
update:
|
|
@@ -122,6 +120,8 @@ ar:
|
|
|
122
120
|
success: تمت إزالة مسؤول المؤتمر بنجاح.
|
|
123
121
|
edit:
|
|
124
122
|
update: تحديث
|
|
123
|
+
index:
|
|
124
|
+
conference_admins_title: المشرفون على المؤتمر
|
|
125
125
|
new:
|
|
126
126
|
create: إنشاء
|
|
127
127
|
update:
|
|
@@ -142,6 +142,7 @@ ar:
|
|
|
142
142
|
published: نشرت
|
|
143
143
|
new:
|
|
144
144
|
create: إنشاء
|
|
145
|
+
title: مؤتمر جديد
|
|
145
146
|
update:
|
|
146
147
|
error: حدثت مشكلة أثناء تحديث هذا المؤتمر.
|
|
147
148
|
success: تم تحديث المؤتمر بنجاح.
|
|
@@ -164,7 +165,6 @@ ar:
|
|
|
164
165
|
conference_admins: المشرفون على المؤتمر
|
|
165
166
|
conference_invites: تدعو
|
|
166
167
|
conference_speakers: مكبرات الصوت
|
|
167
|
-
info: عن هذا المؤتمر
|
|
168
168
|
moderations: الإعتدال
|
|
169
169
|
partners: شركاء
|
|
170
170
|
registrations: التسجيلات
|
|
@@ -244,7 +244,6 @@ ar:
|
|
|
244
244
|
update: تحديث
|
|
245
245
|
new:
|
|
246
246
|
create: إنشاء
|
|
247
|
-
title: نوع التسجيل الجديد
|
|
248
247
|
update:
|
|
249
248
|
error: حدثت مشكلة أثناء تحديث نوع التسجيل لهذا المؤتمر.
|
|
250
249
|
success: تم تحديث نوع تسجيل المؤتمر بنجاح.
|
data/config/locales/bg.yml
CHANGED
|
@@ -109,8 +109,6 @@ bg:
|
|
|
109
109
|
success: Говорителят на конференцията беше изтрит успешно.
|
|
110
110
|
edit:
|
|
111
111
|
update: Актуализация
|
|
112
|
-
index:
|
|
113
|
-
conference_speakers_title: Говорители на конференция
|
|
114
112
|
new:
|
|
115
113
|
create: Създаване
|
|
116
114
|
publish:
|
|
@@ -134,6 +132,7 @@ bg:
|
|
|
134
132
|
conference_admins_title: Администратори на конференция
|
|
135
133
|
new:
|
|
136
134
|
create: Създаване
|
|
135
|
+
title: Нов администратор на конференция
|
|
137
136
|
update:
|
|
138
137
|
error: Възникна проблем при актуализирането на този администратор на конференцията.
|
|
139
138
|
success: Администраторът на конференцията беше актуализиран успешно.
|
|
@@ -153,6 +152,7 @@ bg:
|
|
|
153
152
|
unpublished: Непубликувано
|
|
154
153
|
new:
|
|
155
154
|
create: Създаване
|
|
155
|
+
title: Нова конференция
|
|
156
156
|
update:
|
|
157
157
|
error: Възникна проблем при актуализирането на тази конференция.
|
|
158
158
|
success: Конференцията беше актуализирана успешно.
|
|
@@ -175,7 +175,6 @@ bg:
|
|
|
175
175
|
conference_admins: Администратори на конференция
|
|
176
176
|
conference_invites: Покани
|
|
177
177
|
conference_speakers: Говорители
|
|
178
|
-
info: Относно тази конференция
|
|
179
178
|
moderations: Модерации
|
|
180
179
|
partners: Партньори
|
|
181
180
|
registrations: Регистрации
|
data/config/locales/ca-IT.yml
CHANGED
|
@@ -121,10 +121,10 @@ ca-IT:
|
|
|
121
121
|
destroy:
|
|
122
122
|
success: Ponent de la jornada eliminada correctament.
|
|
123
123
|
edit:
|
|
124
|
-
title: Actualitzar
|
|
124
|
+
title: Actualitzar ponent de la jornada
|
|
125
125
|
update: Actualitzar
|
|
126
126
|
index:
|
|
127
|
-
conference_speakers_title: Ponents de
|
|
127
|
+
conference_speakers_title: Ponents de la jornada
|
|
128
128
|
new:
|
|
129
129
|
create: Crear
|
|
130
130
|
title: Nova ponent de la jornada
|
|
@@ -147,10 +147,10 @@ ca-IT:
|
|
|
147
147
|
title: Actualitzar administradora de la jornada
|
|
148
148
|
update: Actualitzar
|
|
149
149
|
index:
|
|
150
|
-
conference_admins_title:
|
|
150
|
+
conference_admins_title: Administradors de conferències
|
|
151
151
|
new:
|
|
152
152
|
create: Crear
|
|
153
|
-
title:
|
|
153
|
+
title: Afegir administradora
|
|
154
154
|
update:
|
|
155
155
|
error: S'ha produït un error en actualitzar l'administradora per a aquesta jornada.
|
|
156
156
|
success: Administradora de la jornada actualitzada correctament.
|
|
@@ -177,7 +177,7 @@ ca-IT:
|
|
|
177
177
|
title: Jornades eliminades
|
|
178
178
|
new:
|
|
179
179
|
create: Crear
|
|
180
|
-
title:
|
|
180
|
+
title: Afegir jornada
|
|
181
181
|
update:
|
|
182
182
|
error: S'ha produït un error en actualitzar aquesta jornada.
|
|
183
183
|
success: Jornada actualitzada correctament.
|
|
@@ -285,7 +285,7 @@ ca-IT:
|
|
|
285
285
|
update: Actualitzar
|
|
286
286
|
new:
|
|
287
287
|
create: Crear
|
|
288
|
-
title:
|
|
288
|
+
title: Afegir col·laboradora
|
|
289
289
|
update:
|
|
290
290
|
error: S'ha produït un error en actualitzar un col·laborador per a aquesta jornada.
|
|
291
291
|
success: Col·laboradora de la jornada actualtizada correctament.
|
|
@@ -307,7 +307,7 @@ ca-IT:
|
|
|
307
307
|
update: Actualitzar
|
|
308
308
|
new:
|
|
309
309
|
create: Crear
|
|
310
|
-
title:
|
|
310
|
+
title: Afegir tipus de registre
|
|
311
311
|
update:
|
|
312
312
|
error: S'ha produït un error en actualitzar un tipus d'inscripció per a aquesta jornada.
|
|
313
313
|
success: El tipus d'inscripció s'ha actualitzat correctament per a aquesta jornada.
|
|
@@ -322,6 +322,7 @@ ca-IT:
|
|
|
322
322
|
admin_log:
|
|
323
323
|
conference:
|
|
324
324
|
create: "%{user_name} ha creat la jornada %{resource_name}"
|
|
325
|
+
duplicate: "%{user_name} ha duplicat la jornada \"%{resource_name}\""
|
|
325
326
|
publish: "%{user_name} ha publicat la jornada %{resource_name}"
|
|
326
327
|
restore: "%{user_name} ha restaurat la jornada %{resource_name}"
|
|
327
328
|
send_conference_diplomas: "%{user_name} ha enviat certificats d'assistència a les assistents de la jornada %{resource_name}"
|
|
@@ -581,7 +582,7 @@ ca-IT:
|
|
|
581
582
|
notification_title: La teva inscripció a jornada <a href="%{resource_url}">%{resource_title}</a> està pendent de confirmació.
|
|
582
583
|
conference_registrations_over_percentage:
|
|
583
584
|
email_intro: Les places ocupades per a la jornada "%{resource_title}" superen el %{percentage}%.
|
|
584
|
-
email_outro: Has rebut aquesta notificació perquè administres l'espai
|
|
585
|
+
email_outro: Has rebut aquesta notificació perquè administres l'espai de participació de la jornada.
|
|
585
586
|
email_subject: Les places ocupades per a la jornada "%{resource_title}" superen el %{percentage}%
|
|
586
587
|
notification_title: Les places ocupades per a la jornada <a href="%{resource_path}">%{resource_title}</a> superen el %{percentage}%.
|
|
587
588
|
conference_updated:
|
data/config/locales/ca.yml
CHANGED
|
@@ -121,10 +121,10 @@ ca:
|
|
|
121
121
|
destroy:
|
|
122
122
|
success: Ponent de la jornada eliminada correctament.
|
|
123
123
|
edit:
|
|
124
|
-
title: Actualitzar
|
|
124
|
+
title: Actualitzar ponent de la jornada
|
|
125
125
|
update: Actualitzar
|
|
126
126
|
index:
|
|
127
|
-
conference_speakers_title: Ponents de
|
|
127
|
+
conference_speakers_title: Ponents de la jornada
|
|
128
128
|
new:
|
|
129
129
|
create: Crear
|
|
130
130
|
title: Nova ponent de la jornada
|
|
@@ -147,10 +147,10 @@ ca:
|
|
|
147
147
|
title: Actualitzar administradora de la jornada
|
|
148
148
|
update: Actualitzar
|
|
149
149
|
index:
|
|
150
|
-
conference_admins_title:
|
|
150
|
+
conference_admins_title: Administradors de conferències
|
|
151
151
|
new:
|
|
152
152
|
create: Crear
|
|
153
|
-
title:
|
|
153
|
+
title: Afegir administradora
|
|
154
154
|
update:
|
|
155
155
|
error: S'ha produït un error en actualitzar l'administradora per a aquesta jornada.
|
|
156
156
|
success: Administradora de la jornada actualitzada correctament.
|
|
@@ -177,7 +177,7 @@ ca:
|
|
|
177
177
|
title: Jornades eliminades
|
|
178
178
|
new:
|
|
179
179
|
create: Crear
|
|
180
|
-
title:
|
|
180
|
+
title: Afegir jornada
|
|
181
181
|
update:
|
|
182
182
|
error: S'ha produït un error en actualitzar aquesta jornada.
|
|
183
183
|
success: Jornada actualitzada correctament.
|
|
@@ -285,7 +285,7 @@ ca:
|
|
|
285
285
|
update: Actualitzar
|
|
286
286
|
new:
|
|
287
287
|
create: Crear
|
|
288
|
-
title:
|
|
288
|
+
title: Afegir col·laboradora
|
|
289
289
|
update:
|
|
290
290
|
error: S'ha produït un error en actualitzar un col·laborador per a aquesta jornada.
|
|
291
291
|
success: Col·laboradora de la jornada actualtizada correctament.
|
|
@@ -307,7 +307,7 @@ ca:
|
|
|
307
307
|
update: Actualitzar
|
|
308
308
|
new:
|
|
309
309
|
create: Crear
|
|
310
|
-
title:
|
|
310
|
+
title: Afegir tipus de registre
|
|
311
311
|
update:
|
|
312
312
|
error: S'ha produït un error en actualitzar un tipus d'inscripció per a aquesta jornada.
|
|
313
313
|
success: El tipus d'inscripció s'ha actualitzat correctament per a aquesta jornada.
|
|
@@ -322,6 +322,7 @@ ca:
|
|
|
322
322
|
admin_log:
|
|
323
323
|
conference:
|
|
324
324
|
create: "%{user_name} ha creat la jornada %{resource_name}"
|
|
325
|
+
duplicate: "%{user_name} ha duplicat la jornada \"%{resource_name}\""
|
|
325
326
|
publish: "%{user_name} ha publicat la jornada %{resource_name}"
|
|
326
327
|
restore: "%{user_name} ha restaurat la jornada %{resource_name}"
|
|
327
328
|
send_conference_diplomas: "%{user_name} ha enviat certificats d'assistència a les assistents de la jornada %{resource_name}"
|
|
@@ -581,7 +582,7 @@ ca:
|
|
|
581
582
|
notification_title: La teva inscripció a jornada <a href="%{resource_url}">%{resource_title}</a> està pendent de confirmació.
|
|
582
583
|
conference_registrations_over_percentage:
|
|
583
584
|
email_intro: Les places ocupades per a la jornada "%{resource_title}" superen el %{percentage}%.
|
|
584
|
-
email_outro: Has rebut aquesta notificació perquè administres l'espai
|
|
585
|
+
email_outro: Has rebut aquesta notificació perquè administres l'espai de participació de la jornada.
|
|
585
586
|
email_subject: Les places ocupades per a la jornada "%{resource_title}" superen el %{percentage}%
|
|
586
587
|
notification_title: Les places ocupades per a la jornada <a href="%{resource_path}">%{resource_title}</a> superen el %{percentage}%.
|
|
587
588
|
conference_updated:
|
data/config/locales/cs.yml
CHANGED
|
@@ -108,7 +108,6 @@ cs:
|
|
|
108
108
|
new:
|
|
109
109
|
duplicate: Duplikovat
|
|
110
110
|
select: Vyberte, která data chcete duplikovat
|
|
111
|
-
title: Duplikovat konferenci
|
|
112
111
|
conference_publications:
|
|
113
112
|
create:
|
|
114
113
|
error: Při publikování této konference došlo k chybě.
|
|
@@ -127,13 +126,9 @@ cs:
|
|
|
127
126
|
destroy:
|
|
128
127
|
success: Řečník byl úspěšně smazán pro tuto konferenci.
|
|
129
128
|
edit:
|
|
130
|
-
title: Aktualizovat řečníka konference
|
|
131
129
|
update: Aktualizace
|
|
132
|
-
index:
|
|
133
|
-
conference_speakers_title: Řečníci konference
|
|
134
130
|
new:
|
|
135
131
|
create: Vytvořit
|
|
136
|
-
title: Nový řečník konference
|
|
137
132
|
publish:
|
|
138
133
|
invalid: Při publikování tohoto řečníka došlo k chybě.
|
|
139
134
|
success: Řečník konference byl úspěšně zveřejněn.
|
|
@@ -150,13 +145,12 @@ cs:
|
|
|
150
145
|
destroy:
|
|
151
146
|
success: Administrátor konference byl úspěšně odstraněn.
|
|
152
147
|
edit:
|
|
153
|
-
title: Aktualizovat správce konference
|
|
154
148
|
update: Aktualizace
|
|
155
149
|
index:
|
|
156
150
|
conference_admins_title: Administrátoři konference
|
|
157
151
|
new:
|
|
158
152
|
create: Vytvořit
|
|
159
|
-
title: Nový
|
|
153
|
+
title: Nový administrátor konference
|
|
160
154
|
update:
|
|
161
155
|
error: Při aktualizaci tohoto administrátora konference došlo k potížím.
|
|
162
156
|
success: Uživatel úspěšně aktualizován pro tuto konferenci.
|
|
@@ -179,8 +173,6 @@ cs:
|
|
|
179
173
|
index:
|
|
180
174
|
published: Publikováno
|
|
181
175
|
unpublished: Nezveřejněno
|
|
182
|
-
manage_trash:
|
|
183
|
-
title: Smazané konference
|
|
184
176
|
new:
|
|
185
177
|
create: Vytvořit
|
|
186
178
|
title: Nová konference
|
|
@@ -198,7 +190,6 @@ cs:
|
|
|
198
190
|
destroy:
|
|
199
191
|
success: Odkaz na média byl úspěšně odstraněn.
|
|
200
192
|
edit:
|
|
201
|
-
title: Aktualizovat odkaz na média
|
|
202
193
|
update: Aktualizace
|
|
203
194
|
index:
|
|
204
195
|
media_links_title: Odkazy na média
|
|
@@ -219,7 +210,6 @@ cs:
|
|
|
219
210
|
conference_invites: Pozvánky
|
|
220
211
|
conference_speakers: Řečníci
|
|
221
212
|
diploma: Certifikát o účasti
|
|
222
|
-
info: O této konferenci
|
|
223
213
|
media_links: Odkazy na média
|
|
224
214
|
moderations: Moderování
|
|
225
215
|
partners: Partneři
|
|
@@ -287,7 +277,6 @@ cs:
|
|
|
287
277
|
destroy:
|
|
288
278
|
success: Partner byl úspěšně odstraněn z této konference.
|
|
289
279
|
edit:
|
|
290
|
-
title: Aktualizovat partnera
|
|
291
280
|
update: Aktualizace
|
|
292
281
|
new:
|
|
293
282
|
create: Vytvořit
|
|
@@ -309,7 +298,6 @@ cs:
|
|
|
309
298
|
destroy:
|
|
310
299
|
success: Typ registrace byl z této konference úspěšně odstraněn.
|
|
311
300
|
edit:
|
|
312
|
-
title: Aktualizovat typ registrace
|
|
313
301
|
update: Aktualizace
|
|
314
302
|
new:
|
|
315
303
|
create: Vytvořit
|
|
@@ -322,7 +310,6 @@ cs:
|
|
|
322
310
|
conferences: Všechny konference
|
|
323
311
|
titles:
|
|
324
312
|
conferences: Konference
|
|
325
|
-
conferences_deleted: Smazané konference
|
|
326
313
|
tooltips:
|
|
327
314
|
deleted_conferences_info: Konference mohou být smazané pouze v případě, že je stav "Nezveřejněný".
|
|
328
315
|
admin_log:
|
|
@@ -387,7 +374,7 @@ cs:
|
|
|
387
374
|
new:
|
|
388
375
|
explanation: Uživatel bude pozván, aby se připojil k konferenci. Pokud není jeho e-mail registrován, bude také pozván do organizace.
|
|
389
376
|
invite: Pozvat
|
|
390
|
-
new_invite: Pozvat
|
|
377
|
+
new_invite: Pozvat účastníka
|
|
391
378
|
conference_registrations:
|
|
392
379
|
index:
|
|
393
380
|
registrations: Registrace
|
data/config/locales/de.yml
CHANGED
|
@@ -102,7 +102,6 @@ de:
|
|
|
102
102
|
new:
|
|
103
103
|
duplicate: Duplizieren
|
|
104
104
|
select: Zu duplizierende Daten auswählen
|
|
105
|
-
title: Konferenz duplizieren
|
|
106
105
|
conference_publications:
|
|
107
106
|
create:
|
|
108
107
|
error: Beim Veröffentlichen dieser Konferenz ist ein Fehler aufgetreten.
|
|
@@ -121,13 +120,9 @@ de:
|
|
|
121
120
|
destroy:
|
|
122
121
|
success: Der Redner wurde für diese Konferenz erfolgreich gelöscht.
|
|
123
122
|
edit:
|
|
124
|
-
title: Referierende Person aktualisieren
|
|
125
123
|
update: Aktualisieren
|
|
126
|
-
index:
|
|
127
|
-
conference_speakers_title: Konferenzsprecher
|
|
128
124
|
new:
|
|
129
125
|
create: Erstellen
|
|
130
|
-
title: Neue referierende Person
|
|
131
126
|
publish:
|
|
132
127
|
invalid: Beim Veröffentlichen dieser RednerIn ist ein Problem aufgetreten.
|
|
133
128
|
success: KonferenzrednerIn erfolgreich veröffentlicht.
|
|
@@ -144,13 +139,12 @@ de:
|
|
|
144
139
|
destroy:
|
|
145
140
|
success: Benutzer wurde erfolgreich von dieser Konferenz entfernt.
|
|
146
141
|
edit:
|
|
147
|
-
title: Referierende Person aktualisieren
|
|
148
142
|
update: Aktualisieren
|
|
149
143
|
index:
|
|
150
|
-
conference_admins_title:
|
|
144
|
+
conference_admins_title: Konferenzadministratoren
|
|
151
145
|
new:
|
|
152
146
|
create: Erstellen
|
|
153
|
-
title: Neuer
|
|
147
|
+
title: Neuer Konferenz-Admin
|
|
154
148
|
update:
|
|
155
149
|
error: Bei einem Fehler ist ein Benutzer für diese Konferenz aktualisiert worden.
|
|
156
150
|
success: Der Benutzer wurde für diese Konferenz erfolgreich aktualisiert.
|
|
@@ -173,8 +167,6 @@ de:
|
|
|
173
167
|
index:
|
|
174
168
|
published: Veröffentlicht
|
|
175
169
|
unpublished: Nicht veröffentlicht
|
|
176
|
-
manage_trash:
|
|
177
|
-
title: Gelöschte Konferenzen
|
|
178
170
|
new:
|
|
179
171
|
create: Erstellen
|
|
180
172
|
title: Neue Konferenz
|
|
@@ -192,7 +184,6 @@ de:
|
|
|
192
184
|
destroy:
|
|
193
185
|
success: Medienlink erfolgreich gelöscht.
|
|
194
186
|
edit:
|
|
195
|
-
title: Medienlink aktualisieren
|
|
196
187
|
update: Aktualisieren
|
|
197
188
|
index:
|
|
198
189
|
media_links_title: Medienlinks
|
|
@@ -211,9 +202,8 @@ de:
|
|
|
211
202
|
components: Komponenten
|
|
212
203
|
conference_admins: Konferenzadministratoren
|
|
213
204
|
conference_invites: Lädt ein
|
|
214
|
-
conference_speakers:
|
|
205
|
+
conference_speakers: Sprechende
|
|
215
206
|
diploma: Teilnahmebestätigung
|
|
216
|
-
info: Über diese Konferenz
|
|
217
207
|
media_links: Medienlinks
|
|
218
208
|
moderations: Moderationen
|
|
219
209
|
partners: Partner
|
|
@@ -281,7 +271,6 @@ de:
|
|
|
281
271
|
destroy:
|
|
282
272
|
success: Der Partner wurde erfolgreich von dieser Konferenz entfernt.
|
|
283
273
|
edit:
|
|
284
|
-
title: Partner aktualisieren
|
|
285
274
|
update: Aktualisieren
|
|
286
275
|
new:
|
|
287
276
|
create: Erstellen
|
|
@@ -303,7 +292,6 @@ de:
|
|
|
303
292
|
destroy:
|
|
304
293
|
success: Der Registrierungstyp wurde erfolgreich von dieser Konferenz entfernt.
|
|
305
294
|
edit:
|
|
306
|
-
title: Registrierungsart aktualisieren
|
|
307
295
|
update: Aktualisieren
|
|
308
296
|
new:
|
|
309
297
|
create: Erstellen
|
|
@@ -316,7 +304,6 @@ de:
|
|
|
316
304
|
conferences: Alle Konferenzen
|
|
317
305
|
titles:
|
|
318
306
|
conferences: Konferenzen
|
|
319
|
-
conferences_deleted: Gelöschte Konferenzen
|
|
320
307
|
tooltips:
|
|
321
308
|
deleted_conferences_info: Konferenzen können nur gelöscht werden, wenn der Status "Nicht veröffentlicht" ist.
|
|
322
309
|
admin_log:
|
|
@@ -359,7 +346,7 @@ de:
|
|
|
359
346
|
title: Programm
|
|
360
347
|
conference_speakers:
|
|
361
348
|
index:
|
|
362
|
-
title:
|
|
349
|
+
title: Sprechende
|
|
363
350
|
conferences:
|
|
364
351
|
admin:
|
|
365
352
|
conference_duplicates:
|
|
@@ -381,7 +368,7 @@ de:
|
|
|
381
368
|
new:
|
|
382
369
|
explanation: Die Person wird zur Teilnahme an der Konferenz eingeladen. Wenn die E-Mail nicht registriert ist, werden sie ebenfalls zur Organisation eingeladen.
|
|
383
370
|
invite: Einladen
|
|
384
|
-
new_invite:
|
|
371
|
+
new_invite: Teilnehmer einladen
|
|
385
372
|
conference_registrations:
|
|
386
373
|
index:
|
|
387
374
|
registrations: Anmeldungen
|
|
@@ -670,6 +657,6 @@ de:
|
|
|
670
657
|
other: "%{count} Konferenzen"
|
|
671
658
|
conferences_nav:
|
|
672
659
|
conference_partners_menu_item: Partner
|
|
673
|
-
conference_speaker_menu_item:
|
|
660
|
+
conference_speaker_menu_item: Sprechende
|
|
674
661
|
media: Medien
|
|
675
662
|
venues: Veranstaltungsorte
|
data/config/locales/el.yml
CHANGED
|
@@ -102,8 +102,6 @@ el:
|
|
|
102
102
|
success: Ο ομιλητής διάσκεψης διαγράφηκε με επιτυχία.
|
|
103
103
|
edit:
|
|
104
104
|
update: Ενημέρωση
|
|
105
|
-
index:
|
|
106
|
-
conference_speakers_title: Ομιλητές διάσκεψης
|
|
107
105
|
new:
|
|
108
106
|
create: Δημιουργία
|
|
109
107
|
update:
|
|
@@ -219,7 +217,6 @@ el:
|
|
|
219
217
|
update: Ενημέρωση
|
|
220
218
|
new:
|
|
221
219
|
create: Δημιουργία
|
|
222
|
-
title: Νέος συνεργάτης
|
|
223
220
|
update:
|
|
224
221
|
error: Υπήρξε ένα πρόβλημα κατά την ενημέρωση ενός συνεργάτη για αυτήν τη διάσκεψη.
|
|
225
222
|
success: Ο συνεργάτης διάσκεψης ενημερώθηκε με επιτυχία.
|
|
@@ -240,7 +237,6 @@ el:
|
|
|
240
237
|
update: Ενημέρωση
|
|
241
238
|
new:
|
|
242
239
|
create: Δημιουργία
|
|
243
|
-
title: Νέος τύπος εγγραφής
|
|
244
240
|
update:
|
|
245
241
|
error: Υπήρξε ένα πρόβλημα κατά την ενημέρωση ενός τύπου εγγραφής για αυτήν τη διάσκεψη.
|
|
246
242
|
success: Ο τύπος εγγραφής διάσκεψης ενημερώθηκε με επιτυχία.
|
data/config/locales/en.yml
CHANGED
|
@@ -322,6 +322,7 @@ en:
|
|
|
322
322
|
admin_log:
|
|
323
323
|
conference:
|
|
324
324
|
create: "%{user_name} created the %{resource_name} conference"
|
|
325
|
+
duplicate: "%{user_name} duplicated the %{resource_name} conference"
|
|
325
326
|
publish: "%{user_name} published the %{resource_name} conference"
|
|
326
327
|
restore: "%{user_name} restored the %{resource_name} conference"
|
|
327
328
|
send_conference_diplomas: "%{user_name} sent certificates of attendance to the %{resource_name} conference atendees"
|
data/config/locales/es-MX.yml
CHANGED
|
@@ -121,10 +121,10 @@ es-MX:
|
|
|
121
121
|
destroy:
|
|
122
122
|
success: Ponente eliminado con éxito en esta conferencia.
|
|
123
123
|
edit:
|
|
124
|
-
title: Actualizar
|
|
124
|
+
title: Actualizar ponente de la jornada
|
|
125
125
|
update: Actualizar
|
|
126
126
|
index:
|
|
127
|
-
conference_speakers_title: Ponentes
|
|
127
|
+
conference_speakers_title: Ponentes de la jornada
|
|
128
128
|
new:
|
|
129
129
|
create: Crear
|
|
130
130
|
title: Nueva ponente de la jornada
|
|
@@ -147,10 +147,10 @@ es-MX:
|
|
|
147
147
|
title: Actualizar administradora de la jornada
|
|
148
148
|
update: Actualizar
|
|
149
149
|
index:
|
|
150
|
-
conference_admins_title:
|
|
150
|
+
conference_admins_title: Administradores de conferencia
|
|
151
151
|
new:
|
|
152
152
|
create: Crear
|
|
153
|
-
title:
|
|
153
|
+
title: Añadir administradora
|
|
154
154
|
update:
|
|
155
155
|
error: Hubo un error al actualizar un usuario de esta conferencia.
|
|
156
156
|
success: Actualizado con éxito el usuario para esta conferencia.
|
|
@@ -177,7 +177,7 @@ es-MX:
|
|
|
177
177
|
title: Jornadas eliminadas
|
|
178
178
|
new:
|
|
179
179
|
create: Crear
|
|
180
|
-
title: Nueva
|
|
180
|
+
title: Nueva conferencia
|
|
181
181
|
update:
|
|
182
182
|
error: Hubo un error al actualizar esta conferencia.
|
|
183
183
|
success: Conferencia actualizada con éxito.
|
|
@@ -192,7 +192,7 @@ es-MX:
|
|
|
192
192
|
destroy:
|
|
193
193
|
success: Enlace multimedia eliminado correctamente.
|
|
194
194
|
edit:
|
|
195
|
-
title: Actualizar enlace multimedia
|
|
195
|
+
title: Actualizar el enlace multimedia
|
|
196
196
|
update: Actualizar
|
|
197
197
|
index:
|
|
198
198
|
media_links_title: Enlaces multimedia
|
|
@@ -213,7 +213,7 @@ es-MX:
|
|
|
213
213
|
conference_invites: Invita
|
|
214
214
|
conference_speakers: Ponentes
|
|
215
215
|
diploma: Certificado de asistencia
|
|
216
|
-
info: Acerca de esta
|
|
216
|
+
info: Acerca de esta jornada
|
|
217
217
|
media_links: Enlaces multimedia
|
|
218
218
|
moderations: Moderaciones
|
|
219
219
|
partners: Colaboradores
|
|
@@ -285,7 +285,7 @@ es-MX:
|
|
|
285
285
|
update: Actualizar
|
|
286
286
|
new:
|
|
287
287
|
create: Crear
|
|
288
|
-
title:
|
|
288
|
+
title: Añadir colaboradora
|
|
289
289
|
update:
|
|
290
290
|
error: Se ha producido un error al actualizar un colaborador de esta jornada.
|
|
291
291
|
success: Colaborador actualizado correctamente en esta jornada.
|
|
@@ -307,7 +307,7 @@ es-MX:
|
|
|
307
307
|
update: Actualizar
|
|
308
308
|
new:
|
|
309
309
|
create: Crear
|
|
310
|
-
title:
|
|
310
|
+
title: Añadir tipo de inscripción
|
|
311
311
|
update:
|
|
312
312
|
error: Hubo un error al actualizar un tipo de registro para esta conferencia.
|
|
313
313
|
success: Tipo de registro actualizado con éxito para esta conferencia.
|
|
@@ -322,6 +322,7 @@ es-MX:
|
|
|
322
322
|
admin_log:
|
|
323
323
|
conference:
|
|
324
324
|
create: "%{user_name} creó la conferencia %{resource_name}"
|
|
325
|
+
duplicate: "%{user_name} ha duplicado la jornada \"%{resource_name}\""
|
|
325
326
|
publish: "%{user_name} ha publicado la conferencia %{resource_name}"
|
|
326
327
|
restore: "%{user_name} restauró la jornada %{resource_name}"
|
|
327
328
|
send_conference_diplomas: "%{user_name} certificados de asistencia enviados a los asistentes a %{resource_name} conferencia"
|
|
@@ -377,11 +378,11 @@ es-MX:
|
|
|
377
378
|
select_user: Seleccionar usuario
|
|
378
379
|
index:
|
|
379
380
|
invite_attendee: Invitar a un asistente
|
|
380
|
-
invites:
|
|
381
|
+
invites: Invita
|
|
381
382
|
new:
|
|
382
383
|
explanation: La participante será invitada a unirse a la jornada. Si su correo electrónico no está registrado, también será invitada a unirse a la organización.
|
|
383
384
|
invite: Invitar
|
|
384
|
-
new_invite: Invitar a un
|
|
385
|
+
new_invite: Invitar a un asistente
|
|
385
386
|
conference_registrations:
|
|
386
387
|
index:
|
|
387
388
|
registrations: Inscripciones
|
data/config/locales/es-PY.yml
CHANGED
|
@@ -121,10 +121,10 @@ es-PY:
|
|
|
121
121
|
destroy:
|
|
122
122
|
success: Altavoz eliminado con éxito para esta conferencia.
|
|
123
123
|
edit:
|
|
124
|
-
title: Actualizar
|
|
124
|
+
title: Actualizar ponente de la jornada
|
|
125
125
|
update: Actualizar
|
|
126
126
|
index:
|
|
127
|
-
conference_speakers_title:
|
|
127
|
+
conference_speakers_title: Ponentes de la jornada
|
|
128
128
|
new:
|
|
129
129
|
create: Crear
|
|
130
130
|
title: Nueva ponente de la jornada
|
|
@@ -147,10 +147,10 @@ es-PY:
|
|
|
147
147
|
title: Actualizar administradora de la jornada
|
|
148
148
|
update: Actualizar
|
|
149
149
|
index:
|
|
150
|
-
conference_admins_title:
|
|
150
|
+
conference_admins_title: Administradores de conferencia
|
|
151
151
|
new:
|
|
152
152
|
create: Crear
|
|
153
|
-
title:
|
|
153
|
+
title: Añadir administradora
|
|
154
154
|
update:
|
|
155
155
|
error: Hubo un error al actualizar un usuario para esta conferencia.
|
|
156
156
|
success: Usuario actualizado con éxito para esta conferencia.
|
|
@@ -177,7 +177,7 @@ es-PY:
|
|
|
177
177
|
title: Jornadas eliminadas
|
|
178
178
|
new:
|
|
179
179
|
create: Crear
|
|
180
|
-
title: Nueva
|
|
180
|
+
title: Nueva conferencia
|
|
181
181
|
update:
|
|
182
182
|
error: Hubo un error al actualizar esta conferencia.
|
|
183
183
|
success: Conferencia actualizada con éxito
|
|
@@ -192,7 +192,7 @@ es-PY:
|
|
|
192
192
|
destroy:
|
|
193
193
|
success: Enlace multimedia eliminado correctamente.
|
|
194
194
|
edit:
|
|
195
|
-
title: Actualizar enlace multimedia
|
|
195
|
+
title: Actualizar el enlace multimedia
|
|
196
196
|
update: Actualizar
|
|
197
197
|
index:
|
|
198
198
|
media_links_title: Enlaces multimedia
|
|
@@ -213,7 +213,7 @@ es-PY:
|
|
|
213
213
|
conference_invites: Invita
|
|
214
214
|
conference_speakers: Ponentes
|
|
215
215
|
diploma: Certificado de asistencia
|
|
216
|
-
info: Acerca de esta
|
|
216
|
+
info: Acerca de esta jornada
|
|
217
217
|
media_links: Enlaces multimedia
|
|
218
218
|
moderations: Moderaciones
|
|
219
219
|
partners: Fogonadura
|
|
@@ -285,7 +285,7 @@ es-PY:
|
|
|
285
285
|
update: Actualizar
|
|
286
286
|
new:
|
|
287
287
|
create: Crear
|
|
288
|
-
title:
|
|
288
|
+
title: Añadir colaboradora
|
|
289
289
|
update:
|
|
290
290
|
error: Hubo un error actualizado de un socio para esta conferencia.
|
|
291
291
|
success: Socio actualizado exitosamente para esta conferencia.
|
|
@@ -307,7 +307,7 @@ es-PY:
|
|
|
307
307
|
update: Actualizar
|
|
308
308
|
new:
|
|
309
309
|
create: Crear
|
|
310
|
-
title:
|
|
310
|
+
title: Añadir tipo de inscripción
|
|
311
311
|
update:
|
|
312
312
|
error: Hubo un error al actualizar un tipo de registro para esta conferencia.
|
|
313
313
|
success: Tipo de registro actualizado con éxito para esta conferencia.
|
|
@@ -322,6 +322,7 @@ es-PY:
|
|
|
322
322
|
admin_log:
|
|
323
323
|
conference:
|
|
324
324
|
create: "%{user_name} creó la %{resource_name} conferencia"
|
|
325
|
+
duplicate: "%{user_name} ha duplicado la jornada \"%{resource_name}\""
|
|
325
326
|
publish: "%{user_name} publicado la %{resource_name} conferencia"
|
|
326
327
|
restore: "%{user_name} restauró la jornada %{resource_name}"
|
|
327
328
|
send_conference_diplomas: "%{user_name} certificados de asistencia enviados a los asistentes a %{resource_name} conferencia"
|
|
@@ -377,11 +378,11 @@ es-PY:
|
|
|
377
378
|
select_user: Seleccionar usuario
|
|
378
379
|
index:
|
|
379
380
|
invite_attendee: Invitar a un asistente
|
|
380
|
-
invites:
|
|
381
|
+
invites: Invita
|
|
381
382
|
new:
|
|
382
383
|
explanation: La participante será invitada a unirse a la jornada. Si su correo electrónico no está registrado, también será invitada a unirse a la organización.
|
|
383
384
|
invite: Invitación
|
|
384
|
-
new_invite: Invitar
|
|
385
|
+
new_invite: Invitar a un asistente
|
|
385
386
|
conference_registrations:
|
|
386
387
|
index:
|
|
387
388
|
registrations: Registros
|