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:
Brian Palmer 2014-08-22 10:41:38 -06:00
parent 368dffa1fd
commit a0c74ff3b3
18 changed files with 38 additions and 0 deletions

View File

@ -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:

View File

@ -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:

View File

@ -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:

View File

@ -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:

View File

@ -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:

View File

@ -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:

View File

@ -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:

View File

@ -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:

View File

@ -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:

View File

@ -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:

View File

@ -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:

View File

@ -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:

View File

@ -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:

View File

@ -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:

View File

@ -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:

View File

@ -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:

View File

@ -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:

View File

@ -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))
}