27d28b8eef
The default encoding for source files is UTF-8 since Python 3, so we can drop all encoding headers. While we are at it, just replace them with SPDX headers.
13 lines
312 B
Python
13 lines
312 B
Python
# SPDX-License-Identifier: MIT
|
|
# ISO 693-1 language codes from pycountry
|
|
# This file is automatically generated, DO NOT EDIT!
|
|
Languages = {
|
|
'de': 'German',
|
|
'en': 'English',
|
|
'es': 'Spanish',
|
|
'fi': 'Finnish',
|
|
'fr': 'French',
|
|
'it': 'Italian',
|
|
'ja': 'Japanese',
|
|
'pt': 'Portuguese',
|
|
}
|