5.4.2 β€’ Published 1 year ago

@sozialhelden/ietf-language-tags v5.4.2

Weekly downloads
18
License
MIT
Repository
github
Last release
1 year ago

ietf-language-tags πŸ‡ΊπŸ‡³

Tools for working with IETF language tags as specified by BCP 47 / RFC 5646.

  • Aims to implement the full RFC spec
  • Validates given tag strings like zh-Hant-CN
  • Interprets complicated (but valid) tags like zh-yue-Latn-CN-pinyin-a-extend1-x-foobar-private1
  • Helps you with getting rid of redundant or deprecated tags
  • Optionally checks given tags against a local copy of the central IETF language tag registry so don't let unregistered subtags slip through

Terminology

The terminology of this library follows RFC5646. To quote the specification:

  • Tag refers to a complete language tag, such as sr-Latn-RS or az-Arab-IR.
  • Subtag refers to a specific section of a tag, delimited by a hyphen, such as the subtags zh, Hant, and CN in the tag zh-Hant-CN.
  • Code refers to values defined in external standards (and that are used as subtags in this document). For example, Hant is an ISO15924 script code that was used to define the Hant script subtag for use in a language tag.

How is this related to Unicode CLDR language tags and POSIX locales?

  • Unicode CLDR uses IETF language tags as basis standard and adds its own extensions - it allows using underscores in the tags, and specifies how to add information about cultural attributes like currencies, measurement units or collations. Most OSes, programming languages and browsers support the CLDR specifications. What's still missing in many CLDR libraries is correct support for matching user-preferred and app-supported language tags - while the Unicode CLDR specification lists 2 algorithms for matching that are more sophisticated than the proposed matching algorithm in IETF's RFC 4647, many libraries only implement the simplest one. Rafael Xavier de Souza from the CLDR.js project has an explanation of the issue.
  • POSIX locales are used in Unix-based systems to determine how apps should handle character sets and string formatting. Even after replacing their underscore separators with hyphen characters, they would not be valid as IETF language tags, and you shouldn't use them with this library without a proper conversion. For example, C is a valid POSIX locale, but not a valid IETF language tag.

Installation

npm install --save @sozialhelden/ietf-language-tags
#or
yarn add @sozialhelden/ietf-language-tags

Usage examples

  • Parse a given IETF language tag to get access to its parts:

    import { parseLanguageTag } from '@sozialhelden/ietf-language-tags';
    const tag = parseLanguageTag(
      'sl-rozaj-biske',
      // Set to `true` for returning `undefined` for invalid tags,
      // outputting errors to the console.
      // Set to `false` to throw an error if a given tag is invalid.
      // The library tries to give helpful feedback for typical errors in tags.
      true,
      // Allows you to use your own logging function. Supply `null` to suppress console output.
      console.log
    );

    This returns the language tag for Slovenian in its Resian / San Giorgio dialect of Resian variant:

    {
      "langtag": "sl-rozaj-biske",
      "language": "sl",
      "variants": ["rozaj", "biske"]
    }
  • Get all information about a given language tag, including descriptions and registry meta infos:

    const tagMetaInfo = getTag('zh-yue-Latn-CN-pinyin-a-extend1-x-foobar-private1');
      {
        extlang: {
          Added: '2009-07-29',
          Description: ['Yue Chinese', 'Cantonese'],
          Macrolanguage: 'zh',
          'Preferred-Value': 'yue',
          Prefix: ['zh'],
          Subtag: 'yue',
          Type: 'extlang',
        },
        parts: {
          extensions: {
            a: 'extend1',
          },
          extlang: 'yue',
          langtag: 'zh-yue-Latn-CN-pinyin-a-extend1-x-foobar-private1',
          language: 'zh-yue',
          privateuse: 'x-foobar-private1',
          region: 'CN',
          script: 'Latn',
          variants: ['pinyin'],
        },
        privateuse: 'x-foobar-private1',
        region: {
          Added: '2005-10-16',
          Description: ['China'],
          Subtag: 'CN',
          Type: 'region',
        },
        script: {
          Added: '2005-10-16',
          Description: ['Latin'],
          Subtag: 'Latn',
          Type: 'script',
        },
        variants: [
          {
            Added: '2008-10-14',
            Description: ['Pinyin romanization'],
            Prefix: ['zh-Latn', 'bo-Latn'],
            Subtag: 'pinyin',
            Type: 'variant',
          },
        ],
      }
  • Return a plain English description of a given tag

    describeIETFLanguageTag('zh-Hans'); // β†’ 'Chinese, written in Han (Simplified variant) script'
    describeIETFLanguageTag('yue-HK'); // β†’ 'Yue Chinese / Cantonese, as used in Hong Kong'
    describeIETFLanguageTag('es-419'); // β†’ 'Spanish / Castilian, as used in Latin America and the Caribbean'
  • Beautify tags to make them more readable

    normalizeLanguageTagCasing('sGn-Be-fR'); // β†’ 'sgn-BE-FR'
  • Get a language tag the IETF language tag registry prefers over the given tag

    getPreferredLanguageTag('zh-yue'); // β†’ 'yue'
    getPreferredLanguageTag('i-klingon'); // β†’ 'tlh'
  • Get a specific, single subtag from the IETF language tag registry:

    getSubTag('extlang', 'hsn');
    {
      Type: 'language',
      Subtag: 'hsn',
      Description: ['Xiang Chinese'],
      Added: '2009-07-29',
      Macrolanguage: 'zh'
    }
  • Match against a RegExp mimicking the RFC specs, without further semantic checks:

    const regexp = createRFC5646Regexp();
    const match = 'zh-yue-Latn-CN-pinyin-a-extend1-x-foobar-private1'.match(regexp);
    {
      region: "CN",
      script: "Latn",
      extlang: "yue",
      language: "zh-yue",
      variants: "-pinyin" // can contain one or more variants in one string
      extensions: "-a-extend1", // can contain one or more extensions in one string
      privateuse: "x-foobar-private1",
      privateuse2: undefined, // For tags that consist of nothing more than a private-use subtag
      langtag: "zh-yue-Latn-CN-pinyin-a-extend1-x-foobar-private1",
    }

Credits / License

Contributors to this package:

Thanks to Matthew Caruana Galizia for maintaining the language-subtag-registry NPM package, which this package is based on.

Update scripts copyright (c) 2013, Matthew Caruana Galizia and licensed under and MIT license.

The JSON database is licensed under the Open Data Commons Attribution License (ODC-BY).

Supported by

.

5.4.2

1 year ago

5.4.1

1 year ago

5.4.0

1 year ago

5.3.0

1 year ago

5.2.0

1 year ago

5.0.0

1 year ago

4.0.0

1 year ago

3.4.0

2 years ago

3.3.0

2 years ago

3.2.2

4 years ago

3.2.4

4 years ago

3.2.3

4 years ago

3.2.1

4 years ago

3.2.0

4 years ago

3.1.0

5 years ago