24 lines
961 B
PHP
Executable File
24 lines
961 B
PHP
Executable File
<?php
|
|
/**
|
|
* @package languageDefines
|
|
* @copyright Copyright 2003-2006 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: icon_names.php 3159 2006-03-11 01:35:04Z drbyte $
|
|
*/
|
|
|
|
// define the icon images used in the project
|
|
define('ICON_IMAGE_ERROR', 'error.gif');
|
|
define('ICON_IMAGE_WARNING', 'warning.gif');
|
|
define('ICON_IMAGE_SUCCESS', 'success.gif');
|
|
define('ICON_IMAGE_TRASH', 'small_delete.gif');
|
|
define('ICON_IMAGE_UPDATE', 'button_update_cart.gif');
|
|
|
|
//alt tags for buttons
|
|
define('ICON_ERROR_ALT', 'Error');
|
|
define('ICON_SUCCESS_ALT', 'Success');
|
|
define('ICON_WARNING_ALT', 'Warning');
|
|
define('ICON_TRASH_ALT', 'Delete this item from the cart by clicking this icon.');
|
|
define('ICON_UPDATE_ALT', 'Change your quantity by highlighting the number in the box, correcting the quantity and clicking this button.');
|
|
|
|
?>
|