diff options
| author | cedricnjanga | 2018-02-28 23:56:12 -0800 | 
|---|---|---|
| committer | cedricnjanga | 2018-03-01 00:12:32 -0800 | 
| commit | e2e6623a9ecae75c2032ec57e3075528c564d78c (patch) | |
| tree | f526a7a4be6ce2bcad23d21fd29e9867b7443999 | |
| parent | a8bc6aefce236b0ecc231312f9c5f05efce4cf8c (diff) | |
| download | chouette-core-e2e6623a9ecae75c2032ec57e3075528c564d78c.tar.bz2 | |
Refs #6002 Change StopAreas#index wording typos
| -rw-r--r-- | app/views/stop_areas/show.html.slim | 2 | ||||
| -rw-r--r-- | config/locales/stop_areas.en.yml | 4 | ||||
| -rw-r--r-- | config/locales/stop_areas.fr.yml | 4 | 
3 files changed, 9 insertions, 1 deletions
| diff --git a/app/views/stop_areas/show.html.slim b/app/views/stop_areas/show.html.slim index a4e14a272..34b872e91 100644 --- a/app/views/stop_areas/show.html.slim +++ b/app/views/stop_areas/show.html.slim @@ -20,7 +20,7 @@              @stop_area.human_attribute_name(:zip_code) => @stop_area.zip_code,              @stop_area.human_attribute_name(:city_name) => @stop_area.city_name,              @stop_area.human_attribute_name(:country_code) => @stop_area.country_code.presence || '-', -            'Etat' => (@stop_area.deleted_at ? 'Supprimé' : 'Actif'), +            t('activerecord.attributes.stop_area.state') => (@stop_area.deleted_at ? t('stop_areas.show.state.deactivated') : t('stop_areas.show.state.active')),              @stop_area.human_attribute_name(:comment) => @stop_area.try(:comment),              })          = definition_list t('metadatas'), attributes diff --git a/config/locales/stop_areas.en.yml b/config/locales/stop_areas.en.yml index c1ced1094..ac3dce280 100644 --- a/config/locales/stop_areas.en.yml +++ b/config/locales/stop_areas.en.yml @@ -66,6 +66,9 @@ en:        access_managment: "Access Points and Links managment"        access_points: "Access Points"        not_editable: "Le type d'arrêt est non modifiable" +      state: +        active: Active +        deactivated: Deactivated      genealogical:        genealogical: "Links between stop area"        genealogical_routing: "Routing constraint's links" @@ -139,6 +142,7 @@ en:          created_at: Created at          updated_at: Updated at          waiting_time: Waiting time (minutes) +        state: State    formtastic:      titles:        stop_area: diff --git a/config/locales/stop_areas.fr.yml b/config/locales/stop_areas.fr.yml index ede1aada6..f75c4ebe7 100644 --- a/config/locales/stop_areas.fr.yml +++ b/config/locales/stop_areas.fr.yml @@ -67,6 +67,9 @@ fr:        access_managment: "Gestion des accès et liens associés"        access_points: "Points d'accès"        not_editable: "Le type d'arrêt est non modifiable" +      state: +        active: Actif +        deactivated: Désactivé      genealogical:        genealogical: "Lien entre arrêts"        genealogical_routing: "Liens de l'ITL" @@ -141,6 +144,7 @@ fr:          created_at: "Créé le"          updated_at: "Edité le"          waiting_time: Temps de desserte (minutes) +        state: État    formtastic:      titles:        stop_area: | 
