this library allows you to create translations of projects into other languages
Project description
LangManager
this library allows you to create translations of projects into other languages
install:
installing with pypi
pip install langmanager
installing with git
git clone https://github.com/ASVIEST/LangManager.git
Simple example:
from langmanager import *
language = input('language: ')
lang(language)
trans = translate_get('hello world')
print(lan())
print(trans)
language file(en):
'hello world':'hello world';
And language file(ru):
'hello world':'привет мир';
!language standard file name - lan(ISO 639-1).txt examples: en.txt, ru.txt, zh.txt
!But file name can change through function filepath_en , filepath_ru and others
language can be changed during working
improved example:
from langmanager import *
language = input('language: ')
lang(language)
trans = translate_get('hello world')
print(lan())
print(trans)
lang('ru')
filepath_ru('en.txt')
trans = translate_get('hello i')
print(trans)
'hello world':'hello world';
'hello i':'hello i';
And language file(ru):
'hello world':'привет мир';
'hello i':'привет я';
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
langmanager-1.3.4.tar.gz
(15.3 kB
view hashes)
Built Distribution
Close
Hashes for langmanager-1.3.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5a6a04f42f4f34d59e7f91a4d49a0d2d8d91fb7a9a0953320d0a649fbffc61c0 |
|
MD5 | b68e1715d056223b3706d21fa4365b74 |
|
BLAKE2b-256 | 0cbaee8479fe49096327f909cc931c3faf52075668b754beb1293dd35a853aea |