54 lines
1.6 KiB
PHP
54 lines
1.6 KiB
PHP
<?php
|
|
|
|
return [
|
|
'title' => 'Labels',
|
|
'description' => 'Create labels to organize and categorize your posts',
|
|
'search' => 'Search labels...',
|
|
'new_label' => 'New Label',
|
|
'no_labels_yet' => 'No labels yet',
|
|
'no_search_results' => 'No labels match your search',
|
|
'try_different_search' => 'Try a different keyword or clear the search.',
|
|
'create_first_label' => 'Create your first label',
|
|
'table' => [
|
|
'name' => 'Name',
|
|
'created_at' => 'Created',
|
|
],
|
|
|
|
'actions' => [
|
|
'edit' => 'Edit label',
|
|
'delete' => 'Delete label',
|
|
],
|
|
|
|
'create' => [
|
|
'title' => 'Create Label',
|
|
'description' => 'Give your label a name and pick a color',
|
|
'name' => 'Name',
|
|
'name_placeholder' => 'Enter label name...',
|
|
'color' => 'Color',
|
|
'submit' => 'Create Label',
|
|
'submitting' => 'Creating...',
|
|
],
|
|
|
|
'edit' => [
|
|
'title' => 'Edit Label',
|
|
'description' => 'Update the name and color for this label',
|
|
'name' => 'Name',
|
|
'name_placeholder' => 'Enter label name...',
|
|
'color' => 'Color',
|
|
'submit' => 'Save Changes',
|
|
'submitting' => 'Saving...',
|
|
],
|
|
|
|
'delete' => [
|
|
'title' => 'Delete Label',
|
|
'description' => 'Are you sure you want to delete this label? This action cannot be undone.',
|
|
'confirm' => 'Delete',
|
|
'cancel' => 'Cancel',
|
|
],
|
|
|
|
'flash' => [
|
|
'created' => 'Label created successfully!',
|
|
'updated' => 'Label updated successfully!',
|
|
'deleted' => 'Label deleted successfully!',
|
|
],
|
|
];
|