From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,79c108d8d805d021,start X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!postnews.google.com!i39g2000cwa.googlegroups.com!not-for-mail From: "Michael Rohan" Newsgroups: comp.lang.ada Subject: Ada and Internationalization Date: 30 May 2006 16:12:35 -0700 Organization: http://groups.google.com Message-ID: <1149026932.554318.202570@i39g2000cwa.googlegroups.com> NNTP-Posting-Host: 148.87.1.172 Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: posting.google.com 1149030760 23854 127.0.0.1 (30 May 2006 23:12:40 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Tue, 30 May 2006 23:12:40 +0000 (UTC) User-Agent: G2/0.2 X-HTTP-UserAgent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8,gzip(gfe),gzip(gfe) Complaints-To: groups-abuse@google.com Injection-Info: i39g2000cwa.googlegroups.com; posting-host=148.87.1.172; posting-account=gAOdzgwAAACn-YRtA_sS8eamp4mn5Zlu Xref: g2news2.google.com comp.lang.ada:4610 Date: 2006-05-30T16:12:35-07:00 List-Id: Hi Folks, I've checked Google and have not been able to find anything in Ada out there for internationalized code. There's support for Wide_Character and Wide_Wide_Character but there doesn't seem to be libraries for message strings. Before starting down the path of writing from scratch, wanted to check. If nothing is available, I was considering taking Java .properties files, somehow "compiling" them into an Ada package and implementing something akin to Java's MessageFormat: Arguments : Message_Arguments; ... Arguments.Append ("a string"); Arguments.Append (10); Arguments.Append (Pi); Put_Line (Message_Format ("facility", "msg001", Arguments)); Take care, Michael.