Compare commits
8 Commits
chore/flor
...
release/v2
| Author | SHA1 | Date | |
|---|---|---|---|
| a82df3f6d0 | |||
| e0e3eb73b9 | |||
| 8a7a0af207 | |||
| 71a652ce3b | |||
| 5fa6eac1ad | |||
| a8aeae5f32 | |||
|
|
5771b603f2 | ||
|
|
5725989aff |
@@ -134,6 +134,7 @@ import de.jeanlucmakiola.floret.components.GroupedRow
|
||||
import de.jeanlucmakiola.calendula.ui.common.MILLIS_PER_DAY
|
||||
import de.jeanlucmakiola.floret.components.InlineTextField
|
||||
import de.jeanlucmakiola.floret.components.OptionCard
|
||||
import de.jeanlucmakiola.floret.components.OptionPicker
|
||||
import de.jeanlucmakiola.floret.components.Position
|
||||
import de.jeanlucmakiola.floret.components.positionOf
|
||||
import de.jeanlucmakiola.calendula.ui.common.REMINDER_PRESETS
|
||||
@@ -345,29 +346,29 @@ private fun SaveConflictDialog(
|
||||
onDiscard: () -> Unit,
|
||||
onDismiss: () -> Unit,
|
||||
) {
|
||||
AlertDialog(
|
||||
onDismissRequest = onDismiss,
|
||||
title = { Text(stringResource(R.string.event_edit_conflict_title)) },
|
||||
text = {
|
||||
Column(verticalArrangement = Arrangement.spacedBy(8.dp)) {
|
||||
Text(stringResource(R.string.event_edit_conflict_body))
|
||||
Spacer(Modifier.height(4.dp))
|
||||
OptionCard(
|
||||
label = stringResource(R.string.event_edit_conflict_overwrite),
|
||||
supportingText = stringResource(R.string.event_edit_conflict_overwrite_hint),
|
||||
FullScreenPicker(
|
||||
title = stringResource(R.string.event_edit_conflict_title),
|
||||
onDismiss = onDismiss,
|
||||
) {
|
||||
Text(
|
||||
text = stringResource(R.string.event_edit_conflict_body),
|
||||
style = MaterialTheme.typography.bodyMedium,
|
||||
color = MaterialTheme.colorScheme.onSurfaceVariant,
|
||||
modifier = Modifier.padding(horizontal = 24.dp, vertical = 8.dp),
|
||||
)
|
||||
GroupedRow(
|
||||
title = stringResource(R.string.event_edit_conflict_overwrite),
|
||||
summary = stringResource(R.string.event_edit_conflict_overwrite_hint),
|
||||
position = positionOf(0, 2),
|
||||
onClick = onOverwrite,
|
||||
)
|
||||
OptionCard(
|
||||
label = stringResource(R.string.event_edit_conflict_discard),
|
||||
supportingText = stringResource(R.string.event_edit_conflict_discard_hint),
|
||||
GroupedRow(
|
||||
title = stringResource(R.string.event_edit_conflict_discard),
|
||||
summary = stringResource(R.string.event_edit_conflict_discard_hint),
|
||||
position = positionOf(1, 2),
|
||||
onClick = onDiscard,
|
||||
)
|
||||
}
|
||||
},
|
||||
confirmButton = {
|
||||
TextButton(onClick = onDismiss) { Text(stringResource(R.string.dialog_cancel)) }
|
||||
},
|
||||
)
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -1064,24 +1065,19 @@ private fun FieldPickerDialog(
|
||||
onSelect: (EventFormField) -> Unit,
|
||||
onDismiss: () -> Unit,
|
||||
) {
|
||||
AlertDialog(
|
||||
onDismissRequest = onDismiss,
|
||||
title = { Text(stringResource(R.string.event_edit_more_fields)) },
|
||||
text = {
|
||||
Column(verticalArrangement = Arrangement.spacedBy(8.dp)) {
|
||||
hiddenFields.forEach { field ->
|
||||
OptionCard(
|
||||
label = stringResource(eventFormFieldLabel(field)),
|
||||
FullScreenPicker(
|
||||
title = stringResource(R.string.event_edit_more_fields),
|
||||
onDismiss = onDismiss,
|
||||
) {
|
||||
hiddenFields.forEachIndexed { index, field ->
|
||||
GroupedRow(
|
||||
title = stringResource(eventFormFieldLabel(field)),
|
||||
position = positionOf(index, hiddenFields.size),
|
||||
leading = { Icon(imageVector = eventFormFieldIcon(field), contentDescription = null) },
|
||||
onClick = { onSelect(field) },
|
||||
icon = eventFormFieldIcon(field),
|
||||
)
|
||||
}
|
||||
}
|
||||
},
|
||||
confirmButton = {
|
||||
TextButton(onClick = onDismiss) { Text(stringResource(R.string.dialog_cancel)) }
|
||||
},
|
||||
)
|
||||
}
|
||||
|
||||
/** Quick-pick lead times offered as chips in the reminder dialog. */
|
||||
@@ -1106,26 +1102,39 @@ private fun ReminderPickerDialog(
|
||||
?.takeIf { it in 1..999 }
|
||||
?.let { it * unit.minutesFactor }
|
||||
|
||||
AlertDialog(
|
||||
onDismissRequest = onDismiss,
|
||||
title = { Text(stringResource(R.string.event_edit_add_reminder)) },
|
||||
text = {
|
||||
FullScreenPicker(
|
||||
title = stringResource(R.string.event_edit_add_reminder),
|
||||
onDismiss = onDismiss,
|
||||
actions = {
|
||||
// The quick-pick list adds on tap; only the custom step needs Add.
|
||||
if (customMode) {
|
||||
TextButton(
|
||||
enabled = customMinutes != null && customMinutes !in alreadyChosen,
|
||||
onClick = { customMinutes?.let(onSelect) },
|
||||
) { Text(stringResource(R.string.event_edit_add)) }
|
||||
}
|
||||
},
|
||||
) {
|
||||
if (!customMode) {
|
||||
Column(verticalArrangement = Arrangement.spacedBy(8.dp)) {
|
||||
REMINDER_QUICK_PICKS.filterNot { it in alreadyChosen }.forEach { minutes ->
|
||||
OptionCard(
|
||||
label = reminderLabel(minutes),
|
||||
val presets = REMINDER_QUICK_PICKS.filterNot { it in alreadyChosen }
|
||||
val rowCount = presets.size + 1
|
||||
presets.forEachIndexed { index, minutes ->
|
||||
GroupedRow(
|
||||
title = reminderLabel(minutes),
|
||||
position = positionOf(index, rowCount),
|
||||
onClick = { onSelect(minutes) },
|
||||
)
|
||||
}
|
||||
OptionCard(
|
||||
label = stringResource(R.string.event_edit_reminder_custom),
|
||||
GroupedRow(
|
||||
title = stringResource(R.string.event_edit_reminder_custom),
|
||||
position = positionOf(rowCount - 1, rowCount),
|
||||
onClick = { customMode = true },
|
||||
labelColor = MaterialTheme.colorScheme.primary,
|
||||
)
|
||||
}
|
||||
} else {
|
||||
Row(verticalAlignment = Alignment.CenterVertically) {
|
||||
Row(
|
||||
verticalAlignment = Alignment.CenterVertically,
|
||||
modifier = Modifier.padding(horizontal = 24.dp, vertical = 8.dp),
|
||||
) {
|
||||
DialogAmountField(
|
||||
value = amountText,
|
||||
onValueChange = { amountText = it },
|
||||
@@ -1139,20 +1148,7 @@ private fun ReminderPickerDialog(
|
||||
)
|
||||
}
|
||||
}
|
||||
},
|
||||
confirmButton = {
|
||||
// The quick-pick list adds on tap; only the custom step needs Add.
|
||||
if (customMode) {
|
||||
TextButton(
|
||||
enabled = customMinutes != null && customMinutes !in alreadyChosen,
|
||||
onClick = { customMinutes?.let(onSelect) },
|
||||
) { Text(stringResource(R.string.event_edit_add)) }
|
||||
}
|
||||
},
|
||||
dismissButton = {
|
||||
TextButton(onClick = onDismiss) { Text(stringResource(R.string.dialog_cancel)) }
|
||||
},
|
||||
)
|
||||
}
|
||||
|
||||
/** How a custom recurrence ends; mirrors [RecurrenceEnd] in saveable form. */
|
||||
@@ -1222,33 +1218,46 @@ private fun RecurrencePickerDialog(
|
||||
null
|
||||
}
|
||||
|
||||
AlertDialog(
|
||||
onDismissRequest = onDismiss,
|
||||
title = { Text(stringResource(R.string.event_detail_recurrence)) },
|
||||
text = {
|
||||
FullScreenPicker(
|
||||
title = stringResource(R.string.event_detail_recurrence),
|
||||
onDismiss = onDismiss,
|
||||
actions = {
|
||||
// The preset list applies on tap; only the custom step needs OK.
|
||||
if (customMode) {
|
||||
TextButton(
|
||||
enabled = customResult != null,
|
||||
onClick = { customResult?.let(onSelect) },
|
||||
) { Text(stringResource(R.string.dialog_ok)) }
|
||||
}
|
||||
},
|
||||
) {
|
||||
if (!customMode) {
|
||||
Column(verticalArrangement = Arrangement.spacedBy(8.dp)) {
|
||||
OptionCard(
|
||||
label = stringResource(R.string.event_edit_recurrence_none),
|
||||
onClick = { onSelect(null) },
|
||||
val rowCount = RecurrenceFreq.entries.size + 2
|
||||
GroupedRow(
|
||||
title = stringResource(R.string.event_edit_recurrence_none),
|
||||
position = positionOf(0, rowCount),
|
||||
selected = current == null,
|
||||
onClick = { onSelect(null) },
|
||||
)
|
||||
RecurrenceFreq.entries.forEach { entry ->
|
||||
OptionCard(
|
||||
label = stringResource(recurrencePresetLabel(entry)),
|
||||
onClick = { onSelect(SimpleRecurrence(entry).toRRule()) },
|
||||
RecurrenceFreq.entries.forEachIndexed { index, entry ->
|
||||
GroupedRow(
|
||||
title = stringResource(recurrencePresetLabel(entry)),
|
||||
position = positionOf(index + 1, rowCount),
|
||||
selected = isPlainPreset && parsed?.freq == entry,
|
||||
onClick = { onSelect(SimpleRecurrence(entry).toRRule()) },
|
||||
)
|
||||
}
|
||||
OptionCard(
|
||||
label = stringResource(R.string.event_edit_recurrence_custom),
|
||||
onClick = { customMode = true },
|
||||
GroupedRow(
|
||||
title = stringResource(R.string.event_edit_recurrence_custom),
|
||||
position = positionOf(rowCount - 1, rowCount),
|
||||
selected = current != null && !isPlainPreset,
|
||||
labelColor = MaterialTheme.colorScheme.primary,
|
||||
onClick = { customMode = true },
|
||||
)
|
||||
}
|
||||
} else {
|
||||
Column(verticalArrangement = Arrangement.spacedBy(8.dp)) {
|
||||
Column(
|
||||
verticalArrangement = Arrangement.spacedBy(8.dp),
|
||||
modifier = Modifier.padding(horizontal = 24.dp),
|
||||
) {
|
||||
Row(verticalAlignment = Alignment.CenterVertically) {
|
||||
Text(
|
||||
text = stringResource(R.string.event_edit_recurrence_every),
|
||||
@@ -1270,45 +1279,50 @@ private fun RecurrencePickerDialog(
|
||||
)
|
||||
}
|
||||
if (freq == RecurrenceFreq.Weekly) {
|
||||
Spacer(Modifier.height(4.dp))
|
||||
WeekdayToggleRow(
|
||||
selected = daysMask.toDaySet(),
|
||||
onToggle = { day -> daysMask = daysMask xor day.toMaskBit() },
|
||||
locale = locale,
|
||||
)
|
||||
}
|
||||
Spacer(Modifier.height(4.dp))
|
||||
Text(
|
||||
text = stringResource(R.string.event_edit_recurrence_ends),
|
||||
style = MaterialTheme.typography.bodyMedium,
|
||||
color = MaterialTheme.colorScheme.onSurfaceVariant,
|
||||
)
|
||||
OptionCard(
|
||||
label = stringResource(R.string.event_edit_recurrence_end_never),
|
||||
onClick = { endMode = RecurrenceEndMode.Never },
|
||||
}
|
||||
GroupedRow(
|
||||
title = stringResource(R.string.event_edit_recurrence_end_never),
|
||||
position = positionOf(0, 3),
|
||||
selected = endMode == RecurrenceEndMode.Never,
|
||||
onClick = { endMode = RecurrenceEndMode.Never },
|
||||
)
|
||||
OptionCard(
|
||||
label = stringResource(R.string.event_edit_recurrence_end_until),
|
||||
onClick = {
|
||||
endMode = RecurrenceEndMode.Until
|
||||
showUntilPicker = true
|
||||
},
|
||||
supportingText = untilDate?.let {
|
||||
GroupedRow(
|
||||
title = stringResource(R.string.event_edit_recurrence_end_until),
|
||||
summary = untilDate?.let {
|
||||
remember(it, locale) {
|
||||
DateTimeFormatter.ofLocalizedDate(FormatStyle.MEDIUM)
|
||||
.withLocale(locale).format(it.toJavaLocalDate())
|
||||
}
|
||||
},
|
||||
position = positionOf(1, 3),
|
||||
selected = endMode == RecurrenceEndMode.Until,
|
||||
onClick = {
|
||||
endMode = RecurrenceEndMode.Until
|
||||
showUntilPicker = true
|
||||
},
|
||||
)
|
||||
OptionCard(
|
||||
label = stringResource(R.string.event_edit_recurrence_end_count),
|
||||
onClick = { endMode = RecurrenceEndMode.Count },
|
||||
GroupedRow(
|
||||
title = stringResource(R.string.event_edit_recurrence_end_count),
|
||||
position = positionOf(2, 3),
|
||||
selected = endMode == RecurrenceEndMode.Count,
|
||||
onClick = { endMode = RecurrenceEndMode.Count },
|
||||
)
|
||||
if (endMode == RecurrenceEndMode.Count) {
|
||||
Row(verticalAlignment = Alignment.CenterVertically) {
|
||||
Row(
|
||||
verticalAlignment = Alignment.CenterVertically,
|
||||
modifier = Modifier.padding(horizontal = 24.dp, vertical = 4.dp),
|
||||
) {
|
||||
DialogAmountField(
|
||||
value = countText,
|
||||
onValueChange = { countText = it },
|
||||
@@ -1323,20 +1337,6 @@ private fun RecurrencePickerDialog(
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
confirmButton = {
|
||||
// The preset list applies on tap; only the custom step needs OK.
|
||||
if (customMode) {
|
||||
TextButton(
|
||||
enabled = customResult != null,
|
||||
onClick = { customResult?.let(onSelect) },
|
||||
) { Text(stringResource(R.string.dialog_ok)) }
|
||||
}
|
||||
},
|
||||
dismissButton = {
|
||||
TextButton(onClick = onDismiss) { Text(stringResource(R.string.dialog_cancel)) }
|
||||
},
|
||||
)
|
||||
|
||||
if (showUntilPicker) {
|
||||
CalendarDatePickerDialog(
|
||||
@@ -1701,24 +1701,14 @@ private fun VisibilityPickerDialog(
|
||||
onSelect: (AccessLevel) -> Unit,
|
||||
onDismiss: () -> Unit,
|
||||
) {
|
||||
AlertDialog(
|
||||
onDismissRequest = onDismiss,
|
||||
title = { Text(stringResource(R.string.event_edit_visibility)) },
|
||||
text = {
|
||||
Column(verticalArrangement = Arrangement.spacedBy(8.dp)) {
|
||||
AccessLevel.entries.forEach { level ->
|
||||
OptionCard(
|
||||
label = stringResource(accessLevelLabel(level)),
|
||||
onClick = { onSelect(level) },
|
||||
icon = accessLevelIcon(level),
|
||||
selected = level == selected,
|
||||
)
|
||||
}
|
||||
}
|
||||
},
|
||||
confirmButton = {
|
||||
TextButton(onClick = onDismiss) { Text(stringResource(R.string.dialog_cancel)) }
|
||||
},
|
||||
OptionPicker(
|
||||
title = stringResource(R.string.event_edit_visibility),
|
||||
options = AccessLevel.entries.toList(),
|
||||
selected = selected,
|
||||
label = { stringResource(accessLevelLabel(it)) },
|
||||
onSelect = onSelect,
|
||||
onDismiss = onDismiss,
|
||||
leading = { Icon(imageVector = accessLevelIcon(it), contentDescription = null) },
|
||||
)
|
||||
}
|
||||
|
||||
@@ -1741,11 +1731,21 @@ private fun ColorPickerDialog(
|
||||
onDismiss: () -> Unit,
|
||||
) {
|
||||
val dark = isSystemInDarkTheme()
|
||||
AlertDialog(
|
||||
onDismissRequest = onDismiss,
|
||||
title = { Text(stringResource(R.string.event_edit_color)) },
|
||||
text = {
|
||||
Column(verticalArrangement = Arrangement.spacedBy(12.dp)) {
|
||||
FullScreenPicker(
|
||||
title = stringResource(R.string.event_edit_color),
|
||||
onDismiss = onDismiss,
|
||||
actions = {
|
||||
if (hasExplicitColor) {
|
||||
TextButton(onClick = onClear) {
|
||||
Text(stringResource(R.string.event_edit_color_reset))
|
||||
}
|
||||
}
|
||||
},
|
||||
) {
|
||||
Column(
|
||||
verticalArrangement = Arrangement.spacedBy(12.dp),
|
||||
modifier = Modifier.padding(horizontal = 24.dp, vertical = 8.dp),
|
||||
) {
|
||||
if (palette.isNotEmpty()) {
|
||||
ColorSwatchRow(
|
||||
colors = palette.map { it.argb },
|
||||
@@ -1772,20 +1772,7 @@ private fun ColorPickerDialog(
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
confirmButton = {
|
||||
TextButton(onClick = onDismiss) { Text(stringResource(R.string.dialog_cancel)) }
|
||||
},
|
||||
dismissButton = if (hasExplicitColor) {
|
||||
{
|
||||
TextButton(onClick = onClear) {
|
||||
Text(stringResource(R.string.event_edit_color_reset))
|
||||
}
|
||||
}
|
||||
} else {
|
||||
null
|
||||
},
|
||||
)
|
||||
}
|
||||
|
||||
private fun accessLevelIcon(level: AccessLevel): ImageVector = when (level) {
|
||||
|
||||
@@ -160,7 +160,7 @@ private enum class ChipAccent { Neutral, Primary, Tertiary }
|
||||
* Settings (M4), restructured in v2.3 into a category hub with sub-screens.
|
||||
* Both the hub and the sub-screens use a collapsing [LargeTopAppBar] and the
|
||||
* grouped-row card system. Calendars opens the separate manager hoisted in
|
||||
* [CalendarHost]; Language opens an inline OptionCard dialog; About is a card
|
||||
* [CalendarHost]; Language opens a full-screen picker; About is a card
|
||||
* at the top. A full-screen destination; [onBack] pops it.
|
||||
*/
|
||||
@Composable
|
||||
|
||||
@@ -220,7 +220,7 @@
|
||||
<string name="search_action">Suchen</string>
|
||||
<string name="search_hint">Termine suchen</string>
|
||||
<string name="search_back">Zurück</string>
|
||||
<string name="search_clear">Löschen</string>
|
||||
<string name="search_clear">Leeren</string>
|
||||
<string name="search_idle_hint">Durchsuche deine Termine nach Titel, Ort oder Notizen.</string>
|
||||
<string name="search_empty">Keine Termine passen zu „%1$s“.</string>
|
||||
<!-- Startbildschirm-Widgets -->
|
||||
@@ -330,7 +330,7 @@
|
||||
<string name="calendars_add">Kalender hinzufügen</string>
|
||||
<string name="calendars_synced_header">Synchronisierte Kalender</string>
|
||||
<string name="calendars_synced_hint">Diese stammen von Konten auf deinem Gerät. Erstelle und bearbeite sie in der jeweiligen App.</string>
|
||||
<string name="calendars_manage_in_app">Verwalten</string>
|
||||
<string name="calendars_manage_in_app">In der App verwalten</string>
|
||||
<string name="calendars_add_account">Konto hinzufügen</string>
|
||||
<string name="calendars_new_title">Neuer Kalender</string>
|
||||
<string name="calendars_edit_title">Kalender bearbeiten</string>
|
||||
@@ -394,10 +394,10 @@
|
||||
<item quantity="other">%d Tage</item>
|
||||
</plurals>
|
||||
<plurals name="duration_weeks">
|
||||
<item quantity="one">Woche</item>
|
||||
<item quantity="other">Wochen</item>
|
||||
<item quantity="one">%d Woche</item>
|
||||
<item quantity="other">%d Wochen</item>
|
||||
</plurals>
|
||||
<string name="settings_default_view">Standartansicht</string>
|
||||
<string name="settings_default_view">Standardansicht</string>
|
||||
<string name="settings_font_headings">Überschriften Schriftart</string>
|
||||
<string name="settings_font_system">Systemstandard</string>
|
||||
<string name="font_jetbrains_mono">JetBrains Mono</string>
|
||||
@@ -411,4 +411,67 @@
|
||||
<string name="settings_past_events_hide">Ausblenden</string>
|
||||
<string name="settings_agenda_header">Agenda</string>
|
||||
<string name="settings_special_dates_reminders">Erinnerungen</string>
|
||||
<string name="settings_font_body">Inhaltsschriftart</string>
|
||||
<string name="font_atkinson_hyperlegible">Atkinson Hyperlegible</string>
|
||||
<string name="font_lora">Lora</string>
|
||||
<string name="settings_font_custom_selected">Benutzerdefinierte Schriftart</string>
|
||||
<string name="settings_section_views">Ansichten</string>
|
||||
<string name="settings_quick_switch_header">Schnellwechselknopf</string>
|
||||
<string name="settings_quick_switch_hint">Wähle aus, durch welche Ansichten du mit dem Knopf oben rechts wechseln möchtest, und ziehe, um sie neu anzuordnen. Deaktivierte Ansichten bleiben über das Navigationsmenü erreichbar.</string>
|
||||
<string name="settings_drawer_order_header">Navigationsmenü</string>
|
||||
<string name="settings_drawer_order_hint">Ziehen, um die im Navigationsmenü aufgelisteten Ansichten neu anzuordnen.</string>
|
||||
<string name="reorder_drag_handle">Zum Neuanordnen ziehen</string>
|
||||
<string name="settings_calendar_reminders_title">Erinnerungen pro Kalender</string>
|
||||
<string name="settings_translate">Hilf beim Übersetzen</string>
|
||||
<string name="settings_translate_hint">Füge eine Sprache auf Weblate hinzu oder verbessere sie</string>
|
||||
<string name="settings_views_subtitle">Schnellwechsellnopf und Menüreihenfolge</string>
|
||||
<string name="settings_special_dates_subtitle">Kontakte-Geburtstage und Jubiläen</string>
|
||||
<string name="settings_section_special_dates">Besondere Termine von Kontakten</string>
|
||||
<string name="settings_special_dates_enable">Kontakttermine anzeigen</string>
|
||||
<string name="settings_special_dates_enable_hint">Spiegle die Geburtstage und andere Termine deiner Kontakte in lokale Kalender. Liest nur Kontakte auf diesem Gerät – es wird nichts hochgeladen und Ihre Kontakte werden nie geändert.</string>
|
||||
<string name="settings_special_dates_type_birthday">Geburtstage</string>
|
||||
<string name="settings_special_dates_type_anniversary">Jahrestage</string>
|
||||
<string name="settings_special_dates_type_custom">Andere Ereignisse</string>
|
||||
<string name="settings_special_dates_template">Titelformat</string>
|
||||
<string name="settings_special_dates_template_hint">Verwende {Name} für den Kontakt und {Jahr} für das Jahr (das Geburtsjahr oder das Anfangsjahr eines Jahrestages; versteckt, wenn unbekannt).</string>
|
||||
<string name="settings_special_dates_show_year">Jahr anzeigen</string>
|
||||
<string name="settings_special_dates_show_year_hint">{year} in Titel einfügen, wenn bekannt</string>
|
||||
<string name="settings_special_dates_sync_now">Jetzt synchronisieren</string>
|
||||
<string name="settings_special_dates_never_synced">Noch nicht synchronisiert</string>
|
||||
<string name="settings_special_dates_last_synced">Zuletzt synchronisiert %1$s</string>
|
||||
<string name="settings_special_dates_calendar_hint">Lege die Farbe und Sichtbarkeit jedes Kalenders in den Kalendereinstellungen fest.</string>
|
||||
<string name="settings_special_dates_paused_title">Pausiert</string>
|
||||
<string name="settings_calendar_reminders_managed_hint">In den besonderen Terminen der Kontakte setzen</string>
|
||||
<string name="settings_special_dates_paused_hint">Calendula kann deine Kontakte nicht mehr lesen, daher werden diese Kalender nicht aktualisiert.</string>
|
||||
<string name="settings_special_dates_disable_title">Kontakttermine deaktivieren?</string>
|
||||
<string name="settings_special_dates_disable_all_message">Dadurch werden die Kontaktterminkalender und ihre Ereignisse gelöscht. Alle von dir hinzugefügten Erinnerungen oder Notizen gehen verloren.</string>
|
||||
<string name="settings_special_dates_grant">Zugriff gewähren</string>
|
||||
<string name="settings_special_dates_disable_type_message">Dadurch werden der Kalender „%1$s“ und seine Ereignisse gelöscht. Alle von dir hinzugefügten Erinnerungen oder Notizen gehen verloren.</string>
|
||||
<string name="settings_special_dates_disable_confirm">Deaktivieren</string>
|
||||
<string name="dialog_save">Speichern</string>
|
||||
<string name="calendars_disable_hint">Deaktiviere einen Kalender, um ihn aus der App zu entfernen – seine Ereignisse, Filter und Auswahlmöglichkeiten. Es wird nichts gelöscht und du kannst ihn hier jederzeit wieder aktivieren.</string>
|
||||
<string name="calendars_show_in_app_a11y">„%1$s“ in der App anzeigen</string>
|
||||
<string name="calendars_account_menu_a11y">Weitere Optionen für %1$s</string>
|
||||
<string name="calendars_enable_all">Alle aktivieren</string>
|
||||
<string name="calendars_disable_all">Alle deaktivieren</string>
|
||||
<string name="calendars_auto_backup">Automatische Sicherung</string>
|
||||
<string name="calendars_auto_backup_hint">Exportiere deine lokalen Kalender regelmäßig als .ics-Datei in einen Ordner.</string>
|
||||
<string name="calendars_auto_backup_folder">Sicherungsordner</string>
|
||||
<string name="calendars_auto_backup_folder_unset">Tippe, um einen Ordner auszuwählen</string>
|
||||
<string name="calendars_auto_backup_interval">Intervall</string>
|
||||
<string name="calendars_auto_backup_every">Alle %1$s</string>
|
||||
<string name="calendars_auto_backup_interval_min">Mindestens 30 Minuten.</string>
|
||||
<string name="calendars_auto_backup_status_never">Noch keine automatische Sicherung</string>
|
||||
<string name="calendars_auto_backup_status_ok">Letzte Sicherung: %1$s</string>
|
||||
<string name="calendars_auto_backup_status_failed">Letzte Sicherung fehlgeschlagen: %1$s</string>
|
||||
<string name="backup_channel_name">Sicherung</string>
|
||||
<string name="backup_channel_description">Warnt, wenn automatische Sicherungen wiederholt fehlschlagen.</string>
|
||||
<string name="backup_failed_title">Automatische Sicherung fehlgeschlagen</string>
|
||||
<string name="backup_failed_text">Calendula konnte die Sicherungsdatei nicht schreiben. Überprüfe den Sicherungsordner in den Einstellungen.</string>
|
||||
<string name="special_dates_calendar_birthday">Geburtstage</string>
|
||||
<string name="special_dates_calendar_anniversary">Jahrestage</string>
|
||||
<string name="special_dates_calendar_custom">Besondere Termine</string>
|
||||
<string name="special_dates_default_title_birthday">Geburtstag von {name} ({year})</string>
|
||||
<string name="special_dates_default_title_anniversary">Jahrestag von {name} ({year})</string>
|
||||
<string name="special_dates_default_title_custom">{name}</string>
|
||||
</resources>
|
||||
|
||||
@@ -456,4 +456,11 @@
|
||||
<string name="settings_special_dates_disable_type_message">Questo cancella il calendario “%1$s” ed i suoi eventi. Ogni promemoria o note che erano stati aggiunti saranno persi.</string>
|
||||
<string name="settings_special_dates_disable_confirm">Spegni</string>
|
||||
<string name="dialog_save">Salva</string>
|
||||
<string name="font_atkinson_hyperlegible">Atkinson Hyperlegible</string>
|
||||
<string name="settings_calendar_reminders_managed_hint">Impostato nelle date speciali dei contatti</string>
|
||||
<string name="special_dates_calendar_birthday">Compleanni</string>
|
||||
<string name="special_dates_calendar_anniversary">Anniversari</string>
|
||||
<string name="special_dates_calendar_custom">Date speciali</string>
|
||||
<string name="special_dates_default_title_birthday">Compleanno di {name} ({year})</string>
|
||||
<string name="special_dates_default_title_anniversary">Anniversario di {name} ({year})</string>
|
||||
</resources>
|
||||
|
||||
|
Before Width: | Height: | Size: 108 KiB After Width: | Height: | Size: 152 KiB |
|
Before Width: | Height: | Size: 85 KiB After Width: | Height: | Size: 144 KiB |
|
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 96 KiB |
|
Before Width: | Height: | Size: 106 KiB After Width: | Height: | Size: 77 KiB |
|
After Width: | Height: | Size: 210 KiB |
|
Before Width: | Height: | Size: 116 KiB |
|
Before Width: | Height: | Size: 156 KiB After Width: | Height: | Size: 198 KiB |
|
Before Width: | Height: | Size: 108 KiB After Width: | Height: | Size: 162 KiB |
|
Before Width: | Height: | Size: 87 KiB After Width: | Height: | Size: 149 KiB |
|
Before Width: | Height: | Size: 77 KiB After Width: | Height: | Size: 111 KiB |
|
Before Width: | Height: | Size: 106 KiB After Width: | Height: | Size: 77 KiB |
|
After Width: | Height: | Size: 221 KiB |
|
Before Width: | Height: | Size: 117 KiB |
|
Before Width: | Height: | Size: 135 KiB After Width: | Height: | Size: 192 KiB |
25
fastlane/metadata/android/es-ES/full_description.txt
Normal file
@@ -0,0 +1,25 @@
|
||||
Calendula es una aplicación de calendario moderna y de código abierto
|
||||
para Android. Funciona directamente sobre el proveedor de calendario del
|
||||
sistema: cualquier origen sincronizado en tu dispositivo — Nextcloud
|
||||
mediante DAVx5, Google, calendarios locales, suscripciones WebCal —
|
||||
aparece automáticamente, y los cambios que hagas se sincronizan de vuelta
|
||||
del mismo modo.
|
||||
|
||||
Crea, edita y elimina eventos, incluidos los recurrentes con cambios
|
||||
acotados (solo este evento / este y todos los siguientes / toda la serie)
|
||||
y un sencillo selector de repetición. Calendula también entrega los
|
||||
recordatorios de tus eventos como notificaciones: toca una y estarás en
|
||||
el evento.
|
||||
|
||||
Si quieres, muestra en tu calendario los cumpleaños, aniversarios y otras
|
||||
fechas especiales de tus contactos. Tú mismo lo activas; los contactos se
|
||||
leen solo en tu dispositivo, nunca se suben y nunca se modifican —
|
||||
Calendula solo refleja las fechas en calendarios locales que controlas
|
||||
por completo.
|
||||
|
||||
El factor diferenciador es el diseño: auténtico Material 3 Expressive en
|
||||
toda la aplicación, con Dynamic Color, movimiento expresivo y formas
|
||||
expresivas.
|
||||
|
||||
Privacidad: cero telemetría, sin analíticas, sin acceso a la red — tus
|
||||
datos nunca salen del dispositivo.
|
||||
BIN
fastlane/metadata/android/es-ES/images/icon.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 152 KiB |
|
After Width: | Height: | Size: 147 KiB |
|
After Width: | Height: | Size: 97 KiB |
|
After Width: | Height: | Size: 77 KiB |
|
After Width: | Height: | Size: 212 KiB |
|
After Width: | Height: | Size: 207 KiB |
1
fastlane/metadata/android/es-ES/short_description.txt
Normal file
@@ -0,0 +1 @@
|
||||
Un calendario moderno con Material 3 Expressive para Android.
|
||||
1
fastlane/metadata/android/es-ES/title.txt
Normal file
@@ -0,0 +1 @@
|
||||
Calendula
|
||||
24
fastlane/metadata/android/it-IT/full_description.txt
Normal file
@@ -0,0 +1,24 @@
|
||||
Calendula è un'app di calendario moderna e open source per Android.
|
||||
Funziona direttamente sul provider di calendario di sistema: qualsiasi
|
||||
origine sincronizzata sul tuo dispositivo — Nextcloud tramite DAVx5,
|
||||
Google, calendari locali, iscrizioni WebCal — compare automaticamente, e
|
||||
le modifiche che apporti vengono sincronizzate a ritroso allo stesso
|
||||
modo.
|
||||
|
||||
Crea, modifica ed elimina eventi, compresi quelli ricorrenti con
|
||||
modifiche mirate (solo questo evento / questo e tutti i successivi /
|
||||
l'intera serie) e un semplice selettore di ripetizione. Calendula
|
||||
recapita anche i promemoria dei tuoi eventi come notifiche: ne tocchi una
|
||||
e sei subito sull'evento.
|
||||
|
||||
Se vuoi, mostra nel calendario i compleanni, gli anniversari e le altre
|
||||
date speciali dei tuoi contatti. Sei tu ad attivarlo; i contatti vengono
|
||||
letti solo sul tuo dispositivo, non vengono mai caricati e non vengono
|
||||
mai modificati — Calendula si limita a rispecchiare le date in calendari
|
||||
locali che controlli completamente.
|
||||
|
||||
La differenza sta nel design: vero Material 3 Expressive ovunque, con
|
||||
Dynamic Color, animazioni espressive e forme espressive.
|
||||
|
||||
Privacy: zero telemetria, nessuna analisi, nessun accesso alla rete — i
|
||||
tuoi dati non lasciano mai il dispositivo.
|
||||
BIN
fastlane/metadata/android/it-IT/images/icon.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
|
After Width: | Height: | Size: 154 KiB |
|
After Width: | Height: | Size: 149 KiB |
|
After Width: | Height: | Size: 99 KiB |
|
After Width: | Height: | Size: 75 KiB |
|
After Width: | Height: | Size: 210 KiB |
|
After Width: | Height: | Size: 202 KiB |
1
fastlane/metadata/android/it-IT/short_description.txt
Normal file
@@ -0,0 +1 @@
|
||||
Un moderno calendario Material 3 Expressive per Android.
|
||||
1
fastlane/metadata/android/it-IT/title.txt
Normal file
@@ -0,0 +1 @@
|
||||
Calendula
|
||||