Skip to content

Commit

Permalink
settings: Rename placing/moving to placing/moving phase
Browse files Browse the repository at this point in the history
  • Loading branch information
calcitem committed Aug 23, 2024
1 parent 9428b45 commit 4eb91ba
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ class RuleSettingsPage extends StatelessWidget {
],
),
SettingsCard(
title: Text(S.of(context).placing),
title: Text(S.of(context).placingPhase),
children: <Widget>[
SettingsListTile(
onTap: () =>
Expand All @@ -368,18 +368,18 @@ class RuleSettingsPage extends StatelessWidget {
titleString: S.of(context).whenBoardIsFull,
subtitleString: S.of(context).whenBoardIsFull_Detail,
),
],
),
SettingsCard(
title: Text(S.of(context).moving),
children: <Widget>[
SettingsListTile.switchTile(
value: ruleSettings.mayMoveInPlacingPhase,
onChanged: (bool val) =>
_setMayMoveInPlacingPhase(context, ruleSettings, val),
titleString: S.of(context).mayMoveInPlacingPhase,
subtitleString: S.of(context).mayMoveInPlacingPhase_Detail,
),
],
),
SettingsCard(
title: Text(S.of(context).movingPhase),
children: <Widget>[
SettingsListTile.switchTile(
value: ruleSettings.isDefenderMoveFirst,
onChanged: (bool val) =>
Expand Down

0 comments on commit 4eb91ba

Please sign in to comment.