decidim-conferences 0.26.8 → 0.27.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/cells/decidim/conferences/content_blocks/highlighted_conferences/show.erb +2 -2
- data/app/cells/decidim/conferences/content_blocks/highlighted_conferences_cell.rb +4 -5
- data/app/commands/decidim/conferences/admin/confirm_conference_registration.rb +3 -3
- data/app/commands/decidim/conferences/admin/copy_conference.rb +1 -1
- data/app/commands/decidim/conferences/admin/create_conference.rb +1 -1
- data/app/commands/decidim/conferences/admin/create_conference_speaker.rb +8 -8
- data/app/commands/decidim/conferences/admin/create_media_link.rb +6 -6
- data/app/commands/decidim/conferences/admin/create_partner.rb +8 -8
- data/app/commands/decidim/conferences/admin/create_registration_type.rb +6 -6
- data/app/commands/decidim/conferences/admin/destroy_conference_admin.rb +1 -6
- data/app/commands/decidim/conferences/admin/destroy_conference_speaker.rb +1 -1
- data/app/commands/decidim/conferences/admin/destroy_media_link.rb +1 -1
- data/app/commands/decidim/conferences/admin/destroy_partner.rb +1 -1
- data/app/commands/decidim/conferences/admin/destroy_registration_type.rb +1 -1
- data/app/commands/decidim/conferences/admin/export_conference_registrations.rb +1 -1
- data/app/commands/decidim/conferences/admin/invite_user_to_join_conference.rb +10 -12
- data/app/commands/decidim/conferences/admin/notify_role_assigned_to_conference.rb +1 -1
- data/app/commands/decidim/conferences/admin/publish_conference.rb +1 -1
- data/app/commands/decidim/conferences/admin/publish_registration_type.rb +1 -1
- data/app/commands/decidim/conferences/admin/send_conference_diplomas.rb +1 -1
- data/app/commands/decidim/conferences/admin/unpublish_conference.rb +1 -1
- data/app/commands/decidim/conferences/admin/unpublish_registration_type.rb +1 -1
- data/app/commands/decidim/conferences/admin/update_conference.rb +1 -1
- data/app/commands/decidim/conferences/admin/update_conference_speaker.rb +8 -8
- data/app/commands/decidim/conferences/admin/update_diploma.rb +3 -3
- data/app/commands/decidim/conferences/admin/update_media_link.rb +6 -6
- data/app/commands/decidim/conferences/admin/update_partner.rb +6 -6
- data/app/commands/decidim/conferences/admin/update_registration_type.rb +6 -6
- data/app/commands/decidim/conferences/decline_invitation.rb +1 -1
- data/app/commands/decidim/conferences/join_conference.rb +1 -8
- data/app/commands/decidim/conferences/leave_conference.rb +4 -4
- data/app/controllers/decidim/conferences/admin/conference_invites_controller.rb +12 -8
- data/app/controllers/decidim/conferences/admin/conference_registrations_controller.rb +10 -8
- data/app/controllers/decidim/conferences/admin/conference_speakers_controller.rb +11 -17
- data/app/controllers/decidim/conferences/admin/media_links_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/partners_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/registration_type_publications_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/registration_types_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/reminders_controller.rb +14 -0
- data/app/controllers/decidim/conferences/conference_program_controller.rb +2 -2
- data/app/controllers/decidim/conferences/conference_registrations_controller.rb +1 -18
- data/app/events/decidim/conferences/conference_registration_notification_event.rb +1 -1
- data/app/events/decidim/conferences/conference_role_assigned_event.rb +1 -1
- data/app/forms/decidim/conferences/admin/conference_registration_invite_form.rb +1 -1
- data/app/helpers/decidim/conferences/admin/conference_speakers_helper.rb +14 -0
- data/app/mailers/decidim/conferences/admin/send_conference_diploma_mailer.rb +2 -2
- data/app/models/decidim/conference.rb +2 -3
- data/app/models/decidim/conferences/conference_invite.rb +2 -2
- data/app/models/decidim/conferences/conference_registration.rb +2 -2
- data/app/permissions/decidim/conferences/permissions.rb +0 -1
- data/app/presenters/decidim/conference_speaker_presenter.rb +3 -5
- data/app/presenters/decidim/conferences/conference_stats_presenter.rb +4 -1
- data/app/queries/decidim/conferences/admin/admin_users.rb +1 -1
- data/app/queries/decidim/conferences/admin/conference_invites.rb +1 -1
- data/app/queries/decidim/conferences/admin/conference_speakers.rb +1 -1
- data/app/queries/decidim/conferences/conference_program_meetings.rb +2 -2
- data/app/queries/decidim/conferences/conference_program_meetings_by_day.rb +3 -3
- data/app/queries/decidim/conferences/conferences_with_user_role.rb +1 -1
- data/app/queries/decidim/conferences/organization_conferences.rb +1 -1
- data/app/queries/decidim/conferences/organization_prioritized_conferences.rb +3 -3
- data/app/queries/decidim/conferences/organization_published_conferences.rb +3 -3
- data/app/queries/decidim/conferences/prioritized_conferences.rb +1 -1
- data/app/queries/decidim/conferences/promoted_conferences.rb +1 -1
- data/app/queries/decidim/conferences/published_conferences.rb +1 -1
- data/app/queries/decidim/conferences/visible_conferences.rb +1 -1
- data/app/serializers/decidim/conferences/{data_portability_conference_invite_serializer.rb → download_your_data_conference_invite_serializer.rb} +2 -2
- data/app/serializers/decidim/conferences/{data_portability_conference_registration_serializer.rb → download_your_data_conference_registration_serializer.rb} +2 -2
- data/app/views/decidim/conferences/admin/conference_copies/new.html.erb +0 -1
- data/app/views/decidim/conferences/admin/conference_invites/index.html.erb +0 -1
- data/app/views/decidim/conferences/admin/conference_invites/new.html.erb +0 -1
- data/app/views/decidim/conferences/admin/conference_registrations/index.html.erb +0 -1
- data/app/views/decidim/conferences/admin/conference_speakers/edit.html.erb +1 -2
- data/app/views/decidim/conferences/admin/conference_speakers/index.html.erb +0 -1
- data/app/views/decidim/conferences/admin/conference_speakers/new.html.erb +0 -1
- data/app/views/decidim/conferences/admin/conference_user_roles/edit.html.erb +0 -1
- data/app/views/decidim/conferences/admin/conference_user_roles/index.html.erb +0 -1
- data/app/views/decidim/conferences/admin/conference_user_roles/new.html.erb +0 -1
- data/app/views/decidim/conferences/admin/conferences/_form.html.erb +3 -3
- data/app/views/decidim/conferences/admin/conferences/edit.html.erb +0 -1
- data/app/views/decidim/conferences/admin/conferences/index.html.erb +0 -1
- data/app/views/decidim/conferences/admin/conferences/new.html.erb +0 -1
- data/app/views/decidim/conferences/admin/diplomas/edit.html.erb +0 -1
- data/app/views/decidim/conferences/admin/invite_join_conference_mailer/invite.html.erb +3 -3
- data/app/views/decidim/conferences/admin/media_links/edit.html.erb +0 -1
- data/app/views/decidim/conferences/admin/media_links/index.html.erb +0 -1
- data/app/views/decidim/conferences/admin/media_links/new.html.erb +0 -1
- data/app/views/decidim/conferences/admin/partners/_form.html.erb +2 -1
- data/app/views/decidim/conferences/admin/partners/edit.html.erb +0 -1
- data/app/views/decidim/conferences/admin/partners/index.html.erb +3 -2
- data/app/views/decidim/conferences/admin/partners/new.html.erb +0 -1
- data/app/views/decidim/conferences/admin/registration_types/edit.html.erb +0 -1
- data/app/views/decidim/conferences/admin/registration_types/index.html.erb +0 -1
- data/app/views/decidim/conferences/admin/registration_types/new.html.erb +0 -1
- data/app/views/decidim/conferences/conferences/_promoted_conference.html.erb +1 -1
- data/app/views/decidim/conferences/conferences/show.html.erb +2 -2
- data/app/views/devise/mailer/join_conference.html.erb +2 -2
- data/app/views/devise/mailer/join_conference.text.erb +2 -2
- data/app/views/layouts/decidim/_conference_hero.html.erb +1 -1
- data/app/views/layouts/decidim/_conferences_nav.html.erb +1 -1
- data/config/locales/am-ET.yml +1 -0
- data/config/locales/ar.yml +9 -2
- data/config/locales/bg.yml +1 -0
- data/config/locales/ca.yml +8 -11
- data/config/locales/cs.yml +18 -21
- data/config/locales/da.yml +1 -0
- data/config/locales/de.yml +7 -10
- data/config/locales/el.yml +8 -13
- data/config/locales/en.yml +7 -11
- data/config/locales/eo.yml +1 -0
- data/config/locales/es-MX.yml +9 -12
- data/config/locales/es-PY.yml +10 -13
- data/config/locales/es.yml +9 -12
- data/config/locales/et.yml +1 -0
- data/config/locales/eu.yml +40 -39
- data/config/locales/fi-plain.yml +8 -11
- data/config/locales/fi.yml +10 -13
- data/config/locales/fr-CA.yml +4 -7
- data/config/locales/fr.yml +6 -9
- data/config/locales/ga-IE.yml +4 -0
- data/config/locales/gl.yml +9 -1
- data/config/locales/hr.yml +1 -0
- data/config/locales/hu.yml +9 -65
- data/config/locales/id-ID.yml +12 -1
- data/config/locales/is-IS.yml +2 -1
- data/config/locales/it.yml +11 -3
- data/config/locales/ja.yml +5 -8
- data/config/locales/ko.yml +1 -0
- data/config/locales/lb.yml +7 -2
- data/config/locales/lt.yml +1 -616
- data/config/locales/lv.yml +12 -1
- data/config/locales/mt.yml +1 -0
- data/config/locales/nl.yml +13 -5
- data/config/locales/no.yml +10 -2
- data/config/locales/om-ET.yml +1 -0
- data/config/locales/pl.yml +9 -2
- data/config/locales/pt-BR.yml +11 -3
- data/config/locales/pt.yml +9 -1
- data/config/locales/ro-RO.yml +10 -14
- data/config/locales/ru.yml +1 -0
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sk.yml +12 -1
- data/config/locales/sl.yml +1 -0
- data/config/locales/so-SO.yml +1 -0
- data/config/locales/sr-CS.yml +1 -0
- data/config/locales/sv.yml +9 -7
- data/config/locales/sw-KE.yml +1 -0
- data/config/locales/ti-ER.yml +1 -0
- data/config/locales/tr-TR.yml +14 -4
- data/config/locales/uk.yml +1 -0
- data/config/locales/val-ES.yml +1 -0
- data/config/locales/vi.yml +1 -0
- data/config/locales/zh-CN.yml +12 -1
- data/config/locales/zh-TW.yml +1 -611
- data/lib/decidim/conferences/admin_engine.rb +1 -0
- data/lib/decidim/conferences/participatory_space.rb +8 -8
- data/lib/decidim/conferences/test/factories.rb +1 -5
- data/lib/decidim/conferences/version.rb +1 -1
- metadata +18 -23
- data/config/environment.rb +0 -0
- data/config/locales/fa-IR.yml +0 -1
- data/config/locales/gn-PY.yml +0 -1
- data/config/locales/ka-GE.yml +0 -1
- data/config/locales/kaa.yml +0 -20
- data/config/locales/lo-LA.yml +0 -1
- data/config/locales/oc-FR.yml +0 -1
data/config/locales/lt.yml
CHANGED
@@ -1,617 +1,2 @@
|
|
1
|
+
---
|
1
2
|
lt:
|
2
|
-
activemodel:
|
3
|
-
attributes:
|
4
|
-
conference:
|
5
|
-
assemblies_ids: Susijusios Asamblėjos
|
6
|
-
available_slots: Laisvos vietos
|
7
|
-
banner_image: Reklamjuostės paveikslėlis
|
8
|
-
consultations_ids: Susijusios Konsultacijos
|
9
|
-
copy_categories: Kopijuoti kategorijas
|
10
|
-
copy_components: Kopijuoti komponentus
|
11
|
-
copy_features: Kopijuoti požymius
|
12
|
-
decidim_scope_id: Apimtis
|
13
|
-
description: Aprašymas
|
14
|
-
end_date: Pabaigos data
|
15
|
-
hashtag: Grotažymė
|
16
|
-
hero_image: Pradžios paveikslėlis
|
17
|
-
location: Vieta
|
18
|
-
main_logo: Pagrindinis logotipas
|
19
|
-
objectives: Tikslai
|
20
|
-
participatory_processes_ids: Susiję dalyvaujamieji procesai
|
21
|
-
promoted: Paryškinta
|
22
|
-
published_at: Publikuota
|
23
|
-
registration_terms: Registracijos sąlygos
|
24
|
-
registrations_enabled: Registracijos įjungtos
|
25
|
-
scope_id: Apimtis
|
26
|
-
scopes_enabled: Sritys įjungtos
|
27
|
-
short_description: Trumpas aprašymas
|
28
|
-
show_statistics: Rodyti statistiką
|
29
|
-
sign_date: Pasirašymo data
|
30
|
-
signature: Parašas
|
31
|
-
slogan: Šūkis
|
32
|
-
slug: URL priedas
|
33
|
-
start_date: Pradžios data
|
34
|
-
title: Pavadinimas
|
35
|
-
conference_media_link:
|
36
|
-
date: Data
|
37
|
-
link: Nuoroda
|
38
|
-
title: Pavadinimas
|
39
|
-
conference_partner:
|
40
|
-
link: Nuoroda
|
41
|
-
logo: Logotipas
|
42
|
-
name: Vardas
|
43
|
-
partner_type: Partnerio tipas
|
44
|
-
conference_registration_invite:
|
45
|
-
email: El. paštas
|
46
|
-
name: Vardas
|
47
|
-
registration_type_id: Registracijos tipas
|
48
|
-
user_id: Naudotojas
|
49
|
-
conference_registration_type:
|
50
|
-
description: Aprašymas
|
51
|
-
price: Kaina
|
52
|
-
title: Pavadinimas
|
53
|
-
conference_speaker:
|
54
|
-
affiliation: Organizacija
|
55
|
-
avatar: Avataras
|
56
|
-
conference_meeting_ids: Susiję susitikimai
|
57
|
-
full_name: Vardas, pavardė
|
58
|
-
personal_url: Asmeninis URL
|
59
|
-
position: Pozicija
|
60
|
-
short_bio: Trumpas gyvenimo aprašymas
|
61
|
-
twitter_handle: Twitter tvarkyklė
|
62
|
-
user_id: Naudotojas
|
63
|
-
conference_user_role:
|
64
|
-
email: El. paštas
|
65
|
-
name: Vardas
|
66
|
-
role: Rolė
|
67
|
-
errors:
|
68
|
-
models:
|
69
|
-
conference_registration_invite:
|
70
|
-
attributes:
|
71
|
-
email:
|
72
|
-
already_invited: Šio el. laiško adresatas jau buvo pakviestas
|
73
|
-
activerecord:
|
74
|
-
models:
|
75
|
-
decidim/conference:
|
76
|
-
one: Konferencija
|
77
|
-
few: Konferencijos
|
78
|
-
many: Konferencijos
|
79
|
-
other: Konferencijos
|
80
|
-
decidim/conference_speaker:
|
81
|
-
one: Konferencijos kalbėtoja(-s)
|
82
|
-
few: Konferencijos kalbėtojai(-os)
|
83
|
-
many: Konferencijos kalbėtojai(-os)
|
84
|
-
other: Konferencijos kalbėtojai(-os)
|
85
|
-
decidim/conference_user_role:
|
86
|
-
one: Konferencijos naudotojo rolė
|
87
|
-
few: Konferencijos naudotojų rolė
|
88
|
-
many: Konferencijos naudotojų rolė
|
89
|
-
other: Konferencijos naudotojų rolė
|
90
|
-
decidim:
|
91
|
-
admin:
|
92
|
-
actions:
|
93
|
-
confirm: Patvirtinti
|
94
|
-
new_conference: Nauja Konferencija
|
95
|
-
send_diplomas: Siųsti dalyvavimo konferencijoje pažymėjimus
|
96
|
-
conference_copies:
|
97
|
-
new:
|
98
|
-
copy: Kopijuoti
|
99
|
-
select: Pasirinkite, kuriuos duomenis norėtumėte dubliuoti
|
100
|
-
title: Dubliuoti konferenciją
|
101
|
-
conference_publications:
|
102
|
-
create:
|
103
|
-
error: Publikuojant šią konferenciją iškilo problema.
|
104
|
-
success: Konferencija paskelbta.
|
105
|
-
destroy:
|
106
|
-
error: Naikinant šios konferencijos skelbimą iškilo problema.
|
107
|
-
success: Konferencijos skelbimas panaikintas.
|
108
|
-
conference_registration:
|
109
|
-
confirm:
|
110
|
-
error: Patvirtinant registraciją į šią konferenciją iškilo problema.
|
111
|
-
success: Registracija į konferenciją patvirtinta.
|
112
|
-
conference_speakers:
|
113
|
-
create:
|
114
|
-
error: Įtraukiant šios konferencijos pranešėją iškilo problema.
|
115
|
-
success: Konferencijos pranešėjas sukurtas.
|
116
|
-
destroy:
|
117
|
-
success: Konferencijos pranešėjas pašalintas.
|
118
|
-
edit:
|
119
|
-
title: Atnaujinti konferencijos pranešėją.
|
120
|
-
update: Atnaujinti
|
121
|
-
index:
|
122
|
-
conference_speakers_title: Konferencijos pranešėjai
|
123
|
-
new:
|
124
|
-
create: Sukurti
|
125
|
-
title: Naujas konferencijos pranešėjas.
|
126
|
-
update:
|
127
|
-
error: Atnaujinant šį konferencijos pranešėją iškilo problema.
|
128
|
-
success: Konferencijos pranešėjas atnaujintas.
|
129
|
-
conference_user_roles:
|
130
|
-
create:
|
131
|
-
error: Pridedant administratorių prie konferencijos kilo problema.
|
132
|
-
success: Konferencijos administratorius įtrauktas.
|
133
|
-
destroy:
|
134
|
-
success: Konferencijos administratorius pašalintas.
|
135
|
-
edit:
|
136
|
-
title: Atnaujinti konferencijos administratorių.
|
137
|
-
update: Atnaujinti
|
138
|
-
new:
|
139
|
-
create: Sukurti
|
140
|
-
title: Naujas konferencijos administratorius.
|
141
|
-
update:
|
142
|
-
error: Atnaujinant šios konferencijos administratorių iškilo problema.
|
143
|
-
success: Konferencijos administratorius atnaujintas.
|
144
|
-
conferences:
|
145
|
-
create:
|
146
|
-
error: Kuriant šią konferenciją iškilo problema.
|
147
|
-
success: Konferencija sukurta.
|
148
|
-
edit:
|
149
|
-
update: Atnaujinti
|
150
|
-
exports:
|
151
|
-
registrations: Registracijos
|
152
|
-
form:
|
153
|
-
title: Bendroji informacija
|
154
|
-
index:
|
155
|
-
not_published: Nepublikuota
|
156
|
-
published: Publikuota
|
157
|
-
new:
|
158
|
-
create: Sukurti
|
159
|
-
title: Konferencija
|
160
|
-
update:
|
161
|
-
error: Atnaujinant šią konferenciją iškilo problema.
|
162
|
-
success: Konferencija atnaujinta.
|
163
|
-
conferences_copies:
|
164
|
-
create:
|
165
|
-
error: Dubliuojant šią konferenciją iškilo problema.
|
166
|
-
success: Konferencija dubliuota.
|
167
|
-
media_links:
|
168
|
-
create:
|
169
|
-
error: Kuriant naują multimedijos nuorodą iškilo problema.
|
170
|
-
success: Multimedijos nuoroda sukurta.
|
171
|
-
destroy:
|
172
|
-
success: Multimedijos nuoroda pašalinta.
|
173
|
-
edit:
|
174
|
-
title: Atnaujinti multimedijos nuorodą.
|
175
|
-
update: Atnaujinti
|
176
|
-
index:
|
177
|
-
media_links_title: Multimedijos Nuorodos
|
178
|
-
new:
|
179
|
-
create: Sukurti
|
180
|
-
title: Multimedijos Nuoroda
|
181
|
-
update:
|
182
|
-
error: Atnaujinant šią multimedijos nuorodą iškilo problema.
|
183
|
-
success: Multimedijos Nuoroda atnaujinta.
|
184
|
-
menu:
|
185
|
-
conferences: Konferencijos
|
186
|
-
conferences_submenu:
|
187
|
-
attachment_collections: Aplankai
|
188
|
-
attachment_files: Dokumentai
|
189
|
-
attachments: Priedai
|
190
|
-
categories: Kategorijos
|
191
|
-
components: Komponentai
|
192
|
-
conference_admins: Konferencijos administratoriai
|
193
|
-
conference_invites: Pakvietimai
|
194
|
-
conference_speakers: Pranešėjai
|
195
|
-
diploma: Dalyvavimo konferencijoje pažymėjimas
|
196
|
-
info: Informacija
|
197
|
-
media_links: Multimedijos Nuorodos
|
198
|
-
moderations: Moderavimai
|
199
|
-
partners: Partneriai
|
200
|
-
registration_types: Registracijos tipai
|
201
|
-
registrations: Registracijos
|
202
|
-
user_registrations: Naudotojų registracijos
|
203
|
-
models:
|
204
|
-
conference:
|
205
|
-
fields:
|
206
|
-
created_at: Sukurta
|
207
|
-
promoted: Paryškinta
|
208
|
-
published: Publikuota
|
209
|
-
title: Pavadinimas
|
210
|
-
conference_speaker:
|
211
|
-
fields:
|
212
|
-
affiliation: Organizacija
|
213
|
-
full_name: Vardas, pavardė
|
214
|
-
position: Pareigos
|
215
|
-
name: Konferencijos pranešėja(-s)
|
216
|
-
conference_user_role:
|
217
|
-
fields:
|
218
|
-
email: El. paštas
|
219
|
-
name: Vardas
|
220
|
-
role: Rolė
|
221
|
-
name: Konferencijos administratorius
|
222
|
-
roles:
|
223
|
-
admin: Administratorius
|
224
|
-
collaborator: Bendraautorius
|
225
|
-
moderator: Moderatorius
|
226
|
-
valuator: Vertintojas
|
227
|
-
media_link:
|
228
|
-
fields:
|
229
|
-
date: Data
|
230
|
-
link: Nuoroda
|
231
|
-
title: Pavadinimas
|
232
|
-
name: Multimedijos Nuoroda
|
233
|
-
partner:
|
234
|
-
fields:
|
235
|
-
link: Nuoroda
|
236
|
-
logo: Logotipas
|
237
|
-
name: Vardas
|
238
|
-
partner_type: Tipas
|
239
|
-
name: Partneris
|
240
|
-
types:
|
241
|
-
collaborator: Bendraautorius
|
242
|
-
main_promotor: Pagrindinis rėmėjas
|
243
|
-
registration_type:
|
244
|
-
fields:
|
245
|
-
conference_meetings: Konferencijos susirinkimai
|
246
|
-
price: Kaina
|
247
|
-
registrations_count: Registracijų skaičius
|
248
|
-
title: Pavadinimas
|
249
|
-
weight: Vieta eilėje
|
250
|
-
name: Registracijos tipas
|
251
|
-
partners:
|
252
|
-
create:
|
253
|
-
error: Įtraukiant šios konferencijos partnerį iškilo problema.
|
254
|
-
success: Konferencijos partneris įtrauktas.
|
255
|
-
destroy:
|
256
|
-
success: Konferencijos partneris pašalintas.
|
257
|
-
edit:
|
258
|
-
title: Atnaujinti partnerį.
|
259
|
-
update: Atnaujinti
|
260
|
-
new:
|
261
|
-
create: Sukurti
|
262
|
-
title: Naujas partneris
|
263
|
-
update:
|
264
|
-
error: Atnaujinant šios konferencijos partnerį iškilo problema.
|
265
|
-
success: Konferencijos partneris atnaujintas.
|
266
|
-
registration_type_publications:
|
267
|
-
create:
|
268
|
-
error: Skelbiant šį registracijos tipą iškilo problema.
|
269
|
-
success: Registracijos tipas paskelbtas.
|
270
|
-
destroy:
|
271
|
-
error: Išimant šį registracijos tipą iškilo problema.
|
272
|
-
success: Registracijos tipas sėkmingai išimtas.
|
273
|
-
registration_types:
|
274
|
-
create:
|
275
|
-
error: Pridedant šį registracijos tipą konferencijai kilo problema.
|
276
|
-
success: Konferencijos registracijos tipas pridėtas.
|
277
|
-
destroy:
|
278
|
-
success: Konferencijos registracijos tipas pašalintas.
|
279
|
-
edit:
|
280
|
-
title: Atnaujinti registracijos tipą.
|
281
|
-
update: Atnaujinti
|
282
|
-
new:
|
283
|
-
create: Sukurti
|
284
|
-
title: Naujas registracijos tipas
|
285
|
-
update:
|
286
|
-
error: Atnaujinant šios konferencijos registracijos tipą iškilo problema.
|
287
|
-
success: Konferencijos registracijos tipas atnaujintas.
|
288
|
-
titles:
|
289
|
-
conferences: Konferencijos
|
290
|
-
admin_log:
|
291
|
-
conference:
|
292
|
-
create: "%{user_name} sukūrė %{resource_name} konferenciją"
|
293
|
-
publish: "%{user_name} publikavo %{resource_name} konferenciją"
|
294
|
-
send_conference_diplomas: "%{user_name} išsiuntė dalyvavimo konferencijoje pažymėjimus %{resource_name} konferencijos dalyviams"
|
295
|
-
unpublish: "%{user_name} panaikino %{resource_name} konferencijos skelbimą"
|
296
|
-
update: "%{user_name} atnaujino %{resource_name} konferenciją"
|
297
|
-
update_diploma: "%{user_name} atnaujino %{resource_name} konferencijos dalyvavimo konferencijoje pažymėjimų konfigūraciją"
|
298
|
-
conference_speaker:
|
299
|
-
create: "%{user_name} sukūrė %{space_name} konferencijos %{resource_name} pranešėją"
|
300
|
-
delete: "%{user_name} pašalino %{space_name} konferencijos %{resource_name} pranešėją"
|
301
|
-
update: "%{user_name} atnaujino %{space_name} konferencijos %{resource_name} pranešėją"
|
302
|
-
conference_user_role:
|
303
|
-
create: "%{user_name} pakvietė %{resource_name} į %{space_name} konferenciją"
|
304
|
-
delete: "%{user_name} pašalino administratorių %{resource_name} iš %{space_name} konferencijos"
|
305
|
-
update: "%{user_name} pakeitė %{resource_name} vaidmenį %{space_name} konferencijoje"
|
306
|
-
conferences:
|
307
|
-
conference_registration:
|
308
|
-
confirm: "%{user_name} patvirtino registraciją į %{resource_name} konferenciją"
|
309
|
-
partner:
|
310
|
-
create: "%{user_name} sukūrė partnerį %{resource_name} %{space_name} konferencijoje"
|
311
|
-
delete: "%{user_name} pašalino partnerį %{resource_name} iš %{space_name} konferencijos"
|
312
|
-
update: "%{user_name} atnaujino partnerį %{resource_name} %{space_name} konferencijoje"
|
313
|
-
registration_type:
|
314
|
-
create: "%{user_name} sukūrė %{resource_name} registracijos tipą %{space_name} konferencijoje"
|
315
|
-
publish: "%{user_name} sukūrė %{resource_name} registracijos tipą %{space_name} konferencijoje"
|
316
|
-
unpublish: "%{user_name} išėmė %{resource_name} registracijos tipą iš %{space_name} konferencijos"
|
317
|
-
update: "%{user_name} atnaujino %{resource_name} registracijos tipą %{space_name} konferencijoje"
|
318
|
-
media_link:
|
319
|
-
create: "%{user_name} sukūrė %{resource_name} nuorodą %{space_name} konferencijoje"
|
320
|
-
delete: "%{user_name} pašalino %{resource_name} nuorodą iš %{space_name} konferencijos"
|
321
|
-
update: "%{user_name} atnaujino %{resource_name} nuorodą %{space_name} konferencijoje"
|
322
|
-
conference_program:
|
323
|
-
index:
|
324
|
-
title: Programa
|
325
|
-
conference_speakers:
|
326
|
-
index:
|
327
|
-
title: Pranešėjai
|
328
|
-
conferences:
|
329
|
-
admin:
|
330
|
-
conference_copies:
|
331
|
-
form:
|
332
|
-
slug_help: 'URL priedėliai naudojami nuorodų į konferenciją sukūrimui. Juose gali būti raidės, skaičiai ir brukšneliai, tačiau privalo prasidėti nuo raidės. Pavyzdys: %{url}'
|
333
|
-
conference_invites:
|
334
|
-
create:
|
335
|
-
error: Kviečiant dalyvį dalyvauti šioje konferencijoje iškilo problema.
|
336
|
-
success: Dalyvis pakviestas dalyvauti konferencijoje.
|
337
|
-
form:
|
338
|
-
attendee_type: Dalyvio tipas
|
339
|
-
existing_user: Esamas dalyvis
|
340
|
-
invite_explanation: Dalyvis bus pakviestas dalyvauti ne tik konferencijoje, bet ir organizacijoje.
|
341
|
-
non_user: Nesamas dalyvis
|
342
|
-
select_user: Pasirinkti dalyvį
|
343
|
-
index:
|
344
|
-
filter:
|
345
|
-
accepted: Priimtas
|
346
|
-
all: Visi
|
347
|
-
rejected: Atmestas
|
348
|
-
sent: Išsiųstas
|
349
|
-
filter_by: Filtruoti pagal
|
350
|
-
invite_attendee: Kviesti dalyvį
|
351
|
-
invites: Pakvietimai
|
352
|
-
search: Ieškoti
|
353
|
-
new:
|
354
|
-
explanation: Dalyvis bus pakviestas dalyvauti konferencijoje. Jei e. laiškas nebus užregistruotas, taip pat bus kvietimas dalyvauti organizacijoje.
|
355
|
-
invite: Pakviesti
|
356
|
-
new_invite: Kviesti dalyvį
|
357
|
-
conference_registrations:
|
358
|
-
index:
|
359
|
-
registrations: Registracijos
|
360
|
-
conference_speakers:
|
361
|
-
form:
|
362
|
-
existing_user: Esamas dalyvis
|
363
|
-
non_user: Ne dalyvis
|
364
|
-
select_user: Pasirinkti dalyvį
|
365
|
-
user_type: Dalyvio tipas
|
366
|
-
index:
|
367
|
-
search: Ieškoti
|
368
|
-
conferences:
|
369
|
-
form:
|
370
|
-
available_slots_help: Jei nėra ribojimų įrašykite 0.
|
371
|
-
registrations_count:
|
372
|
-
one: Yra viena registracija.
|
373
|
-
few: Yra %{count} registracijų.
|
374
|
-
many: Yra %{count} registracijų.
|
375
|
-
other: Yra %{count} registracijų.
|
376
|
-
slug_help: 'URL priedėliai naudojami nuorodų į konferenciją sukūrimui. Juose gali būti raidės, skaičiai ir brukšneliai, tačiau privalo prasidėti nuo raidės. Pavyzdys: %{url}'
|
377
|
-
diplomas:
|
378
|
-
edit:
|
379
|
-
save: Išsaugoti
|
380
|
-
title: Dalyvavimo pažymėjimas
|
381
|
-
invite_join_conference_mailer:
|
382
|
-
invite:
|
383
|
-
decline: Atmesti kvietimą į „%{conference_title}“
|
384
|
-
invited_existing_user_to_join_a_conference: "%{invited_by} jus pakvietė dalyvauti konferencijoje %{application}. Kvietimą galite atmesti arba priimti spustelėję toliau pateikiamas nuorodas."
|
385
|
-
registration: Registracija į „%{conference_title}“
|
386
|
-
partners:
|
387
|
-
index:
|
388
|
-
title: Partneriai
|
389
|
-
registration_types:
|
390
|
-
form:
|
391
|
-
select_conference_meetings: Pasirinkti konferencijos susirinkimus
|
392
|
-
index:
|
393
|
-
title: Registracijos tipai
|
394
|
-
send_conference_diploma_mailer:
|
395
|
-
diploma:
|
396
|
-
diploma_html: Rasite konferencijos <a href="%{url}">%{title}</a> dalyvavimo pažymėjimą laiško prieduose.
|
397
|
-
diploma_user:
|
398
|
-
attendance_verified_by: Dalyvavimas patvirtintas
|
399
|
-
certificate_of_attendance: Dalyvavimo pažymėjimas
|
400
|
-
certificate_of_attendance_description: Patvirtiname, kad <strong>%{user}</strong> dalyvavo <strong>%{title}</strong> konferencijoje vykusioje <strong>%{location}</strong> nuo <strong>%{start} iki %{end}</strong>
|
401
|
-
send_diploma:
|
402
|
-
error: Siunčiant dalyvavimo pažymėjimus iškilo problema.
|
403
|
-
success: Dalyvavimo konferencijoje pažymėjimai išsiųsti
|
404
|
-
conference:
|
405
|
-
registration_confirm:
|
406
|
-
cancel: Atšaukti
|
407
|
-
confirm: Patvirtinti
|
408
|
-
show:
|
409
|
-
free: Nemokama
|
410
|
-
going: Dalyvauja
|
411
|
-
no_slots_available: Nebėra vietų
|
412
|
-
registration: Registracija
|
413
|
-
conference_program:
|
414
|
-
program_meeting:
|
415
|
-
content: Turinys
|
416
|
-
location: Vieta
|
417
|
-
speakers: Pranešėjai
|
418
|
-
streaming: Transliuoti
|
419
|
-
show:
|
420
|
-
day: Diena
|
421
|
-
program: Programa
|
422
|
-
conference_registration_mailer:
|
423
|
-
confirmation:
|
424
|
-
confirmed_html: Jūsų registracija <a href="%{url}">%{title}</a> patvirtinta.
|
425
|
-
details_1: 'Registravotės į konferenciją %{registration_type} būdu. Konferencija kainuoja %{price} ir galite dalyvauti šiuose renginiuose:'
|
426
|
-
details_2: Rasite konferencijos detales priede.
|
427
|
-
pending_validation:
|
428
|
-
confirmation_pending: Netrukus gausite elektroninį laišką su patvirtinimu
|
429
|
-
details: 'Jūsų registracijos tipas – %{registration_type}, kaina – %{price} ir galite dalyvauti šiuose renginiuose:'
|
430
|
-
pending_html: Jūsų registracija į konferenciją <a href="%{url}">%{title}</a> dar nepatvirtinta.
|
431
|
-
conference_registrations:
|
432
|
-
create:
|
433
|
-
invalid: Jungiantis prie šios konferencijos iškilo problema.
|
434
|
-
success: Jūs prisijungėte prie konferencijos.
|
435
|
-
decline_invitation:
|
436
|
-
invalid: Atmetant kvietimą iškilo problema.
|
437
|
-
success: Jūs atmetėte kvietimą.
|
438
|
-
destroy:
|
439
|
-
invalid: Paliekant šią konferenciją iškilo problema.
|
440
|
-
success: Jūs sėkmingai palikote konferenciją.
|
441
|
-
conference_speaker:
|
442
|
-
go_to_twitter: Eiti į Twitter
|
443
|
-
more_info: daugiau informacijos
|
444
|
-
personal_website: Asmeninė interneto svetainė
|
445
|
-
show:
|
446
|
-
more_info: daugiau informacijos
|
447
|
-
speaking_at: Kalba
|
448
|
-
conference_speaker_cell:
|
449
|
-
personal_url:
|
450
|
-
personal_website: Asmeninė interneto svetainė
|
451
|
-
twitter_handle:
|
452
|
-
go_to_twitter: Eiti į Twitter
|
453
|
-
conference_speakers:
|
454
|
-
index:
|
455
|
-
speakers: Pranešėjai
|
456
|
-
conferences:
|
457
|
-
partners:
|
458
|
-
collaborators: Partneriai
|
459
|
-
main_promotors: Organizatoriai
|
460
|
-
show:
|
461
|
-
login_as: Jūs prisijungėte kaip %{name} <%{email}>
|
462
|
-
make_conference_registration: 'Užsiregistruokite konferencijoje:'
|
463
|
-
register: Registruotis
|
464
|
-
content_blocks:
|
465
|
-
highlighted_conferences:
|
466
|
-
name: Paryškintos konferencijos
|
467
|
-
index:
|
468
|
-
title: Konferencijos
|
469
|
-
mailer:
|
470
|
-
conference_registration_mailer:
|
471
|
-
confirmation:
|
472
|
-
subject: Jūsų registracija į konferenciją buvo patvirtinta
|
473
|
-
pending_validation:
|
474
|
-
subject: Jūsų registracija į konferenciją dar nepatvirtinta
|
475
|
-
invite_join_conference_mailer:
|
476
|
-
invite:
|
477
|
-
subject: Kvietimas dalyvauti konferencijoje
|
478
|
-
send_conference_diploma_mailer:
|
479
|
-
diploma:
|
480
|
-
subject: Jūsų dalyvavimo konferencijoje pažymėjimas išsiųstas
|
481
|
-
models:
|
482
|
-
conference_invite:
|
483
|
-
fields:
|
484
|
-
email: El. paštas
|
485
|
-
name: Vardas
|
486
|
-
registration_type: Registracijos tipas
|
487
|
-
sent_at: Išsiųsta
|
488
|
-
status: Būsena
|
489
|
-
status:
|
490
|
-
accepted: Priimta (%{at})
|
491
|
-
rejected: Atmesta (%{at})
|
492
|
-
sent: Išsiųsta
|
493
|
-
conference_registration:
|
494
|
-
fields:
|
495
|
-
email: El. paštas
|
496
|
-
name: Vardas
|
497
|
-
registration_type: Registracijos tipas
|
498
|
-
state: Būsena
|
499
|
-
states:
|
500
|
-
confirmed: Patvirtinta
|
501
|
-
pending: Laukiama
|
502
|
-
pages:
|
503
|
-
home:
|
504
|
-
highlighted_conferences:
|
505
|
-
active_conferences: Aktyvios konferencijos
|
506
|
-
conferences_button_title: Nuoroda į puslapį „Konferencijos“, kuriame pateikiamos visos konferencijos
|
507
|
-
photo:
|
508
|
-
image:
|
509
|
-
attributes:
|
510
|
-
alt: Nuotrauka multimedijos formatu
|
511
|
-
show:
|
512
|
-
close_modal: Uždaryti modalinį langą
|
513
|
-
photo: Paveikslėlis
|
514
|
-
photos_list:
|
515
|
-
show:
|
516
|
-
related_photos: Paveikslėliai
|
517
|
-
registration_types:
|
518
|
-
index:
|
519
|
-
choose_an_option: 'Pasirinkite registracijos būdą:'
|
520
|
-
login_as: Jūs prisijungėte kaip %{name} <%{email}>
|
521
|
-
no_registrations: Nėra registracijų
|
522
|
-
register: Registruotis
|
523
|
-
title: Registracijos tipai
|
524
|
-
shared:
|
525
|
-
conference_user_login:
|
526
|
-
already_account: Ar jau turite paskyrą „Decidim“ puslapyje?
|
527
|
-
new_user: Naujas naudotojas?
|
528
|
-
sign_in: Prisijunkite, kad galėtumėte užsiregistruoti į konferenciją
|
529
|
-
sign_up: Susikurkite paskyrą „Decidim“ puslapyje, kad galėtumėte užsiregistruoti į konferenciją
|
530
|
-
show:
|
531
|
-
details: Išsamiau
|
532
|
-
introduction: Įžanga
|
533
|
-
objectives: Tikslai
|
534
|
-
related_assemblies: Susijusios asamblėjos
|
535
|
-
related_consultations: Susijusios Konsultacijos
|
536
|
-
related_participatory_processes: Susiję dalyvaujamieji procesai
|
537
|
-
events:
|
538
|
-
conferences:
|
539
|
-
conference_registration_confirmed:
|
540
|
-
notification_title: Jūsų registracija į konferenciją <a href="%{resource_url}">%{resource_title}</a> buvo patvirtinta.
|
541
|
-
conference_registration_validation_pending:
|
542
|
-
notification_title: Jūsų registracija į konferenciją <a href="%{resource_url}">%{resource_title}</a> dar nepatvirtinta.
|
543
|
-
conference_registrations_over_percentage:
|
544
|
-
email_intro: Užimta daugiau nei %{percentage}% konferencijos „%{resource_title}“ laiko tarpsnių.
|
545
|
-
email_outro: Šį pranešimą gavote dėl to, kad esate konferencijos dalyvaujamojo proceso erdvės administratorius.
|
546
|
-
email_subject: Užimta daugiau nei %{percentage}% konferencijos „%{resource_title}“ laiko tarpsnių
|
547
|
-
notification_title: Užimta daugiau nei %{percentage}% konferencijos <a href="%{resource_path}">%{resource_title}</a> laiko tarpsnių.
|
548
|
-
conference_updated:
|
549
|
-
email_intro: '„%{resource_title}“ konferencija buvo atnaujinta. Naująją versiją galite perskaityti jos puslapyje:'
|
550
|
-
email_outro: Šį pranešimą gavote dėl to, kad sekate „%{resource_title}“ konferenciją. Jūs galite jos nebesekti spustelėdami ankstesnę nuorodą.
|
551
|
-
email_subject: '„%{resource_title}“ konferencija buvo atnaujinta'
|
552
|
-
notification_title: <a href="%{resource_path}">%{resource_title}</a> konferencija buvo atnaujinta.
|
553
|
-
registrations_enabled:
|
554
|
-
email_intro: 'Registracija į „%{resource_title}“ konferenciją įjungta. Galite užsiregistruoti jos tinklalapyje:'
|
555
|
-
email_outro: Šį pranešimą gavote dėl to, kad sekate „%{resource_title}“ konferenciją. Jūs galite jos nebesekti spustelėdami ankstesnę nuorodą.
|
556
|
-
email_subject: Registracija į „%{resource_title}“ konferenciją įjungta.
|
557
|
-
notification_title: Registracija į <a href="%{resource_path}">%{resource_title}</a> konferenciją įjungta.
|
558
|
-
role_assigned:
|
559
|
-
email_intro: Jūs paskirtas „%{resource_title}“ konferencijos %{role}.
|
560
|
-
email_outro: Šį pranešimą gavote dėl to, kad esate „%{resource_title}“ konferencijos %{role}.
|
561
|
-
email_subject: Jūs paskirtas „%{resource_title}“ %{role}.
|
562
|
-
notification_title: Jūs paskirtas <a href="%{resource_url}">%{resource_title}</a> konferencijos %{role}.
|
563
|
-
upcoming_conference:
|
564
|
-
email_intro: '„%{resource_title}“ konferencija įvyks po dviejų dienų. Aprašymą galite perskaityti jos puslapyje:'
|
565
|
-
email_outro: Šį pranešimą gavote dėl to, kad sekate „%{resource_title}“ konferenciją. Jūs galite jos nebesekti spustelėdami ankstesnę nuorodą.
|
566
|
-
email_subject: '„%{resource_title}“ konferencija artėja!'
|
567
|
-
notification_title: <a href="%{resource_path}">%{resource_title}</a> konferencija įvyks po dviejų dienų.
|
568
|
-
help:
|
569
|
-
participatory_spaces:
|
570
|
-
conferences:
|
571
|
-
contextual: "<p> <strong>Konferencija</strong> yra susitikimų, surengtų pagal programą, rinkinys, į kurį pakviečiama daug kalbėtojų. Konferencijoms, kaip ir kitiems dideliems susirinkimams ar socialiniams renginiams, būdingi ypatumai yra registracijos, renginį remiančių ar kitaip padedančių organizacijų sąrašas ir kt.</p><p>Pavyzdžiui, konferencija gali būti svarbus įvykis organizacijai ir jos nariams, vykti kaip dalyvaujamojo proceso dalis arba tai gali būti renginys po konsultacijos.</p>\n"
|
572
|
-
page: "<p> <strong>Konferencija</strong> yra susitikimų, surengtų pagal programą, rinkinys, į kurį pakviečiama daug kalbėtojų. Konferencijoms, kaip ir kitiems dideliems susirinkimams ar socialiniams renginiams, būdingi ypatumai yra registracijos, renginį remiančių ar kitaip padedančių organizacijų sąrašas ir kt.</p><p>Pavyzdžiui, konferencija gali būti svarbus įvykis organizacijai ir jos nariams, vykti kaip dalyvaujamojo proceso dalis arba tai gali būti renginys po konsultacijos.</p>\n"
|
573
|
-
title: Kas yra konferencijos?
|
574
|
-
log:
|
575
|
-
value_types:
|
576
|
-
conference_presenter:
|
577
|
-
not_found: 'Konferencija duomenų bazėje nerasta (ID: %{id})'
|
578
|
-
media:
|
579
|
-
index:
|
580
|
-
description: Nuorodos apie šią konferenciją
|
581
|
-
title: Multimedija ir Nuorodos
|
582
|
-
menu:
|
583
|
-
conferences: Konferencijos
|
584
|
-
statistics:
|
585
|
-
conferences_count: Konferencijos
|
586
|
-
devise:
|
587
|
-
mailer:
|
588
|
-
join_conference:
|
589
|
-
subject: Kvietimas dalyvauti konferencijoje
|
590
|
-
layouts:
|
591
|
-
decidim:
|
592
|
-
conference_hero:
|
593
|
-
register: Registruotis
|
594
|
-
conference_widgets:
|
595
|
-
show:
|
596
|
-
take_part: Dalyvaukite
|
597
|
-
conferences:
|
598
|
-
conference:
|
599
|
-
more_info: Daugiau informacijos
|
600
|
-
take_part: Dalyvaukite
|
601
|
-
index:
|
602
|
-
promoted_conferences: Paryškintos konferencijos
|
603
|
-
order_by_conferences:
|
604
|
-
conferences:
|
605
|
-
one: "%{count} konferencija"
|
606
|
-
few: "%{count} konferencijos"
|
607
|
-
many: "%{count} konferencijos"
|
608
|
-
other: "%{count} konferencijos"
|
609
|
-
promoted_conference:
|
610
|
-
more_info: Daugiau informacijos
|
611
|
-
take_part: Dalyvaukite
|
612
|
-
conferences_nav:
|
613
|
-
conference_menu_item: Informacija
|
614
|
-
conference_partners_menu_item: Partneriai
|
615
|
-
conference_speaker_menu_item: Pranešėjai
|
616
|
-
media: Medija
|
617
|
-
venues: Vietos
|
data/config/locales/lv.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
lv:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -22,6 +23,12 @@ lv:
|
|
22
23
|
slogan: Sauklis
|
23
24
|
slug: URL sadaļas adrese (slug)
|
24
25
|
title: Nosaukums
|
26
|
+
conference_media_link:
|
27
|
+
weight: Svarīgums
|
28
|
+
conference_partner:
|
29
|
+
weight: Svarīgums
|
30
|
+
conference_registration_type:
|
31
|
+
weight: Svarīgums
|
25
32
|
conference_speaker:
|
26
33
|
full_name: Vārds, uzvārds
|
27
34
|
conference_user_role:
|
@@ -96,6 +103,8 @@ lv:
|
|
96
103
|
edit:
|
97
104
|
title: Atjaunināt konferences administratoru.
|
98
105
|
update: Atjaunināt
|
106
|
+
index:
|
107
|
+
conference_admins_title: konferences administratori
|
99
108
|
new:
|
100
109
|
create: Izveidot
|
101
110
|
title: Jauns konferences administrators.
|
@@ -336,7 +345,7 @@ lv:
|
|
336
345
|
invite_join_conference_mailer:
|
337
346
|
invite:
|
338
347
|
decline: Noraidīt ielūgumu '%{conference_title}'
|
339
|
-
|
348
|
+
invited_you_to_join_a_conference: "%{invited_by} jūs aicina piedalīties konferencē %{application}. Jūs varat pieņemt vai noraidīt ielūgumu, izmantojot vienu no turpmāk esošajām saitēm."
|
340
349
|
registration: Reģistrācija dalībai '%{conference_title}'
|
341
350
|
partners:
|
342
351
|
index:
|
@@ -368,6 +377,7 @@ lv:
|
|
368
377
|
conference_program:
|
369
378
|
program_meeting:
|
370
379
|
content: Saturs
|
380
|
+
location: Atrašanās vieta
|
371
381
|
speakers: Runātāji
|
372
382
|
streaming: Straumēšana
|
373
383
|
show:
|
@@ -456,6 +466,7 @@ lv:
|
|
456
466
|
home:
|
457
467
|
highlighted_conferences:
|
458
468
|
active_conferences: Aktīvās konferences
|
469
|
+
see_all_conferences: Skatīt visas konferences
|
459
470
|
photo:
|
460
471
|
image:
|
461
472
|
attributes:
|
data/config/locales/mt.yml
CHANGED