|
|
@ -2,7 +2,7 @@ |
|
|
|
################################################################################### |
|
|
|
# |
|
|
|
# Cybrosys Technologies Pvt. Ltd. |
|
|
|
# Copyright (C) 2017-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|
|
|
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|
|
|
# |
|
|
|
# This program is free software: you can modify |
|
|
|
# it under the terms of the GNU Affero General Public License (AGPL) as |
|
|
@ -27,29 +27,39 @@ class ResConfigSettings(models.TransientModel): |
|
|
|
_inherit = 'res.config.settings' |
|
|
|
|
|
|
|
destination_language = fields.Selection([ |
|
|
|
('am', 'AMHARIC'), ('ar', 'ARABIC'), ('bn', 'BENGALI'), ('zh', 'CHINESE'), |
|
|
|
('en', 'ENGLISH'), ('el', 'GREEK'), ('gu', 'GUJARATI'), ('hi', 'HINDI'), |
|
|
|
('kn', 'KANNADA'), ('ml', 'MALAYALAM'), ('mr', 'MARATHI'), ('ne', 'NEPALI'), |
|
|
|
('or', 'ORIYA'), ('fa', 'PERSIAN'), ('pa', 'PUNJABI'), ('ru', 'RUSSIAN'), |
|
|
|
('sa', 'SANSKRIT'), ('sr', 'SERBIAN'), ('si', 'SINHALESE'), ('ta', 'TAMIL'), |
|
|
|
('am', 'AMHARIC'), ('ar', 'ARABIC'), ('bn', 'BENGALI'), |
|
|
|
('zh', 'CHINESE'), |
|
|
|
('en', 'ENGLISH'), ('el', 'GREEK'), ('gu', 'GUJARATI'), |
|
|
|
('hi', 'HINDI'), |
|
|
|
('kn', 'KANNADA'), ('ml', 'MALAYALAM'), ('mr', 'MARATHI'), |
|
|
|
('ne', 'NEPALI'), |
|
|
|
('or', 'ORIYA'), ('fa', 'PERSIAN'), ('pa', 'PUNJABI'), |
|
|
|
('ru', 'RUSSIAN'), |
|
|
|
('sa', 'SANSKRIT'), ('sr', 'SERBIAN'), ('si', 'SINHALESE'), |
|
|
|
('ta', 'TAMIL'), |
|
|
|
('te', 'TELUGU'), ('ti', 'TIGRINYA'), ('ur', 'URDU')], |
|
|
|
string='Language', default='ml', config_parameter='transliterate_widget.dest_lang') |
|
|
|
string='Language', default='ml', |
|
|
|
config_parameter='transliterate_widget.dest_lang') |
|
|
|
|
|
|
|
@api.model |
|
|
|
def get_values(self): |
|
|
|
res = super(ResConfigSettings, self).get_values() |
|
|
|
res.update( |
|
|
|
destination_language=self.env['ir.config_parameter'].sudo().get_param('destination_language') or 'en' |
|
|
|
destination_language=self.env[ |
|
|
|
'ir.config_parameter'].sudo().get_param( |
|
|
|
'destination_language') or 'en' |
|
|
|
) |
|
|
|
return res |
|
|
|
|
|
|
|
def set_values(self): |
|
|
|
super(ResConfigSettings, self).set_values() |
|
|
|
self.env['ir.config_parameter'].sudo().set_param("destination_language", self.destination_language) |
|
|
|
self.env['ir.config_parameter'].sudo().set_param( |
|
|
|
"destination_language", self.destination_language) |
|
|
|
|
|
|
|
@api.model |
|
|
|
def get_config_value(self, config_name): |
|
|
|
"""Method to get config value for rpc call""" |
|
|
|
config_value = self.env['ir.config_parameter'].sudo().get_param(config_name) |
|
|
|
config_value = self.env['ir.config_parameter'].sudo().get_param( |
|
|
|
config_name) |
|
|
|
return config_value |
|
|
|
|
|
|
|