From f43ef975d75a57973886e7f8eabb068d2ac15cc0 Mon Sep 17 00:00:00 2001 From: Falko Timme <ft@falkotimme.com> Date: Mon, 16 Jun 2014 12:06:06 -0400 Subject: [PATCH] - Make sure ISPConfig shows the correct error message (instad of an SQL error) when a website is renamed after an alias domain that still exists. - It should be possible to create two websites with the same domain on the same server as long as the IP differs. I therefore changed the serverdomain index of the web_domain table to include the IP address. --- interface/web/admin/lib/lang/en_users.lng | 17 ++++++++++++----- 1 files changed, 12 insertions(+), 5 deletions(-) diff --git a/interface/web/admin/lib/lang/en_users.lng b/interface/web/admin/lib/lang/en_users.lng index 73ddaad..09b8ac3 100644 --- a/interface/web/admin/lib/lang/en_users.lng +++ b/interface/web/admin/lib/lang/en_users.lng @@ -1,7 +1,10 @@ <?php $wb["username_txt"] = 'Username'; -$wb["username_err"] = 'username_err'; +$wb["username_err"] = 'The username is too long or contains invalid characters.'; +$wb["username_empty"] = 'The username is empty.'; +$wb["username_unique"] = 'There is already a user with this username.'; $wb["passwort_txt"] = 'Password'; +$wb["password_strength_txt"] = 'Password strength'; $wb["modules_txt"] = 'Module'; $wb["startmodule_txt"] = 'Startmodule'; $wb["app_theme_txt"] = 'Design'; @@ -21,7 +24,11 @@ $wb["fax_txt"] = 'Fax'; $wb["groups_txt"] = 'Groups'; $wb["default_group_txt"] = 'Default Group'; -$wb["active_txt"] = 'Active'; -$wb["btn_save_txt"] = 'Save'; -$wb["btn_cancel_txt"] = 'Cancel'; -?> \ No newline at end of file +$wb["startmodule_err"] = 'Start module is not within modules.'; +$wb['generate_password_txt'] = 'Generate Password'; +$wb['repeat_password_txt'] = 'Repeat Password'; +$wb['password_mismatch_txt'] = 'The passwords do not match.'; +$wb['password_match_txt'] = 'The passwords do match.'; +$wb['username_error_collision'] = 'The username may not be web or web plus a number."'; +$wb['client_not_admin_err'] = 'A user that belongs to a client can not be set to type: admin'; +?> -- Gitblit v1.9.1