From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [IPv6:2a01:7e0:0:424::9]) by lore.proxmox.com (Postfix) with ESMTPS id 76D921FF185 for ; Mon, 4 Aug 2025 11:41:44 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 7FA1D1CDC7; Mon, 4 Aug 2025 11:43:13 +0200 (CEST) From: Dietmar Maurer To: pve-devel@lists.proxmox.com Date: Mon, 4 Aug 2025 11:42:39 +0200 Message-ID: <20250804094239.2186189-1-dietmar@proxmox.com> X-Mailer: git-send-email 2.47.2 MIME-Version: 1.0 X-SPAM-LEVEL: Spam detection results: 0 AWL -0.582 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment KAM_LAZY_DOMAIN_SECURITY 1 Sending domain does not have any anti-forgery methods RCVD_IN_VALIDITY_CERTIFIED_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. RCVD_IN_VALIDITY_RPBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. RCVD_IN_VALIDITY_SAFE_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. RDNS_NONE 0.793 Delivered to internal network by a host with no rDNS SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_NONE 0.001 SPF: sender does not publish an SPF Record Subject: [pve-devel] [PATCH i18n] exclude gettext test messages X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Proxmox VE development discussion Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pve-devel-bounces@lists.proxmox.com Sender: "pve-devel" Really a ugly hack, but simple to implement. Signed-off-by: Dietmar Maurer --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 07658e3..1c30bd3 100644 --- a/Makefile +++ b/Makefile @@ -169,6 +169,9 @@ define xtrpotupdate --output "$(1)".pot endef +# HACK: exclude gettext test messages +EXCLUDED_PWT_FILES= tr.rs gettext_wrapper.rs + .PHONY: update update_pot do_update update_pot: submodule $(call potupdate,proxmox-widget-toolkit,proxmox-widget-toolkit/) @@ -179,7 +182,10 @@ update_pot: submodule $(call xtrpotupdate,pve-yew-mobile-gui,pve-yew-mobile-gui/src/main.rs) $(call xtrpotupdate,pmg-yew-quarantine-gui,pmg-yew-quarantine-gui/src/main.rs) $(call xtrpotupdate,proxmox-yew-comp,proxmox-yew-comp/src/lib.rs) + for i in $(EXCLUDED_PWT_FILES); do mv proxmox-yew-widget-toolkit/src/$$i proxmox-yew-widget-toolkit/src/$$i.org; echo > proxmox-yew-widget-toolkit/src/$$i; done $(call xtrpotupdate,proxmox-yew-widget-toolkit,proxmox-yew-widget-toolkit/src/lib.rs) + for i in $(EXCLUDED_PWT_FILES); do mv proxmox-yew-widget-toolkit/src/$$i.org proxmox-yew-widget-toolkit/src/$$i; done + do_update: $(MAKE) update_pot -- 2.47.2 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel