diff options
| -rw-r--r-- | Gemfile.lock | 2 | ||||
| -rw-r--r-- | config/locales/en.yml | 5 | ||||
| -rw-r--r-- | config/locales/fr.yml | 5 |
3 files changed, 11 insertions, 1 deletions
diff --git a/Gemfile.lock b/Gemfile.lock index b5666d035..588ffef22 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,6 +1,6 @@ GIT remote: https://github.com/afimb/ninoxe.git - revision: 9cff11ccd859b0d7288a20bef04fa9941512985c + revision: 1ff444eaa6069fbd7ab19e4c0009a4623ba49b52 branch: rails4 specs: ninoxe (1.1.3) diff --git a/config/locales/en.yml b/config/locales/en.yml new file mode 100644 index 000000000..54c288773 --- /dev/null +++ b/config/locales/en.yml @@ -0,0 +1,5 @@ +en: + time: + formats: + hour: "%Hh%M" + minute: "%M min"
\ No newline at end of file diff --git a/config/locales/fr.yml b/config/locales/fr.yml new file mode 100644 index 000000000..8ccfaacbf --- /dev/null +++ b/config/locales/fr.yml @@ -0,0 +1,5 @@ +fr: + time: + formats: + hour: "%Hh%M" + minute: "%M min"
\ No newline at end of file |
