1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-21 15:54:22 +01:00

Fix a bug: config norwegian locale

This commit is contained in:
Du Peng 2021-07-01 16:00:20 +02:00
parent 69f2126c67
commit 2b920528b1
2 changed files with 11 additions and 10 deletions

View File

@ -1,6 +1,7 @@
# Changelog Fab-manager
- Set up the linter for Typescript files
- Fix a bug: config norwegian locale
## v5.1.0 2021 July 1st

View File

@ -21,8 +21,8 @@ development:
d3_date_format: <%= ENV["D3_DATE_FORMAT"].dump %> # .dump is needed as the value may start by a '%', see https://github.com/tenderlove/psych/issues/75
uib_date_format: <%= ENV["UIB_DATE_FORMAT"] %>
excel_date_format: <%= ENV["EXCEL_DATE_FORMAT"]%>
rails_locale: <%= ENV["RAILS_LOCALE"] %>
app_locale: <%= ENV["APP_LOCALE"] %>
rails_locale: <%= ENV["RAILS_LOCALE"].dump %>
app_locale: <%= ENV["APP_LOCALE"].dump %>
moment_locale: <%= ENV["MOMENT_LOCALE"] %>
summernote_locale: <%= ENV["SUMMERNOTE_LOCALE"] %>
angular_locale: <%= ENV["ANGULAR_LOCALE"] %>
@ -89,8 +89,8 @@ staging:
d3_date_format: <%= ENV["D3_DATE_FORMAT"].dump %>
uib_date_format: <%= ENV["UIB_DATE_FORMAT"] %>
excel_date_format: <%= ENV["EXCEL_DATE_FORMAT"]%>
rails_locale: <%= ENV["RAILS_LOCALE"] %>
app_locale: <%= ENV["APP_LOCALE"] %>
rails_locale: <%= ENV["RAILS_LOCALE"].dump %>
app_locale: <%= ENV["APP_LOCALE"].dump %>
moment_locale: <%= ENV["MOMENT_LOCALE"] %>
summernote_locale: <%= ENV["SUMMERNOTE_LOCALE"] %>
angular_locale: <%= ENV["ANGULAR_LOCALE"] %>
@ -130,8 +130,8 @@ production:
d3_date_format: <%= ENV["D3_DATE_FORMAT"].dump %>
uib_date_format: <%= ENV["UIB_DATE_FORMAT"] %>
excel_date_format: <%= ENV["EXCEL_DATE_FORMAT"]%>
rails_locale: <%= ENV["RAILS_LOCALE"] %>
app_locale: <%= ENV["APP_LOCALE"] %>
rails_locale: <%= ENV["RAILS_LOCALE"].dump %>
app_locale: <%= ENV["APP_LOCALE"].dump %>
moment_locale: <%= ENV["MOMENT_LOCALE"] %>
summernote_locale: <%= ENV["SUMMERNOTE_LOCALE"] %>
angular_locale: <%= ENV["ANGULAR_LOCALE"] %>