mirror of
				https://github.com/SimpleMobileTools/Simple-Keyboard.git
				synced 2025-06-05 21:49:26 +02:00 
			
		
		
		
	| @@ -115,9 +115,10 @@ class SettingsActivity : SimpleActivity() { | ||||
|                 RadioItem(LANGUAGE_ENGLISH_DVORAK, getKeyboardLanguageText(LANGUAGE_ENGLISH_DVORAK)), | ||||
|                 RadioItem(LANGUAGE_FRENCH, getKeyboardLanguageText(LANGUAGE_FRENCH)), | ||||
|                 RadioItem(LANGUAGE_GERMAN, getKeyboardLanguageText(LANGUAGE_GERMAN)), | ||||
|                 RadioItem(LANGUAGE_SPANISH, getKeyboardLanguageText(LANGUAGE_SPANISH)), | ||||
|                 RadioItem(LANGUAGE_ROMANIAN, getKeyboardLanguageText(LANGUAGE_ROMANIAN)), | ||||
|                 RadioItem(LANGUAGE_RUSSIAN, getKeyboardLanguageText(LANGUAGE_RUSSIAN)) | ||||
|                 RadioItem(LANGUAGE_RUSSIAN, getKeyboardLanguageText(LANGUAGE_RUSSIAN)), | ||||
|                 RadioItem(LANGUAGE_SLOVENIAN, getKeyboardLanguageText(LANGUAGE_SLOVENIAN)), | ||||
|                 RadioItem(LANGUAGE_SPANISH, getKeyboardLanguageText(LANGUAGE_SPANISH)) | ||||
|             ) | ||||
|  | ||||
|             RadioGroupDialog(this@SettingsActivity, items, config.keyboardLanguage) { | ||||
| @@ -135,6 +136,7 @@ class SettingsActivity : SimpleActivity() { | ||||
|             LANGUAGE_ENGLISH_QWERTZ -> "${getString(R.string.translation_english)} (QWERTZ)" | ||||
|             LANGUAGE_ENGLISH_DVORAK -> "${getString(R.string.translation_english)} (DVORAK)" | ||||
|             LANGUAGE_SPANISH -> getString(R.string.translation_spanish) | ||||
|             LANGUAGE_SLOVENIAN -> getString(R.string.translation_slovenian) | ||||
|             LANGUAGE_ROMANIAN -> getString(R.string.translation_romanian) | ||||
|             else -> "${getString(R.string.translation_english)} (QWERTY)" | ||||
|         } | ||||
|   | ||||
| @@ -25,3 +25,4 @@ const val LANGUAGE_SPANISH = 4 | ||||
| const val LANGUAGE_GERMAN = 5 | ||||
| const val LANGUAGE_ENGLISH_DVORAK = 6 | ||||
| const val LANGUAGE_ROMANIAN = 7 | ||||
| const val LANGUAGE_SLOVENIAN = 8 | ||||
|   | ||||
| @@ -249,6 +249,7 @@ class SimpleKeyboardIME : InputMethodService(), MyKeyboardView.OnKeyboardActionL | ||||
|             LANGUAGE_ENGLISH_DVORAK -> R.xml.keys_letters_english_dvorak | ||||
|             LANGUAGE_SPANISH -> R.xml.keys_letters_spanish_qwerty | ||||
|             LANGUAGE_GERMAN -> R.xml.keys_letters_german | ||||
|             LANGUAGE_SLOVENIAN -> R.xml.keys_letters_slovenian | ||||
|             LANGUAGE_ROMANIAN -> R.xml.keys_letters_romanian | ||||
|             else -> R.xml.keys_letters_english_qwerty | ||||
|         } | ||||
|   | ||||
							
								
								
									
										124
									
								
								app/src/main/res/xml/keys_letters_slovenian.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										124
									
								
								app/src/main/res/xml/keys_letters_slovenian.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,124 @@ | ||||
| <?xml version="1.0" encoding="utf-8"?> | ||||
| <Keyboard xmlns:app="http://schemas.android.com/apk/res-auto"> | ||||
|     <Row> | ||||
|         <Key | ||||
|             app:keyEdgeFlags="left" | ||||
|             app:keyLabel="q" | ||||
|             app:popupCharacters="1" | ||||
|             app:popupKeyboard="@xml/keyboard_popup_template" | ||||
|             app:topSmallNumber="1" /> | ||||
|         <Key | ||||
|             app:keyLabel="w" | ||||
|             app:popupCharacters="2" | ||||
|             app:popupKeyboard="@xml/keyboard_popup_template" | ||||
|             app:topSmallNumber="2" /> | ||||
|         <Key | ||||
|             app:keyLabel="e" | ||||
|             app:popupCharacters="3" | ||||
|             app:popupKeyboard="@xml/keyboard_popup_template" | ||||
|             app:topSmallNumber="3" /> | ||||
|         <Key | ||||
|             app:keyLabel="r" | ||||
|             app:popupCharacters="4" | ||||
|             app:popupKeyboard="@xml/keyboard_popup_template" | ||||
|             app:topSmallNumber="4" /> | ||||
|         <Key | ||||
|             app:keyLabel="t" | ||||
|             app:popupCharacters="5" | ||||
|             app:popupKeyboard="@xml/keyboard_popup_template" | ||||
|             app:topSmallNumber="5" /> | ||||
|         <Key | ||||
|             app:keyLabel="z" | ||||
|             app:popupCharacters="6ž" | ||||
|             app:popupKeyboard="@xml/keyboard_popup_template" | ||||
|             app:topSmallNumber="6" /> | ||||
|         <Key | ||||
|             app:keyLabel="u" | ||||
|             app:popupCharacters="7" | ||||
|             app:popupKeyboard="@xml/keyboard_popup_template" | ||||
|             app:topSmallNumber="7" /> | ||||
|         <Key | ||||
|             app:keyLabel="i" | ||||
|             app:popupCharacters="8" | ||||
|             app:popupKeyboard="@xml/keyboard_popup_template" | ||||
|             app:topSmallNumber="8" /> | ||||
|         <Key | ||||
|             app:keyLabel="o" | ||||
|             app:popupCharacters="9" | ||||
|             app:popupKeyboard="@xml/keyboard_popup_template" | ||||
|             app:topSmallNumber="9" /> | ||||
|         <Key | ||||
|             app:keyEdgeFlags="right" | ||||
|             app:keyLabel="p" | ||||
|             app:popupCharacters="0" | ||||
|             app:popupKeyboard="@xml/keyboard_popup_template" | ||||
|             app:topSmallNumber="0" /> | ||||
|     </Row> | ||||
|     <Row> | ||||
|         <Key | ||||
|             app:horizontalGap="5%" | ||||
|             app:keyEdgeFlags="left" | ||||
|             app:keyLabel="a" /> | ||||
|         <Key | ||||
|             app:keyLabel="s" | ||||
|             app:popupCharacters="š" | ||||
|             app:popupKeyboard="@xml/keyboard_popup_template" /> | ||||
|         <Key | ||||
|             app:keyLabel="d" | ||||
|             app:popupCharacters="đ" | ||||
|             app:popupKeyboard="@xml/keyboard_popup_template" /> | ||||
|         <Key app:keyLabel="f" /> | ||||
|         <Key app:keyLabel="g" /> | ||||
|         <Key app:keyLabel="h" /> | ||||
|         <Key app:keyLabel="j" /> | ||||
|         <Key app:keyLabel="k" /> | ||||
|         <Key | ||||
|             app:keyEdgeFlags="right" | ||||
|             app:keyLabel="l" /> | ||||
|     </Row> | ||||
|     <Row> | ||||
|         <Key | ||||
|             app:code="-1" | ||||
|             app:keyEdgeFlags="left" | ||||
|             app:keyIcon="@drawable/ic_caps_outline_vector" | ||||
|             app:keyWidth="15%p" /> | ||||
|         <Key app:keyLabel="y" /> | ||||
|         <Key app:keyLabel="x" /> | ||||
|         <Key | ||||
|             app:keyLabel="c" | ||||
|             app:popupCharacters="čć" | ||||
|             app:popupKeyboard="@xml/keyboard_popup_template" /> | ||||
|         <Key app:keyLabel="v" /> | ||||
|         <Key app:keyLabel="b" /> | ||||
|         <Key app:keyLabel="n" /> | ||||
|         <Key app:keyLabel="m" /> | ||||
|         <Key | ||||
|             app:code="-5" | ||||
|             app:isRepeatable="true" | ||||
|             app:keyEdgeFlags="right" | ||||
|             app:keyIcon="@drawable/ic_clear_vector" | ||||
|             app:keyWidth="15%p" /> | ||||
|     </Row> | ||||
|     <Row> | ||||
|         <Key | ||||
|             app:code="-2" | ||||
|             app:keyEdgeFlags="left" | ||||
|             app:keyLabel="123" | ||||
|             app:keyWidth="15%p" /> | ||||
|         <Key | ||||
|             app:keyLabel="," | ||||
|             app:keyWidth="10%p" /> | ||||
|         <Key | ||||
|             app:code="32" | ||||
|             app:isRepeatable="true" | ||||
|             app:keyWidth="50%p" /> | ||||
|         <Key | ||||
|             app:keyLabel="." | ||||
|             app:keyWidth="10%p" /> | ||||
|         <Key | ||||
|             app:code="-4" | ||||
|             app:keyEdgeFlags="right" | ||||
|             app:keyIcon="@drawable/ic_enter_vector" | ||||
|             app:keyWidth="15%p" /> | ||||
|     </Row> | ||||
| </Keyboard> | ||||
		Reference in New Issue
	
	Block a user