Merge branch 'SimpleMobileTools-main'

This commit is contained in:
Jacob Kapitein 2022-07-28 20:33:45 +02:00
commit f3fad26e6c
173 changed files with 332 additions and 184 deletions

5
.gitignore vendored
View File

@ -8,5 +8,6 @@
/captures
keystore.jks
keystore.properties
/app/src/proprietary/assets/pesdk_license
/app/src/proprietary/assets/vesdk_license
fastlane/fastlane.json
Gemfile
Gemfile.lock

View File

@ -1,7 +1,9 @@
# Simple Keyboard
<img alt="Logo" src="fastlane/metadata/android/en-US/images/icon.png" width="120" />
<img alt="Logo" src="graphics/icon.png" width="120" />
A quick lightweight keyboard app that helps chatting with your friends, or inserting any other texts, numbers or symbols.
A lightweight keyboard app that helps chatting with your friends, or inserting any other texts, numbers or symbols. You can choose from multiple different languages and layouts.
You can create handy clips and pin frequently used ones for easy access. You can toggle vibrations, popups on keypresses or select your language from the list of supported ones.
It comes with material design and dark theme by default, provides great user experience for easy usage. The lack of internet access gives you more privacy, security and stability than other apps.
@ -16,13 +18,16 @@ https://www.facebook.com/simplemobiletools
Reddit:
https://www.reddit.com/r/SimpleMobileTools
Telegram:
https://t.me/SimpleMobileTools
<a href='https://play.google.com/store/apps/details?id=com.simplemobiletools.keyboard'><img src='https://simplemobiletools.com/images/button-google-play.svg' alt='Get it on Google Play' height=45/></a>
<a href='https://f-droid.org/packages/com.simplemobiletools.keyboard'><img src='https://simplemobiletools.com/images/button-f-droid.png' alt='Get it on F-Droid' height='45' /></a>
<div style="display:flex;">
<img alt="App image" src="fastlane/metadata/android/en-US/images/phoneScreenshots/1.jpg" width="30%">
<img alt="App image" src="fastlane/metadata/android/en-US/images/phoneScreenshots/2.jpg" width="30%">
<img alt="App image" src="fastlane/metadata/android/en-US/images/phoneScreenshots/3.jpg" width="30%">
<img alt="App image" src="fastlane/metadata/android/en-GB/images/phoneScreenshots/1_en-GB.jpeg" width="30%">
<img alt="App image" src="fastlane/metadata/android/en-GB/images/phoneScreenshots/2_en-GB.jpeg" width="30%">
<img alt="App image" src="fastlane/metadata/android/en-GB/images/phoneScreenshots/3_en-GB.jpeg" width="30%">
</div>

View File

@ -48,16 +48,11 @@ class MainActivity : SimpleActivity() {
private fun setupOptionsMenu() {
main_toolbar.setOnMenuItemClickListener { menuItem ->
when (menuItem.itemId) {
R.id.settings -> {
launchSettings()
true
}
R.id.about -> {
launchAbout()
true
}
else -> false
R.id.settings -> launchSettings()
R.id.about -> launchAbout()
else -> return@setOnMenuItemClickListener false
}
return@setOnMenuItemClickListener true
}
}

View File

@ -2,39 +2,39 @@
<resources>
<string name="app_name">Simple Keyboard</string>
<string name="app_launcher_name">Keyboard</string>
<string name="redirection_note">Please enable Simple Keyboard on the next screen, to make it an available keyboard. Press \'Back\' once enabled.</string>
<string name="change_keyboard">Change Keyboard</string>
<string name="redirection_note">يرجى تمكين لوحة المفاتيح البسيطة على الشاشة التالية ، لجعلها لوحة مفاتيح متاحة. اضغط على \"رجوع\" بمجرد تمكينه.</string>
<string name="change_keyboard">تغيير لوحة المفاتيح</string>
<!-- Clipboard -->
<string name="manage_clipboard_items">Manage clipboard items</string>
<string name="manage_clipboard_empty">Your clipboard is empty.</string>
<string name="manage_clipboard_label">Once you copy some text, it will show up here. You can also pin clips so they won\'t disappear later.</string>
<string name="clear_clipboard_data">Clear clipboard data</string>
<string name="clear_clipboard_data_confirmation">Are you sure you want to clear the clipboard data?</string>
<string name="manage_clipboard_items">إدارة عناصر الحافظة</string>
<string name="manage_clipboard_empty">سجل الحافظة فارغ.</string>
<string name="manage_clipboard_label">بمجرد نسخ بعض النص ، سيظهر هنا. يمكنك أيضًا تثبيت المقاطع حتى لا تختفي لاحقًا.</string>
<string name="clear_clipboard_data">مسح بيانات الحافظة</string>
<string name="clear_clipboard_data_confirmation">هل أنت متأكد أنك تريد مسح بيانات الحافظة؟</string>
<string name="clipboard">Clipboard</string>
<string name="clipboard_recent">Recent</string>
<string name="clipboard_current">Current</string>
<string name="clipboard_pinned">Pinned</string>
<string name="add_new_item">Add a new item</string>
<string name="manage_clips">You can manage or add clips here for quick access.</string>
<string name="clip_text">Clip text</string>
<string name="clipboard_current">حالي</string>
<string name="clipboard_pinned">المثبته</string>
<string name="add_new_item">أضف عنصرًا جديدًا</string>
<string name="manage_clips">يمكنك إدارة أو إضافة مقاطع هنا للوصول السريع.</string>
<string name="clip_text">نص القصاصة</string>
<string name="pin_text">Pin text</string>
<string name="text_pinned">Text has been pinned</string>
<string name="text_pinned">تم تثبيت النص</string>
<string name="export_clipboard_items">Export clipboard items</string>
<string name="import_clipboard_items">Import clipboard items</string>
<!-- Accessibility -->
<string name="keycode_delete">Delete</string>
<string name="keycode_mode_change">Change keyboard type</string>
<string name="keycode_mode_change">تغيير نوع لوحة المفاتيح</string>
<string name="keycode_shift">Shift</string>
<string name="keycode_enter">Enter</string>
<!-- Settings -->
<string name="show_clipboard_content">Show clipboard content if available</string>
<string name="show_popup">Show a popup on keypress</string>
<string name="vibrate_on_keypress">Vibrate on keypress</string>
<string name="keyboard_language">Keyboard language</string>
<string name="keyboard_height_multiplier">Keyboard height</string>
<string name="settings_keyboard_height_multiplier_option_small">Small</string>
<string name="settings_keyboard_height_multiplier_option_medium">Medium</string>
<string name="settings_keyboard_height_multiplier_option_big">Large</string>
<string name="show_clipboard_content">إظهار محتوى الحافظة إذا كان متوفرا</string>
<string name="show_popup">إظهار نافذة منبثقة عند الضغط على المفاتيح</string>
<string name="vibrate_on_keypress">يهتز عند ضغط الزر</string>
<string name="keyboard_language">لغة لوحة المفاتيح</string>
<!--
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res

View File

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Обикновена клавиатура</string>
<string name="app_name">Обикновена Клавиатура</string>
<string name="app_launcher_name">Клавиатура</string>
<string name="redirection_note">Моля, активирайте Обикновена клавиатура на следващия екран, за да я направите налична. Натиснете \'Назад\' щом сте готови.</string>
<string name="redirection_note">Моля, активирайте Обикновена Клавиатура на следващия екран, за да я направите налична. Натиснете \'Назад\' щом сте готови.</string>
<string name="change_keyboard">Промяна на клавиатура</string>
<!-- Clipboard -->
<string name="manage_clipboard_items">Управление на клипборд елементи</string>
@ -39,4 +39,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
</resources>
</resources>

View File

@ -1,34 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">jednoduchá klávesnice</string>
<string name="app_name">Jednoduchá klávesnice</string>
<string name="app_launcher_name">Klávesnice</string>
<string name="redirection_note">Please enable Simple Keyboard on the next screen, to make it an available keyboard. Press \'Back\' once enabled.</string>
<string name="redirection_note">Prosím, povolte na následující obrazovce Jednoduchou klávesnici, aby byla dostupná jako klávesnice. Jakmile bude povolená, stiskněte „Zpět“.</string>
<string name="change_keyboard">Změnit klávesnici</string>
<!-- Clipboard -->
<string name="manage_clipboard_items">Spravovat schránku</string>
<string name="manage_clipboard_items">Spravovat položky schránky</string>
<string name="manage_clipboard_empty">Vaše schránka je prázdná.</string>
<string name="manage_clipboard_label">Once you copy some text, it will show up here. You can also pin clips so they won\'t disappear later.</string>
<string name="manage_clipboard_label">Jakmile zkopírujete nějaký text, zobrazí se zde. Výstřižky můžete také připnout, aby později nezmizely.</string>
<string name="clear_clipboard_data">Vyčistit schránku</string>
<string name="clear_clipboard_data_confirmation">Opravdu chcete vymazat schránku\?</string>
<string name="clear_clipboard_data_confirmation">Opravdu chcete vyčistit data schránky\?</string>
<string name="clipboard">Schránka</string>
<string name="clipboard_recent">Recent</string>
<string name="clipboard_current">Current</string>
<string name="clipboard_recent">Nedávné</string>
<string name="clipboard_current">Současná</string>
<string name="clipboard_pinned">Připnuté</string>
<string name="add_new_item">Přidat nový předmět</string>
<string name="manage_clips">You can manage or add clips here for quick access.</string>
<string name="clip_text">Clip text</string>
<string name="pin_text">Pin text</string>
<string name="text_pinned">Text has been pinned</string>
<string name="export_clipboard_items">Exportovat schránku</string>
<string name="import_clipboard_items">Importovat schránku</string>
<string name="add_new_item">Přidat novou položku</string>
<string name="manage_clips">Můžete spravovat nebo přidat výstřižky pro rychlý přístup.</string>
<string name="clip_text">Text výštřižku</string>
<string name="pin_text">Připnout text</string>
<string name="text_pinned">Text byl připnut</string>
<string name="export_clipboard_items">Exportovat položky schránky</string>
<string name="import_clipboard_items">Importovat položky schránky</string>
<!-- Accessibility -->
<string name="keycode_delete">Smazat</string>
<string name="keycode_mode_change">Změnit typ klávesnice</string>
<string name="keycode_shift">Shift</string>
<string name="keycode_enter">Enter</string>
<!-- Settings -->
<string name="show_clipboard_content">Show clipboard content if available</string>
<string name="show_popup">Show a popup on keypress</string>
<string name="show_clipboard_content">Zobrazit obsah schránky, pokud je k dispozici</string>
<string name="show_popup">Zobrazit vyskakovací okno při stisknutí klávesy</string>
<string name="vibrate_on_keypress">Vibrovat při stisknutí klávesy</string>
<string name="keyboard_language">Jazyk klávesnice</string>
<string name="keyboard_height_multiplier">Keyboard height</string>
@ -39,4 +39,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
</resources>
</resources>

View File

@ -9,7 +9,7 @@
<string name="manage_clipboard_empty">Το πρόχειρό σας είναι άδειο.</string>
<string name="manage_clipboard_label">Μόλις αντιγράψετε κάποιο κείμενο, θα εμφανιστεί εδώ. Μπορείτε επίσης να καρφιτσώσετε κλιπ ώστε να μην εξαφανιστούν αργότερα.</string>
<string name="clear_clipboard_data">Καθαρισμός δεδομένων πρόχειρου</string>
<string name="clear_clipboard_data_confirmation">Είστε σίγουροι ότι θέλετε να διαγράψετε τα δεδομένα του πρόχειρου;</string>
<string name="clear_clipboard_data_confirmation">Είστε βέβαιοι ότι θέλετε να διαγράψετε τα δεδομένα του πρόχειρου;</string>
<string name="clipboard">Πρόχειρο</string>
<string name="clipboard_recent">Πρόσφατα</string>
<string name="clipboard_current">Τρέχον</string>
@ -39,4 +39,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
</resources>
</resources>

2
fastlane/Appfile Normal file
View File

@ -0,0 +1,2 @@
json_key_file("fastlane/fastlane.json") # Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one
package_name("com.simplemobiletools.keyboard") # e.g. com.krausefx.app

38
fastlane/Fastfile Normal file
View File

@ -0,0 +1,38 @@
# This file contains the fastlane.tools configuration
# You can find the documentation at https://docs.fastlane.tools
#
# For a list of all available actions, check out
#
# https://docs.fastlane.tools/actions
#
# For a list of all available plugins, check out
#
# https://docs.fastlane.tools/plugins/available-plugins
#
# Uncomment the line if you want fastlane to automatically update itself
# update_fastlane
default_platform(:android)
platform :android do
desc "Runs all the tests"
lane :test do
gradle(task: "test")
end
desc "Submit a new Beta Build to Crashlytics Beta"
lane :beta do
gradle(task: "clean assembleRelease")
crashlytics
# sh "your_script.sh"
# You can also use other beta testing services here
end
desc "Deploy a new version to the Google Play"
lane :deploy do
gradle(task: "clean assembleRelease")
upload_to_play_store
end
end

View File

@ -0,0 +1,19 @@
تطبيق لوحة مفاتيح سريع خفيف الوزن يساعد على الدردشة مع أصدقائك أو إدراج أي نصوص أو أرقام أو رموز أخرى.
يمكنك إنشاء مقاطع مفيدة وتثبيت مقاطع تستخدم بشكل متكرر لسهولة الوصول إليها. يمكنك تبديل الاهتزازات أو النوافذ المنبثقة على ضغطات المفاتيح أو تحديد لغتك من قائمة اللغات المدعومة.
لأنه يأتي مع تصميم المواد وموضوع الظلام افتراضيا ، ويوفر تجربة مستخدم رائعة لسهولة الاستخدام. يمنحك عدم الوصول إلى الإنترنت مزيدا من الخصوصية والأمان والاستقرار أكثر من التطبيقات الأخرى.
لا يحتوي على إعلانات أو أذونات غير ضرورية. إنه مفتوح المصدر بالكامل ، ويوفر ألوانا قابلة للتخصيص.
تحقق من المجموعة الكاملة من الأدوات البسيطة هنا:
https://www.simplemobiletools.com
فيسبوك:
https://www.facebook.com/simplemobiletools
ريديت:
https://www.reddit.com/r/SimpleMobileTools
برقية:
https://t.me/SimpleMobileTools

View File

@ -0,0 +1 @@
لوحة مفاتيح سهلة لإدراج جميع أنواع النصوص والأحرف الخاصة والأرقام

View File

View File

@ -1,4 +1,4 @@
A quick lightweight keyboard app that helps chatting with your friends, or inserting any other texts, numbers or symbols.
A lightweight keyboard app that helps chatting with your friends, or inserting any other texts, numbers or symbols. You can choose from multiple different languages and layouts.
You can create handy clips and pin frequently used ones for easy access. You can toggle vibrations, popups on keypresses or select your language from the list of supported ones.

View File

@ -1 +1 @@
Easy keyboard for inserting all kinds of texts, special characters and numbers
Easy keyboard for inserting all kinds of texts, special characters and numbers

View File

@ -0,0 +1 @@
Обикновена Клавиатура

View File

View File

@ -1,4 +1,4 @@
Una aplicació de teclat ràpida i lleugera que ajuda a xatejar amb els vostres amics o a inserir qualsevol altre text, nombre o símbol.
Una aplicació lleugera de teclat que ajuda a xatejar amb els vostres amics o a inserir qualsevol altre text, nombre o símbol. Podeu triar idiomes i disposicions diferents.
Podeu crear clips pràctics i fixar els utilitzats amb freqüència per a un accés fàcil. Podeu commutar vibracions i finestres emergents en prémer tecles o seleccionar l'idioma de la llista dels admesos.

View File

@ -1 +1 @@
Simple Keyboard
Teclat senzill

View File

@ -0,0 +1 @@

View File

@ -4,11 +4,14 @@ Den leveres med material design og mørkt tema som standard, hvilket giver en fa
Den manglende internetadgang giver dig mere privatliv, sikkerhed og stabilitet end andre apps. Indeholder ingen annoncer eller unødvendige tilladelser. Den er med helt åben kildekode (open source), byder på tilpassede farver.
<b>Se hele pakken af Simple Tools her:</b>
Se hele pakken af Simple Tools her:
https://www.simplemobiletools.com
<b>Facebook:</b>
https://www.facebook.com/simplemobiletools
Facebook:
https://www.facebook.com/simplemobiletools
<b>Reddit:</b>
Reddit:
https://www.reddit.com/r/SimpleMobileTools
Telegram:
https://t.me/SimpleMobileTools

View File

@ -1 +1 @@
Nemt tastatur til at indsætte alle slags tekster, specialtegn og tal
Nemt tastatur til at indsætte alle slags tekster, specialtegn og tal

View File

@ -0,0 +1 @@
Simpelt tastatur

View File

@ -1 +0,0 @@
Simpelt tastatur

View File

@ -4,11 +4,14 @@ Sie kommt standardmäßig mit Material Design und dunklem Thema und bietet eine
Der fehlende Internetzugang bietet Ihnen mehr Privatsphäre, Sicherheit und Stabilität als andere Anwendungen. Enthält keine Werbung oder unnötige Berechtigungen. Es ist vollständig quelloffen, bietet anpassbare Farben.
<b>Hier finden Sie die gesamte Palette der Simple Tools:</b>
Hier finden Sie die gesamte Palette der Simple Tools:
https://www.simplemobiletools.com
<b>Facebook:</b>
https://www.facebook.com/simplemobiletools
Facebook:
https://www.facebook.com/simplemobiletools
<b>Reddit:</b>
Reddit:
https://www.reddit.com/r/SimpleMobileTools
Telegram:
https://t.me/SimpleMobileTools

View File

@ -1 +1 @@
Schlichte Tastatur zum Einfügen aller Arten von Texten, Sonderzeichen und Zahlen
Schlichte Tastatur zum Einfügen aller Arten von Texten, Sonderzeichen und Zahlen

View File

@ -0,0 +1 @@
Schlichte Tastatur

View File

@ -1 +0,0 @@
Schlichte Tastatur

View File

@ -4,11 +4,14 @@
Δεν περιέχει διαφημίσεις ή περιττές άδειες χρήσης. Είναι πλήρως ανοιχτού κώδικα, παρέχει προσαρμόσιμα χρώματα.
<b>Δείτε την πλήρη σουίτα των Απλών Εργαλείων εδώ:</b>
Δείτε την πλήρη σουίτα των Απλών Εργαλείων εδώ:
https://www.simplemobiletools.com
<b>Facebook:</b>
Facebook:
https://www.facebook.com/simplemobiletools
<b>Reddit:</b>
Reddit:
https://www.reddit.com/r/SimpleMobileTools
Telegram:
https://t.me/SimpleMobileTools

View File

@ -1 +1 @@
Εύκολο πληκτρολόγιο για εισαγωγή όλων των κειμένων, ειδικών χαρακτήρων, αριθμών
Εύκολο πληκτρολόγιο για εισαγωγή όλων των κειμένων, ειδικών χαρακτήρων, αριθμών

View File

@ -0,0 +1 @@
Simple Keyboard

View File

@ -0,0 +1,19 @@
A lightweight keyboard app that helps chatting with your friends, or inserting any other texts, numbers or symbols. You can choose from multiple different languages and layouts.
You can create handy clips and pin frequently used ones for easy access. You can toggle vibrations, popups on keypresses or select your language from the list of supported ones.
It comes with material design and dark theme by default, provides great user experience for easy usage. The lack of internet access gives you more privacy, security and stability than other apps.
Contains no ads or unnecessary permissions. It is fully opensource, provides customizable colors.
Check out the full suite of Simple Tools here:
https://www.simplemobiletools.com
Facebook:
https://www.facebook.com/simplemobiletools
Reddit:
https://www.reddit.com/r/SimpleMobileTools
Telegram:
https://t.me/SimpleMobileTools

View File

Before

Width:  |  Height:  |  Size: 50 KiB

After

Width:  |  Height:  |  Size: 50 KiB

View File

Before

Width:  |  Height:  |  Size: 5.1 KiB

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

Before

Width:  |  Height:  |  Size: 424 KiB

After

Width:  |  Height:  |  Size: 424 KiB

View File

Before

Width:  |  Height:  |  Size: 352 KiB

After

Width:  |  Height:  |  Size: 352 KiB

View File

Before

Width:  |  Height:  |  Size: 428 KiB

After

Width:  |  Height:  |  Size: 428 KiB

View File

Before

Width:  |  Height:  |  Size: 251 KiB

After

Width:  |  Height:  |  Size: 251 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 933 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 933 KiB

View File

@ -0,0 +1 @@
Easy keyboard for inserting all kinds of texts, special characters and numbers

View File

@ -0,0 +1 @@
Simple Keyboard

Binary file not shown.

Before

Width:  |  Height:  |  Size: 424 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 352 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 428 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 251 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 946 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 946 KiB

View File

@ -4,11 +4,14 @@ Viene con diseño material y oscuro por defecto, provee gran experiencia de usua
No contiene anuncios o permisos innecesarios. Es completamente código abierto, y provee colores personalizables.
<b>Mira la suite completa de Herramientas Simples aquí:</b>
Mira la suite completa de Herramientas Simples aquí:
https://www.simplemobiletools.com
<b>Facebook:</b>
Facebook:
https://www.facebook.com/simplemobiletools
<b>Reddit:</b>
Reddit:
https://www.reddit.com/r/SimpleMobileTools
Telegram:
https://t.me/SimpleMobileTools

View File

@ -1 +1 @@
Teclado sencillo para insertar todo tipo de textos y caracteres especiales
Teclado sencillo para insertar todo tipo de textos y caracteres especiales

View File

@ -0,0 +1 @@
Teclado simple

View File

@ -1 +0,0 @@
Teclado simple

View File

@ -4,11 +4,14 @@ Il est livré avec un design matériel et un thème sombre par défaut, offrant
L'absence d'accès à Internet vous offre plus de confidentialité, de sécurité et de stabilité que les autres applications. Ne contient pas de publicités ni de permissions inutiles. Le code source est entièrement ouvert, fournit des couleurs personnalisables.
<b>Voyez la suite complète de Simple Tools ici:</b>
Voyez la suite complète de Simple Tools ici:
https://www.simplemobiletools.com
<b>Facebook:</b>
https://www.facebook.com/simplemobiletools
Facebook:
https://www.facebook.com/simplemobiletools
<b>Reddit:</b>
Reddit:
https://www.reddit.com/r/SimpleMobileTools
Telegram:
https://t.me/SimpleMobileTools

View File

@ -1 +1 @@
Clavier facile à utiliser pour insérer toutes sortes de textes et de chiffres
Clavier facile à utiliser pour insérer toutes sortes de textes et de chiffres

View File

@ -0,0 +1 @@
Clavier simple

View File

@ -1 +0,0 @@
Clavier simple

View File

@ -6,11 +6,14 @@ Nedostatak pristupa internetu daje vam više privatnosti, sigurnosti i stabilnos
Potpuno je otvorenog koda, pruža prilagodljive boje.
<b>Pogledajte cijeli paket Jednostavni Alati ovdje:</b>
Pogledajte cijeli paket Jednostavni Alati ovdje:
https://www.simplemobiletools.com
<b>Facebook:</b>
Facebook:
https://www.facebook.com/simplemobiletools
<b>Reddit:</b>
Reddit:
https://www.reddit.com/r/SimpleMobileTools
Telegram:
https://t.me/SimpleMobileTools

View File

@ -1 +1 @@
Jednostavna tipkovnica za umetanje svih vrsta tekstova, posebnih znakova
Jednostavna tipkovnica za umetanje svih vrsta tekstova, posebnih znakova

View File

@ -1 +1 @@
Jednostavna tipkovnica
Jednostavna tipkovnica

View File

View File

@ -4,11 +4,14 @@ Muncul dengan desain material dan tema gelap secara default, memberikan pengalam
Kurangnya akses internet memberi Anda lebih banyak privasi, keamanan, dan stabilitas daripada aplikasi lain. Tidak mengandung iklan atau izin yang tidak perlu. Ini sepenuhnya sumber-terbuka, menyediakan warna yang dapat disesuaikan.
<b>Lihat rangkaian lengkap Simple Tools di sini:</b>
Lihat rangkaian lengkap Simple Tools di sini:
https://www.simplemobiletools.com
<b>Facebook:</b>
Facebook:
https://www.facebook.com/simplemobiletools
<b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools
Reddit:
https://www.reddit.com/r/SimpleMobileTools
Telegram:
https://t.me/SimpleMobileTools

Binary file not shown.

After

Width:  |  Height:  |  Size: 636 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 527 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 660 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 482 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 865 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 865 KiB

View File

@ -1 +1 @@
Keyboard mudah untuk mengisi teks, karakter special dan nomor apa saja
Keyboard mudah untuk mengisi teks, karakter special dan nomor apa saja

View File

@ -0,0 +1 @@
Simple Keyboard

View File

View File

@ -1 +0,0 @@
Simple Keyboard

View File

@ -1 +1 @@
Tastiera facile per inserire tutti i tipi di testo, caratteri speciali e numeri
Tastiera facile per inserire tutti i tipi di testo, caratteri speciali e numeri

View File

@ -0,0 +1 @@
Tastiera semplice

View File

@ -1 +0,0 @@
Tastiera semplice

View File

@ -4,11 +4,14 @@
完全にオープンソースで、カラーもカスタマイズ可能。
<b>シンプルツールの一覧はこちらをご覧ください: </b>
シンプルツールの一覧はこちらをご覧ください:
https://www.simplemobiletools.com
<b>Facebook: </b>
Facebook:
https://www.facebook.com/simplemobiletools
<b> Reddit: </b>
Reddit:
https://www.reddit.com/r/SimpleMobileTools
Telegram:
https://t.me/SimpleMobileTools

View File

@ -1 +1 @@
あらゆるテキスト、特殊文字、数字を入力するための簡単なキーボード
あらゆるテキスト、特殊文字、数字を入力するための簡単なキーボード

View File

@ -0,0 +1 @@
シンプル キーボード

View File

@ -1 +0,0 @@
シンプル キーボード

View File

@ -4,11 +4,14 @@ It comes with material design and dark theme by default, provides great user exp
Contains no ads or unnecessary permissions. It is fully opensource, provides customizable colors.
<b>Check out the full suite of Simple Tools here:</b>
Check out the full suite of Simple Tools here:
https://www.simplemobiletools.com
<b>Facebook:</b>
Facebook:
https://www.facebook.com/simplemobiletools
<b>Reddit:</b>
Reddit:
https://www.reddit.com/r/SimpleMobileTools
Telegram:
https://t.me/SimpleMobileTools

View File

@ -1 +1 @@
Paprasta klaviatūra, skirta įterpti visokio tipo tekstus, simbolius ir skaičius
Paprasta klaviatūra, skirta įterpti visokio tipo tekstus, simbolius ir skaičius

View File

@ -1 +1 @@
Paprasta klaviatūra
Paprasta klaviatūra

View File

View File

@ -6,11 +6,14 @@ De app heeft geen toegang tot het internet nodig en voorziet van meer privacy, v
Bevat geen advertenties of onnodige machtigingen. Volledig open-source. Kleuren van de app kunnen worden aangepast.
<b>Probeer ook eens de andere apps van Simple Tools:</b>
Probeer ook eens de andere apps van Simple Tools:
https://www.simplemobiletools.com
<b>Facebook:</b>
Facebook:
https://www.facebook.com/simplemobiletools
<b>Reddit:</b>
Reddit:
https://www.reddit.com/r/SimpleMobileTools
Telegram:
https://t.me/SimpleMobileTools

View File

@ -1 +1 @@
Handig toetsenbord voor het invoeren van tekst, speciale karakters en nummers
Handig toetsenbord voor het invoeren van tekst, speciale karakters en nummers

View File

@ -0,0 +1 @@
Eenvoudig Toetsenbord

Some files were not shown because too many files have changed in this diff Show More