diff --git a/lang/en.yml b/lang/en.yml index ec6e25f..ba5de82 100644 --- a/lang/en.yml +++ b/lang/en.yml @@ -1,7 +1,3 @@ -# DO NOT MODIFY. Generated by build task. -# Contribute here: https://www.transifex.com/projects/p/gridfieldbulkeditingtools/ -# DO NOT MODIFY. Generated by build task. -# Contribute here: https://www.transifex.com/projects/p/gridfieldbulkeditingtools/ en: GRIDFIELD_BULK_UPLOAD: FINISH_BTN_LABEL: Finish @@ -20,4 +16,4 @@ en: TOGGLE_ALL_LINK: Show/Hide all SAVE_BTN_LABEL: Save all CANCEL_BTN_LABEL: Cancel - SAVE_RESULT_TEXT: '{count} {class} saved successfully.' + SAVE_RESULT_TEXT: '{count} {class} saved successfully.' \ No newline at end of file diff --git a/lang/fr.yml b/lang/fr.yml index 55fe5b5..186e320 100644 --- a/lang/fr.yml +++ b/lang/fr.yml @@ -17,4 +17,5 @@ fr: HEADER_TEXT: Edition de {count} {class} TOGGLE_ALL_LINK: Afficher/Masquer tout SAVE_BTN_LABEL: Sauvegarder tout - CANCEL_BTN_LABEL: Annuler \ No newline at end of file + CANCEL_BTN_LABEL: Annuler + SAVE_RESULT_TEXT: '{count} {class} sauvegardés avec succès.' \ No newline at end of file diff --git a/tasks/BuildTransifexTranslations.php b/tasks/BuildTransifexTranslations.php index 6a69a88..d739977 100644 --- a/tasks/BuildTransifexTranslations.php +++ b/tasks/BuildTransifexTranslations.php @@ -242,9 +242,18 @@ class BuildTransifexTranslations extends Task public function saveYMLTranslation($locale, $yml) { echo "Saving $locale.yml\n"; + + if ($locale !== 'en') + { + $content = $this->getBanner('yml') . $yml; + } + else{ + $content = $yml; + } + file_put_contents( $this->ymlDir . DIRECTORY_SEPARATOR . $locale . '.yml', - $this->getBanner('yml') . $yml + $content ); }