| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?php
- // Heading
- $_['heading_title'] = 'Reverb Integration';
- // Breadcrumbs
- $_['text_extension'] = 'Extensions';
- $_['text_module'] = 'Modules';
- // Tabs
- $_['tab_settings'] = 'Settings';
- $_['tab_categories'] = 'Category Mapping';
- $_['tab_log'] = 'Sync Log';
- // Settings tab
- $_['text_api_settings'] = 'Reverb API';
- $_['entry_api_token'] = 'API Token';
- $_['help_api_token'] = 'Your personal Reverb API token. Generate one at reverb.com › Account Settings › API Keys.';
- $_['entry_status'] = 'Module Status';
- $_['entry_sync_direction'] = 'Sync Direction';
- $_['text_sync_push'] = 'One-way (OpenCart → Reverb)';
- $_['text_sync_both'] = 'Both ways (OpenCart ↔ Reverb)';
- $_['text_shipping_settings'] = 'Shipping';
- $_['entry_shipping_domestic'] = 'AU Domestic Rate (AUD)';
- $_['help_shipping_domestic'] = 'Flat shipping rate charged to Australian buyers. Leave 0 for free.';
- $_['entry_shipping_international'] = 'International Rate (AUD)';
- $_['help_shipping_international'] = 'Flat rate for international buyers. Leave 0 to disable international shipping.';
- $_['text_sync_settings'] = 'Categories Eligible for Sync';
- $_['help_sync_categories'] = 'Only products in these categories will be eligible for Reverb sync.';
- $_['text_manual_sync'] = 'Manual Sync';
- $_['button_sync_now'] = 'Sync All Eligible Products Now';
- // Category mapping tab
- $_['text_category_mapping_help'] = 'Map each OpenCart category to a Reverb category. Products in unmapped categories will be skipped during sync.';
- $_['column_oc_category'] = 'OpenCart Category';
- $_['column_reverb_category'] = 'Reverb Category';
- $_['text_no_categories'] = 'No categories selected. Choose categories in the Settings tab first.';
- // Sync log tab
- $_['button_clear_log'] = 'Clear Log';
- $_['text_log_cleared'] = 'Sync log cleared.';
- $_['column_date'] = 'Date';
- $_['column_product'] = 'Product';
- $_['column_direction'] = 'Direction';
- $_['column_status'] = 'Status';
- $_['column_message'] = 'Message';
- $_['text_push'] = 'OC → Reverb';
- $_['text_pull'] = 'Reverb → OC';
- $_['text_log_success'] = 'Success';
- $_['text_error'] = 'Error';
- $_['text_no_log'] = 'No sync activity yet.';
- // Per-product Reverb tab (injected via OCMOD)
- $_['tab_reverb'] = 'Reverb';
- $_['text_reverb_product'] = 'Reverb Listing';
- $_['entry_reverb_sync_enabled'] = 'List on Reverb';
- $_['help_reverb_sync_enabled'] = 'Enable to include this product in Reverb syncs. The product must also be in an allowed category.';
- $_['entry_reverb_condition'] = 'Condition';
- $_['help_reverb_condition'] = 'Required by Reverb. Choose the condition that best describes this item.';
- $_['entry_reverb_category'] = 'Reverb Category';
- $_['help_reverb_category'] = 'Override the category mapping for this specific product. Leave blank to use the category mapping.';
- $_['text_reverb_listing_id'] = 'Reverb Listing';
- $_['text_view_on_reverb'] = 'View on Reverb';
- $_['text_not_synced'] = 'Not yet synced';
- // Order import
- $_['text_order_import'] = 'Order Import';
- $_['button_import_orders'] = 'Import Orders from Reverb';
- $_['text_orders_imported'] = 'Import complete. %d order(s) imported, %d skipped.';
- $_['entry_order_stores'] = 'Import Orders to Store(s)';
- $_['help_order_stores'] = 'Imported Reverb orders will be assigned to the first selected store. Select at least one.';
- $_['text_select_all'] = 'Select All';
- $_['text_unselect_all'] = 'Unselect All';
- $_['entry_default_qty'] = 'Default Product Quantity';
- $_['help_default_qty'] = 'Fallback quantity applied to an imported order line when Reverb does not supply one.';
- // Success / error messages
- $_['text_success'] = 'Settings saved successfully.';
- $_['text_sync_complete'] = 'Sync complete. %d product(s) pushed, %d error(s).';
- $_['error_permission'] = 'Warning: You do not have permission to modify this module.';
- $_['error_api_token'] = 'API Token is required.';
- $_['error_api_token_invalid'] = 'Could not connect to Reverb with this token. Please check it is correct.';
|