fix(l10n): localize line-bomb row/column chooser labels

The line-bomb axis chooser hardcoded Korean 가로/세로; route them through
new boosterLineRow/boosterLineCol keys (EN: Row/Column).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-18 19:27:41 +09:00
parent 1a028b9852
commit 412cc08167
3 changed files with 8 additions and 4 deletions
+2 -2
View File
@@ -195,11 +195,11 @@ class _GameScreenState extends ConsumerState<GameScreen>
actions: [
TextButton(
onPressed: () => Navigator.of(context).pop(_LineAxis.row),
child: const Text('가로'),
child: Text('${l10n.boosterLineRow}'),
),
TextButton(
onPressed: () => Navigator.of(context).pop(_LineAxis.col),
child: const Text('세로'),
child: Text('${l10n.boosterLineCol}'),
),
],
),