diff --git a/app/Hooks/Handlers/DeactivationHandler.php b/app/Hooks/Handlers/DeactivationHandler.php index 44164e9..f11fdcc 100644 --- a/app/Hooks/Handlers/DeactivationHandler.php +++ b/app/Hooks/Handlers/DeactivationHandler.php @@ -105,7 +105,7 @@ public function getReasons() "does_not_work" => array( "label" => "The plugin didn't work", "custom_placeholder" => "", - "custom_label" => 'Kindly tell us any suggestion so we can improve', + "custom_label" => 'Please share any suggestions so we can improve.', 'has_custom' => true ), "temporary" => array( diff --git a/app/Modules/DataProviders/NinjaFooTable.php b/app/Modules/DataProviders/NinjaFooTable.php index c9e02c3..fac2bc2 100644 --- a/app/Modules/DataProviders/NinjaFooTable.php +++ b/app/Modules/DataProviders/NinjaFooTable.php @@ -73,7 +73,7 @@ private static function enqueue_assets() 'i18n' => array( 'search_in' => __('Search in', 'ninja-tables'), 'search' => __('Search', 'ninja-tables'), - 'empty_text' => __('No Result Found', 'ninja-tables'), + 'empty_text' => __('No Results Found', 'ninja-tables'), 'clear_all' => __('Clear All', 'ninja-tables'), 'caption_format' => __('Selected', 'ninja-tables'), 'pikaday' => [ @@ -381,7 +381,7 @@ private static function render($tableArray) 'search' => (isset($settings['search_placeholder'])) ? sanitize_text_field($settings['search_placeholder']) : __('Search', 'ninja-tables'), 'no_result_text' => (isset($settings['no_result_text'])) - ? sanitize_text_field($settings['no_result_text']) : __('No Result Found', 'ninja-tables'), + ? sanitize_text_field($settings['no_result_text']) : __('No Results Found', 'ninja-tables'), ), 'shouldNotCache' => isset($settings['shouldNotCache']) ? $settings['shouldNotCache'] : false, 'skip_rows' => Arr::get($settings, 'skip_rows', 0),