mirror of
https://github.com/SimpleMobileTools/Simple-Keyboard.git
synced 2025-06-05 21:49:26 +02:00
adding a russian keyboard
This commit is contained in:
@ -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()
|
||||
}
|
||||
|
Reference in New Issue
Block a user