From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 7D5F13857026; Thu, 23 Feb 2023 22:27:22 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 7D5F13857026 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1677191242; bh=coWmLsouHQXjZrY4dfNkTP0WmnHnmymbi94Fg15lh5o=; h=From:To:Subject:Date:In-Reply-To:References:From; b=M+SOqt3hfKe6TgFQ7hrT2dy2u0K/1em9avN23YfEwLhfOFmhQVTf3tZyRTJgzu+09 kEuEbM+hKwnBeu9jyiqKYoECVDCAn9fB2jZiHktuZLhZyAr0yALlMiOcYIr7kICKGA UmwVxDHFIzM00Jwyar7ul9+Dvs9G7bTNmfTzgLgs= From: "cvs-commit at gcc dot gnu.org" To: gcc-rust@gcc.gnu.org Subject: [Bug translation/108890] Translation mistakes 2023 Date: Thu, 23 Feb 2023 22:27:21 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: translation X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: diagnostic X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D108890 --- Comment #6 from CVS Commits --- The master branch has been updated by Jakub Jelinek : https://gcc.gnu.org/g:7423f5b56ad436f51ac1b9defb954e2bdc5b06ab commit r13-6307-g7423f5b56ad436f51ac1b9defb954e2bdc5b06ab Author: Jakub Jelinek Date: Thu Feb 23 23:26:43 2023 +0100 xtensa: Fix up fatal_error message strings in xtensa-dynconfig.c [PR108= 890] The translation PR complains that these 4 messages from xtensa-dynconfi= g.c are marked in po/gcc.pot as c-format (which doesn't allow %qs) while th= ey should be gcc-internal-format. The problem is in the manual translation of the strings with _(), that should be both unnecessary because fatal_error invokes _() on its argument already, but also incorrect for the above reason, for gcc-internal-format strings one should use G_("...") instead if really needed. The following patch drops those _("..."), tested by regenerating po/gcc= .pot to see they are now gcc-internal-format, but not really tested on xtensa target. 2023-02-23 Jakub Jelinek PR translation/108890 * config/xtensa/xtensa-dynconfig.c (xtensa_load_config): Drop _= ()s around fatal_error format strings. --=20 You are receiving this mail because: You are on the CC list for the bug.=