flashcards / constants.py
AdamyaG's picture
Upload 6 files
d291776 verified
raw
history blame contribute delete
640 Bytes
""" File with constants """
languages = [
"English",
"Spanish",
"Polish",
"Chinese",
"Hindi",
"Arabic",
"Portuguese",
"Bengali",
"Russian",
"Japanese",
]
language_to_flag = {
"English": "๐Ÿ‡ฌ๐Ÿ‡ง", # Flag of the United Kingdom
"Spanish": "๐Ÿ‡ช๐Ÿ‡ธ", # Flag of Spain
"Polish": "๐Ÿ‡ต๐Ÿ‡ฑ", # Flag of Poland
"Chinese": "๐Ÿ‡จ๐Ÿ‡ณ", # Flag of China
"Hindi": "๐Ÿ‡ฎ๐Ÿ‡ณ", # Flag of India
"Arabic": "๐Ÿ‡ธ๐Ÿ‡ฆ", # Flag of Saudi Arabia (Arabic is widely spoken in many countries)
"Portuguese": "๐Ÿ‡ต๐Ÿ‡น", # Flag of Portugal
"Japanese": "๐Ÿ‡ฏ,,๐Ÿ‡ต" # Flag of Japan
}