fix(i18n): keep activateReason default untranslated per review

Commonlib compares this value against the raw "updated" literal to
distinguish automatic activation from a user-requested run, so
translating it changes behaviour rather than just the displayed text.
Keep the default raw and drop the "updated" catalogue entry; the
manually-requested reason stays translated.
This commit is contained in:
Zeedif
2026-08-26 20:41:00 -06:00
parent 2cefff43bb
commit caa8c92cbe
6 changed files with 1 additions and 13 deletions
+1 -5
View File
@@ -51,11 +51,7 @@ export class ModuleMigration extends AbstractModule<LiveSyncCore> {
super(core);
}
async migrateUsingDoctor(
skipRebuild: boolean = false,
activateReason: string = $msg("updated"),
forceRescan = false
) {
async migrateUsingDoctor(skipRebuild: boolean = false, activateReason = "updated", forceRescan = false) {
const { shouldRebuild, shouldRebuildLocal, isModified, settings } = await performDoctorConsultation(
{
confirm: this.core.confirm,