diff options
| author | Luc Donnet | 2015-01-16 15:42:05 +0100 |
|---|---|---|
| committer | Luc Donnet | 2015-01-16 15:42:05 +0100 |
| commit | 0ee28dc54b2beeada5d86648c5897e2ea6f25c7e (patch) | |
| tree | ddaacc3bec7cf3f94a63547184349b4bc57e5720 | |
| parent | f5e6f88ec697dad200aae07246caa796680cfd9f (diff) | |
| download | chouette-core-0ee28dc54b2beeada5d86648c5897e2ea6f25c7e.tar.bz2 | |
Fix format hour for vehicle journeys
| -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 |
