⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 en.inc.php

📁 一个页面界面的邮件程序
💻 PHP
字号:
<?php/* * All pages */define("APP_NAME", "GContact");define("APP_TITLE", "GContact : Address Book online");/* * Index page */define("DESC_TITLE", "What is GContact ?");define("DESC", 		"<p>GContact is a web application wich allows you to manage your address book online.<br/>					You can add persons with multiples contacts (email, phone, ICQ, MSN, ...) and multiples addresses.<br/>					This application can notify next birthdays by email and you can export all yours data by excel.<br/>					Mailing-lists can also be managed by this application to send an email to a group of people.</p>");define("MORE_INFO_TITLE", "More informations");define("MORE_INFO", 	"<p>You'll find more informations on <a href=\"http://gcontact.sourceforge.net\">projet's homepage</a>.<br/>" .					"GContact is free to use. It's under <a href=\"http://www.gnu.org/copyleft/gpl.html\" title=\"Licence publique g&eacute;n&eacute;rale\">GPL</a> licence, " .					"so you can download the source code on <a href=\"https://sourceforge.net/projects/gcontact/\" title=\"Download source code on sourceforge\">sourceforge.net</a>.<br/>".					"<a href=\"CHANGELOG\">Change log</a> &amp; <a href=\"TODO\">todo list</a>.</p>");define("CONTACT_TITLE", "Contact");define("CONTACT", 	"<p>For bugs report or enhancement request, (or just to say that this application is great) send-me an email : <a href=\"mailto:paul.gregory@free.fr?subject=GContact\">paul.gregory@free.fr</a></p>");define("CONNECT", 			"Login");define("EMAIL", 				"Email");define("PASSWORD", 			"Password");define("CONNECT_ACTION", 	"Login");define("ERROR_BAD_LOGIN", 	"Bad email or password");define("WAITING_MESSAGE", 	"You'll be redirect to the main page. If not, be sure that JavaScript support is active on your browser (you will need it for this application).");define("ERROR_2_USERS_WITH_SAME_EMAIL", "Problem in the database : more than one user with the same email. Contact the administrator !");$VERSION_MESSAGE = 			"Beta Version ". APP_VERSION ." from ".date( "m-d-Y - H:i", getlastmod() );/* * Main page */define("SEARCH_ACTION",			 	"Search");define("CLS",						"clear screen");define("SHOW", 						"show");define("HIDE", 						"hide");define("ALL_DETAILS", 				"details");define("TIPS_OF_THE_DAYS",			"Tip of the day");define("NEXT_TIP", 					"next tip");define("PREVIOUS_TIP", 				"previous tip");define("ACTIONS", 					"Actions");define("GROUPS", 					"Groups");define("NEXT_BIRTHDAYS", 			"Next birthdays");define("MAILING_LIST",				"Mailing-list");define("WELCOME_MESSAGE",			"Welcome in GContact !");define("ACTION_ADD_NEW_PERSON", 		"New person");define("ACTION_GROUP_MANAGEMENT",	"Groups management");define("ACTION_LOG_OUT",				"Logout");define("ACTION_SHOW_BIRTHDAYS",		"Show birthdays");define("ACTION_ADD_MAILING_LIST",	"Create a mailing-list");define("ACTION_EXPORT_EXCELL",		"Export to Excel");define("ACTION_PREFERENCES",			"My Preferences");define("ACTION_CHANGE_PASSWORD",		"Change my password");/* * JavaScript messages *//* Person form */define("JS_LBL_GROUP", 					"Group");define("JS_LBL_PERSON_TITLE",			"Title");define("JS_LBL_DEFAULT_PERSON_TITLE",	"M.");define("JS_LBL_LAST_NAME",				"Lastname");define("JS_LBL_FIRST_NAME",				"Firstname");define("JS_LBL_BIRTHDATE",				"Birthdate");define("JS_LBL_NOTES",					"Notes");define("JS_LBL_PERSON_INFO",				"Personnal informations");define("JS_LBL_CONTACTS",				"Contacts");define("JS_LBL_CONTACT_TYPE",			"Type");define("JS_LBL_CONTACT_VALUE",			"Value");define("JS_ACTION_UPDATE_CONTACTS",		"Update theses contacts");define("JS_LBL_ADDRESSES",				"Addresses");define("JS_LBL_ADDRESS_TITLE",			"Title");define("JS_LBL_ADDRESS_STREET",			"Street");define("JS_LBL_ADDRESS_STREET_NEXT",		"Street (next)");define("JS_LBL_ADDRESS_ZIPCODE",			"Zipcode");define("JS_LBL_ADDRESS_TOWN",			"Town");define("JS_LBL_ADDRESS_COUNTRY",			"Country");define("JS_LBL_DEFAULT_COUNTRY",			"");define("JS_ACTION_UPDATE_ADDRESSES",		"Update theses addresses");define("JS_LBL_DATE_FORMAT", 			"dd/mm/yyyy or dd/mm/0000");/* Search */define("JS_ACTION_DELETE_SHORT",			"del.");define("JS_ACTION_UPDATE_SHORT",			"upd.");define("JS_LBL_RESULTS_FOUND",			"result(s) found(s)");/* Password form */define("JS_CHANGE_PASSWORD", 			"Change your password");define("JS_NEW_PASSWORD",				"New password");define("JS_PASSWORD_CONFIRMATION", 		"Confirm password");define("JS_ACTION_UPDATE_PASSWORD",		"Change password");define("JS_LBL_PASSWORD_CHANGED",		"<h3>Your password has been changed. </h3><p>To improve security, passwords are encrypted in database (MD5 hash).</p>");define("JS_LBL_PASSWORDS_NOT_EQUALS",	"Theses 2 passwords are not equals.");/* Group form */define("JS_LBL_GROUP_TITLE",				"Groups management");define("JS_LBL_FILL_GROUP_NAME",			"Please fill the group name");define("JS_LBL_NOBODY", 					"(nobody)");define("JS_LBL_PERSON", 					"person");define("JS_LBL_PERSONS", 				"persons");define("JS_LBL_GROUP_NAME", 				"Group name");define("JS_ACTION_UPDATE_GROUP",			"Update theses groups name");/* Preferences form */define("JS_LBL_THE_DAY", 				"during the day");define("JS_DAY_BEFORE",	 				"day before");define("JS_DAYS_BEFORE",	 				"days before");define("JS_LBL_BIRTH_REMINDER_TITLE",	"notify me by email for birthdays to come");define("JS_LBL_BIRTH_REMINDER_INTRO",	"I would like receive an email before birthdays...");define("JS_LBL_PREFERENCES_CHANGED", 	"Your preferences have been changed.");/* Mailing-list form */define("JS_LBL_MAILING_LIST_CREATE", 	"Create a mailing-list");define("JS_LBL_MAILING_LIST_UPDATE", 	"Update this mailing-list"); define("JS_LBL_MAILING_LIST_DELETE", 	"Delete this mailing-list");define("JS_LBL_MAILING_LIST_NAME", 		"Mailing-list name");define("JS_LBL_MAILING_LIST_DEST_ARE", 	"Recipient are");define("JS_LBL_MAILING_LIST_DEST_TO", 	"visibles (to)");define("JS_LBL_MAILING_LIST_DEST_CC", 	"on carbon copies (cc)");define("JS_LBL_MAILING_LIST_DEST_BCC", 	"on blank carbon copies (bcc)");define("JS_LBL_MAILING_LIST_SEND_EMAIL",	"Send a"); define("JS_LBL_MAILING_LIST_EMAIL", 		"email"); define("JS_LBL_MAILING_LIST_SEND_END",	"to this mailing-list (a email-client must be available on the computer)."); define("JS_LBL_MAILING_LIST_LIST", 		"List to copy and paste into your webmail"); define("JS_LBL_MAILING_LIST_EMAILS", 	"Emails in this mailing-list"); define("JS_LBL_MAILING_LIST_EMPTY", 		"This mailing-list contains no email. Click on update to add emails."); /* Birthdays */define("JS_LBL_YEAR", 					"year");define("JS_LBL_YEARS", 					"years");define("JS_LBL_ON",	 					"on");/* Global messages */define("JS_ACTION_CREATE",				"Create");define("JS_ACTION_UPDATE",				"Update");define("JS_ACTION_DELETE",				"Delete");define("JS_DELETE_CONFIRM_MESSAGE",		"Delete ?");define("JS_FILL_MANDATORY_FIELD",		"Please fill mandatories fields !");define("JS_BAD_DATE_FORMAT",				"The date format is invalid (dd/mm/yyyy)");define("JS_ERR_GET_XML",					"Problem while retreiving data.");define("JS_MANDATORY_FIELDS",			"Fields followed by a star are mandatories.");define("JS_WAITING_MESSAGE", 			"Loading... Please wait");define("JS_NO_RESULT", 					"No result found."); $_MONTH = Array( "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");$_TIPS = Array(	"If a contact's value begins with http:// or www, it will be displayed as a link.", 				"You can create mailing-lists to send an email to multiple recipients. Go to 'create a mailing-list' in actions menu.", 				"You can print at anytime. Only the main zone will be printed.",				"Don't forget to change your password sometimes...",				"Write to me if you found a bug, if you have an idea to enhance this application or just to say that GContact is great !",				"You can be notify for next birthdays. Go to 'preferences' in the actions menu.",				"The number after each group is the number of people in this group.",				"The number after each mailing-list is the number of emails in this mailing-list.",				"The sign '". SIGN_HIDE ."', on each top right frame, allows you to hide the frame.",				"You can show next or previous tips with signs < and > on the beginning of this line.",				"You can export all yours data in Excel format.",				"You can search with an incomplete name (Greg for Gregory).",				"Search results for a name in lowercase or uppercase will be the same.",				"If you don't know a birthdate's year, you can fill it with '0000'.",				"Type an empty search to show all yours contacts !",				"Search engine looks into near all fields (also into contacts values to find phone number's owner).",				"Search field must contain a word with at least 3 characters.",				"You can use '+' and '-' operators in search field. Also, sign '*' on the end of a word extends the search.");?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -