Cleanup i18n support (#ifdefectomy, move global init to process launch). Teach make.sh to emit "#define FLAG_x 0" for options inside disabled USE macros so we can unconditionally refer to them.
diff --git a/main.c b/main.c
index 2b04d13..829b787 100644
--- a/main.c
+++ b/main.c
@@ -101,9 +101,6 @@
   which = toy_find(argv[0]);
   if (!which) return;
   toy_init(which, argv);
-#ifdef CFG_TOYBOX_I18N
-  setlocale(LC_ALL, "");
-#endif
   toys.which->toy_main();
   exit(toys.exitval);
 }
@@ -145,6 +142,8 @@
 
 int main(int argc, char *argv[])
 {
+  if (CFG_TOYBOX_I18N) setlocale(LC_ALL, "");
+
   // Artificial scope to eat less stack for things we call
   {
     char *name;