Code Monkey home page Code Monkey logo

Comments (3)

robisim74 avatar robisim74 commented on May 26, 2024

Hello. Usually the translation is used in templates. Service does not exist in object-orienting languages: there are classes and also the components are classes.
However, this library has the LocalizationService class, which provides the translation service. After it has been initialized in the main component, you can take advantage of the dependency injection in all children components or classes that recall it.
It has a translate method of Observable type, you can invoke it by RX to get the translation of the desired key, something like this:

    constructor(public localization: LocalizationService) {

        var translatedTitle: string;

        this.localization.translate("TITLE").forEach(

            // Next.
            (value: string) => {

                translatedTitle = value;

            }, null

        ).then(() => console.log(translatedTitle));

    }

from angular-l10n.

pedrolvr avatar pedrolvr commented on May 26, 2024

Great!

2016-04-27 17:13 GMT-03:00 Roberto Simonetti [email protected]:

Hello. Usually the translation is used in templates. Service does not
exist in object-orienting languages: there are classes and also the
components are classes.
However, this library has the LocalizationService class, which provides
the translation service. After it has been initialized in the main
component, you can take advantage of the dependency injection in all
children components or classes that recall it.
It has a translate method of Observable type, you can invoke it by RX to
get the translation of the desired key, something like this:

constructor(public localization: LocalizationService) {

    var translatedTitle: string;

    this.localization.translate("TITLE").forEach(

        // Next.
        (value: string) => {

            translatedTitle = value;

        }, null

    ).then(() => console.log(translatedTitle));

}


You are receiving this because you authored the thread.
Reply to this email directly or view it on GitHub
#3 (comment)

from angular-l10n.

robisim74 avatar robisim74 commented on May 26, 2024

I update and close this answer: Now you have two methods of LocalizationService to call in the component:

  • translate of string type;
  • translateAsync of Observable type.

Greetings.

from angular-l10n.

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.