Spaces:
Sleeping
Sleeping
Create streamlit_language_texts.py
Browse files- streamlit_language_texts.py +20 -0
streamlit_language_texts.py
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
app_title = {
|
2 |
+
"eng": "Moroccan Darija Translator",
|
3 |
+
"ary": "مترجم ديال الدارجة",
|
4 |
+
"ara": "مترجم الدارجة المغربية",
|
5 |
+
"fra": "Traduction Darija marocaine",
|
6 |
+
}
|
7 |
+
|
8 |
+
app_description = {
|
9 |
+
"eng": "This app translates text between English and Moroccan Darija.",
|
10 |
+
"ary": "هاد التطبيق كيترجم بين الإنجليزية و الدارجة.",
|
11 |
+
"ara": "هذا التطبيق يترجم النص بين الإنجليزية والدارجة المغربية.",
|
12 |
+
"fra": "Cette application traduit le texte entre l'anglais et le darija marocain.",
|
13 |
+
}
|
14 |
+
|
15 |
+
app_footer = {
|
16 |
+
"eng": "Made by [Youssef Chafiqui](https://www.linkedin.com/in/ychafiqui/)",
|
17 |
+
"ary": "هادشي مصاوب من طرف [يوسف شفيقي](https://www.linkedin.com/in/ychafiqui/)",
|
18 |
+
"ara": "صنع من قبل [يوسف شفيقي](https://www.linkedin.com/in/ychafiqui/)",
|
19 |
+
"fra": "Réalisé par [Youssef Chafiqui](https://www.linkedin.com/in/ychafiqui/)",
|
20 |
+
}
|