52 lines
3.2 KiB
PHP
Executable File
52 lines
3.2 KiB
PHP
Executable File
<?php
|
|
//
|
|
// +----------------------------------------------------------------------+
|
|
// |zen-cart Open Source E-commerce |
|
|
// +----------------------------------------------------------------------+
|
|
// | Copyright (c) 2003 The zen-cart developers |
|
|
// | |
|
|
// | http://www.zen-cart.com/index.php |
|
|
// | |
|
|
// | Portions Copyright (c) 2003 osCommerce |
|
|
// +----------------------------------------------------------------------+
|
|
// | This source file is subject to version 2.0 of the GPL license, |
|
|
// | that is bundled with this package in the file LICENSE, and is |
|
|
// | available through the world-wide-web at the following url: |
|
|
// | http://www.zen-cart.com/license/2_0.txt. |
|
|
// | If you did not receive a copy of the zen-cart license and are unable |
|
|
// | to obtain it through the world-wide-web, please send a note to |
|
|
// | license@zen-cart.com so we can mail you a copy immediately. |
|
|
// +----------------------------------------------------------------------+
|
|
// $Id: currencies.php 1105 2005-04-04 22:05:35Z birdbrain $
|
|
//
|
|
|
|
define('HEADING_TITLE', 'Currencies');
|
|
|
|
define('TABLE_HEADING_CURRENCY_NAME', 'Currency');
|
|
define('TABLE_HEADING_CURRENCY_CODES', 'Code');
|
|
define('TABLE_HEADING_CURRENCY_VALUE', 'Value');
|
|
define('TABLE_HEADING_ACTION', 'Action');
|
|
|
|
define('TEXT_INFO_EDIT_INTRO', 'Please make any necessary changes');
|
|
define('TEXT_INFO_CURRENCY_TITLE', 'Title:');
|
|
define('TEXT_INFO_CURRENCY_CODE', 'Code:');
|
|
define('TEXT_INFO_CURRENCY_SYMBOL_LEFT', 'Symbol Left:');
|
|
define('TEXT_INFO_CURRENCY_SYMBOL_RIGHT', 'Symbol Right:');
|
|
define('TEXT_INFO_CURRENCY_DECIMAL_POINT', 'Decimal Point:');
|
|
define('TEXT_INFO_CURRENCY_THOUSANDS_POINT', 'Thousands Point:');
|
|
define('TEXT_INFO_CURRENCY_DECIMAL_PLACES', 'Decimal Places:');
|
|
define('TEXT_INFO_CURRENCY_LAST_UPDATED', 'Last Updated:');
|
|
define('TEXT_INFO_CURRENCY_VALUE', 'Value:');
|
|
define('TEXT_INFO_CURRENCY_EXAMPLE', 'Example Output:');
|
|
define('TEXT_INFO_INSERT_INTRO', 'Please enter the new currency with its related data');
|
|
define('TEXT_INFO_DELETE_INTRO', 'Are you sure you want to delete this currency?');
|
|
define('TEXT_INFO_HEADING_NEW_CURRENCY', 'New Currency');
|
|
define('TEXT_INFO_HEADING_EDIT_CURRENCY', 'Edit Currency');
|
|
define('TEXT_INFO_HEADING_DELETE_CURRENCY', 'Delete Currency');
|
|
define('TEXT_INFO_SET_AS_DEFAULT', TEXT_SET_DEFAULT . ' (requires a manual update of currency values)');
|
|
define('TEXT_INFO_CURRENCY_UPDATED', 'The exchange rate for %s (%s) was updated successfully via %s.');
|
|
|
|
define('ERROR_REMOVE_DEFAULT_CURRENCY', 'Error: The default currency can not be removed. Please set another currency as default, and try again.');
|
|
define('ERROR_CURRENCY_INVALID', 'Error: The exchange rate for %s (%s) was not updated via %s. Is it a valid currency code?');
|
|
define('WARNING_PRIMARY_SERVER_FAILED', 'Warning: The primary exchange rate server (%s) failed for %s (%s) - trying the secondary exchange rate server.');
|
|
?>
|