chore(i18n): migrate start stop keys to fl_lib (#1057)

This commit is contained in:
lollipopkit🏳️‍⚧️
2026-02-27 23:36:59 +08:00
committed by GitHub
parent 2166e27771
commit c3678f3df9
75 changed files with 137 additions and 4220 deletions

View File

@@ -58,7 +58,7 @@ extension on _ContainerPageState {
}) async {
await context.showRoundDialog(
title: title,
child: Text(message ?? libL10n.askContinue('${l10n.prune} $title')),
child: Text(message ?? libL10n.askContinue('${libL10n.prune} $title')),
actions: Btn.ok(
onTap: () async {
context.pop();
@@ -91,7 +91,7 @@ extension on _ContainerPageState {
context.showRoundDialog(title: libL10n.error, child: Text(e.toString()));
}
},
child: Text(l10n.run),
child: Text(libL10n.run),
),
],
);
@@ -160,7 +160,7 @@ extension on _ContainerPageState {
return Checkbox(value: force, onChanged: (val) => setState(() => force = val ?? false));
},
),
Text(l10n.force),
Text(libL10n.force),
],
),
],