Pull latest translations

This commit is contained in:
Thierry François 2014-09-15 10:38:24 +03:00
parent d6a1ab8cb6
commit 188346d520
3 changed files with 13 additions and 7 deletions

View File

@ -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.'

View File

@ -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
CANCEL_BTN_LABEL: Annuler
SAVE_RESULT_TEXT: '{count} {class} sauvegardés avec succès.'

View File

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