diff options
| author | 2025-03-12 15:35:49 -0600 | |
|---|---|---|
| committer | 2025-03-12 22:35:49 +0100 | |
| commit | 802fc89ca610ed8acca8481c122635085c63970c (patch) | |
| tree | b5fbd0f362e72228fc0deff219612f35251eb50e | |
| parent | 3b35a5a63f41fb1362c91776a201df8e3feffd6f (diff) | |
Fix issue #7383: Finish Translation issue requiring character escape out. (#7423)
Escape out "klo" ("at") characters found in format_date_hour for Finnish/Suomi
translation. Specifically to resolve issue #7383
| -rw-r--r-- | app/i18n/fi/gen.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/i18n/fi/gen.php b/app/i18n/fi/gen.php index 76c6377df..e8f0dc63d 100644 --- a/app/i18n/fi/gen.php +++ b/app/i18n/fi/gen.php @@ -94,7 +94,7 @@ return array( 'feb' => 'helmi', 'february' => 'helmikuu', 'format_date' => 'j\\. %s\\t\\a Y', - 'format_date_hour' => 'j\\. %s\\t\\a Y klo H\\:i', + 'format_date_hour' => 'j\\. %s\\t\\a Y \\k\\l\\o H\\:i', 'fri' => 'pe', 'jan' => 'tammi', 'january' => 'tammikuu', |
