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

@@ -59,7 +59,7 @@ class _SnippetEditPageState extends ConsumerState<SnippetEditPage> with AfterLay
onPressed: () {
context.showRoundDialog(
title: libL10n.attention,
child: Text(libL10n.askContinue('${libL10n.delete} ${l10n.snippet}(${snippet.name})')),
child: Text(libL10n.askContinue('${libL10n.delete} ${libL10n.snippet}(${snippet.name})')),
actions: Btn.ok(
onTap: () {
ref.read(snippetProvider.notifier).del(snippet);
@@ -140,7 +140,7 @@ class _SnippetEditPageState extends ConsumerState<SnippetEditPage> with AfterLay
minLines: 3,
maxLines: 10,
type: TextInputType.multiline,
label: l10n.snippet,
label: libL10n.snippet,
icon: Icons.code,
suggestion: false,
),