Update ManageCards page and localization for card creation

- Added a label for the 'Add card' action in the ManageCards page.
- Updated Turkish translations for card creation actions and notifications to improve clarity and consistency.
This commit is contained in:
Mekan1206
2025-12-21 04:13:47 +05:00
parent 88d84ac457
commit 895c5f6226
4 changed files with 13 additions and 10 deletions

View File

@@ -19,7 +19,9 @@ class ManageCards extends ManageRecords
protected function getHeaderActions(): array
{
return [
CreateAction::make(),
CreateAction::make()
->label(__('Add card'))
->createAnother(false),
];
}
}