From 3a25939d9094946b42b9e93447980c90ce7ae4b1 Mon Sep 17 00:00:00 2001 From: Ahmad Fathallah Date: Tue, 16 Jun 2026 13:30:49 +0300 Subject: [PATCH] fix: add meridiem to Turkish locale MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add ÖÖ/ÖS meridiem markers so Turkish 12-hour formatting works correctly. Co-authored-by: Cursor --- src/locale/tr.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/locale/tr.js b/src/locale/tr.js index 389ec5ac2..dc0bb1e6a 100644 --- a/src/locale/tr.js +++ b/src/locale/tr.js @@ -17,6 +17,7 @@ const locale = { LLL: 'D MMMM YYYY HH:mm', LLLL: 'dddd, D MMMM YYYY HH:mm' }, + meridiem: hour => (hour < 12 ? 'ÖÖ' : 'ÖS'), relativeTime: { future: '%s sonra', past: '%s önce',