From: Fernando Kiernan Date: Sat, 18 Jan 2014 19:54:26 +0000 (-0300) Subject: - Hide en_US on invoicing locales. X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;ds=sidebyside;h=bbf3f6d6af46d522a395e4c31ed8818059517b75;p=freeside.git - Hide en_US on invoicing locales. --- diff --git a/httemplate/config/config-view.cgi b/httemplate/config/config-view.cgi index 02a24adbf..864a61279 100644 --- a/httemplate/config/config-view.cgi +++ b/httemplate/config/config-view.cgi @@ -34,11 +34,11 @@ invoice language options:
<& /elements/select.html, 'field' => 'locale', - 'options' => [ '', @locales ], + 'options' => [ '', grep { $_ ne 'en_US'} @locales ], 'labels' => { map { my %info = FS::Locales->locale_info($_); $_ => "$info{name} ($info{country})" - } @locales }, + } grep { $_ ne 'en_US' } @locales }, 'curr_value' => $locale, 'id' => 'select-locale', 'onchange' => 'changeLocale'