diff --git a/app/build.gradle b/app/build.gradle index 0ca0d29e1..f90c9cc0d 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -46,7 +46,7 @@ ext { } dependencies { - implementation 'com.simplemobiletools:commons:3.15.0' + implementation 'com.simplemobiletools:commons:3.15.4' implementation 'joda-time:joda-time:2.9.9' implementation 'com.facebook.stetho:stetho:1.5.0' implementation 'com.android.support:multidex:1.0.3' diff --git a/app/src/main/kotlin/com/simplemobiletools/calendar/activities/SettingsActivity.kt b/app/src/main/kotlin/com/simplemobiletools/calendar/activities/SettingsActivity.kt index 58a984037..6fa3f9cac 100644 --- a/app/src/main/kotlin/com/simplemobiletools/calendar/activities/SettingsActivity.kt +++ b/app/src/main/kotlin/com/simplemobiletools/calendar/activities/SettingsActivity.kt @@ -307,27 +307,27 @@ class SettingsActivity : SimpleActivity() { } private fun setupUseSameSnooze() { - settings_snooze_delay_holder.beVisibleIf(config.useSameSnooze) + settings_snooze_time_holder.beVisibleIf(config.useSameSnooze) settings_use_same_snooze.isChecked = config.useSameSnooze settings_use_same_snooze_holder.setOnClickListener { settings_use_same_snooze.toggle() config.useSameSnooze = settings_use_same_snooze.isChecked - settings_snooze_delay_holder.beVisibleIf(config.useSameSnooze) + settings_snooze_time_holder.beVisibleIf(config.useSameSnooze) } } private fun setupSnoozeDelay() { updateSnoozeText() - settings_snooze_delay_holder.setOnClickListener { - showEventReminderDialog(config.snoozeDelay, true) { - config.snoozeDelay = it + settings_snooze_time_holder.setOnClickListener { + showEventReminderDialog(config.snoozeTime, true) { + config.snoozeTime = it updateSnoozeText() } } } private fun updateSnoozeText() { - settings_snooze_delay.text = res.getQuantityString(R.plurals.by_minutes, config.snoozeDelay, config.snoozeDelay) + settings_snooze_delay.text = res.getQuantityString(R.plurals.by_minutes, config.snoozeTime, config.snoozeTime) } private fun getHoursString(hours: Int): String { diff --git a/app/src/main/kotlin/com/simplemobiletools/calendar/activities/SnoozeReminderActivity.kt b/app/src/main/kotlin/com/simplemobiletools/calendar/activities/SnoozeReminderActivity.kt index 27f4b9bbc..00285a0b5 100644 --- a/app/src/main/kotlin/com/simplemobiletools/calendar/activities/SnoozeReminderActivity.kt +++ b/app/src/main/kotlin/com/simplemobiletools/calendar/activities/SnoozeReminderActivity.kt @@ -12,10 +12,10 @@ class SnoozeReminderActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) - showEventReminderDialog(config.snoozeDelay, true, cancelCallback = { dialogCancelled() }) { + showEventReminderDialog(config.snoozeTime, true, cancelCallback = { dialogCancelled() }) { val eventId = intent.getIntExtra(EVENT_ID, 0) val event = dbHelper.getEventWithId(eventId) - config.snoozeDelay = it + config.snoozeTime = it rescheduleReminder(event, it) finishActivity() } diff --git a/app/src/main/kotlin/com/simplemobiletools/calendar/dialogs/RepeatLimitTypePickerDialog.kt b/app/src/main/kotlin/com/simplemobiletools/calendar/dialogs/RepeatLimitTypePickerDialog.kt index 865091359..691bd6b32 100644 --- a/app/src/main/kotlin/com/simplemobiletools/calendar/dialogs/RepeatLimitTypePickerDialog.kt +++ b/app/src/main/kotlin/com/simplemobiletools/calendar/dialogs/RepeatLimitTypePickerDialog.kt @@ -11,9 +11,9 @@ import com.simplemobiletools.calendar.extensions.getNowSeconds import com.simplemobiletools.calendar.extensions.seconds import com.simplemobiletools.calendar.helpers.Formatter import com.simplemobiletools.commons.extensions.getDialogTheme -import com.simplemobiletools.commons.extensions.isLollipopPlus import com.simplemobiletools.commons.extensions.setupDialogStuff import com.simplemobiletools.commons.extensions.value +import com.simplemobiletools.commons.helpers.isLollipopPlus import kotlinx.android.synthetic.main.dialog_repeat_limit_type_picker.view.* import org.joda.time.DateTime import java.util.* @@ -40,10 +40,10 @@ class RepeatLimitTypePickerDialog(val activity: Activity, var repeatLimit: Int, .setPositiveButton(R.string.ok, { dialogInterface, i -> confirmRepetition() }) .setNegativeButton(R.string.cancel, null) .create().apply { - activity.setupDialogStuff(view, this) { - activity.currentFocus?.clearFocus() - } - } + activity.setupDialogStuff(view, this) { + activity.currentFocus?.clearFocus() + } + } } private fun getCheckedItem() = when { @@ -86,7 +86,7 @@ class RepeatLimitTypePickerDialog(val activity: Activity, var repeatLimit: Int, val datepicker = DatePickerDialog(activity, activity.getDialogTheme(), repetitionLimitDateSetListener, repeatLimitDateTime.year, repeatLimitDateTime.monthOfYear - 1, repeatLimitDateTime.dayOfMonth) - if (activity.isLollipopPlus()) { + if (isLollipopPlus()) { datepicker.datePicker.firstDayOfWeek = if (activity.config.isSundayFirst) Calendar.SUNDAY else Calendar.MONDAY } diff --git a/app/src/main/kotlin/com/simplemobiletools/calendar/extensions/Context.kt b/app/src/main/kotlin/com/simplemobiletools/calendar/extensions/Context.kt index 2ad685347..de454b106 100644 --- a/app/src/main/kotlin/com/simplemobiletools/calendar/extensions/Context.kt +++ b/app/src/main/kotlin/com/simplemobiletools/calendar/extensions/Context.kt @@ -31,6 +31,10 @@ import com.simplemobiletools.calendar.receivers.CalDAVSyncReceiver import com.simplemobiletools.calendar.receivers.NotificationReceiver import com.simplemobiletools.calendar.services.SnoozeService import com.simplemobiletools.commons.extensions.* +import com.simplemobiletools.commons.helpers.isKitkatPlus +import com.simplemobiletools.commons.helpers.isLollipopPlus +import com.simplemobiletools.commons.helpers.isMarshmallowPlus +import com.simplemobiletools.commons.helpers.isOreoPlus import org.joda.time.DateTime import org.joda.time.DateTimeZone import java.io.File @@ -186,7 +190,7 @@ fun Context.notifyEvent(event: Event) { @SuppressLint("NewApi") private fun getNotification(context: Context, pendingIntent: PendingIntent, event: Event, content: String): Notification { val channelId = "reminder_channel" - if (context.isOreoPlus()) { + if (isOreoPlus()) { val notificationManager = context.getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager val name = context.resources.getString(R.string.event_reminders) val importance = NotificationManager.IMPORTANCE_HIGH @@ -218,7 +222,7 @@ private fun getNotification(context: Context, pendingIntent: PendingIntent, even .setChannelId(channelId) .addAction(R.drawable.ic_snooze, context.getString(R.string.snooze), getSnoozePendingIntent(context, event)) - if (context.isLollipopPlus()) { + if (isLollipopPlus()) { builder.setVisibility(Notification.VISIBILITY_PUBLIC) } diff --git a/app/src/main/kotlin/com/simplemobiletools/calendar/helpers/Config.kt b/app/src/main/kotlin/com/simplemobiletools/calendar/helpers/Config.kt index 42e0d0bc9..919659d9f 100644 --- a/app/src/main/kotlin/com/simplemobiletools/calendar/helpers/Config.kt +++ b/app/src/main/kotlin/com/simplemobiletools/calendar/helpers/Config.kt @@ -48,14 +48,6 @@ class Config(context: Context) : BaseConfig(context) { get() = prefs.getInt(REMINDER_MINUTES_3, REMINDER_OFF) set(defaultReminderMinutes3) = prefs.edit().putInt(REMINDER_MINUTES_3, defaultReminderMinutes3).apply() - var useSameSnooze: Boolean - get() = prefs.getBoolean(USE_SAME_SNOOZE, false) - set(useSameSnooze) = prefs.edit().putBoolean(USE_SAME_SNOOZE, useSameSnooze).apply() - - var snoozeDelay: Int - get() = prefs.getInt(SNOOZE_DELAY, 10) - set(snoozeDelay) = prefs.edit().putInt(SNOOZE_DELAY, snoozeDelay).apply() - var displayPastEvents: Int get() = prefs.getInt(DISPLAY_PAST_EVENTS, 0) set(displayPastEvents) = prefs.edit().putInt(DISPLAY_PAST_EVENTS, displayPastEvents).apply() diff --git a/app/src/main/kotlin/com/simplemobiletools/calendar/helpers/Constants.kt b/app/src/main/kotlin/com/simplemobiletools/calendar/helpers/Constants.kt index c3d303665..844d6f4cc 100644 --- a/app/src/main/kotlin/com/simplemobiletools/calendar/helpers/Constants.kt +++ b/app/src/main/kotlin/com/simplemobiletools/calendar/helpers/Constants.kt @@ -47,10 +47,8 @@ const val FONT_SIZE = "font_size" const val CALDAV_SYNC = "caldav_sync" const val CALDAV_SYNCED_CALENDAR_IDS = "caldav_synced_calendar_ids" const val LAST_USED_CALDAV_CALENDAR = "last_used_caldav_calendar" -const val SNOOZE_DELAY = "snooze_delay" const val DISPLAY_PAST_EVENTS = "display_past_events" const val REPLACE_DESCRIPTION = "replace_description" -const val USE_SAME_SNOOZE = "use_same_snooze" // repeat_rule for monthly repetition const val REPEAT_MONTH_SAME_DAY = 1 // ie 25th every month diff --git a/app/src/main/kotlin/com/simplemobiletools/calendar/services/SnoozeService.kt b/app/src/main/kotlin/com/simplemobiletools/calendar/services/SnoozeService.kt index 32ebf1e6e..a16cbe568 100644 --- a/app/src/main/kotlin/com/simplemobiletools/calendar/services/SnoozeService.kt +++ b/app/src/main/kotlin/com/simplemobiletools/calendar/services/SnoozeService.kt @@ -11,6 +11,6 @@ class SnoozeService : IntentService("Snooze") { override fun onHandleIntent(intent: Intent) { val eventId = intent.getIntExtra(EVENT_ID, 0) val event = dbHelper.getEventWithId(eventId) - rescheduleReminder(event, config.snoozeDelay) + rescheduleReminder(event, config.snoozeTime) } } diff --git a/app/src/main/res/layout/activity_settings.xml b/app/src/main/res/layout/activity_settings.xml index fc69d28ca..fd09879ae 100644 --- a/app/src/main/res/layout/activity_settings.xml +++ b/app/src/main/res/layout/activity_settings.xml @@ -269,7 +269,7 @@ + android:text="@string/snooze_time"/> War a-seblant n\'ho peus darvoud ebet da zont. Gallout a rit ouzhpennañ reoù gant an afell \"Mui\" en traoñ. Mont da hiziv - Daleañ Deiziataer miziek @@ -169,8 +168,6 @@ Goubredañ CalDAV Roll an darvoudoù Skrammañ darvoudoù an amzer tremenet - Always use same snooze interval - Daleañ an adc\'halv eus Replace event description with location Delete all events Are you sure you want to delete all events? This will leave your event types and other settings intact. diff --git a/app/src/main/res/values-cs/strings.xml b/app/src/main/res/values-cs/strings.xml index 57603bfd2..0264fffe9 100644 --- a/app/src/main/res/values-cs/strings.xml +++ b/app/src/main/res/values-cs/strings.xml @@ -11,7 +11,6 @@ Nemáte žádné nadcházející události. Přidejte událost tlačítkem Plus dole. Přejít na dnešek - Snooze Měsíční kalendář @@ -172,8 +171,6 @@ CalDAV sync Seznamy událostí Zobrazit minulé události - Always use same snooze interval - Odložit připomenutí pomocí funkce Snooze by Replace event description with location Delete all events Are you sure you want to delete all events? This will leave your event types and other settings intact. diff --git a/app/src/main/res/values-da/strings.xml b/app/src/main/res/values-da/strings.xml index a38bd7024..153505b02 100644 --- a/app/src/main/res/values-da/strings.xml +++ b/app/src/main/res/values-da/strings.xml @@ -11,7 +11,6 @@ Du ser ikke ud til at have nogen forestående begivenheder. Du kan tilføje nogle med plus-knappen nederst. Gå til i dag - Snooze Månedlig kalender @@ -169,8 +168,6 @@ CalDAV sync Begivenhedsliste Vis overståede begivenheder - Brug altid samme snooze-tid - Udsæt påmindelsen med en snooze på Erstat beskrivelse med sted Slet alle begivenheder Er du sikker på at du vil slette alle begivenheder? Dine begivenhedstyper og andre indstillinger vil forblive intakte. diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml index c0efb2630..8f167d915 100644 --- a/app/src/main/res/values-de/strings.xml +++ b/app/src/main/res/values-de/strings.xml @@ -11,7 +11,6 @@ Keine anstehenden Termine Du kannst neue Termine mit dem Hinzufügen Button unten rechts erstellen. Gehe zu Heute - Snooze Monatskalender @@ -169,8 +168,6 @@ CalDAV Synchronisierung Terminlisten Vergangene Termine anzeigen - Immer dasselbe Snooze-Intervall nutzen - Erinnerung mit Snooze verschieben um Ersetze Terminbeschreibung mit Ort Alle Termine löschen Bist du sicher, dass du alle Termine löschen willst? Deine Termintypen und Einstellungen bleiben erhalten. diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml index 5790dcada..abf14b018 100644 --- a/app/src/main/res/values-es/strings.xml +++ b/app/src/main/res/values-es/strings.xml @@ -11,7 +11,6 @@ Parece que no tienes ningún evento próximo. Puede añadir eventos con el botón Más en la parte inferior. Ir al día de hoy - Snooze Calendario mensual @@ -169,8 +168,6 @@ Sincronizar CalDAV Listas de eventos Mostrar eventos pasados - Always use same snooze interval - Retrasar recordatorio durante Replace event description with location Delete all events Are you sure you want to delete all events? This will leave your event types and other settings intact. diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml index 93e75def7..470d70df3 100644 --- a/app/src/main/res/values-fr/strings.xml +++ b/app/src/main/res/values-fr/strings.xml @@ -11,7 +11,6 @@ Il semblerait que vous n\'ayez aucun événement à venir. Vous pouvez ajouter des événements avec le bouton + en bas. Aller à aujourd\'hui - Sommeiller Calendrier mensuel @@ -169,8 +168,6 @@ Synchronisation CalDAV Listes d\'événements Afficher les événements du passé - Toujours utiliser le même intervalle de répétition - Reporter le rappel avec Snooze de Remplacer la description de l\'événement par l\'emplacement Supprimer tous les événements Êtes-vous sûr de vouloir supprimer tous les événements? Cela laissera vos types d\'événements et autres paramètres intacts. diff --git a/app/src/main/res/values-gl/strings.xml b/app/src/main/res/values-gl/strings.xml index 0e1e59b8a..53768cf49 100644 --- a/app/src/main/res/values-gl/strings.xml +++ b/app/src/main/res/values-gl/strings.xml @@ -11,7 +11,6 @@ Semella que non ten ningún evento próximo. Pode engadir algún co botón Máis na parte inferior. Ir ao día de hoxe - Retrasar Calendario mensual @@ -169,8 +168,6 @@ CalDAV sincr. Listas de eventos Mostrar eventos do pasado - Always use same snooze interval - Retrasar recordatorio con Snooze Replace event description with location Delete all events Are you sure you want to delete all events? This will leave your event types and other settings intact. diff --git a/app/src/main/res/values-hi-rIN/strings.xml b/app/src/main/res/values-hi-rIN/strings.xml index eaa677aef..90e25e0a0 100644 --- a/app/src/main/res/values-hi-rIN/strings.xml +++ b/app/src/main/res/values-hi-rIN/strings.xml @@ -11,7 +11,6 @@ Seems like you don\'t have any upcoming events. You can add some with the Plus button at the bottom. Go to today - Snooze Calendar monthly @@ -170,8 +169,6 @@ CalDAV sync Event lists Display events from the past - Always use same snooze interval - Postpone reminder with Snooze by Replace event description with location Delete all events Are you sure you want to delete all events? This will leave your event types and other settings intact. diff --git a/app/src/main/res/values-hu/strings.xml b/app/src/main/res/values-hu/strings.xml index fe41682c8..b7572e368 100644 --- a/app/src/main/res/values-hu/strings.xml +++ b/app/src/main/res/values-hu/strings.xml @@ -11,7 +11,6 @@ Seems like you don\'t have any upcoming events. You can add some with the Plus button at the bottom. Go to today - Snooze Havi naptár @@ -169,8 +168,6 @@ CalDAV sync Event lists Display events from the past - Always use same snooze interval - Postpone reminder with Snooze by Replace event description with location Delete all events Are you sure you want to delete all events? This will leave your event types and other settings intact. diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml index d9c409bf2..a126e343b 100644 --- a/app/src/main/res/values-it/strings.xml +++ b/app/src/main/res/values-it/strings.xml @@ -11,7 +11,6 @@ Seems like you don\'t have any upcoming events. You can add some with the Plus button at the bottom. Go to today - Snooze Calendario mensile @@ -169,8 +168,6 @@ CalDAV sync Event lists Display events from the past - Always use same snooze interval - Postpone reminder with Snooze by Replace event description with location Delete all events Are you sure you want to delete all events? This will leave your event types and other settings intact. diff --git a/app/src/main/res/values-iw/strings.xml b/app/src/main/res/values-iw/strings.xml index 5f9eaaf70..52216991c 100644 --- a/app/src/main/res/values-iw/strings.xml +++ b/app/src/main/res/values-iw/strings.xml @@ -11,7 +11,6 @@ נראה שאין לך אירועים בזמן הקרוב. ניתן להוסיף אירועים בעזרת כפתור הפלוס למטה. Go to today - Snooze לוח השנה חודשית @@ -170,8 +169,6 @@ CalDAV sync Event lists Display events from the past - Always use same snooze interval - Postpone reminder with Snooze by Replace event description with location Delete all events Are you sure you want to delete all events? This will leave your event types and other settings intact. diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml index f2dcb4337..696d9657b 100644 --- a/app/src/main/res/values-ja/strings.xml +++ b/app/src/main/res/values-ja/strings.xml @@ -11,7 +11,6 @@ Seems like you don\'t have any upcoming events. You can add some with the Plus button at the bottom. Go to today - Snooze カレンダー月 @@ -169,8 +168,6 @@ CalDAV sync Event lists Display events from the past - Always use same snooze interval - Postpone reminder with Snooze by Replace event description with location Delete all events Are you sure you want to delete all events? This will leave your event types and other settings intact. diff --git a/app/src/main/res/values-ko/strings.xml b/app/src/main/res/values-ko/strings.xml index b5a074ff0..8759cd792 100644 --- a/app/src/main/res/values-ko/strings.xml +++ b/app/src/main/res/values-ko/strings.xml @@ -11,7 +11,6 @@ 다가올 이벤트가 없는 것 같습니다. 아래의 더하기 버튼을 눌러 추가할 수 있습니다. 오늘로 이동 - 스누즈 월별 달력 @@ -169,8 +168,6 @@ CalDAV 동기화 Event lists 과거의 이벤트 표시 - Always use same snooze interval - 스누즈 알림 시간 Replace event description with location Delete all events Are you sure you want to delete all events? This will leave your event types and other settings intact. diff --git a/app/src/main/res/values-nb/strings.xml b/app/src/main/res/values-nb/strings.xml index 0d61af57e..7edce51d2 100644 --- a/app/src/main/res/values-nb/strings.xml +++ b/app/src/main/res/values-nb/strings.xml @@ -11,7 +11,6 @@ Ser ut som du ikke har noen kommende hendelser. Du kan legge til noen med Pluss-knappen nederst. Gå til idag - Snooze Månedskalender @@ -169,8 +168,6 @@ CalDAV-synkronisering Hendelseslister Vis hendelser fra fortiden - Bruk alltid samme intervall for Snooze - Utsett påminnelser med Snooze Erstatt hendelsesbeskrivelse med sted Slett alle hendelser Er du sikker på at du vil slette alle hendelser? Dine hendelsestyper og andre innstillinger blir beholdt. diff --git a/app/src/main/res/values-nl/strings.xml b/app/src/main/res/values-nl/strings.xml index 91b44597e..4ce528815 100644 --- a/app/src/main/res/values-nl/strings.xml +++ b/app/src/main/res/values-nl/strings.xml @@ -11,7 +11,6 @@ Niets gepland. Gebruik de plus-knop om iets te plannen. Naar vandaag - Uitstellen Maandweergave @@ -169,8 +168,6 @@ CalDAV-synchronisatie Afsprakenlijst Afgelopen afspraken tonen - Altijd dezelfde interval voor uitstellen gebruiken - Herinnering uitstellen met Beschrijving vervangen door locatie van afspraken Alle afspraken verwijderen Alle afspraken verwijderen? Afspraaktypes en andere instellingen blijven behouden. diff --git a/app/src/main/res/values-no/strings.xml b/app/src/main/res/values-no/strings.xml index ce61211f5..d3f1d1dca 100644 --- a/app/src/main/res/values-no/strings.xml +++ b/app/src/main/res/values-no/strings.xml @@ -11,7 +11,6 @@ Ser ut som du ikke har noen kommende hendelser. Du kan legge til noen med Pluss-knappen nederst. Gå til idag - Snooze Månedskalender @@ -169,8 +168,6 @@ CalDAV-synkronisering Hendelseslister Vis hendelser fra fortiden - Always use same snooze interval - Utsett påminnelser med Snooze med Replace event description with location Delete all events Are you sure you want to delete all events? This will leave your event types and other settings intact. diff --git a/app/src/main/res/values-pl/strings.xml b/app/src/main/res/values-pl/strings.xml index 7730fcc0d..4608d372e 100644 --- a/app/src/main/res/values-pl/strings.xml +++ b/app/src/main/res/values-pl/strings.xml @@ -11,7 +11,6 @@ Wygląda na to, że nie masz żadnych nadchodzących wydarzeń. Możesz je dodawać za pomocą przycisku \"+\" znajdującego na dole. Przejdź do dnia dzisiejszego - Drzemka Prosty Kalendarz - widok miesięczny @@ -171,8 +170,6 @@ Synchronizacja CalDAV Lista wydarzeń Pokazuj wydarzenia z przeszłości -    Zawsze używaj tego samego przedziału przypomnienia - Opóźnij przypomnienie o    Zamieniaj opis wydarzenia na lokalizację    Usuń wszystkie wydarzenia    Czy na pewno mam usunąć wszystkie wydarzenia? Nie naruszy to typów wydarzeń i innych ustawień. diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml index fc8765cfc..0c2a8e043 100644 --- a/app/src/main/res/values-pt-rBR/strings.xml +++ b/app/src/main/res/values-pt-rBR/strings.xml @@ -11,7 +11,6 @@ Parece que você não tem eventos próximos. Pode-se adicionar um evento através do botão existente na base da tela. Ir para hoje - Snooze Calendário mensal @@ -169,8 +168,6 @@ CalDAV sync Event lists Display events from the past - Always use same snooze interval - Postpone reminder with Snooze by Replace event description with location Delete all events Are you sure you want to delete all events? This will leave your event types and other settings intact. diff --git a/app/src/main/res/values-pt/strings.xml b/app/src/main/res/values-pt/strings.xml index 5cab54f3e..572283ffa 100644 --- a/app/src/main/res/values-pt/strings.xml +++ b/app/src/main/res/values-pt/strings.xml @@ -11,7 +11,6 @@ Parece que você não tem eventos para breve. Pode adicionar um evento através do botão existente na base do ecrã. Ir para hoje - Snooze Calendário mensal @@ -169,8 +168,6 @@ Sincronização CalDAV Lista de eventos Mostrar eventos passados - Usar sempre o mesmo intervalo para snooze - Adiar lembrete com a opção Snooze Substituir descrição pela localização do evento Apagar todos os eventos Tem a certeza de que deseja apagar todos os eventos? Esta ação não afeta os tipos de eventos nem as outras definições. diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml index 4e674f2a8..a45cbb4d7 100644 --- a/app/src/main/res/values-ru/strings.xml +++ b/app/src/main/res/values-ru/strings.xml @@ -11,7 +11,6 @@ Похоже, у вас нет предстоящих событий. Вы можете их добавить, нажав на кнопку с плюсом внизу. Сегодня - Отложить Календарь на месяц @@ -175,8 +174,6 @@ Синхронизация по CalDAV Списки событий Показывать прошедшие события - Всегда использовать один и тот же интервал повтора - Отложить напоминание на Заменить описание события местоположением Удалить все события Вы действительно хотите удалить все события? Это не затронет ваши типы событий и другие настройки. diff --git a/app/src/main/res/values-sk/strings.xml b/app/src/main/res/values-sk/strings.xml index d63b3b710..e507c29f7 100644 --- a/app/src/main/res/values-sk/strings.xml +++ b/app/src/main/res/values-sk/strings.xml @@ -11,7 +11,6 @@ Nemáte žiadne naplánované udalosti. Viete ich pridať pomocou tlačidla Plus v pravom dolnom rohu. Prejsť na dnešok - Odložiť Kalendár mesačný @@ -172,8 +171,6 @@ CalDAV synchronizácia Zoznamy udalostí Zobraziť minulé udalosti spred - Použiť stále rovnaký odklad s Odložiť - Posunúť pripomienku s Odložiť o Nahradiť popis udalosti miestom Odstrániť všetky udalosti Ste si istý, že chcete odstrániť všetky udalosti? Všetky typy udalostí a nastavenia ostanú nedotknuté. diff --git a/app/src/main/res/values-sv/strings.xml b/app/src/main/res/values-sv/strings.xml index b16b3f501..82d1335e5 100644 --- a/app/src/main/res/values-sv/strings.xml +++ b/app/src/main/res/values-sv/strings.xml @@ -11,7 +11,6 @@ Det ser ut som att du inte har några kommande händelser. Du kan lägga till händelser via plus-knappen som du ser längst ner. Gå till idag - Snooza Kalender månadsvis @@ -169,8 +168,6 @@ CalDAV-synkronisering Händelselistor Visa tidigare händelser - Använd alltid samma snooze-intervall - Skjut upp påminnelse med Snooza Ersätt händelsebeskrivning med plats Ta bort alla händelser Är du säker på att du vill ta bort alla händelser? Dina händelsetyper och andra inställningar påverkas inte av borttagningen. diff --git a/app/src/main/res/values-tr/strings.xml b/app/src/main/res/values-tr/strings.xml index 6ec5894a4..8d2cf01f8 100644 --- a/app/src/main/res/values-tr/strings.xml +++ b/app/src/main/res/values-tr/strings.xml @@ -11,7 +11,6 @@ Gelecekteki etkinliğiniz yok gibi görünüyor. Artı düğmesinin alt kısmında bazılarını ekleyebilirsiniz. Bugüne git - Snooze Aylık takvim @@ -169,8 +168,6 @@ CalDAV sync Event lists Display events from the past - Always use same snooze interval - Postpone reminder with Snooze by Replace event description with location Delete all events Are you sure you want to delete all events? This will leave your event types and other settings intact. diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml index b5cd34cbd..9011520f5 100644 --- a/app/src/main/res/values-zh-rTW/strings.xml +++ b/app/src/main/res/values-zh-rTW/strings.xml @@ -11,7 +11,6 @@ 看來你近期沒有任何活動。 你可以用底部的[加號]按鈕添加一些活動。 前往今天 - 延遲 月曆 @@ -169,8 +168,6 @@ CalDAV同步 活動列表 顯示過去的活動 - 總是使用相同延遲間隔 - 再次提醒的延遲時間 活動描述改成地點 刪除全部活動 你確定要刪除全部活動嗎?會完整留下你的活動類型和其他設定。 diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 454db1cd9..24b4aed3b 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -11,7 +11,6 @@ Seems like you don\'t have any upcoming events. You can add some with the Plus button at the bottom. Go to today - Snooze Calendar monthly @@ -169,8 +168,6 @@ CalDAV sync Event lists Display events from the past - Always use same snooze interval - Postpone reminder with Snooze by Replace event description with location Delete all events Are you sure you want to delete all events? This will leave your event types and other settings intact.