| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?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
- $_['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.';
- // 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.';
|