feat: Rename "Patch bundle" to "Patches" (#2541)

Co-authored-by: Ax333l <main@axelen.xyz>
This commit is contained in:
oSumAtrIX
2025-07-15 17:36:34 +02:00
parent 3b82767a89
commit 2cdd6d1843
3 changed files with 12 additions and 11 deletions

View File

@@ -296,8 +296,8 @@ fun ImportExportSettingsScreen(
}
}
},
headline = R.string.patch_options_reset,
description = R.string.patch_options_reset_all,
headline = R.string.patch_options_reset_patches,
description = R.string.patch_options_reset_patches_description,
)
}
}

View File

@@ -81,8 +81,8 @@ sealed class ResetDialogState(
)
class PatchOptionBundle(dialogOptionName: String, onConfirm: () -> Unit) : ResetDialogState(
titleResId = R.string.patch_options_reset,
descriptionResId = R.string.patch_options_reset_dialog_description,
titleResId = R.string.patch_options_reset_patches,
descriptionResId = R.string.patch_options_reset_patches_dialog_description,
onConfirm = onConfirm,
dialogOptionName = dialogOptionName
)