39 lines
1.2 KiB
PHP
39 lines
1.2 KiB
PHP
<?php
|
|
|
|
return [
|
|
'new_brand' => 'New Brand',
|
|
'no_brands_yet' => 'No brands yet',
|
|
'no_brands_description' => 'Create brands to organize your social accounts by client or project',
|
|
'accounts_count' => ':count accounts',
|
|
|
|
'create' => [
|
|
'title' => 'Create Brand',
|
|
'description' => 'Give your brand a name to group social accounts',
|
|
'name' => 'Brand Name',
|
|
'name_placeholder' => 'e.g. Acme Corp, Personal',
|
|
'submit' => 'Create Brand',
|
|
'submitting' => 'Creating...',
|
|
],
|
|
|
|
'edit' => [
|
|
'title' => 'Edit Brand',
|
|
'description' => 'Update the name of this brand',
|
|
'name' => 'Brand Name',
|
|
'name_placeholder' => 'e.g. Acme Corp, Personal',
|
|
'submit' => 'Save Changes',
|
|
'submitting' => 'Saving...',
|
|
],
|
|
|
|
'delete' => [
|
|
'title' => 'Delete Brand',
|
|
'description' => 'Are you sure you want to delete this brand? Social accounts will be unassigned but not deleted.',
|
|
'confirm' => 'Delete',
|
|
'cancel' => 'Cancel',
|
|
],
|
|
|
|
'flash' => [
|
|
'created' => 'Brand created successfully!',
|
|
'updated' => 'Brand updated successfully!',
|
|
'deleted' => 'Brand deleted successfully!',
|
|
],
|
|
];
|