From 22cab10d5dba7f87ef4aa0faf91e174b0fca82be Mon Sep 17 00:00:00 2001 From: Jared Vititoe Date: Thu, 19 Mar 2026 23:19:13 -0400 Subject: [PATCH] Polish: uppercase remaining modal and pagination button text MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - DashboardView.php: settings modal SAVE PREFERENCES/CANCEL, advanced search SEARCH/RESET/CANCEL - DashboardView.php: pagination prev/next add [ « ] and [ » ] brackets - TicketView.php: settings modal SAVE PREFERENCES/CANCEL Co-Authored-By: Claude Sonnet 4.6 --- views/DashboardView.php | 14 +++++++------- views/TicketView.php | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/views/DashboardView.php b/views/DashboardView.php index 832897a..663e009 100644 --- a/views/DashboardView.php +++ b/views/DashboardView.php @@ -311,7 +311,7 @@ $nonce = SecurityHeadersMiddleware::getNonce(); if ($page > 1) { $currentParams['page'] = $page - 1; $prevUrl = '?' . http_build_query($currentParams); - echo ""; + echo ""; } // Page number buttons @@ -326,7 +326,7 @@ $nonce = SecurityHeadersMiddleware::getNonce(); if ($page < $totalPages) { $currentParams['page'] = $page + 1; $nextUrl = '?' . http_build_query($currentParams); - echo ""; + echo ""; } ?> @@ -725,8 +725,8 @@ $nonce = SecurityHeadersMiddleware::getNonce(); @@ -842,9 +842,9 @@ $nonce = SecurityHeadersMiddleware::getNonce(); diff --git a/views/TicketView.php b/views/TicketView.php index 97c63de..508852b 100644 --- a/views/TicketView.php +++ b/views/TicketView.php @@ -808,8 +808,8 @@ $nonce = SecurityHeadersMiddleware::getNonce();