public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug localedata/24366] la_VA locale support
       [not found] <bug-24366-131@http.sourceware.org/bugzilla/>
@ 2020-05-15 15:55 ` nicolalucasbuescher+bugzilla at gmail dot com
  2021-12-20  0:15 ` priest at johnromanodorazio dot com
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 6+ messages in thread
From: nicolalucasbuescher+bugzilla at gmail dot com @ 2020-05-15 15:55 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=24366

--- Comment #4 from nicolalucasbuescher+bugzilla at gmail dot com ---
Rafal, that's certainly a fair point. My point of reference is that, while it
may or may not be appropriate to compare the feature set of Linux to other OSs,
in both macOS and Windows 10 you are able to set your locale/language to Latin
(lingua latina). In both cases, the setting applies only to the locale used for
applications, and Latin is not provided as a display language (what I would
call a second-class locale). But this enables applications to support Latin as
a language option.

Technically you can also do this in Linux without explicit glibc support, and I
did, but the fact that there is no actual locale file crashes some programs,
Dropbox being one. This fact that apps can actually crash is the reason I filed
a bug.

I'm not deeply familiar with how locales work in Linux, but my thought was that
having an la_VA locale would enable applications to support the language for
spell-checking, which I think would be a very good use-case for the locale,
considering that many many people still work with Latin, even though there are
no native speakers.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug localedata/24366] la_VA locale support
       [not found] <bug-24366-131@http.sourceware.org/bugzilla/>
  2020-05-15 15:55 ` [Bug localedata/24366] la_VA locale support nicolalucasbuescher+bugzilla at gmail dot com
@ 2021-12-20  0:15 ` priest at johnromanodorazio dot com
  2021-12-20  3:45 ` priest at johnromanodorazio dot com
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 6+ messages in thread
From: priest at johnromanodorazio dot com @ 2021-12-20  0:15 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=24366

John R. D'Orazio <priest at johnromanodorazio dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |priest at johnromanodorazio dot co
                   |                            |m

--- Comment #5 from John R. D'Orazio <priest at johnromanodorazio dot com> ---
I would second the addition of a Latin locale. I have been running into a few
issues in the past couple years as I develop some applications in PHP that have
strings in a number of languages, among which is Latin. However since there is
no Latin locale in the system, none of the strings in Latin can be handled
through `gettext` or any kind of localization functions in PHP (such as the
soon to be deprecated `strftime`, or the newer `IntlDateFormatter`, just to
mention a couple examples). Which means I can handle all translatable strings
through `gettext` with the exception of Latin, which I have to hardcode into my
applications. This makes for an application that becomes hard to maintain, it
would be so much easier to just be able to handle any Latin translations just
like any other language that is supported by the application.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug localedata/24366] la_VA locale support
       [not found] <bug-24366-131@http.sourceware.org/bugzilla/>
  2020-05-15 15:55 ` [Bug localedata/24366] la_VA locale support nicolalucasbuescher+bugzilla at gmail dot com
  2021-12-20  0:15 ` priest at johnromanodorazio dot com
@ 2021-12-20  3:45 ` priest at johnromanodorazio dot com
  2021-12-21 11:02 ` priest at johnromanodorazio dot com
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 6+ messages in thread
From: priest at johnromanodorazio dot com @ 2021-12-20  3:45 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=24366

--- Comment #6 from John R. D'Orazio <priest at johnromanodorazio dot com> ---
Created attachment 13866
  --> https://sourceware.org/bugzilla/attachment.cgi?id=13866&action=edit
latin - Vatican locale definition

Compared to the previously proposed patch, here are some of the choices I made
in this proposal:

1) since the Vatican doesn't have streets and street numbers, and any mail
going to the Vatican needs simply have an indication of a personal name and a
department, followed by the zip (00120) and the country name (generally "Città
del Vaticano" in Italian is used, so that's what I put as 'country_name' under
'LC_ADDRESS'. Keeping all this in mind I simplified the 'postal_fmt' control
characters.

2) Generally anyone being addressed at the Vatican is either the Pope, a
Cardinal, a Bishop, a Monsignor, or the head of a department (will often use a
title such as "Dottore"), so I formatted 'LC_NAME' with title, name and
surname.

3) Yes and No in Latin are expressed as "Sic" and "Non".

4) Monetarily, the Vatican uses the Euro, so this is the same as the Italian
locale

5) LC_NUMERIC cannot effectively be defined correctly, because Latin, even
ecclesiastical Latin, uses Roman numerals. However, I don't believe any kind of
POSIX locale supports anything besides Arabic numerals in ascending order from
0 to 9. So to make this work, I just left it the same as the Italian locale.

6) For the days of the Week, ecclesiastical Latin in fact uses "Feria Secunda"
or "Feria II" rather than the classical "Dies Lunae". Seeing that a practical
application for this could be formatting Dates to be printed in texts such as
the Roman Missal, and considering that in the Roman Missal the days of the week
are printed with Roman numerals rather than in word form ("Feria II" rather
than "Feria Secunda"), I opted for using the Roman numerals in the names of the
days of the week.

7) I'm not sure I fully know the format for the 'LC_CTYPE' section, but I
eyeballed the German locale to have an idea. Seeing that Latin has a few
ligatures, I'm guessing they need to be defined?

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug localedata/24366] la_VA locale support
       [not found] <bug-24366-131@http.sourceware.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2021-12-20  3:45 ` priest at johnromanodorazio dot com
@ 2021-12-21 11:02 ` priest at johnromanodorazio dot com
  2024-01-18 11:00 ` maiku.fabian at gmail dot com
  2024-01-18 13:40 ` priest at johnromanodorazio dot com
  5 siblings, 0 replies; 6+ messages in thread
From: priest at johnromanodorazio dot com @ 2021-12-21 11:02 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=24366

--- Comment #7 from John R. D'Orazio <priest at johnromanodorazio dot com> ---
I'm also seeing that there has been some activity on CLDR for a definition of
Latin among supported locales:

https://github.com/unicode-org/cldr/blob/main/seed/main/la.xml

However, I see that Ancient / Classical Latin has been used rather than
Ecclesiastical Latin in some cases in the proposed definition. I'm checking in
with the Pontifical Academy for the Latin Language (
https://www.pontificiaacademialatinitatis.org/ ) and with other academic
resources such as the Pontifical Institute for Higher Latin at the Salesian
University in Rome, for a consultation, so as to propose a correct definition
that will be useful for modern uses. If I have any updates from this
consultation, I will post them here.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug localedata/24366] la_VA locale support
       [not found] <bug-24366-131@http.sourceware.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2021-12-21 11:02 ` priest at johnromanodorazio dot com
@ 2024-01-18 11:00 ` maiku.fabian at gmail dot com
  2024-01-18 13:40 ` priest at johnromanodorazio dot com
  5 siblings, 0 replies; 6+ messages in thread
From: maiku.fabian at gmail dot com @ 2024-01-18 11:00 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=24366

Mike FABIAN <maiku.fabian at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|                            |2024-01-18
                 CC|                            |maiku.fabian at gmail dot com
             Status|UNCONFIRMED                 |WAITING
     Ever confirmed|0                           |1

--- Comment #8 from Mike FABIAN <maiku.fabian at gmail dot com> ---
@John R. D'Orazio Do you have any updates?

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug localedata/24366] la_VA locale support
       [not found] <bug-24366-131@http.sourceware.org/bugzilla/>
                   ` (4 preceding siblings ...)
  2024-01-18 11:00 ` maiku.fabian at gmail dot com
@ 2024-01-18 13:40 ` priest at johnromanodorazio dot com
  5 siblings, 0 replies; 6+ messages in thread
From: priest at johnromanodorazio dot com @ 2024-01-18 13:40 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=24366

--- Comment #9 from John R. D'Orazio <priest at johnromanodorazio dot com> ---
(In reply to Mike FABIAN from comment #8)
> @John R. D'Orazio Do you have any updates?

I've been keeping in touch with the Pontifical Academy for Latin, they've had a
few changes internally between one director and another. I'm now in touch with
the latest director and we're going to work out a meeting fairly soon, to look
into the possibility of defining the Latin locale with the CLDR survey tool. As
soon as I have any more news I'll post it here.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2024-01-18 13:41 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-24366-131@http.sourceware.org/bugzilla/>
2020-05-15 15:55 ` [Bug localedata/24366] la_VA locale support nicolalucasbuescher+bugzilla at gmail dot com
2021-12-20  0:15 ` priest at johnromanodorazio dot com
2021-12-20  3:45 ` priest at johnromanodorazio dot com
2021-12-21 11:02 ` priest at johnromanodorazio dot com
2024-01-18 11:00 ` maiku.fabian at gmail dot com
2024-01-18 13:40 ` priest at johnromanodorazio dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).