diff options
| author | Zog | 2018-04-19 11:39:04 +0200 | 
|---|---|---|
| committer | Zog | 2018-04-19 11:39:04 +0200 | 
| commit | 6d57567cb60b0c522c7743c24d1c13aebaac2bd4 (patch) | |
| tree | 9549048b102275147c6dbd5a7396f8f220e88acc | |
| parent | ca0a4907e5714d6f56ede8d47f2514cdd2752e2f (diff) | |
| download | chouette-core-6603-missing-translation.tar.bz2 | |
Refs #6603; Fix missing translation6603-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: | 
