add an auto-generated comment to language yml files
Change-Id: Ib5edd010f8a6268d2ece5857ea6d5eca383c6d6a Reviewed-on: https://gerrit.instructure.com/39786 Reviewed-by: Jacob Fugal <jacob@instructure.com> Tested-by: Jenkins <jenkins@instructure.com> Product-Review: Brian Palmer <brianp@instructure.com> QA-Review: Brian Palmer <brianp@instructure.com>
This commit is contained in:
parent
368dffa1fd
commit
a0c74ff3b3
|
@ -1,3 +1,5 @@
|
|||
# This YAML file is auto-generated from a Transifex import.
|
||||
# Do not edit it by hand, your changes will be overwritten.
|
||||
---
|
||||
ar:
|
||||
EditAppointmentGroupDetails:
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# This YAML file is auto-generated from a Transifex import.
|
||||
# Do not edit it by hand, your changes will be overwritten.
|
||||
---
|
||||
de:
|
||||
EditAppointmentGroupDetails:
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# This YAML file is auto-generated from a Transifex import.
|
||||
# Do not edit it by hand, your changes will be overwritten.
|
||||
---
|
||||
en-AU:
|
||||
EditAppointmentGroupDetails:
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# This YAML file is auto-generated from a Transifex import.
|
||||
# Do not edit it by hand, your changes will be overwritten.
|
||||
---
|
||||
en-GB:
|
||||
EditAppointmentGroupDetails:
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# This YAML file is auto-generated from a Transifex import.
|
||||
# Do not edit it by hand, your changes will be overwritten.
|
||||
---
|
||||
es:
|
||||
EditAppointmentGroupDetails:
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# This YAML file is auto-generated from a Transifex import.
|
||||
# Do not edit it by hand, your changes will be overwritten.
|
||||
---
|
||||
fa-IR:
|
||||
EditAppointmentGroupDetails:
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# This YAML file is auto-generated from a Transifex import.
|
||||
# Do not edit it by hand, your changes will be overwritten.
|
||||
---
|
||||
fr:
|
||||
EditAppointmentGroupDetails:
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# This YAML file is auto-generated from a Transifex import.
|
||||
# Do not edit it by hand, your changes will be overwritten.
|
||||
---
|
||||
ja:
|
||||
EditAppointmentGroupDetails:
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# This YAML file is auto-generated from a Transifex import.
|
||||
# Do not edit it by hand, your changes will be overwritten.
|
||||
---
|
||||
ko:
|
||||
EditAppointmentGroupDetails:
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# This YAML file is auto-generated from a Transifex import.
|
||||
# Do not edit it by hand, your changes will be overwritten.
|
||||
---
|
||||
nb:
|
||||
EditAppointmentGroupDetails:
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# This YAML file is auto-generated from a Transifex import.
|
||||
# Do not edit it by hand, your changes will be overwritten.
|
||||
---
|
||||
nl:
|
||||
EditAppointmentGroupDetails:
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# This YAML file is auto-generated from a Transifex import.
|
||||
# Do not edit it by hand, your changes will be overwritten.
|
||||
---
|
||||
pl:
|
||||
EditAppointmentGroupDetails:
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# This YAML file is auto-generated from a Transifex import.
|
||||
# Do not edit it by hand, your changes will be overwritten.
|
||||
---
|
||||
pt-BR:
|
||||
EditAppointmentGroupDetails:
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# This YAML file is auto-generated from a Transifex import.
|
||||
# Do not edit it by hand, your changes will be overwritten.
|
||||
---
|
||||
pt:
|
||||
EditAppointmentGroupDetails:
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# This YAML file is auto-generated from a Transifex import.
|
||||
# Do not edit it by hand, your changes will be overwritten.
|
||||
---
|
||||
ru:
|
||||
EditAppointmentGroupDetails:
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# This YAML file is auto-generated from a Transifex import.
|
||||
# Do not edit it by hand, your changes will be overwritten.
|
||||
---
|
||||
tr:
|
||||
EditAppointmentGroupDetails:
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# This YAML file is auto-generated from a Transifex import.
|
||||
# Do not edit it by hand, your changes will be overwritten.
|
||||
---
|
||||
zh:
|
||||
EditAppointmentGroupDetails:
|
||||
|
|
|
@ -527,6 +527,10 @@ namespace :i18n do
|
|||
raise "got no translations" if complete_translations.nil?
|
||||
|
||||
File.open("config/locales/#{import.language}.yml", "w") { |f|
|
||||
f.write <<-HEADER
|
||||
# This YAML file is auto-generated from a Transifex import.
|
||||
# Do not edit it by hand, your changes will be overwritten.
|
||||
HEADER
|
||||
f.write({import.language => complete_translations}.ya2yaml(:syck_compatible => true))
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue