MerlenMaven commited on
Commit
1e7efae
·
verified ·
1 Parent(s): 2b6790d

Delete emotionsmultilanguage.py

Browse files
Files changed (1) hide show
  1. emotionsmultilanguage.py +0 -20
emotionsmultilanguage.py DELETED
@@ -1,20 +0,0 @@
1
- """
2
- When you add new language translation, you need to add the translations for each key element (angry, disgust, fear, happy, sad, suprise, netural)
3
- with the corresponding language key. Please be careful about the English characters. I.e. Wutend is originally Wütend but since 'ü' is not in
4
- en alphabet we should change it to 'u'
5
-
6
- Languages Added:
7
- "en": English -- It's default language and no need to be added again. Program will read en values from keys of this dictionary
8
- "tr": Turkish (Türkçe)
9
- "de": German (Deutsch)
10
- """
11
-
12
- emotions_dict = {
13
- "angry": {"tr": "Kizgin", "de": "Wutend"},
14
- "disgust": {"tr": "Igrenme", "de": "der Ekel"},
15
- "fear": {"tr": "Korku", "de": "Furcht"},
16
- "happy": {"tr": "Mutluluk", "de": "Glucklich"},
17
- "sad": {"tr": "Uzuntu", "de": "Traurig"},
18
- "surprise": {"tr": "Saskinlik", "de": "Uberraschung"},
19
- "neutral": {"tr": "Notr", "de": "Neutral"},
20
- }