Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

fix: don't show error when locale is C/C.UTF-8#657

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
cexbrayat merged 1 commit intovuejs:mainfromhaoqunjiang:fix-c-locale
Jan 6, 2025
Merged
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletionsutils/getLanguage.ts
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -51,6 +51,18 @@ interface Language {
* @returns locale that linked with correct name
*/
function linkLocale(locale: string) {
// The C locale is the default system locale for POSIX systems.
// https://docs.oracle.com/cd/E36784_01/html/E36823/glmar.html
// https://sourceware.org/glibc/wiki/Proposals/C.UTF-8
// It is common among containerized environments or minimal virtual environments
// though most user-facing systems would have a more specific locale set.
// The problem here is that the C locale is not a valid language tag for the Intl API.
// But it is not desirable to throw an error in this case.
// So we map it to 'en-US'.
if (locale === 'C') {
return 'en-US'
}

let linkedLocale: string
try {
linkedLocale = Intl.getCanonicalLocales(locale)[0]
Expand Down
Loading

[8]ページ先頭

©2009-2025 Movatter.jp