33 lines
905 B
TypeScript
33 lines
905 B
TypeScript
export default {
|
|
// Table columns
|
|
'banzones.name': 'Zone Name',
|
|
'banzones.area': 'Province/City',
|
|
'banzones.description': 'Description',
|
|
'banzones.type': 'Type',
|
|
'banzones.conditions': 'Conditions',
|
|
'banzones.state': 'Status',
|
|
'banzones.action': 'Actions',
|
|
'banzones.title': 'zones',
|
|
'banzones.create': 'Create Zone',
|
|
|
|
// Zone types
|
|
'banzone.area.fishing_ban': 'Fishing Ban',
|
|
'banzone.area.move_ban': 'Movement Ban',
|
|
'banzone.area.safe': 'Safe Area',
|
|
|
|
// Status
|
|
'banzone.is_enable': 'Enabled',
|
|
'banzone.is_unenabled': 'Disabled',
|
|
|
|
// Shape types
|
|
'banzone.polygon': 'Polygon',
|
|
'banzone.polyline': 'Polyline',
|
|
'banzone.circle': 'Circle',
|
|
|
|
// Notifications
|
|
'banzone.notify.delete_zone_success': 'Zone deleted successfully',
|
|
'banzone.notify.delete_zone_confirm':
|
|
'Are you sure you want to delete this zone',
|
|
'banzone.notify.fail': 'Operation failed!',
|
|
};
|