You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
556 B
18 lines
556 B
6 years ago
|
# -*- 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 Alpha2Converter(LanguageEquivalenceConverter):
|
||
|
CASE_SENSITIVE = True
|
||
|
SYMBOLS = {}
|
||
|
for iso_language in LANGUAGE_MATRIX:
|
||
|
if iso_language.alpha2:
|
||
|
SYMBOLS[iso_language.alpha3] = iso_language.alpha2
|