Coder Social home page Coder Social logo

Localize whole application about webmarks HOT 4 CLOSED

raucao avatar raucao commented on May 18, 2024
Localize whole application

from webmarks.

Comments (4)

galfert avatar galfert commented on May 18, 2024

Ember addon for internationalization: https://github.com/jamesarosen/ember-i18n

from webmarks.

galfert avatar galfert commented on May 18, 2024

In a different project I determined the locale using the user's preferred Browser languages.

Using an instance initializer (app/instance-initializers/i18n):

export default {
  name: 'i18n',

  initialize: function(application) {
    let i18n = application.lookup('service:i18n');
    i18n.set('locale', determineLocale(i18n.get('locales')));
  }
};

function determineLocale(availableLocales) {
  let userLanguages = navigator.languages || [];
  userLanguages.push(navigator.language, navigator.userLanguage, 'en');

  return userLanguages.compact().find((language) => {
    return availableLocales.indexOf(language) > -1 ||
           availableLocales.indexOf(language.split('-')[0]) > -1;
  });
}

from webmarks.

raucao avatar raucao commented on May 18, 2024

Works great now! I'm merging locally, with some changes on top.

from webmarks.

raucao avatar raucao commented on May 18, 2024

@ebrahim-elgaml Thanks again for your contribution! Much appreciated.

from webmarks.

Related Issues (20)

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.