aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/routes
diff options
context:
space:
mode:
authorjpl2017-03-17 11:48:30 +0100
committerjpl2017-03-17 11:48:37 +0100
commit11817ebb004699ec9964a71c2c156de9387ea016 (patch)
tree0d7c855a6c0a93b0edcdd36cb10870d893a97b0e /app/views/routes
parent2c8690d30b851a48bc2ce797f4ac44c7bfedc024 (diff)
downloadchouette-core-11817ebb004699ec9964a71c2c156de9387ea016.tar.bz2
Fix i18n issues
Diffstat (limited to 'app/views/routes')
-rw-r--r--app/views/routes/show.html.slim2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/routes/show.html.slim b/app/views/routes/show.html.slim
index 39d4521f5..21a64b61e 100644
--- a/app/views/routes/show.html.slim
+++ b/app/views/routes/show.html.slim
@@ -36,7 +36,7 @@
= table_builder @route_sp,
{ 'ID Reflex' => Proc.new {|s| s.try(:stop_area).try(:user_objectid)},
:name => Proc.new {|s| s.try(:stop_area).try(:name)},
- 'Activé' => Proc.new{|s| s.try(:stop_area).deleted_at ? t('false') : t('true')},
+ :deleted_at => Proc.new{|s| s.try(:stop_area).deleted_at ? t('false') : t('true')},
:zip_code => Proc.new {|s| s.try(:stop_area).try(:zip_code)},
:city_name => Proc.new {|s| s.try(:stop_area).try(:city_name)},
:area_type => Proc.new {|s| t("area_types.label.#{s.try(:stop_area).try(:area_type)}")},