Add i18n to core

This commit is contained in:
2023-07-03 03:17:57 +03:00
parent 3b38670d1a
commit dc7628ed00
3 changed files with 32 additions and 17 deletions

View File

@@ -12,6 +12,7 @@ import argparse
parser = argparse.ArgumentParser(description='KuiToi-Server - BeamingDrive server compatible with BeamMP clients!')
parser.add_argument('-v', '--version', action="store_true", help='Print version and exit.', default=False)
parser.add_argument('--config', help='Patch to config file.', nargs='?', default=None, type=str)
parser.add_argument('--language', help='What localisation need to use.', default="en", type=str)
if __name__ == '__main__':
from core import Core