From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Vivien Kraus Newsgroups: gmane.lisp.guile.user Subject: Re: Static, pure Scheme internationalization Date: Sat, 21 Dec 2024 12:46:48 +0100 Message-ID: <8381a20ada723b92a0630ee395fa30ea17796465.camel@planete-kraus.eu> References: Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="34770"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Evolution 3.48.4 Cc: Guile User To: Nala Ginrut Original-X-From: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Sat Dec 21 12:47:44 2024 Return-path: Envelope-to: guile-user@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1tOxxQ-0008rE-Be for guile-user@m.gmane-mx.org; Sat, 21 Dec 2024 12:47:44 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1tOxwk-0007p3-8a; Sat, 21 Dec 2024 06:47:02 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tOxwi-0007on-Um for guile-user@gnu.org; Sat, 21 Dec 2024 06:47:00 -0500 Original-Received: from planete-kraus.eu ([2a00:5881:4008:2810::309]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_CHACHA20_POLY1305:256) (Exim 4.90_1) (envelope-from ) id 1tOxwg-00062q-DR for guile-user@gnu.org; Sat, 21 Dec 2024 06:47:00 -0500 Original-Received: from planete-kraus.eu (localhost.lan [127.0.0.1]) by planete-kraus.eu (OpenSMTPD) with ESMTP id 2144f012; Sat, 21 Dec 2024 11:46:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=planete-kraus.eu; h= message-id:subject:from:to:cc:date:in-reply-to:references :content-type:content-transfer-encoding:mime-version; s= albinoniB; bh=7JYj9zRVmM6KU0C3eC4YX6j7R/k=; b=YgVPVwIKg4+z4115Ff 8X9uB//6P5dS0iUvXtVBD5NS4cjRcRRNykBiIqbvLFpvldMteWxicLV89dssCOJi ODd3AqTHrAMvzhYHC+MWMiFIoiPj3rktRZfgwH+HN4c1ioH+e/lhokMlYaF7q9bI CwSR98hIUg3lT3sKr6Ng8IVPTkLmWsetgW3q2DIRI5f+TI5MVFx/aDSqJGJ+o3UN zdpoY3HXtRLywbHdZBNF2U0XH5nEjSzX8rGo0PU0NkId0QpLY4gLTtomKStVWH65 14r3ZNdG/Yk2gphbeEwvzzD4QnMsTq2fjK39N+18s9yKpojD2jNAvss2CY0EmlZM lTGA== Original-Received: by planete-kraus.eu (OpenSMTPD) with ESMTPSA id 110f83f1 (TLSv1.3:TLS_CHACHA20_POLY1305_SHA256:256:NO); Sat, 21 Dec 2024 11:46:50 +0000 (UTC) In-Reply-To: Received-SPF: pass client-ip=2a00:5881:4008:2810::309; envelope-from=vivien@planete-kraus.eu; helo=planete-kraus.eu X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Original-Sender: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.lisp.guile.user:20024 Archived-At: Hello! Le samedi 21 d=C3=A9cembre 2024 =C3=A0 20:18 +0900, Nala Ginrut a =C3=A9cri= t=C2=A0: > Maybe not complete yet, but it contains gettext, and G_ is its short > hand. > I saw you implemented a simple G_ macro, is there any reason that it > can't meet your requirements? Or you just happend to not know it > exited in Hoot? Maybe I did not look in the correct place? As far as I understand, the implementation in Hoot for (ice-9 i18n) is this: https://gitlab.com/spritely/guile-hoot/-/blob/main/lib/ice-9/i18n.scm?ref_t= ype=3Dheads It does not contain any meaningful implementation of gettext, and this file claims that i18n is not supported yet. Vivien