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 81CCF82F61; Sun, 29 Jan 2023 11:47:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1674992866; bh=DemXqaYCQeJaU4aS5auzyFMACub6E+kGjhmG/DIijsM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=KRMX4WyGuDfr8nf/IUhBHU2POyjvMiT/ETSYv3h2s+H1xEegWa7nsYhgth1SoLPfn ZPxtoCSPt169LQBoHaR7mAxj0D7JEcmUxdW4xm/HVH+RHKphDYn0J/+PZwC41ZRhad 5ZCpDWlPqjqqsnJsVz+v9iCbPGV/G8OswQ4TQUQY/+iWhoJqVPfI5Gl0LNcnxlhhdm T5z/vG/0QiSbKa8r7NQbl3jYN4HHvtsc8nLveB0AScwN5MXiG/gokQweDnyuUYqAjZ 43RF1rpxdBo0kY8N9NXpgDf0ckMc5SnOZwxj0HG9RYxfVPCnlpeOtXJdVrXaE0hjSH bVQtrSGle01Rw== From: Memet Zx To: GNU/Weeb Mailing List Cc: Ammar Faizi , Irvan Malik , Memet Zx Subject: [PATCH Website v2 2/2] body.php: Add the `[lang]` attribute to the `` element Date: Sun, 29 Jan 2023 18:47:27 +0700 Message-Id: <20230129114727.33428-3-zxce3@gnuweeb.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230129114727.33428-1-zxce3@gnuweeb.org> References: <20230129114727.33428-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