store.php (6814B)
1 <?php 2 // Heading 3 $_['heading_title'] = 'Stores'; 4 5 // Text 6 $_['text_settings'] = 'Settings'; 7 $_['text_success'] = 'Success: You have modified Stores!'; 8 $_['text_list'] = 'Store List'; 9 $_['text_add'] = 'Add Store'; 10 $_['text_edit'] = 'Edit Store'; 11 $_['text_items'] = 'Items'; 12 $_['text_tax'] = 'Taxes'; 13 $_['text_account'] = 'Account'; 14 $_['text_checkout'] = 'Checkout'; 15 $_['text_stock'] = 'Stock'; 16 $_['text_shipping'] = 'Shipping Address'; 17 $_['text_payment'] = 'Payment Address'; 18 19 // Column 20 $_['column_name'] = 'Store Name'; 21 $_['column_url'] = 'Store URL'; 22 $_['column_action'] = 'Action'; 23 24 // Entry 25 $_['entry_url'] = 'Store URL'; 26 $_['entry_ssl'] = 'SSL URL'; 27 $_['entry_meta_title'] = 'Meta Title'; 28 $_['entry_meta_description'] = 'Meta Tag Description'; 29 $_['entry_meta_keyword'] = 'Meta Tag Keywords'; 30 $_['entry_layout'] = 'Default Layout'; 31 $_['entry_theme'] = 'Theme'; 32 $_['entry_name'] = 'Store Name'; 33 $_['entry_owner'] = 'Store Owner'; 34 $_['entry_address'] = 'Address'; 35 $_['entry_geocode'] = 'Geocode'; 36 $_['entry_email'] = 'E-Mail'; 37 $_['entry_telephone'] = 'Telephone'; 38 $_['entry_fax'] = 'Fax'; 39 $_['entry_image'] = 'Image'; 40 $_['entry_open'] = 'Opening Times'; 41 $_['entry_comment'] = 'Comment'; 42 $_['entry_location'] = 'Store Location'; 43 $_['entry_country'] = 'Country'; 44 $_['entry_zone'] = 'Region / State'; 45 $_['entry_language'] = 'Language'; 46 $_['entry_currency'] = 'Currency'; 47 $_['entry_tax'] = 'Display Prices With Tax'; 48 $_['entry_tax_default'] = 'Use Store Tax Address'; 49 $_['entry_tax_customer'] = 'Use Customer Tax Address'; 50 $_['entry_customer_group'] = 'Customer Group'; 51 $_['entry_customer_group_display'] = 'Customer Groups'; 52 $_['entry_customer_price'] = 'Login Display Prices'; 53 $_['entry_account'] = 'Account Terms'; 54 $_['entry_cart_weight'] = 'Display Weight on Cart Page'; 55 $_['entry_checkout_guest'] = 'Guest Checkout'; 56 $_['entry_checkout'] = 'Checkout Terms'; 57 $_['entry_order_status'] = 'Order Status'; 58 $_['entry_stock_display'] = 'Display Stock'; 59 $_['entry_stock_checkout'] = 'Stock Checkout'; 60 $_['entry_logo'] = 'Store Logo'; 61 $_['entry_icon'] = 'Icon'; 62 $_['entry_secure'] = 'Use SSL'; 63 64 // Help 65 $_['help_url'] = 'Include the full URL to your store. Make sure to add \'/\' at the end. Example: http://www.yourdomain.com/path/<br /><br />Don\'t use directories to create a new store. You should always point another domain or sub domain to your hosting.'; 66 $_['help_ssl'] = 'SSL URL to your store. Make sure to add \'/\' at the end. Example: http://www.yourdomain.com/path/<br /><br />Don\'t use directories to create a new store. You should always point another domain or sub domain to your hosting.'; 67 $_['help_geocode'] = 'Please enter your store location geocode manually.'; 68 $_['help_open'] = 'Fill in your stores opening times.'; 69 $_['help_comment'] = 'This field is for any special notes you would like to tell the customer i.e. Store does not accept cheques.'; 70 $_['help_location'] = 'The different store locations you have that you want displayed on the contact us form.'; 71 $_['help_currency'] = 'Change the default currency. Clear your browser cache to see the change and reset your existing cookie.'; 72 $_['help_tax_default'] = 'Use the store address to calculate taxes if customer is not logged in. You can choose to use the store address for the customer\'s shipping or payment address.'; 73 $_['help_tax_customer'] = 'Use the customers default address when they login to calculate taxes. You can choose to use the default address for the customer\'s shipping or payment address.'; 74 $_['help_customer_group'] = 'Default customer group.'; 75 $_['help_customer_group_display'] = 'Display customer groups that new customers can select to use such as wholesale and business when signing up.'; 76 $_['help_customer_price'] = 'Only show prices when a customer is logged in.'; 77 $_['help_account'] = 'Forces people to agree to terms before an account can be created.'; 78 $_['help_checkout_guest'] = 'Allow customers to checkout without creating an account. This will not be available when a downloadable product is in the shopping cart.'; 79 $_['help_checkout'] = 'Forces people to agree to terms before an a customer can checkout.'; 80 $_['help_order_status'] = 'Set the default order status when an order is processed.'; 81 $_['help_stock_display'] = 'Display stock quantity on the product page.'; 82 $_['help_stock_checkout'] = 'Allow customers to still checkout if the products they are ordering are not in stock.'; 83 $_['help_icon'] = 'The icon should be a PNG that is 16px x 16px.'; 84 $_['help_secure'] = 'To use SSL check with your host if a SSL certificate is installed.'; 85 86 // Error 87 $_['error_warning'] = 'Warning: Please check the form carefully for errors!'; 88 $_['error_permission'] = 'Warning: You do not have permission to modify stores!'; 89 $_['error_url'] = 'Store URL required!'; 90 $_['error_meta_title'] = 'Title must be between 3 and 32 characters!'; 91 $_['error_name'] = 'Store Name must be between 3 and 32 characters!'; 92 $_['error_owner'] = 'Store Owner must be between 3 and 64 characters!'; 93 $_['error_address'] = 'Store Address must be between 10 and 256 characters!'; 94 $_['error_email'] = 'E-Mail Address does not appear to be valid!'; 95 $_['error_telephone'] = 'Telephone must be between 3 and 32 characters!'; 96 $_['error_customer_group_display'] = 'You must include the default customer group if you are going to use this feature!'; 97 $_['error_default'] = 'Warning: You can not delete your default store!'; 98 $_['error_store'] = 'Warning: This Store cannot be deleted as it is currently assigned to %s orders!';