diff options
| author | Xinhui | 2017-10-10 11:33:02 +0200 |
|---|---|---|
| committer | Xinhui | 2017-10-10 11:33:18 +0200 |
| commit | 98861e13d56403e75aa000d62880dcbc34987a37 (patch) | |
| tree | baa9d9cf45fffe9de5c5b57d8275de63b2985ee3 | |
| parent | 0e0f0c802f30f073a8bfa05952f071af424f8d37 (diff) | |
| download | chouette-core-98861e13d56403e75aa000d62880dcbc34987a37.tar.bz2 | |
Fix missing translation
Refs #4687
| -rw-r--r-- | config/locales/footnotes.en.yml | 5 | ||||
| -rw-r--r-- | config/locales/footnotes.fr.yml | 5 | ||||
| -rw-r--r-- | config/locales/journey_patterns.en.yml | 1 | ||||
| -rw-r--r-- | config/locales/journey_patterns.fr.yml | 1 | ||||
| -rw-r--r-- | config/locales/routing_constraint_zones.en.yml | 6 | ||||
| -rw-r--r-- | config/locales/routing_constraint_zones.fr.yml | 6 |
6 files changed, 18 insertions, 6 deletions
diff --git a/config/locales/footnotes.en.yml b/config/locales/footnotes.en.yml index 98b6bb2a6..dba8edd0b 100644 --- a/config/locales/footnotes.en.yml +++ b/config/locales/footnotes.en.yml @@ -9,7 +9,10 @@ en: title: "Footnotes" activerecord: models: - footnote: "footnote" + footnote: + zero: "note" + one: "note" + other: "notes" attributes: footnote: code: "number" diff --git a/config/locales/footnotes.fr.yml b/config/locales/footnotes.fr.yml index fa3c31338..f5cd71c21 100644 --- a/config/locales/footnotes.fr.yml +++ b/config/locales/footnotes.fr.yml @@ -9,7 +9,10 @@ fr: title: "Notes" activerecord: models: - footnote: "note" + footnote: + zero: "note" + one: "note" + other: "notes" attributes: footnote: code: "numéro" diff --git a/config/locales/journey_patterns.en.yml b/config/locales/journey_patterns.en.yml index 80adc2337..494e700b9 100644 --- a/config/locales/journey_patterns.en.yml +++ b/config/locales/journey_patterns.en.yml @@ -41,6 +41,7 @@ en: name: "Name" published_name: "Published name" comment: "Comments" + section_status: "Section status" registration_number: "Registration number" stop_point_ids: "Route's stop selection" objectid: "Neptune identifier" diff --git a/config/locales/journey_patterns.fr.yml b/config/locales/journey_patterns.fr.yml index 0dceb2f43..24f182168 100644 --- a/config/locales/journey_patterns.fr.yml +++ b/config/locales/journey_patterns.fr.yml @@ -40,6 +40,7 @@ fr: route: "Séquence d'arrêts" name: "Nom" published_name: "Nom public" + section_status: "Status section" comment: "Commentaire" registration_number: "Numéro d'enregistrement" stop_point_ids: "Sélection des arrêts desservis" diff --git a/config/locales/routing_constraint_zones.en.yml b/config/locales/routing_constraint_zones.en.yml index 882c227fe..cc0a15e0c 100644 --- a/config/locales/routing_constraint_zones.en.yml +++ b/config/locales/routing_constraint_zones.en.yml @@ -1,8 +1,10 @@ en: activerecord: models: - one: routing constraint zone - other: routing constraint zones + routing_constraint_zone: + zero: routing constraint zone + one: routing constraint zone + other: routing constraint zones attributes: routing_constraint_zone: name: Name diff --git a/config/locales/routing_constraint_zones.fr.yml b/config/locales/routing_constraint_zones.fr.yml index 4ff0718b2..10c6d37f7 100644 --- a/config/locales/routing_constraint_zones.fr.yml +++ b/config/locales/routing_constraint_zones.fr.yml @@ -1,8 +1,10 @@ fr: activerecord: models: - one: zone de contrainte - other: zone de contraintes + routing_constraint_zone: + zero: zone de contrainte + one: zone de contrainte + other: zone de contraintes attributes: routing_constraint_zone: name: Nom |
