| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- /*
- *
- * OGP - Open Game Panel
- * Copyright (C) 2008 - 2018 The OGP Development Team
- *
- * http://www.opengamepanel.org/
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- *
- */
- define('OGP_LANG_login_name', "Username");
- define('OGP_LANG_first_name', "First name");
- define('OGP_LANG_last_name', "Last name");
- define('OGP_LANG_phone_number', "Phone number");
- define('OGP_LANG_email_address', "Email");
- define('OGP_LANG_register_a_new_user', "Register a new user");
- define('OGP_LANG_password_mismatch', "Passwords mismatch.");
- define('OGP_LANG_confirm_password', "Confirm password");
- define('OGP_LANG_subuser_password', "Sub-User Password");
- define('OGP_LANG_subuser_man', "Sub-User Management");
- define('OGP_LANG_successfull', "Successfull");
- define('OGP_LANG_click_here', "Click here");
- define('OGP_LANG_to_login', "to login.");
- define('OGP_LANG_registered_on', "Registered on");
- define('OGP_LANG_register_message', "Hello,<br><br>Your Open Game Panel account has been created and you may now login using the following account information:<br><br>Username: %s<br>Password: %s<br><br>Remember to change your password often and the first time you login.<br><br>Please do not reply to this email!<br><br>______________________________<br>OGP Mailer");
- define('OGP_LANG_err_password', "Password cannot be empty");
- define('OGP_LANG_err_confirm_password', "Verify password field cannot be empty");
- define('OGP_LANG_err_password_mismatch', "Passwords do not match");
- define('OGP_LANG_err_captcha', "Captcha does not match.");
- define('OGP_LANG_err_login_name', "User name is empty or in use.");
- define('OGP_LANG_err_first_name', "Enter your name.");
- define('OGP_LANG_err_last_name', "Last Name not entered.");
- define('OGP_LANG_err_phone_number', "Phone number is empty.");
- define('OGP_LANG_err_email_address', "Empty or incorrect email address.");
- define('OGP_LANG_err_users_parent', "Sub-user accounts may not create other users.");
- define('OGP_LANG_err_parent_user', "The parent user ID must reference a valid pre-existing user.");
- define('OGP_LANG_err_email_address_already_in_use_by', "Email address already in use by <b>%s</b>.");
- define('OGP_LANG_user_registration', "User Registration");
- define('OGP_LANG_your_account_details_has_been_sent_by_email_to', "Your account details has been sent by email to <b>%s</b>.");
- define('OGP_LANG_subject', "Hello %s, welcome to %s!");
- define('OGP_LANG_sub_user', "Sub Users");
- define('OGP_LANG_create_sub_user', "Add Sub User");
- define('OGP_LANG_listdel_sub_user', "List, Modify Sub User Account Information, or Delete Sub User");
- define('OGP_LANG_delete_sub_user', "Edit / Delete Sub User");
- define('OGP_LANG_del_subuser_conf', "Are you sure you want to delete this account:");
- define('OGP_LANG_no_subusers', "No subusers have been created under your account yet!");
- define('OGP_LANG_subuser_deleted', "Sub-User %s was successfully deleted from the database!");
- define('OGP_LANG_subuser_added', "Sub-User %s was successfully created and added to the database!");
- define('OGP_LANG_your_subusers', "Owned Sub-User Accounts");
- ?>
|