[ Index ]
 

Code source de Zen Cart E-Commerce Shopping Cart 1.3.7.1

Accédez au Source d'autres logiciels libres

Classes | Fonctions | Variables | Constantes | Tables

title

Body

[fermer]

/includes/languages/english/ -> button_names.php (source)

   1  <?php
   2  /**

   3   * @package languageDefines

   4   * @copyright Copyright 2003-2006 Zen Cart Development Team

   5   * @copyright Portions Copyright 2003 osCommerce

   6   * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0

   7   * @version $Id: button_names.php 5410 2006-12-27 03:56:46Z drbyte $

   8   */
   9  
  10  
  11  /**

  12   * define the button images used in the project

  13   */
  14  
  15  define('BUTTON_IMAGE_ADD_TO_CART', 'button_add_to_cart.gif');
  16  define('BUTTON_IMAGE_ADD_ADDRESS', 'button_add_address.gif');
  17  define('BUTTON_IMAGE_ADD_PRODUCTS_TO_CART','button_add_selected.gif');
  18  define('BUTTON_IMAGE_BACK', 'button_back.gif');
  19  define('BUTTON_IMAGE_BUY_NOW', 'button_buy_now.gif');
  20  define('BUTTON_IMAGE_CANCEL', 'button_cancel.gif');
  21  define('BUTTON_IMAGE_CHANGE_ADDRESS', 'button_change_address.gif');
  22  define('BUTTON_IMAGE_CHECKOUT', 'button_checkout.gif');
  23  define('BUTTON_IMAGE_CONFIRM_SEND', 'button_confirm_send.gif');
  24  define('BUTTON_IMAGE_CONFIRM_ORDER', 'button_confirm_order.gif');
  25  define('BUTTON_IMAGE_CONTINUE', 'button_continue.gif');
  26  define('BUTTON_IMAGE_CONTINUE_SHOPPING', 'button_continue_shopping.gif');
  27  define('BUTTON_IMAGE_DELETE', 'button_delete.gif');
  28  define('BUTTON_IMAGE_DELETE_SMALL', 'button_delete_small.gif');
  29  define('BUTTON_IMAGE_DOWNLOAD', 'button_download.gif');
  30  define('BUTTON_IMAGE_EDIT_SMALL', 'small_edit.gif');
  31  define('BUTTON_IMAGE_IN_CART', 'button_in_cart.gif');
  32  define('BUTTON_IMAGE_LOGIN', 'button_login.gif');
  33  define('BUTTON_IMAGE_NEXT', 'button_next.gif');
  34  define('BUTTON_IMAGE_PREVIOUS', 'button_prev.gif');
  35  define('BUTTON_IMAGE_REDEEM', 'button_redeem.gif');
  36  define('BUTTON_IMAGE_RETURN_TO_PROD_LIST', 'button_return_to_product_list.gif');
  37  define('BUTTON_IMAGE_REVIEWS', 'button_reviews.gif');
  38  define('BUTTON_IMAGE_SEARCH', 'button_search.gif');
  39  define('BUTTON_IMAGE_SEND', 'button_send.gif');
  40  define('BUTTON_IMAGE_SEND_A_GIFT_CERT', 'button_send_a_gift_cert.gif');
  41  define('BUTTON_IMAGE_SEND_ANOTHER', 'button_send_another.gif');
  42  define('BUTTON_IMAGE_SHIPPING_ESTIMATOR', 'button_shipping_estimator.gif');
  43  define('BUTTON_IMAGE_SOLD_OUT','button_sold_out.gif');
  44  define('BUTTON_IMAGE_SOLD_OUT_SMALL','button_sold_out_sm.gif');
  45  define('BUTTON_IMAGE_SUBMIT', 'button_submit.gif');
  46  define('BUTTON_IMAGE_TELL_A_FRIEND', 'button_tell_a_friend.gif');
  47  define('BUTTON_IMAGE_TELLAFRIEND', 'button_TellAFriend.gif');
  48  define('BUTTON_IMAGE_UNSUBSCRIBE', 'button_unsubscribe.gif');
  49  define('BUTTON_IMAGE_UPDATE', 'button_update.gif');
  50  define('BUTTON_IMAGE_VIEW_SMALL', 'button_view.gif');
  51  define('BUTTON_IMAGE_WRITE_REVIEW', 'button_write_review.gif');
  52  
  53  define('BUTTON_IMAGE_READ_REVIEWS', 'button_read_reviews.gif');
  54  define('BUTTON_IMAGE_GOTO_PROD_DETAILS', 'button_goto_prod_details.gif');
  55  define('BUTTON_IMAGE_MORE_REVIEWS', 'button_more_reviews.gif');
  56  define('BUTTON_IMAGE_CONTINUE_CHECKOUT', 'button_continue_checkout.gif');
  57  //define('PREVNEXT_BUTTON_NEXT', '[Next&nbsp;&gt;&gt;]');

  58  //define('PREVNEXT_BUTTON_LAST', 'LAST&gt;&gt;');

  59  
  60  
  61  define('BUTTON_IMAGE_CREATE_ACCOUNT', 'button_create_account.gif');
  62  define('BUTTON_IMAGE_LOG_OFF', 'button_logoff.gif');
  63  /*

  64   * ALT tags used for buttons

  65   */
  66   
  67  define('BUTTON_CREATE_ACCOUNT_ALT', 'Sign Up');
  68  define('BUTTON_LOG_OFF_ALT', 'Log Off');
  69  define('BUTTON_ADD_TO_CART_ALT', 'Add This to My Cart');
  70  define('BUTTON_ADD_ADDRESS_ALT', 'Add Address');
  71  define('BUTTON_ADD_PRODUCTS_TO_CART_ALT','Add Selected Products to Cart');
  72  define('BUTTON_BACK_ALT', 'Back');
  73  define('BUTTON_BUY_NOW_ALT', 'Buy Now');
  74  define('BUTTON_CANCEL_ALT', 'Cancel');
  75  define('BUTTON_CHANGE_ADDRESS_ALT', 'Change Address');
  76  define('BUTTON_CHECKOUT_ALT', 'Checkout');
  77  define('BUTTON_CONFIRM_SEND_ALT', 'Send Gift Certificate');
  78  define('BUTTON_CONFIRM_ORDER_ALT', 'Confirm Order');
  79  define('BUTTON_CONTINUE_ALT', 'Continue');
  80  define('BUTTON_CONTINUE_SHOPPING_ALT', 'Continue Shopping');
  81  define('BUTTON_DELETE_ALT', 'Delete');
  82  define('BUTTON_DELETE_SMALL_ALT', 'Delete');
  83  define('BUTTON_DOWNLOAD_ALT', 'Download Now');
  84  define('BUTTON_EDIT_SMALL_ALT', 'Edit');
  85  define('BUTTON_IN_CART_ALT', 'Add to Cart');
  86  define('BUTTON_LOGIN_ALT', 'Sign In');
  87  define('BUTTON_NEXT_ALT', 'Next');
  88  define('BUTTON_PREVIOUS_ALT', 'Previous');
  89  define('BUTTON_REDEEM_ALT', 'Redeem');
  90  define('BUTTON_RETURN_TO_PROD_LIST_ALT', 'Return to the Product List');
  91  define('BUTTON_REVIEWS_ALT', 'Go to the Reviews Page');
  92  define('BUTTON_SEARCH_ALT', 'Search');
  93  define('BUTTON_SEND_ALT', 'Send Now');
  94  define('BUTTON_SEND_ANOTHER_ALT', 'Send Another Gift Certificate');
  95  define('BUTTON_SEND_A_GIFT_CERT_ALT', 'Send A Gift Certificate');
  96  define('BUTTON_SHIPPING_ESTIMATOR_ALT', 'Shipping Estimator');
  97  define('BUTTON_SOLD_OUT_ALT', 'Sold Out');
  98  define('BUTTON_SOLD_OUT_SMALL_ALT', 'Sold Out');
  99  define('BUTTON_SUBMIT_ALT', 'Submit the Information');
 100  define('BUTTON_TELL_A_FRIEND_ALT', 'Tell a Friend');
 101  define('BUTTON_TELLAFRIEND_ALT', 'Tell a Friend');
 102  define('BUTTON_UNSUBSCRIBE', 'Unsubscribe');
 103  define('BUTTON_UPDATE_ALT', 'Update');
 104  define('BUTTON_VIEW_SMALL_ALT', 'View');
 105  define('BUTTON_WRITE_REVIEW_ALT', 'Write Review');
 106  define('BUTTON_READ_REVIEWS_ALT', 'Read the Review');
 107  define('BUTTON_GOTO_PROD_DETAILS_ALT', 'Go To This Product\'s Detailed Information');
 108  define('BUTTON_MORE_REVIEWS_ALT', 'Read More Reviews');
 109  ?>


Généré le : Mon Nov 26 16:45:43 2007 par Balluche grâce à PHPXref 0.7
  Clicky Web Analytics