diff --git a/app/build.gradle b/app/build.gradle
index 4286e810..3676ac02 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -65,4 +65,6 @@ dependencies {
implementation 'com.github.SimpleMobileTools:Simple-Commons:8bcb4d3851'
implementation 'org.greenrobot:eventbus:3.3.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
+ implementation 'androidx.appcompat:appcompat:1.6.1'
+ implementation 'com.google.android.material:material:1.4.0'
}
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 0043c09e..6a937b86 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -7,9 +7,7 @@
-
-
@@ -26,7 +24,10 @@
android:roundIcon="@mipmap/ic_launcher"
android:supportsRtl="true"
android:theme="@style/AppTheme">
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
-
+
-
+
-
-
+
-
-
+
-
-
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/java/com/simplemobiletools/flashlight/MorseFlashActivity.kt b/app/src/main/java/com/simplemobiletools/flashlight/MorseFlashActivity.kt
new file mode 100644
index 00000000..87e8fe65
--- /dev/null
+++ b/app/src/main/java/com/simplemobiletools/flashlight/MorseFlashActivity.kt
@@ -0,0 +1,148 @@
+package com.simplemobiletools.flashlight
+
+import android.hardware.camera2.CameraManager
+import androidx.appcompat.app.AppCompatActivity
+import android.os.Bundle
+import android.widget.EditText
+import kotlinx.android.synthetic.main.activity_morse_flash.*
+
+class MorseFlashActivity : AppCompatActivity() {
+ override fun onCreate(savedInstanceState: Bundle?) {
+ super.onCreate(savedInstanceState)
+ setContentView(R.layout.activity_morse_flash)
+
+ var _u = 200L
+ val MSG = arrayListOf(_u)
+ val editText_UserInput = findViewById(R.id.editText_UserInput)
+ val morseAlphabet = mapOf(
+ 'a' to ".-",
+ 'b' to "-...",
+ 'c' to "-.-.",
+ 'd' to "-..",
+ 'e' to ".",
+ 'f' to "..-.",
+ 'g' to "--.",
+ 'h' to "....",
+ 'i' to "..",
+ 'j' to ".---",
+ 'k' to "-.-",
+ 'l' to ".-..",
+ 'm' to "--",
+ 'n' to "-.",
+ 'o' to "---",
+ 'p' to ".--.",
+ 'q' to "--.-",
+ 'r' to ".-.",
+ 's' to "...",
+ 't' to "-",
+ 'u' to "..-",
+ 'v' to "...-",
+ 'w' to ".--",
+ 'x' to "-..-",
+ 'y' to "-.--",
+ 'z' to "--..",
+ 'A' to ".-",
+ 'B' to "-...",
+ 'C' to "-.-.",
+ 'D' to "-..",
+ 'E' to ".",
+ 'F' to "..-.",
+ 'G' to "--.",
+ 'H' to "....",
+ 'I' to "..",
+ 'J' to ".---",
+ 'K' to "-.-",
+ 'L' to ".-..",
+ 'M' to "--",
+ 'N' to "-.",
+ 'O' to "---",
+ 'P' to ".--.",
+ 'Q' to "--.-",
+ 'R' to ".-.",
+ 'S' to "...",
+ 'T' to "-",
+ 'U' to "..-",
+ 'V' to "...-",
+ 'W' to ".--",
+ 'X' to "-..-",
+ 'Y' to "-.--",
+ 'Z' to "--..",
+ '1' to ".----",
+ '2' to "..---",
+ '3' to "...--",
+ '4' to "....-",
+ '5' to ".....",
+ '6' to "-....",
+ '7' to "--...",
+ '8' to "---..",
+ '9' to "----.",
+ '0' to "-----"
+ )
+
+ var resultMorseCode = " "
+
+ val cameraManager = getSystemService(CAMERA_SERVICE) as CameraManager
+ val cameraId = cameraManager.cameraIdList[0]
+
+
+ btn_morseFlash.setOnClickListener{
+ val text_user = editText_UserInput.text
+
+ System.out.println("Saisie Utilisateur ====> "+ text_user)
+
+ resultMorseCode = text_user.map { if (it == ' ') "/" else morseAlphabet[it] }.joinToString(" ")
+ textView_translation.setText(resultMorseCode)
+
+ System.out.println("Traduction MORSE ====> "+ resultMorseCode)
+
+ MSG.clear()
+
+ System.out.println("MSG vide ====> " + MSG)
+
+ for (i in resultMorseCode.indices) {
+ if (resultMorseCode[i] == '/'){
+ cameraManager.setTorchMode(cameraId, false)
+ System.out.println("flash OFF")
+ MSG.add(_u*7)
+ Thread.sleep(_u*7)
+ }
+ else if (resultMorseCode[i]==' '){
+ cameraManager.setTorchMode(cameraId, false)
+ System.out.println("flash OFF")
+ if(resultMorseCode[i+1]!='/' && resultMorseCode[i-1]!='/'){
+ Thread.sleep(_u*3)
+ MSG.add(_u*3)
+ }}
+
+ else if (resultMorseCode[i]=='-'){
+ cameraManager.setTorchMode(cameraId, true)
+ System.out.println("flash ON")
+ MSG.add(_u*3)
+ Thread.sleep(_u*3)
+ cameraManager.setTorchMode(cameraId, false)
+ System.out.println("flash Off")
+ if(i+1 " + MSG)
+ }
+ }
+}
diff --git a/app/src/main/kotlin/com/simplemobiletools/flashlight/activities/BrightDisplayActivity.kt b/app/src/main/kotlin/com/simplemobiletools/flashlight/activities/BrightDisplayActivity.kt
index 06594e5e..27006344 100644
--- a/app/src/main/kotlin/com/simplemobiletools/flashlight/activities/BrightDisplayActivity.kt
+++ b/app/src/main/kotlin/com/simplemobiletools/flashlight/activities/BrightDisplayActivity.kt
@@ -2,6 +2,7 @@ package com.simplemobiletools.flashlight.activities
import android.content.pm.ActivityInfo
import android.graphics.drawable.ColorDrawable
+import android.hardware.camera2.CameraManager
import android.os.Bundle
import android.view.WindowManager
import com.simplemobiletools.commons.dialogs.ColorPickerDialog
diff --git a/app/src/main/kotlin/com/simplemobiletools/flashlight/activities/MainActivity.kt b/app/src/main/kotlin/com/simplemobiletools/flashlight/activities/MainActivity.kt
index 1313ed1c..2a57dd87 100644
--- a/app/src/main/kotlin/com/simplemobiletools/flashlight/activities/MainActivity.kt
+++ b/app/src/main/kotlin/com/simplemobiletools/flashlight/activities/MainActivity.kt
@@ -7,8 +7,10 @@ import android.content.pm.ShortcutInfo
import android.graphics.drawable.Icon
import android.graphics.drawable.LayerDrawable
import android.os.Bundle
+import android.view.View
import android.view.WindowManager
import android.widget.ImageView
+import com.google.android.material.snackbar.Snackbar
import com.simplemobiletools.commons.extensions.*
import com.simplemobiletools.commons.helpers.LICENSE_EVENT_BUS
import com.simplemobiletools.commons.helpers.PERMISSION_CAMERA
@@ -16,6 +18,7 @@ import com.simplemobiletools.commons.helpers.isNougatMR1Plus
import com.simplemobiletools.commons.helpers.isNougatPlus
import com.simplemobiletools.commons.models.FAQItem
import com.simplemobiletools.flashlight.BuildConfig
+import com.simplemobiletools.flashlight.MorseFlashActivity
import com.simplemobiletools.flashlight.R
import com.simplemobiletools.flashlight.extensions.config
import com.simplemobiletools.flashlight.helpers.CameraTorchListener
@@ -65,6 +68,10 @@ class MainActivity : SimpleActivity() {
toggleStroboscope(true)
}
+ morse_btn.setOnClickListener {
+ startActivity(Intent(applicationContext, MorseFlashActivity::class.java))
+ }
+
stroboscope_btn.setOnClickListener {
toggleStroboscope(false)
}
diff --git a/app/src/main/res/drawable/ic_morse_vector.xml b/app/src/main/res/drawable/ic_morse_vector.xml
new file mode 100644
index 00000000..052742e9
--- /dev/null
+++ b/app/src/main/res/drawable/ic_morse_vector.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml
index 1547162d..ebc79eba 100644
--- a/app/src/main/res/layout/activity_main.xml
+++ b/app/src/main/res/layout/activity_main.xml
@@ -66,10 +66,23 @@
android:textStyle="bold"
app:layout_constraintBottom_toTopOf="@+id/stroboscope_btn"
app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintHorizontal_bias="0.5"
+ app:layout_constraintHorizontal_bias="0.379"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/bright_display_btn" />
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/values-ar/strings.xml b/app/src/main/res/values-ar/strings.xml
index dfd12775..14eb70d8 100644
--- a/app/src/main/res/values-ar/strings.xml
+++ b/app/src/main/res/values-ar/strings.xml
@@ -10,8 +10,11 @@
إظهار زر ستروبوسكوبإظهار زر SOSقم بتشغيل المصباح عند بدء التشغيل
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-az/strings.xml b/app/src/main/res/values-az/strings.xml
index ae9c96b7..a6ff2485 100644
--- a/app/src/main/res/values-az/strings.xml
+++ b/app/src/main/res/values-az/strings.xml
@@ -10,8 +10,11 @@
Stroboskop düyməsi göstərShow an SOS buttonBaşlanğıcda fənəri aç
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-be/strings.xml b/app/src/main/res/values-be/strings.xml
index 5f8e0797..1c1da88b 100644
--- a/app/src/main/res/values-be/strings.xml
+++ b/app/src/main/res/values-be/strings.xml
@@ -10,8 +10,11 @@
Паказваць кнопку страбаскопаПаказваць кнопку СОСУключаць ліхтарык пры запуску
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-bg/strings.xml b/app/src/main/res/values-bg/strings.xml
index 8d0e812e..b0fc76f9 100644
--- a/app/src/main/res/values-bg/strings.xml
+++ b/app/src/main/res/values-bg/strings.xml
@@ -10,8 +10,11 @@
Покажи стробинг бутонПоказване на SOS бутонВключване на фенер при стартиране
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-ca/strings.xml b/app/src/main/res/values-ca/strings.xml
index 4076afcf..05509572 100644
--- a/app/src/main/res/values-ca/strings.xml
+++ b/app/src/main/res/values-ca/strings.xml
@@ -10,8 +10,11 @@
Mostra un botó d\'estroboscopiMostra un botó de SOSActiva la llanterna a l\'inici
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml
index 32cb487c..354d0e79 100644
--- a/app/src/main/res/values-cs/strings.xml
+++ b/app/src/main/res/values-cs/strings.xml
@@ -10,8 +10,11 @@
Zobrazit tlačítko pro stroboskopZobrazit tlačítko SOSZapnout svítilnu po spuštění
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-cy/strings.xml b/app/src/main/res/values-cy/strings.xml
index d70cd822..17e8e07f 100644
--- a/app/src/main/res/values-cy/strings.xml
+++ b/app/src/main/res/values-cy/strings.xml
@@ -10,8 +10,11 @@
Dangos botwm strobosgopShow an SOS buttonTroi\'r fflacholau ymlaen wrth ddechrau
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-da/strings.xml b/app/src/main/res/values-da/strings.xml
index d392cbd6..7d4c37f5 100644
--- a/app/src/main/res/values-da/strings.xml
+++ b/app/src/main/res/values-da/strings.xml
@@ -10,8 +10,11 @@
Vis en stroboskop-knapVis en SOS-knapSlå lommelygte til ved start
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml
index 2f4f1878..55b7c843 100644
--- a/app/src/main/res/values-de/strings.xml
+++ b/app/src/main/res/values-de/strings.xml
@@ -10,8 +10,11 @@
Schaltfläche für Stroboskop zeigenEine SOS-Schaltfläche zeigenTaschenlampe beim Start einschalten
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-el/strings.xml b/app/src/main/res/values-el/strings.xml
index 4e715fd4..135b70bc 100644
--- a/app/src/main/res/values-el/strings.xml
+++ b/app/src/main/res/values-el/strings.xml
@@ -10,8 +10,11 @@
Προβολή κουμπιού στροβοσκοπίουΠροβολή κουμπιού SOSΆνοιγμα του φακού κατά την εκκίνηση
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-eo/strings.xml b/app/src/main/res/values-eo/strings.xml
index 5cf0e2bf..de44e11f 100644
--- a/app/src/main/res/values-eo/strings.xml
+++ b/app/src/main/res/values-eo/strings.xml
@@ -10,8 +10,11 @@
Show a stroboscope buttonShow an SOS buttonTurn flashlight on at startup
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml
index a44ebb66..5accc98f 100644
--- a/app/src/main/res/values-es/strings.xml
+++ b/app/src/main/res/values-es/strings.xml
@@ -10,8 +10,11 @@
Mostrar botón de estroboscopioMostrar un botón de SOSEncender la linterna al inicio
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-et/strings.xml b/app/src/main/res/values-et/strings.xml
index 0be7081b..34a77f49 100644
--- a/app/src/main/res/values-et/strings.xml
+++ b/app/src/main/res/values-et/strings.xml
@@ -10,8 +10,11 @@
Näita stroboskoobi nuppuNäita SOS-nuppuRakenduse käivitamisel lülita taskulamp sisse
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-fi/strings.xml b/app/src/main/res/values-fi/strings.xml
index 1785a818..c6e85677 100644
--- a/app/src/main/res/values-fi/strings.xml
+++ b/app/src/main/res/values-fi/strings.xml
@@ -10,8 +10,11 @@
Näytä stroboskooppipainikeNäytä SOS-painikeKytke taskulamppu päälle käynnistyksen yhteydessä
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml
index 9287a1fa..50411f18 100644
--- a/app/src/main/res/values-fr/strings.xml
+++ b/app/src/main/res/values-fr/strings.xml
@@ -10,8 +10,11 @@
Afficher un bouton stroboscopeAfficher un bouton SOSActiver la lampe de poche au démarrage
+
+ Morse Code Flash
+ Entrez votre message ici
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-gl/strings.xml b/app/src/main/res/values-gl/strings.xml
index 67ca0793..b481c726 100644
--- a/app/src/main/res/values-gl/strings.xml
+++ b/app/src/main/res/values-gl/strings.xml
@@ -10,8 +10,11 @@
Mostrar un botón estroboscopioMostrar un botón de SOSAcendela lanterna ao iniciar
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-hr/strings.xml b/app/src/main/res/values-hr/strings.xml
index efe45f5d..a72b6ecc 100644
--- a/app/src/main/res/values-hr/strings.xml
+++ b/app/src/main/res/values-hr/strings.xml
@@ -10,8 +10,11 @@
Prikaži gumb za stroboskopPrikaži SOS gumbUključi svjetiljku pri pokretanju
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml
index 9a3fe55a..bf6afed2 100644
--- a/app/src/main/res/values-hu/strings.xml
+++ b/app/src/main/res/values-hu/strings.xml
@@ -10,8 +10,11 @@
Stroboszkóp gomb megjelenítéseSOS gomb megjelenítéseZseblámpa bekapcsolása indításkor
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-in/strings.xml b/app/src/main/res/values-in/strings.xml
index 6eafd734..41fa3157 100644
--- a/app/src/main/res/values-in/strings.xml
+++ b/app/src/main/res/values-in/strings.xml
@@ -10,8 +10,11 @@
Tampilkan tombol stroboscopeTampilkan tombol SOSNyalakan senter saat memulai
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-is/strings.xml b/app/src/main/res/values-is/strings.xml
index a91207e0..02075af9 100644
--- a/app/src/main/res/values-is/strings.xml
+++ b/app/src/main/res/values-is/strings.xml
@@ -10,4 +10,7 @@
Show a stroboscope buttonShow an SOS buttonTurn flashlight on at startup
+
+ Morse Code Flash
+ Enter your message here
diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml
index 023e51b6..ba8fed28 100644
--- a/app/src/main/res/values-it/strings.xml
+++ b/app/src/main/res/values-it/strings.xml
@@ -10,8 +10,11 @@
Mostra un pulsante per l\'effetto stroboscopicoMostra un pulsante SOSAccendi la torcia all\'avvio
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-iw/strings.xml b/app/src/main/res/values-iw/strings.xml
index fc9a3430..7c6c3302 100644
--- a/app/src/main/res/values-iw/strings.xml
+++ b/app/src/main/res/values-iw/strings.xml
@@ -10,8 +10,11 @@
הצג כפתור סטרובוסקופהצג כפתור SOSהדלק את הפנס בעת ההפעלה
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml
index 253b2ab1..6e34ff12 100644
--- a/app/src/main/res/values-ja/strings.xml
+++ b/app/src/main/res/values-ja/strings.xml
@@ -10,8 +10,11 @@
ストロボボタンを表示SOSボタンを表示起動時にフラッシュライトを点灯
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-ko-rKR/strings.xml b/app/src/main/res/values-ko-rKR/strings.xml
index 6b0b97fd..1dfc3780 100644
--- a/app/src/main/res/values-ko-rKR/strings.xml
+++ b/app/src/main/res/values-ko-rKR/strings.xml
@@ -10,8 +10,11 @@
스트로보 스코프 버튼 활성화Show an SOS buttonTurn flashlight on at startup
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-lt/strings.xml b/app/src/main/res/values-lt/strings.xml
index be439d95..af859395 100644
--- a/app/src/main/res/values-lt/strings.xml
+++ b/app/src/main/res/values-lt/strings.xml
@@ -10,8 +10,11 @@
Rodyti stroboskopo mygtukąRodyti SOS mygtukąĮjungti žibintuvėlį paleidus programėlę
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-ml/strings.xml b/app/src/main/res/values-ml/strings.xml
index bbd7b3fe..5f8714fd 100644
--- a/app/src/main/res/values-ml/strings.xml
+++ b/app/src/main/res/values-ml/strings.xml
@@ -10,8 +10,11 @@
ഒരു സ്ട്രോബോസ്കോപ്പ് ബട്ടൺ കാണിക്കുകSOS ബട്ടൺ കാണിക്കുകആരംഭത്തിൽ ടോർച്ച്ഓണാക്കുക
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-nb-rNO/strings.xml b/app/src/main/res/values-nb-rNO/strings.xml
index 722683e1..0cc8ddaf 100644
--- a/app/src/main/res/values-nb-rNO/strings.xml
+++ b/app/src/main/res/values-nb-rNO/strings.xml
@@ -10,8 +10,11 @@
Vis en stroboskop-knappVis SOS-knappSkru på lommelykt ved oppstart
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml
index 5f0feb39..5c6598f1 100644
--- a/app/src/main/res/values-nl/strings.xml
+++ b/app/src/main/res/values-nl/strings.xml
@@ -10,8 +10,11 @@
Knop voor stroboscoop tonenKnop voor SOS-noodsignaal tonenZaklamp bij starten aanzetten
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-pa-rPK/strings.xml b/app/src/main/res/values-pa-rPK/strings.xml
index 3dc95fd5..185fcdad 100644
--- a/app/src/main/res/values-pa-rPK/strings.xml
+++ b/app/src/main/res/values-pa-rPK/strings.xml
@@ -10,4 +10,7 @@
سٹروبوسکوپ بٹن دکھاؤایساوایس بٹن دکھاؤجدوں شروع کرن ٹورچ نوں چالو کرو
+
+ Morse Code Flash
+ Enter your message here
diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml
index 27eaf31c..8204daa8 100644
--- a/app/src/main/res/values-pl/strings.xml
+++ b/app/src/main/res/values-pl/strings.xml
@@ -10,8 +10,11 @@
Pokazuj przycisk stroboskopuPokazuj przycisk SOSWłączaj latarkę przy uruchomieniu
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml
index 63b9a4bc..aca5e9bb 100644
--- a/app/src/main/res/values-pt-rBR/strings.xml
+++ b/app/src/main/res/values-pt-rBR/strings.xml
@@ -10,8 +10,11 @@
Mostrar o botão do EstroboscópioMostrar o botão de SOSLigar a lanterna ao iniciar o app
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-pt-rPT/strings.xml b/app/src/main/res/values-pt-rPT/strings.xml
index d9dafabb..8756a412 100644
--- a/app/src/main/res/values-pt-rPT/strings.xml
+++ b/app/src/main/res/values-pt-rPT/strings.xml
@@ -10,8 +10,11 @@
Mostrar botão do estroboscópioMostrar botão de SOSAcender a lanterna ao iniciar
+
+ Morse Code Flash
+ digite uma mensagem aqui
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-pt/strings.xml b/app/src/main/res/values-pt/strings.xml
index bda673ee..12b02418 100644
--- a/app/src/main/res/values-pt/strings.xml
+++ b/app/src/main/res/values-pt/strings.xml
@@ -10,8 +10,11 @@
Mostrar botão do estroboscópioMostrar botão de SOSAcender a lanterna ao iniciar
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-ro/strings.xml b/app/src/main/res/values-ro/strings.xml
index ccc8a2b7..881755e9 100644
--- a/app/src/main/res/values-ro/strings.xml
+++ b/app/src/main/res/values-ro/strings.xml
@@ -10,8 +10,11 @@
Afișaţi un buton pentru stroboscopAfișați un buton SOSPorniți lanterna la pornire
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml
index 26a2c81d..8b12e85e 100644
--- a/app/src/main/res/values-ru/strings.xml
+++ b/app/src/main/res/values-ru/strings.xml
@@ -10,8 +10,11 @@
Показать кнопку стробоскопаПоказать кнопку SOSВключать фонарик при запуске
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-sk/strings.xml b/app/src/main/res/values-sk/strings.xml
index e918bb88..79666034 100644
--- a/app/src/main/res/values-sk/strings.xml
+++ b/app/src/main/res/values-sk/strings.xml
@@ -10,8 +10,11 @@
Zobraziť tlačidlo pre stroboskopZobraziť tlačidlo SOSAktivovať baterku po spustení
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-sl/strings.xml b/app/src/main/res/values-sl/strings.xml
index e9a7dea9..7976ed4b 100644
--- a/app/src/main/res/values-sl/strings.xml
+++ b/app/src/main/res/values-sl/strings.xml
@@ -10,4 +10,7 @@
Prikaži gumb stroboskopaPrikaz gumba SOSVklop svetilke ob zagonu
+
+ Morse Code Flash
+ Enter your message here
diff --git a/app/src/main/res/values-sr/strings.xml b/app/src/main/res/values-sr/strings.xml
index 14c4fd0f..c44202de 100644
--- a/app/src/main/res/values-sr/strings.xml
+++ b/app/src/main/res/values-sr/strings.xml
@@ -10,4 +10,7 @@
Прикажи дугме за стробоскопПрикажи СОС дугмеУкључите батеријску лампу при покретању
+
+ Morse Code Flash
+ Enter your message here
diff --git a/app/src/main/res/values-sv/strings.xml b/app/src/main/res/values-sv/strings.xml
index 330c4a80..85529493 100644
--- a/app/src/main/res/values-sv/strings.xml
+++ b/app/src/main/res/values-sv/strings.xml
@@ -10,8 +10,11 @@
Visa en stroboskopknappVisa en SOS-knappSlå på ficklampan vid start
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-th/strings.xml b/app/src/main/res/values-th/strings.xml
index e0f0ef01..95a13340 100644
--- a/app/src/main/res/values-th/strings.xml
+++ b/app/src/main/res/values-th/strings.xml
@@ -10,8 +10,11 @@
Show a stroboscope buttonShow an SOS buttonTurn flashlight on at startup
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-tr/strings.xml b/app/src/main/res/values-tr/strings.xml
index dadd0bba..d102d490 100644
--- a/app/src/main/res/values-tr/strings.xml
+++ b/app/src/main/res/values-tr/strings.xml
@@ -10,8 +10,11 @@
Stroboskop düğmesini gösterSOS düğmesini gösterBaşlangıçta feneri aç
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-uk/strings.xml b/app/src/main/res/values-uk/strings.xml
index e2880770..67dc12d7 100644
--- a/app/src/main/res/values-uk/strings.xml
+++ b/app/src/main/res/values-uk/strings.xml
@@ -10,8 +10,11 @@
Показувати кнопку стробоскопаПоказати кнопку SOSВмикати ліхтарик при запуску
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml
index 893bd80e..99da7f17 100644
--- a/app/src/main/res/values-zh-rCN/strings.xml
+++ b/app/src/main/res/values-zh-rCN/strings.xml
@@ -10,8 +10,11 @@
显示频闪仪按钮显示紧急求助按钮启动时打开手电筒
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml
index 04489b11..f161d631 100644
--- a/app/src/main/res/values-zh-rTW/strings.xml
+++ b/app/src/main/res/values-zh-rTW/strings.xml
@@ -10,8 +10,11 @@
顯示閃爍效果按鈕顯示SOS按鈕啟動時打開手電筒
+
+ Morse Code Flash
+ Enter your message here
-
\ No newline at end of file
+
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index ece81036..95a13340 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -10,6 +10,9 @@
Show a stroboscope buttonShow an SOS buttonTurn flashlight on at startup
+
+ Morse Code Flash
+ Enter your message here