From 9ac39b77ee589503fd9f27a9dd2c7fa4bffedd4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Krej=C4=8D=C3=AD?= <35201200+Martin5001@users.noreply.github.com> Date: Sat, 24 Apr 2021 05:21:09 +0200 Subject: [PATCH] Fix incorrect cs_CZ translation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The word "me" here is a [dative case!](https://en.wikipedia.org/wiki/Dative_case) but the current translation would be used for genitive or accusative cases, thus it is incorrect and should be changed to "mně". --- app/Locale/cs_CZ/translations.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Locale/cs_CZ/translations.php b/app/Locale/cs_CZ/translations.php index 217442fb1..f7d822d85 100644 --- a/app/Locale/cs_CZ/translations.php +++ b/app/Locale/cs_CZ/translations.php @@ -936,8 +936,8 @@ return array( 'Copy and paste your link here...' => 'Zde vložte váš odkaz...', 'URL' => 'URL', 'Internal links' => 'Interní odkazy', - 'Assign to me' => 'Přiřadit to mě', - 'Me' => 'Mě', + 'Assign to me' => 'Přiřadit to mně', + 'Me' => 'Mně', 'Do not duplicate anything' => 'Nekopírovat nic', 'Projects management' => 'Správa projektů', 'Users management' => 'Správa uživatelů',