Git Product home page Git Product logo

Comments (5)

eligrey avatar eligrey commented on August 30, 2024

Yep, use String.locale to manually set the localization language.

After setting String.locale = "pt";, l10n.js will give Português translations. Likewise, setting it to "en" will make l10n.js give you English localizations.

from l10n.js.

eligrey avatar eligrey commented on August 30, 2024

Actually, I see your issue is that you want a global storage for strings not bound to a language. I'm going to implement that right now.

from l10n.js.

eligrey avatar eligrey commented on August 30, 2024

@tbragaf You can now store default strings under "". For example:

{
    "": {
        "foo": "default"
    },
    "en": {
        "foo": "English"
    },
    "en-US": {
        "foo": "English (US)"
    },
    "pt": {
        "foo": "Português"
    }
}

"foo".toLocalString() === "default" if the user doesn't match any of the supported locales.

from l10n.js.

eligrey avatar eligrey commented on August 30, 2024

Note that you can also set String.defaultLocale to set any language as the default (e.g. String.defaultLocale = "en"), and then that language will behave like the new "" default I just introduced.

from l10n.js.

tbragaf avatar tbragaf commented on August 30, 2024

@eligrey Thank you very much!

from l10n.js.

Related Issues (17)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.