38 lines
1.7 KiB
PHP
Executable File
38 lines
1.7 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* @package languageDefines
|
|
* @copyright Copyright 2003-2005 Zen Cart Development Team
|
|
* @copyright Portions Copyright 2003 osCommerce
|
|
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
|
|
* @version $Id: address_book_process.php 2315 2005-11-07 08:41:46Z drbyte $
|
|
*/
|
|
|
|
define('NAVBAR_TITLE_1', 'My Account');
|
|
define('NAVBAR_TITLE_2', 'Address Book');
|
|
|
|
define('NAVBAR_TITLE_ADD_ENTRY', 'New Entry');
|
|
define('NAVBAR_TITLE_MODIFY_ENTRY', 'Update Entry');
|
|
define('NAVBAR_TITLE_DELETE_ENTRY', 'Delete Entry');
|
|
|
|
define('HEADING_TITLE_ADD_ENTRY', '<h1>New Address Book Entry</h1>');
|
|
define('HEADING_TITLE_MODIFY_ENTRY', '<h1>Update Address Book Entry</h1>');
|
|
define('HEADING_TITLE_DELETE_ENTRY', '<h1>Delete Address Book Entry</h1>');
|
|
define('HEADING_TITLE', 'Address Details');
|
|
|
|
define('DELETE_ADDRESS_TITLE', 'Delete Address');
|
|
define('DELETE_ADDRESS_DESCRIPTION', 'Are you sure you would like to delete the selected address from your address book?');
|
|
|
|
define('NEW_ADDRESS_TITLE', 'New Address Book Entry');
|
|
|
|
define('SELECTED_ADDRESS', 'Selected Address');
|
|
define('SET_AS_PRIMARY', 'Set as primary address.');
|
|
|
|
define('SUCCESS_ADDRESS_BOOK_ENTRY_DELETED', 'The selected address has been successfully removed from your address book.');
|
|
define('SUCCESS_ADDRESS_BOOK_ENTRY_UPDATED', 'Your address book has been successfully updated.');
|
|
|
|
define('WARNING_PRIMARY_ADDRESS_DELETION', 'The primary address cannot be deleted. Please set another address as the primary address and try again.');
|
|
|
|
define('ERROR_NONEXISTING_ADDRESS_BOOK_ENTRY', 'The address book entry does not exist.');
|
|
define('ERROR_ADDRESS_BOOK_FULL', 'Your address book is full. Please delete an unneeded address to save a new one.');
|
|
?>
|