mirror of https://github.com/morpheus65535/bazarr
18 lines
559 B
Python
18 lines
559 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
#
|
||
|
# Copyright (c) 2013 the BabelFish authors. All rights reserved.
|
||
|
# Use of this source code is governed by the 3-clause BSD license
|
||
|
# that can be found in the LICENSE file.
|
||
|
#
|
||
|
from __future__ import unicode_literals
|
||
|
from . import LanguageEquivalenceConverter
|
||
|
from ..language import LANGUAGE_MATRIX
|
||
|
|
||
|
|
||
|
class Alpha3BConverter(LanguageEquivalenceConverter):
|
||
|
CASE_SENSITIVE = True
|
||
|
SYMBOLS = {}
|
||
|
for iso_language in LANGUAGE_MATRIX:
|
||
|
if iso_language.alpha3b:
|
||
|
SYMBOLS[iso_language.alpha3] = iso_language.alpha3b
|