diff options
author | marvin-borner@live.com | 2018-04-15 19:16:19 +0200 |
---|---|---|
committer | marvin-borner@live.com | 2018-04-15 19:16:19 +0200 |
commit | 619b01b3615458c4ed78bfaeabb6b1a47cc8ad8b (patch) | |
tree | f6be4552e31964ac894860bcfdc832e3c5740ad8 /login/app/sprinkles/FormGenerator/locale | |
parent | 937100e9bb2a2f5ab035e283e01e6d96e569ee51 (diff) |
Preparing for soon implementation of content management system
Diffstat (limited to 'login/app/sprinkles/FormGenerator/locale')
-rw-r--r-- | login/app/sprinkles/FormGenerator/locale/en_US/FormGenerator.php | 14 | ||||
-rw-r--r-- | login/app/sprinkles/FormGenerator/locale/fr_FR/FormGenerator.php | 14 |
2 files changed, 28 insertions, 0 deletions
diff --git a/login/app/sprinkles/FormGenerator/locale/en_US/FormGenerator.php b/login/app/sprinkles/FormGenerator/locale/en_US/FormGenerator.php new file mode 100644 index 0000000..41d7bfa --- /dev/null +++ b/login/app/sprinkles/FormGenerator/locale/en_US/FormGenerator.php @@ -0,0 +1,14 @@ +<?php + +return [ + + "CONFIRM" => [ + "@TRANSLATION" => "Confirm action", + + "MESSAGE" => "Are you sure you want to do this?", + + "WARNING" => "This action cannot be undone.", + + "YES" => "Yes, do it" + ] +];
\ No newline at end of file diff --git a/login/app/sprinkles/FormGenerator/locale/fr_FR/FormGenerator.php b/login/app/sprinkles/FormGenerator/locale/fr_FR/FormGenerator.php new file mode 100644 index 0000000..9ede59c --- /dev/null +++ b/login/app/sprinkles/FormGenerator/locale/fr_FR/FormGenerator.php @@ -0,0 +1,14 @@ +<?php + +return [ + + "CONFIRM" => [ + "@TRANSLATION" => "Confirmer l'action", + + "MESSAGE" => "Êtes-vous certain de vouloir faire ceci?", + + "WARNING" => "Cette action ne peut pas être annulée.", + + "YES" => "Oui" + ] +];
\ No newline at end of file |