mirror of
https://github.com/imayushsaini/Bombsquad-Ballistica-Modded-Server.git
synced 2025-10-20 00:00:39 +00:00
syncing with ballisitca/master
This commit is contained in:
parent
9c57ee13f5
commit
a748699245
132 changed files with 2955 additions and 2192 deletions
23
dist/ba_data/python/bacommon/locale.py
vendored
Normal file
23
dist/ba_data/python/bacommon/locale.py
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
# Released under the MIT License. See LICENSE for details.
|
||||
#
|
||||
"""Functionality for wrangling locale info."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from enum import Enum
|
||||
from typing import TYPE_CHECKING
|
||||
|
||||
if TYPE_CHECKING:
|
||||
pass
|
||||
|
||||
|
||||
class Locale(Enum):
|
||||
"""A distinct combination of language and possibly country/etc.
|
||||
|
||||
Note that some locales here may be superseded by other more specific
|
||||
ones (for instance PORTUGUESE -> PORTUGUESE_BRAZIL), but the
|
||||
originals must continue to exist here since they may remain in use
|
||||
in the wild.
|
||||
"""
|
||||
|
||||
ENGLISH = 'en'
|
||||
Loading…
Add table
Add a link
Reference in a new issue