diff options
| author | Zog | 2018-04-19 11:39:04 +0200 |
|---|---|---|
| committer | cedricnjanga | 2018-04-19 22:55:31 -0700 |
| commit | 7c0ce4a2f39f6d7386734016452c594ee7ee8797 (patch) | |
| tree | cc8ee7b06bb866e1798042157ef5f18ce9382646 | |
| parent | 8f756b377f8866ac17b303ec17ae2333e10ba966 (diff) | |
| download | chouette-core-7c0ce4a2f39f6d7386734016452c594ee7ee8797.tar.bz2 | |
Refs #6603; Fix missing translation
| -rw-r--r-- | app/views/lines/index.html.slim | 2 | ||||
| -rw-r--r-- | config/locales/lines.en.yml | 1 | ||||
| -rw-r--r-- | config/locales/lines.fr.yml | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/app/views/lines/index.html.slim b/app/views/lines/index.html.slim index 9d491ace4..4d4ba938d 100644 --- a/app/views/lines/index.html.slim +++ b/app/views/lines/index.html.slim @@ -57,4 +57,4 @@ - unless @lines.any? .row.mt-xs .col-lg-12 - = replacement_msg t('referential_lines.search_no_results') + = replacement_msg 'referential_lines.search_no_results'.t diff --git a/config/locales/lines.en.yml b/config/locales/lines.en.yml index 3d1ddc149..c1f9063a7 100644 --- a/config/locales/lines.en.yml +++ b/config/locales/lines.en.yml @@ -19,6 +19,7 @@ en: show: 'Show' show_network: 'Show network' show_company: 'Show company' + search_no_results: "No results found" filters: name_or_objectid_cont: "Search by name or objectid" new: diff --git a/config/locales/lines.fr.yml b/config/locales/lines.fr.yml index 47baf96f8..487cae35c 100644 --- a/config/locales/lines.fr.yml +++ b/config/locales/lines.fr.yml @@ -19,6 +19,7 @@ fr: show: 'Consulter' show_network: 'Voir le réseau' show_company: 'Voir le transporteur principal' + search_no_results: "Aucun résultat" filters: name_or_objectid_cont: "Indiquez un nom d'itinéraire ou un ID..." new: |
