first commit

This commit is contained in:
sujan
2024-08-06 18:06:00 +05:45
commit a2fa49071a
2745 changed files with 391199 additions and 0 deletions

View File

@ -0,0 +1,82 @@
<?php
// Heading
$_['heading_title'] = 'Affiliates';
// Text
$_['text_success'] = 'Success: You have modified affiliates!';
$_['text_list'] = 'Affiliate List';
$_['text_add'] = 'Add Affiliate';
$_['text_edit'] = 'Edit Affiliate';
$_['text_affiliate'] = 'Affiliate Details';
$_['text_payment'] = 'Payment Details';
$_['text_other'] = 'Other';
$_['text_balance'] = 'Balance';
$_['text_cheque'] = 'Cheque';
$_['text_paypal'] = 'PayPal';
$_['text_bank'] = 'Bank Transfer';
$_['text_history'] = 'History';
$_['text_history_add'] = 'Add History';
$_['text_transaction'] = 'Transactions';
$_['text_transaction_add'] = 'Add Transaction';
$_['text_report'] = 'Reports';
$_['text_filter'] = 'Filter';
$_['text_payment_cheque'] = 'Cheque Payment';
$_['text_payment_paypal'] = 'PayPal Payment';
$_['text_payment_bank'] = 'Bank Transfer Payment';
// Column
$_['column_name'] = 'Customer Name';
$_['column_tracking'] = 'Tracking';
$_['column_commission'] = 'Commission';
$_['column_balance'] = 'Balance';
$_['column_status'] = 'Status';
$_['column_ip'] = 'IP';
$_['column_account'] = 'Accounts';
$_['column_store'] = 'Store';
$_['column_country'] = 'Country';
$_['column_date_added'] = 'Date Added';
$_['column_comment'] = 'Comment';
$_['column_description'] = 'Description';
$_['column_amount'] = 'Amount';
$_['column_action'] = 'Action';
// Entry
$_['entry_customer'] = 'Customer';
$_['entry_company'] = 'Company';
$_['entry_tracking'] = 'Tracking Code';
$_['entry_website'] = 'Web Site';
$_['entry_commission'] = 'Commission (%)';
$_['entry_tax'] = 'Tax ID';
$_['entry_payment_method'] = 'Payment Method';
$_['entry_cheque'] = 'Cheque Payee Name';
$_['entry_paypal'] = 'PayPal Email Account';
$_['entry_bank_name'] = 'Bank Name';
$_['entry_bank_branch_number'] = 'ABA/BSB number (Branch Number)';
$_['entry_bank_swift_code'] = 'SWIFT Code';
$_['entry_bank_account_name'] = 'Account Name';
$_['entry_bank_account_number'] = 'Account Number';
$_['entry_comment'] = 'Comment';
$_['entry_description'] = 'Description';
$_['entry_amount'] = 'Amount';
$_['entry_date_from'] = 'Date From';
$_['entry_date_to'] = 'Date To';
$_['entry_status'] = 'Status';
$_['entry_limit'] = 'Limit';
// Help
$_['help_tracking'] = 'The tracking code that will be used to track referrals.';
$_['help_commission'] = 'Percentage the affiliate receives on each order.';
// Error
$_['error_warning'] = 'Warning: Please check the form carefully for errors!';
$_['error_permission'] = 'Warning: You do not have permission to modify affiliates!';
$_['error_customer'] = 'Warning: Customer required!';
$_['error_already'] = 'Warning: Customer is already registered as an affiliate!';
$_['error_tracking'] = 'Tracking Code required!';
$_['error_exists'] = 'Tracking code is being used by another affiliate!';
$_['error_payment_method'] = 'Payment method required!';
$_['error_cheque'] = 'Cheque Payee Name required!';
$_['error_paypal'] = 'PayPal Email Address does not appear to be valid!';
$_['error_bank_account_name'] = 'Account Name required!';
$_['error_bank_account_number'] = 'Account Number required!';
$_['error_custom_field'] = '%s required!';

View File

@ -0,0 +1,37 @@
<?php
// Heading
$_['heading_title'] = 'Mail';
// Text
$_['text_mail'] = 'Send e-mail\'s to customers';
$_['text_success'] = 'Your message has been successfully sent!';
$_['text_sent'] = 'Your message has been successfully sent to %s - %s recipients!';
$_['text_default'] = 'Default';
$_['text_newsletter'] = 'All Newsletter Subscribers';
$_['text_customer_all'] = 'All Customers';
$_['text_customer_group'] = 'Customer Group';
$_['text_customer'] = 'Customers';
$_['text_affiliate_all'] = 'All Affiliates';
$_['text_affiliate'] = 'Affiliates';
$_['text_product'] = 'Products';
// Entry
$_['entry_store'] = 'From';
$_['entry_to'] = 'To';
$_['entry_customer_group'] = 'Customer Group';
$_['entry_customer'] = 'Customer';
$_['entry_affiliate'] = 'Affiliate';
$_['entry_product'] = 'Products';
$_['entry_subject'] = 'Subject';
$_['entry_message'] = 'Message';
// Help
$_['help_customer'] = '(Autocomplete)';
$_['help_affiliate'] = '(Autocomplete)';
$_['help_product'] = 'Send only to customers who have ordered products in the list. (Autocomplete)';
// Error
$_['error_permission'] = 'Warning: You do not have permission to send E-Mails!';
$_['error_subject'] = 'E-Mail Subject required!';
$_['error_message'] = 'E-Mail Message required!';
$_['error_email'] = 'No E-Mail recipients!';

View File

@ -0,0 +1,57 @@
<?php
// Heading
$_['heading_title'] = 'Coupons';
// Text
$_['text_success'] = 'Success: You have modified coupons!';
$_['text_list'] = 'Coupon List';
$_['text_add'] = 'Add Coupon';
$_['text_edit'] = 'Edit Coupon';
$_['text_percent'] = 'Percentage';
$_['text_amount'] = 'Fixed Amount';
$_['text_coupon'] = 'History';
// Column
$_['column_name'] = 'Coupon Name';
$_['column_code'] = 'Code';
$_['column_discount'] = 'Discount';
$_['column_date_start'] = 'Date Start';
$_['column_date_end'] = 'Date End';
$_['column_status'] = 'Status';
$_['column_order_id'] = 'Order ID';
$_['column_customer'] = 'Customer';
$_['column_amount'] = 'Amount';
$_['column_date_added'] = 'Date Added';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Coupon Name';
$_['entry_code'] = 'Code';
$_['entry_type'] = 'Type';
$_['entry_discount'] = 'Discount';
$_['entry_logged'] = 'Customer Login';
$_['entry_shipping'] = 'Free Shipping';
$_['entry_total'] = 'Total Amount';
$_['entry_category'] = 'Category';
$_['entry_product'] = 'Products';
$_['entry_date_start'] = 'Date Start';
$_['entry_date_end'] = 'Date End';
$_['entry_uses_total'] = 'Uses Per Coupon';
$_['entry_uses_customer'] = 'Uses Per Customer';
$_['entry_status'] = 'Status';
// Help
$_['help_code'] = 'The code the customer enters to get the discount.';
$_['help_type'] = 'Percentage or Fixed Amount.';
$_['help_logged'] = 'Customer must be logged in to use the coupon.';
$_['help_total'] = 'The total amount that must be reached before the coupon is valid.';
$_['help_category'] = 'Choose all products under selected category.';
$_['help_product'] = 'Choose specific products the coupon will apply to. Select no products to apply coupon to entire cart.';
$_['help_uses_total'] = 'The maximum number of times the coupon can be used by any customer. Leave blank for unlimited';
$_['help_uses_customer'] = 'The maximum number of times the coupon can be used by a single customer. Leave blank for unlimited';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify coupons!';
$_['error_exists'] = 'Warning: Coupon code is already in use!';
$_['error_name'] = 'Coupon Name must be between 3 and 128 characters!';
$_['error_code'] = 'Code must be between 3 and 20 characters!';

View File

@ -0,0 +1,43 @@
<?php
// Heading
$_['heading_title'] = 'Marketing Tracking';
// Text
$_['text_success'] = 'Success: You have modified marketing tracking!';
$_['text_list'] = 'Marketing Tracking List';
$_['text_add'] = 'Add Marketing Tracking';
$_['text_edit'] = 'Edit Marketing Tracking';
$_['text_filter'] = 'Filter';
$_['text_history'] = 'History';
$_['text_history_add'] = 'Add History';
$_['text_report'] = 'Reports';
// Column
$_['column_name'] = 'Campaign Name';
$_['column_code'] = 'Code';
$_['column_clicks'] = 'Clicks';
$_['column_orders'] = 'Orders';
$_['column_ip'] = 'IP';
$_['column_account'] = 'Accounts';
$_['column_store'] = 'Store';
$_['column_country'] = 'Country';
$_['column_date_added'] = 'Date Added';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Campaign Name';
$_['entry_description'] = 'Campaign Description';
$_['entry_code'] = 'Tracking Code';
$_['entry_example'] = 'Examples';
$_['entry_date_from'] = 'Date From';
$_['entry_date_to'] = 'Date To';
// Help
$_['help_code'] = 'The tracking code that will be used to track marketing campaigns.';
$_['help_example'] = 'So the system can track referrals you need to add the tracking code to the end of the URL linking to your site.';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify marketing tracking!';
$_['error_name'] = 'Campaign must be between 1 and 32 characters!';
$_['error_code'] = 'Tracking Code required!';
$_['error_exists'] = 'Tracking code is being used by another campaign!';