From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NO_DNS_FOR_FROM autolearn=no autolearn_force=no version=3.4.6 Received: from zxce3.. (unknown [68.183.184.174]) by gnuweeb.org (Postfix) with ESMTPSA id 6416E82F07; Sun, 29 Jan 2023 01:15:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1674954914; bh=DemXqaYCQeJaU4aS5auzyFMACub6E+kGjhmG/DIijsM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Bu4n2hlJq6RTdjNEfQf+24IwoBWFAr7Dm5pXCIDctK2RQfCnfNtto2sbyRskzlrWj VKxJLu0nNvcpKnK/Z/UOSLVCLNkymqpK5stkaiVfyK6zFKNT/d1JNUpybro531jbqH zFt/3XwtkiayRKAQ7dr/l8HIBE+tN7GQcX9+FcWVV6oTiaIczExWFy+QIrAXfL82BZ qzd5RuqTwL7+e/rxXvB4WEW+G5MDNJ9d2RsLmx+uxymbHxJ4BPULNj7k6IpegrZYHv KvsGFpp8ef0/X/i6PlGhxbglJLLzzaELNL2Y/SgXE14oXJt5S4wNkgl05TkSnNycF0 tUxZr61JtQg9Q== From: Memet Zx To: GNU/Weeb Mailing List Cc: Ammar Faizi , Irvan Malik , Memet Zx Subject: [PATCH Website v1 2/2] body.php: Adding the `[lang]` attribute to the `` element Date: Sun, 29 Jan 2023 08:14:56 +0700 Message-Id: <20230129011456.6516-3-zxce3@gnuweeb.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230129011456.6516-1-zxce3@gnuweeb.org> References: <20230129011456.6516-1-zxce3@gnuweeb.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: From: Memet Zx If the page does not specify a language attribute, the screen reader assumes that the page is in the default language that the user selected when setting up the screen reader. this will be a problem for some people and will have difficulty pronouncing the text on the page correctly. Signed-off-by: Memet Zx --- src/components/body.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/body.php b/src/components/body.php index d72ce39..8cd450b 100644 --- a/src/components/body.php +++ b/src/components/body.php @@ -1,5 +1,5 @@ - +
-- Memet Zx