make userlanguage selectable in installer

This commit is contained in:
HB9HIL
2024-07-09 09:22:55 +02:00
parent f86a88f09b
commit b1d4ca6835
3 changed files with 157 additions and 131 deletions

View File

@@ -474,6 +474,7 @@ CREATE TABLE `users` (
`user_eqsl_password` varchar(64) DEFAULT NULL,
`user_eqsl_qth_nickname` varchar(32) DEFAULT NULL,
`active_station_logbook` int(11) DEFAULT NULL,
`language` varchar(32) default 'english',
PRIMARY KEY (`user_id`),
UNIQUE KEY `user_name` (`user_name`),
UNIQUE KEY `user_email` (`user_email`)
@@ -482,7 +483,7 @@ CREATE TABLE `users` (
-- ----------------------------
-- Records of users
-- ----------------------------
INSERT INTO `users` VALUES ('1', '%%FIRSTUSER_NAME%%', '%%FIRSTUSER_PASS%%', '%%FIRSTUSER_MAIL%%', '99', '%%FIRSTUSER_CALL%%', '%%FIRSTUSER_LOCATOR%%', '%%FIRSTUSER_FIRSTNAME%%', '%%FIRSTUSER_LASTNAME%%', '%%FIRSTUSER_TIMEZONE%%', null, null, null, null, null, 1);
INSERT INTO `users` VALUES ('1', '%%FIRSTUSER_NAME%%', '%%FIRSTUSER_PASS%%', '%%FIRSTUSER_MAIL%%', '99', '%%FIRSTUSER_CALL%%', '%%FIRSTUSER_LOCATOR%%', '%%FIRSTUSER_FIRSTNAME%%', '%%FIRSTUSER_LASTNAME%%', '%%FIRSTUSER_TIMEZONE%%', null, null, null, null, null, 1, '%%FIRSTUSER_USERLANGUAGE%%');
-- ----------------------------
-- Records of station_logbooks