adding a couple scheduled sending related improvements
This commit is contained in:
parent
d41c57093e
commit
3768a4195c
|
@ -27,7 +27,7 @@ class ScheduleSendDialog(private val activity: BaseSimpleActivity, private var d
|
|||
|
||||
init {
|
||||
arrayOf(view.subtitle, view.edit_time, view.edit_date).forEach { it.setTextColor(textColor) }
|
||||
arrayOf(view.dateIcon, view.timeIcon).forEach { it.applyColorFilter(textColor) }
|
||||
arrayOf(view.date_image, view.time_image).forEach { it.applyColorFilter(textColor) }
|
||||
view.edit_date.setOnClickListener { showDatePicker() }
|
||||
view.edit_time.setOnClickListener { showTimePicker() }
|
||||
updateTexts(dateTime ?: DateTime.now().plusHours(1))
|
||||
|
@ -53,7 +53,7 @@ class ScheduleSendDialog(private val activity: BaseSimpleActivity, private var d
|
|||
.setNegativeButton(R.string.cancel, null)
|
||||
.apply {
|
||||
previewShown = true
|
||||
activity.setupDialogStuff(view, this, R.string.schedule_send) { dialog ->
|
||||
activity.setupDialogStuff(view, this, R.string.schedule_message) { dialog ->
|
||||
previewDialog = dialog
|
||||
dialog.getButton(AlertDialog.BUTTON_POSITIVE).setOnClickListener {
|
||||
if (validateDateTime()) {
|
||||
|
|
|
@ -21,11 +21,12 @@
|
|||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
<androidx.appcompat.widget.AppCompatImageView
|
||||
android:id="@+id/dateIcon"
|
||||
android:layout_width="@dimen/date_time_icon_size"
|
||||
android:layout_height="@dimen/date_time_icon_size"
|
||||
android:layout_marginStart="@dimen/big_margin"
|
||||
android:id="@+id/date_image"
|
||||
android:layout_width="@dimen/social_logo"
|
||||
android:layout_height="@dimen/social_logo"
|
||||
android:layout_marginStart="@dimen/activity_margin"
|
||||
android:layout_marginTop="@dimen/big_margin"
|
||||
android:padding="@dimen/small_margin"
|
||||
android:src="@drawable/ic_calendar_month_vector"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/subtitle" />
|
||||
|
@ -34,44 +35,47 @@
|
|||
android:id="@+id/edit_date"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="@dimen/medium_margin"
|
||||
android:layout_marginEnd="@dimen/activity_margin"
|
||||
android:background="?attr/selectableItemBackground"
|
||||
android:ellipsize="end"
|
||||
android:includeFontPadding="false"
|
||||
android:padding="@dimen/small_margin"
|
||||
android:textSize="@dimen/date_time_text_size"
|
||||
app:layout_constraintBottom_toBottomOf="@+id/dateIcon"
|
||||
android:paddingStart="@dimen/medium_margin"
|
||||
android:paddingTop="@dimen/normal_margin"
|
||||
android:paddingEnd="@dimen/normal_margin"
|
||||
android:paddingBottom="@dimen/normal_margin"
|
||||
android:textSize="@dimen/big_text_size"
|
||||
app:layout_constraintBottom_toBottomOf="@+id/date_image"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toEndOf="@+id/dateIcon"
|
||||
app:layout_constraintTop_toTopOf="@+id/dateIcon"
|
||||
app:layout_constraintStart_toEndOf="@+id/date_image"
|
||||
app:layout_constraintTop_toTopOf="@+id/date_image"
|
||||
tools:text="25 sep, 2022" />
|
||||
|
||||
<androidx.appcompat.widget.AppCompatImageView
|
||||
android:id="@+id/timeIcon"
|
||||
android:layout_width="@dimen/date_time_icon_size"
|
||||
android:layout_height="@dimen/date_time_icon_size"
|
||||
android:layout_marginStart="@dimen/big_margin"
|
||||
android:layout_marginTop="@dimen/big_margin"
|
||||
android:id="@+id/time_image"
|
||||
android:layout_width="@dimen/social_logo"
|
||||
android:layout_height="@dimen/social_logo"
|
||||
android:layout_marginStart="@dimen/activity_margin"
|
||||
android:layout_marginTop="@dimen/activity_margin"
|
||||
android:padding="@dimen/small_margin"
|
||||
android:src="@drawable/ic_clock_vector"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/dateIcon" />
|
||||
app:layout_constraintTop_toBottomOf="@+id/date_image" />
|
||||
|
||||
<com.simplemobiletools.commons.views.MyTextView
|
||||
android:id="@+id/edit_time"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="@dimen/medium_margin"
|
||||
android:layout_marginEnd="@dimen/activity_margin"
|
||||
android:background="?attr/selectableItemBackground"
|
||||
android:ellipsize="end"
|
||||
android:includeFontPadding="false"
|
||||
android:padding="@dimen/small_margin"
|
||||
android:textSize="@dimen/date_time_text_size"
|
||||
app:layout_constraintBottom_toBottomOf="@+id/timeIcon"
|
||||
android:paddingStart="@dimen/medium_margin"
|
||||
android:paddingTop="@dimen/normal_margin"
|
||||
android:paddingEnd="@dimen/normal_margin"
|
||||
android:paddingBottom="@dimen/normal_margin"
|
||||
android:textSize="@dimen/big_text_size"
|
||||
app:layout_constraintBottom_toBottomOf="@+id/time_image"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toEndOf="@+id/timeIcon"
|
||||
app:layout_constraintTop_toTopOf="@+id/timeIcon"
|
||||
app:layout_constraintStart_toEndOf="@+id/time_image"
|
||||
app:layout_constraintTop_toTopOf="@+id/time_image"
|
||||
tools:text="07:00 AM" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
|
|
@ -35,10 +35,11 @@
|
|||
<string name="suggestions">اقتراحات</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<!-- Notifications -->
|
||||
|
|
|
@ -31,10 +31,11 @@
|
|||
<string name="suggestions">Suggestions</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<!-- Notifications -->
|
||||
|
|
|
@ -33,10 +33,11 @@
|
|||
<string name="suggestions">Прапановы</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<!-- Notifications -->
|
||||
|
|
|
@ -31,10 +31,11 @@
|
|||
<string name="suggestions">Предложения</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<!-- Notifications -->
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
<string name="suggestions">Suggeriments</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Missatge programat</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Programa l\'enviament</string>
|
||||
<string name="cancel_schedule_send">Cancel·la la programació de l\'enviament</string>
|
||||
<string name="must_pick_time_in_the_future">Cal triar una hora futura</string>
|
||||
|
|
|
@ -31,10 +31,11 @@
|
|||
<string name="suggestions">Suggestions</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<!-- Notifications -->
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
<string name="suggestions">Návrhy</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Naplánovaná zpráva</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Naplánovat odeslání</string>
|
||||
<string name="cancel_schedule_send">Zrušit plánované odeslání</string>
|
||||
<string name="must_pick_time_in_the_future">Musíte vybrat čas v budoucnosti</string>
|
||||
|
|
|
@ -31,10 +31,11 @@
|
|||
<string name="suggestions">Forslag</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<!-- Notifications -->
|
||||
|
|
|
@ -31,10 +31,11 @@
|
|||
<string name="suggestions">Vorschläge</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<!-- Notifications -->
|
||||
|
|
|
@ -31,10 +31,11 @@
|
|||
<string name="suggestions">Προτάσεις</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<!-- Notifications -->
|
||||
|
|
|
@ -31,10 +31,11 @@
|
|||
<string name="suggestions">Sugestoj</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<!-- Notifications -->
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
<string name="suggestions">Sugerencias</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Mensaje programado</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Programar envío</string>
|
||||
<string name="cancel_schedule_send">Cancelar el envío programado</string>
|
||||
<string name="must_pick_time_in_the_future">Debes elegir un momento en el futuro</string>
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
<string name="suggestions">Ettepanekud</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Ajastatud sõnum</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Ajasta saatmine</string>
|
||||
<string name="cancel_schedule_send">Tühista ajastatud saatmine</string>
|
||||
<string name="must_pick_time_in_the_future">Palun vali ajahetk tulevikust</string>
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
<string name="suggestions">Ehdotuksia</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Ajastettu viesti</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Ajasta lähetys</string>
|
||||
<string name="cancel_schedule_send">Peru ajastettu lähetys</string>
|
||||
<string name="must_pick_time_in_the_future">Valitse tuleva ajankohta</string>
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
<string name="suggestions">Suggestions</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Message planifié</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Envoi planifié</string>
|
||||
<string name="cancel_schedule_send">Annuler l\'envoi planifié</string>
|
||||
<string name="must_pick_time_in_the_future">Vous devez choisir une date dans le futur</string>
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
<string name="suggestions">Suxerencias</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Mensaxe programada</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Programar envío</string>
|
||||
<string name="cancel_schedule_send">Cancelar o envío programado</string>
|
||||
<string name="must_pick_time_in_the_future">Debes escoller un momento no futuro</string>
|
||||
|
|
|
@ -31,10 +31,11 @@
|
|||
<string name="suggestions">Suggestions</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<!-- Notifications -->
|
||||
|
|
|
@ -32,10 +32,11 @@
|
|||
<string name="suggestions">Prijedlozi</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<!-- Notifications -->
|
||||
|
|
|
@ -31,10 +31,11 @@
|
|||
<string name="suggestions">Javaslatok</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<!-- Notifications -->
|
||||
|
|
|
@ -30,10 +30,11 @@
|
|||
<string name="suggestions">Saran</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<!-- Notifications -->
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
<string name="suggestions">Suggerimenti</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Messaggio programmato</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Invio programmato</string>
|
||||
<string name="cancel_schedule_send">Annulla l\'invio programmato</string>
|
||||
<string name="must_pick_time_in_the_future">Devi scegliere un momento del futuro</string>
|
||||
|
|
|
@ -33,10 +33,11 @@
|
|||
<string name="suggestions">הצעות</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<!-- Notifications -->
|
||||
|
|
|
@ -30,10 +30,11 @@
|
|||
<string name="suggestions">おすすめ</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<!-- Notifications -->
|
||||
|
|
|
@ -31,10 +31,11 @@
|
|||
<string name="suggestions">Pasiūlymai</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<string name="me">Aš</string>
|
||||
|
|
|
@ -32,10 +32,11 @@
|
|||
<string name="suggestions">Suggestions</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<!-- Notifications -->
|
||||
|
|
|
@ -31,10 +31,11 @@
|
|||
<string name="suggestions">Suggestions</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<!-- Notifications -->
|
||||
|
|
|
@ -31,10 +31,11 @@
|
|||
<string name="suggestions">നിർദ്ദേശങ്ങൾ</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<!-- Notifications -->
|
||||
|
|
|
@ -31,10 +31,11 @@
|
|||
<string name="suggestions">Forslag</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<!-- Notifications -->
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
<string name="suggestions">Suggesties</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Ingepland bericht</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Verzending inplannen</string>
|
||||
<string name="cancel_schedule_send">Geplande verzending annuleren</string>
|
||||
<string name="must_pick_time_in_the_future">Kies een tijd in de toekomst</string>
|
||||
|
|
|
@ -33,6 +33,7 @@
|
|||
<string name="suggestions">Propozycje</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Zaplanowana wiadomość</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Zaplanuj wysłanie</string>
|
||||
<string name="cancel_schedule_send">Anuluj zaplanowane wysłanie</string>
|
||||
<string name="must_pick_time_in_the_future">Musisz wybrać czas w przyszłości</string>
|
||||
|
|
|
@ -32,10 +32,11 @@
|
|||
<string name="suggestions">Sugestões</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<!-- Notifications -->
|
||||
|
|
|
@ -32,10 +32,11 @@
|
|||
<string name="suggestions">Sugestões</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<!-- Notifications -->
|
||||
|
|
|
@ -32,10 +32,11 @@
|
|||
<string name="suggestions">Sugestii</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<!-- Notifications -->
|
||||
|
|
|
@ -33,6 +33,7 @@
|
|||
<string name="suggestions">Предложения</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Отложенная отправка</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Отложенная отправка</string>
|
||||
<string name="cancel_schedule_send">Отменить отложенную отправку</string>
|
||||
<string name="must_pick_time_in_the_future">Время должно быть в будущем</string>
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
<string name="suggestions">Návrhy</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Naplánovaná správa</string>
|
||||
<string name="schedule_message">Naplánovať správu</string>
|
||||
<string name="schedule_send">Naplánovať odoslanie</string>
|
||||
<string name="cancel_schedule_send">Zrušiť naplánované odoslanie</string>
|
||||
<string name="must_pick_time_in_the_future">Musíte zvoliť čas v budúcnosti</string>
|
||||
|
|
|
@ -33,10 +33,11 @@
|
|||
<string name="suggestions">Predlogi</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<!-- Notifications -->
|
||||
|
|
|
@ -31,10 +31,11 @@
|
|||
<string name="suggestions">Förslag</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<!-- Notifications -->
|
||||
|
|
|
@ -31,10 +31,11 @@
|
|||
<string name="suggestions">பரிந்துரைகள்</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<!-- Notifications -->
|
||||
|
|
|
@ -30,10 +30,11 @@
|
|||
<string name="suggestions">Suggestions</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<!-- Notifications -->
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
<string name="suggestions">Öneriler</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Zamanlanan mesaj</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Göndermeyi zamanla</string>
|
||||
<string name="cancel_schedule_send">Gönderme zamanlamasını iptal et</string>
|
||||
<string name="must_pick_time_in_the_future">Gelecekte bir zaman seçmelisiniz</string>
|
||||
|
|
|
@ -33,10 +33,11 @@
|
|||
<string name="suggestions">Пропозиція</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<!-- Notifications -->
|
||||
|
|
|
@ -30,6 +30,7 @@
|
|||
<string name="suggestions">建议</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">定时消息</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">定时发送</string>
|
||||
<string name="cancel_schedule_send">取消定时发送</string>
|
||||
<string name="must_pick_time_in_the_future">必须选择未来的时间</string>
|
||||
|
|
|
@ -30,10 +30,11 @@
|
|||
<string name="suggestions">建議</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<!-- Notifications -->
|
||||
|
|
|
@ -7,7 +7,5 @@
|
|||
<dimen name="remove_attachment_size">24dp</dimen>
|
||||
<dimen name="pin_icon_size">15dp</dimen>
|
||||
<dimen name="vcard_property_start_margin">64dp</dimen>
|
||||
<dimen name="date_time_icon_size">20dp</dimen>
|
||||
<dimen name="date_time_text_size">22sp</dimen>
|
||||
<dimen name="small_icon_size">20dp</dimen>
|
||||
</resources>
|
||||
|
|
|
@ -31,10 +31,11 @@
|
|||
<string name="suggestions">Suggestions</string>
|
||||
<!-- Schedule send -->
|
||||
<string name="scheduled_message">Scheduled message</string>
|
||||
<string name="schedule_message">Schedule message</string>
|
||||
<string name="schedule_send">Schedule send</string>
|
||||
<string name="cancel_schedule_send">Cancel schedule send</string>
|
||||
<string name="must_pick_time_in_the_future">You must pick a time in the future</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app in background</string>
|
||||
<string name="schedule_send_warning">Keep the phone on and make sure there is nothing killing the app while in background</string>
|
||||
<string name="update_message">Update message</string>
|
||||
<string name="send_now">Send now</string>
|
||||
<!-- Notifications -->
|
||||
|
|
Loading…
Reference in New Issue