adding a russian keyboard

This commit is contained in:
tibbi
2022-02-02 16:47:17 +01:00
parent c4c2431894
commit 0bad827830
4 changed files with 186 additions and 4 deletions

View File

@ -19,4 +19,8 @@ class Config(context: Context) : BaseConfig(context) {
var lastExportedClipsFolder: String
get() = prefs.getString(LAST_EXPORTED_CLIPS_FOLDER, "")!!
set(lastExportedClipsFolder) = prefs.edit().putString(LAST_EXPORTED_CLIPS_FOLDER, lastExportedClipsFolder).apply()
var keyboardLanguage: String
get() = prefs.getString(KEYBOARD_LANGUAGE, "en")!!
set(keyboardLanguage) = prefs.edit().putString(KEYBOARD_LANGUAGE, keyboardLanguage).apply()
}