import random from umsc import UgMultiScriptConverter # Lists of Uyghur short and long texts short_texts = [ "سالام", "رەھمەت", "ياخشىمۇسىز" ] long_texts = [ "مەكتەپكە بارغاندا تېخىمۇ بىلىملىك بولۇپ قېلىمەن.", "يېزا مەنزىرىسى ھەقىقەتەن گۈزەل.", "پېقىرلارغا ياردەم قىلىش مەنەم پەرزەندە." ] def generate_short_text(script_choice): """Generate a random Uyghur short text based on the type.""" ug_arab_to_latn = UgMultiScriptConverter('UAS', 'ULS') text = random.choice(short_texts) if script_choice == "Uyghur Latin": return ug_arab_to_latn(text) return text def generate_long_text(script_choice): """Generate a random Uyghur long text based on the type.""" ug_arab_to_latn = UgMultiScriptConverter('UAS', 'ULS') text = random.choice(long_texts) if script_choice == "Uyghur Latin": return ug_arab_to_latn(text) return text