From d5324bce6a9dafcfef72685ab2f4d5dc3e50d35b Mon Sep 17 00:00:00 2001 From: snipe Date: Tue, 20 Feb 2024 16:43:07 +0000 Subject: [PATCH] Added more generic bulk translations for trans_choice Signed-off-by: snipe --- resources/lang/en-US/general.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/resources/lang/en-US/general.php b/resources/lang/en-US/general.php index c4f120d5d5..69627a37aa 100644 --- a/resources/lang/en-US/general.php +++ b/resources/lang/en-US/general.php @@ -182,6 +182,7 @@ return [ 'lock_passwords' => 'This field value will not be saved in a demo installation.', 'feature_disabled' => 'This feature has been disabled for the demo installation.', 'location' => 'Location', + 'location_plural' => 'Location|Locations', 'locations' => 'Locations', 'logo_size' => 'Square logos look best with Logo + Text. Logo maximum display size is 50px high x 500px wide. ', 'logout' => 'Logout', @@ -502,5 +503,15 @@ return [ 'or' => 'or', 'url' => 'URL', 'edit_fieldset' => 'Edit fieldset fields and options', + 'bulk' => [ + 'delete' => + [ + 'header' => 'Bulk Delete :object_type', + 'warn' => 'You are about to delete one :object_type|You are about to delete :count :object_type', + 'success' => ':object_type successfully deleted|Successfully deleted :count :object_type', + 'error' => 'Could not delete :object_type', + ], + + ], ];