|
| 1 | +<?php |
| 2 | + |
| 3 | +return [ |
| 4 | + 'singular' => 'Price List', |
| 5 | + 'plural' => 'Price Lists', |
| 6 | + |
| 7 | + 'fields' => [ |
| 8 | + 'name' => 'Name', |
| 9 | + 'code' => 'Code', |
| 10 | + 'currency' => 'Currency', |
| 11 | + 'tax_included' => 'Tax Included', |
| 12 | + 'notes' => 'Notes', |
| 13 | + 'is_active' => 'Active', |
| 14 | + 'is_default' => 'Default Selling', |
| 15 | + 'is_default_purchase' => 'Default Purchase', |
| 16 | + 'tenant' => 'Tenant', |
| 17 | + ], |
| 18 | + |
| 19 | + 'sections' => [ |
| 20 | + 'information' => 'Price List Information', |
| 21 | + 'information_description' => 'Basic information about the price list', |
| 22 | + 'settings' => 'Settings', |
| 23 | + 'settings_description' => 'Configure price list behavior', |
| 24 | + 'tenant_settings' => 'Tenant Settings', |
| 25 | + 'tenant_settings_description' => 'Configure price list settings for each tenant/site', |
| 26 | + 'default_settings' => 'Default Settings', |
| 27 | + ], |
| 28 | + |
| 29 | + 'placeholders' => [ |
| 30 | + 'name' => 'Enter price list name', |
| 31 | + 'code' => 'Optional code for identification', |
| 32 | + 'currency' => 'Select currency', |
| 33 | + 'notes' => 'Optional notes about this price list', |
| 34 | + ], |
| 35 | + |
| 36 | + 'help_text' => [ |
| 37 | + 'tax_included' => 'Whether prices include tax', |
| 38 | + 'is_active' => 'Enable this price list', |
| 39 | + 'is_active_tenant' => 'Enable this price list for :tenant', |
| 40 | + 'is_default' => 'Use as default selling price list', |
| 41 | + 'is_default_tenant' => 'Use as default selling price list for :tenant', |
| 42 | + 'is_default_purchase' => 'Use as default purchase price list', |
| 43 | + 'is_default_purchase_tenant' => 'Use as default purchase price list for :tenant', |
| 44 | + ], |
| 45 | + |
| 46 | + 'table' => [ |
| 47 | + 'columns' => [ |
| 48 | + 'id' => 'ID', |
| 49 | + 'name' => 'Name', |
| 50 | + 'code' => 'Code', |
| 51 | + 'currency' => 'Currency', |
| 52 | + 'tax_included' => 'Tax Included', |
| 53 | + 'is_active' => 'Active', |
| 54 | + 'is_default' => 'Default Selling', |
| 55 | + 'is_default_purchase' => 'Default Purchase', |
| 56 | + 'created_at' => 'Created Date', |
| 57 | + 'updated_at' => 'Last Modified Date', |
| 58 | + ], |
| 59 | + ], |
| 60 | + |
| 61 | + 'notifications' => [ |
| 62 | + 'conflict_resolved_title' => 'Conflict Resolved', |
| 63 | + 'conflict_resolved_selling_disabled' => 'A price list cannot be both default selling and default purchase for :tenant. Default selling has been disabled.', |
| 64 | + 'conflict_resolved_purchase_disabled' => 'A price list cannot be both default selling and default purchase for :tenant. Default purchase has been disabled.', |
| 65 | + 'conflict_resolved_selling_disabled_simple' => 'A price list cannot be both default selling and default purchase. Default selling has been disabled.', |
| 66 | + 'conflict_resolved_purchase_disabled_simple' => 'A price list cannot be both default selling and default purchase. Default purchase has been disabled.', |
| 67 | + ], |
| 68 | + |
| 69 | + 'validation' => [ |
| 70 | + 'cannot_be_both_defaults' => 'A price list cannot be both default selling and default purchase.', |
| 71 | + 'cannot_be_both_defaults_tenant' => 'A price list cannot be both default selling and default purchase for :tenant.', |
| 72 | + ], |
| 73 | + |
| 74 | + 'messages' => [ |
| 75 | + 'default_selling_help' => 'Only one price list can be set as default selling per tenant.', |
| 76 | + 'default_purchase_help' => 'Only one price list can be set as default purchase per tenant.', |
| 77 | + 'cannot_delete_default' => 'Cannot delete a default price list.', |
| 78 | + ], |
| 79 | + |
| 80 | + 'labels' => [ |
| 81 | + 'current' => 'Current', |
| 82 | + 'tenant_switcher' => 'Tenant Switcher', |
| 83 | + ], |
| 84 | +]; |
0 commit comments