ref: 0d43753ff2e02f54dd35e6872be3dafa14d2ea7d
parent: cbf2ede64ad91346e6399603ff7b8df432be5a06
author: Jacob Nevins <jacobn@chiark.greenend.org.uk>
date: Fri Dec 16 06:17:29 EST 2022
Remove _() introduced from Android port. Introduced in cbf2ede64a. It's used there for marking up text for i18n in a gettext stylee, but is not available here.
--- a/lightup.c
+++ b/lightup.c
@@ -354,7 +354,7 @@
return "4-fold symmetry is only available with square grids";
}
if ((params->symm == SYMM_ROT4 || params->symm == SYMM_REF4) && params->w < 3 && params->h < 3)
- return _("Width or height must be at least 3 for 4-way symmetry");
+ return "Width or height must be at least 3 for 4-way symmetry";
if (params->symm < 0 || params->symm >= SYMM_MAX)
return "Unknown symmetry type";
if (params->difficulty < 0 || params->difficulty > DIFFCOUNT)