Last active
February 18, 2022 11:56
-
-
Save JohnRDOrazio/8a542fc6980a681e35674ff768017668 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo nano /usr/share/i18n/locales/la_VA | |
# PASTE contents from https://sourceware.org/bugzilla/attachment.cgi?id=13866 | |
sudo nano /usr/share/i18n/SUPPORTED | |
# add 'la_VA.UTF-8 UTF-8' to the list | |
sudo locale-gen la_VA.UTF-8 | |
LC_TIME=la_VA.UTF-8 date | |
# should output something like: | |
# Fer VI 18 Feb 2022, 12:35:36 CET | |
LC_TIME=la_VA.UTF-8 date +"%A %-d %B %Y, %T %Z" | |
# should output something like: | |
# Feria VI 18 Februarius 2022, 12:44:07 CET | |
TZ='Europe/Vatican' LC_TIME=la_VA.UTF-8 date +"%A %-d %B %Y, %T %Z" | |
# This will ensure that the timezone is correct... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment