2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2021-06-01 12:20:20 +00:00
|
|
|
|
2017-12-06 14:31:27 +00:00
|
|
|
class SettingDefaultLocale2 < ActiveRecord::Migration[5.1]
|
2017-11-15 14:06:53 +00:00
|
|
|
def up
|
|
|
|
|
|
|
|
# return if it's a new setup
|
2020-08-03 08:35:43 +00:00
|
|
|
return if !Setting.exists?(name: 'system_init_done')
|
2017-11-15 14:06:53 +00:00
|
|
|
|
2017-12-06 14:31:27 +00:00
|
|
|
setting = Setting.find_by(name: 'locale_default')
|
|
|
|
if setting
|
|
|
|
setting.area = 'System::Branding'
|
|
|
|
setting.preferences[:prio] = 8
|
|
|
|
setting.save!
|
|
|
|
end
|
|
|
|
|
2017-11-15 14:06:53 +00:00
|
|
|
Setting.create_if_not_exists(
|
2018-12-19 17:31:51 +00:00
|
|
|
title: 'Locale',
|
|
|
|
name: 'locale_default',
|
|
|
|
area: 'System::Branding',
|
2017-11-15 14:06:53 +00:00
|
|
|
description: 'Defines the system default language.',
|
2018-12-19 17:31:51 +00:00
|
|
|
options: {
|
2017-11-15 14:06:53 +00:00
|
|
|
form: [
|
|
|
|
{
|
|
|
|
name: 'locale_default',
|
|
|
|
}
|
|
|
|
],
|
|
|
|
},
|
2018-12-19 17:31:51 +00:00
|
|
|
state: 'en-us',
|
2017-11-15 14:06:53 +00:00
|
|
|
preferences: {
|
2018-12-19 17:31:51 +00:00
|
|
|
prio: 8,
|
2017-11-15 14:06:53 +00:00
|
|
|
controller: 'SettingsAreaItemDefaultLocale',
|
|
|
|
permission: ['admin.system'],
|
|
|
|
},
|
2018-12-19 17:31:51 +00:00
|
|
|
frontend: true
|
2017-11-15 14:06:53 +00:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|