96 lines
4.9 KiB
PHP
96 lines
4.9 KiB
PHP
<?php
|
|
// Heading
|
|
$_['heading_title'] = 'Subscriptions';
|
|
|
|
// Text
|
|
$_['text_success'] = 'Success: You have modified subscriptions!';
|
|
$_['text_list'] = 'Subscription List';
|
|
$_['text_add'] = 'Add Subscription';
|
|
$_['text_edit'] = 'Subscription (#%s)';
|
|
$_['text_filter'] = 'Filter';
|
|
$_['text_date_added'] = 'Date Added';
|
|
$_['text_order'] = 'Order ID';
|
|
$_['text_customer'] = 'Customer';
|
|
$_['text_subscription_plan'] = 'Subscription Plan';
|
|
$_['text_product'] = 'Product Details';
|
|
$_['text_quantity'] = 'Quantity';
|
|
$_['text_trial'] = 'Trial';
|
|
$_['text_subscription'] = 'Subscription';
|
|
$_['text_subscription_trial'] = '%s every %d %s(s) for %d payment(s) then ';
|
|
$_['text_subscription_duration'] = '%s every %d %s(s) for %d payment(s)';
|
|
$_['text_subscription_cancel'] = '%s every %d %s(s) until canceled';
|
|
$_['text_cancel'] = 'Until Canceled';
|
|
$_['text_day'] = 'Day';
|
|
$_['text_week'] = 'Week';
|
|
$_['text_semi_month'] = 'Half-Month';
|
|
$_['text_month'] = 'Month';
|
|
$_['text_year'] = 'Year';
|
|
$_['text_date_next'] = 'Date Next';
|
|
$_['text_remaining'] = 'Remaining';
|
|
$_['text_payment_address'] = 'Payment Address';
|
|
$_['text_payment_method'] = 'Payment Method';
|
|
$_['text_shipping_address'] = 'Shipping Address';
|
|
$_['text_shipping_method'] = 'Shipping Method';
|
|
$_['text_history'] = 'History';
|
|
$_['text_history_add'] = 'Add History';
|
|
|
|
// Column
|
|
$_['column_subscription_id'] = 'Subscription ID';
|
|
$_['column_order_id'] = 'Order ID';
|
|
$_['column_customer'] = 'Customer';
|
|
$_['column_comment'] = 'Comment';
|
|
$_['column_description'] = 'Description';
|
|
$_['column_amount'] = 'Amount';
|
|
$_['column_notify'] = 'Customer Notified';
|
|
$_['column_status'] = 'Status';
|
|
$_['column_date_added'] = 'Date Added';
|
|
$_['column_product'] = 'Product Details';
|
|
$_['column_quantity'] = 'Quantity';
|
|
$_['column_total'] = 'Total';
|
|
$_['column_action'] = 'Action';
|
|
|
|
// Entry
|
|
$_['entry_customer'] = 'Customer';
|
|
$_['entry_subscription_id'] = 'Subscription ID';
|
|
$_['entry_order_id'] = 'Order ID';
|
|
$_['entry_subscription_plan'] = 'Subscription Plan';
|
|
$_['entry_trial_price'] = 'Trial Price';
|
|
$_['entry_trial_duration'] = 'Trial Duration';
|
|
$_['entry_trial_remaining'] = 'Trial Remaining';
|
|
$_['entry_trial_cycle'] = 'Trial Cycle';
|
|
$_['entry_trial_frequency'] = 'Trial Frequency';
|
|
$_['entry_trial_status'] = 'Trial Status';
|
|
$_['entry_price'] = 'Price';
|
|
$_['entry_duration'] = 'Duration';
|
|
$_['entry_remaining'] = 'Remaining';
|
|
$_['entry_cycle'] = 'Cycle';
|
|
$_['entry_frequency'] = 'Frequency';
|
|
$_['entry_date_next'] = 'Date Next';
|
|
$_['entry_comment'] = 'Comment';
|
|
$_['entry_amount'] = 'Amount';
|
|
$_['entry_notify'] = 'Notify Customer';
|
|
$_['entry_override'] = 'Override';
|
|
$_['entry_date_from'] = 'Date From';
|
|
$_['entry_date_to'] = 'Date To';
|
|
$_['entry_subscription_status'] = 'Subscription Status';
|
|
|
|
// Help
|
|
$_['help_trial_duration'] = 'The duration is the number of times the user will make a payment.';
|
|
$_['help_trial_cycle'] = 'Subscription amounts are calculated by the frequency and cycles.';
|
|
$_['help_trial_frequency'] = 'If you use a frequency of "week" and a cycle of "2", then the user will be billed every 2 weeks.';
|
|
$_['help_duration'] = 'The duration is the number of times the user will make a payment, set this to 0 if you want payments until they are cancelled.';
|
|
$_['help_cycle'] = 'Subscription amounts are calculated by the frequency and cycles.';
|
|
$_['help_frequency'] = 'If you use a frequency of "week" and a cycle of "2", then the user will be billed every 2 weeks.';
|
|
|
|
// Tab
|
|
$_['tab_order'] = 'Orders';
|
|
|
|
// Error
|
|
$_['error_permission'] = 'Warning: You do not have permission to modify subscriptions!';
|
|
$_['error_status'] = 'Error: The subscription status does not match with the store status!';
|
|
$_['error_subscription'] = 'Warning: Subscription does not exist!';
|
|
$_['error_subscription_plan'] = 'Warning: Subscription plan does not exist!';
|
|
$_['error_subscription_status'] = 'Warning: Subscription status needs to be selected!';
|
|
$_['error_payment_method'] = 'Warning: Payment method does not exist!';
|
|
$_['error_service_type'] = 'The service status has not been included with this transaction. If you see this error message, please contact your extension developer that handles the subscription services to resolve this issue!';
|