Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/src/commit/8b04941a3f71f49b661205f687c005a0b5f96d08/libs/subliminal_patch/converters/assrt.py You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/libs/subliminal_patch/converters/assrt.py

28 lines
1.3 KiB

# -*- coding: utf-8 -*-
from __future__ import absolute_import
from babelfish import LanguageReverseConverter
from subliminal.exceptions import ConfigurationError
class AssrtConverter(LanguageReverseConverter):
def __init__(self):
self.from_assrt = { u'简体': ('zho', None, 'Hans'), u'繁体': ('zho', None, 'Hant'),
u'簡體': ('zho', None, 'Hans'), u'繁體': ('zho', None, 'Hant'),
u'英文': ('eng',),
u'chs': ('zho', None, 'Hans'), u'cht': ('zho', None, 'Hant'),
u'chn': ('zho', None, 'Hans'), u'twn': ('zho', None, 'Hant')}
self.to_assrt = { ('zho', None, 'Hans'): u'chs', ('zho', None, 'Hant'): u'cht',
('eng', None, None) : u'eng', ('zho', None, None): u'chs'}
self.codes = set(self.from_assrt.keys())
def convert(self, alpha3, country=None, script=None):
if (alpha3, country, script) in self.to_assrt:
return self.to_assrt[(alpha3, country, script)]
raise ConfigurationError('Unsupported language for assrt: %s, %s, %s' % (alpha3, country, script))
def reverse(self, assrt):
if assrt in self.from_assrt:
return self.from_assrt[assrt]
raise ConfigurationError('Unsupported language code for assrt: %s' % assrt)