diff --git a/trdg/fonts/ru/Baumans-Regular.ttf b/trdg/fonts/ru/Baumans-Regular.ttf new file mode 100644 index 0000000000..1733b63e8c Binary files /dev/null and b/trdg/fonts/ru/Baumans-Regular.ttf differ diff --git a/trdg/string_generator.py b/trdg/string_generator.py index e32541573e..9e8539e734 100644 --- a/trdg/string_generator.py +++ b/trdg/string_generator.py @@ -112,6 +112,13 @@ def create_strings_randomly( [chr(i) for i in range(19968, 40908)] ) # unicode range for common and uncommon kanji # https://stackoverflow.com/questions/19899554/unicode-range-for-japanese + elif lang == "ru": + pool += "".join( + [chr(i) for i in range(0x410, 0x450)] + ) + pool += "".join( + [chr(0x401), chr(0x451)] + ) else: pool += string.ascii_letters if num: