npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

google-api-wrapper-v1

v1.1.10

Published

This Angular service integrates the Google Translate API to provide multi-language support for your Angular applications. It allows you to easily translate text between different languages.

Readme

@rachakondu-narayana/angular-multi-language-support

This Angular service integrates the Google Translate API to provide multi-language support for your Angular applications. It allows you to easily translate text between different languages.

Installation

To install the package, use the following npm command:

npm install google-api-wrapper-v1

Usage

1. Inject the Service in Your Component

Inject the GoogleApiWrapperService into your component and call the googleApi method to translate text.

import { Component, OnInit } from "@angular/core";
import { GoogleApiWrapperService } from "google-api-wrapper-v1";

@Component({
  selector: "app-translate",
  templateUrl: "./translate.component.html",
  styleUrls: ["./translate.component.css"],
})
export class TranslateComponent implements OnInit {
  constructor(private gls: GoogleApiWrapperService) {}

  async translate() {
    // Define the payload for translating text
    const payload = [
      [
        ["Morning", "Afternoon", "Night"],
        "en", // Source language (English)
        "te", // Target language (Telugu)
      ],
      "te_lib",
    ];

    // Call the Google Translate API service to get the translation
    try {
      const response = await this.gls.translateArrayData(payload);
      console.log({ response }); // Log the translated response
    } catch (error) {
      console.error("Error translating:", error); // Handle error
    }
  }

  ngOnInit() {
    // Call translate method when the component initializes
    this.translate();
  }
}

2. Response Format

The response from the googleApi method will be a translated array of strings, like this:

["ఉదయం", "మధ్యాహ్నం", "రాత్రి"]

This response contains the translated text, which you can use as needed in your Angular application.

3. Translate Object Example: fetchTranslatedObject Method

If you want to translate key-value pairs in an object, use the fetchTranslatedObject method. This method will allow you to send a JSON object, and it will return the translated key-value pairs.

Here's an example of how to use it:

import { Component, OnInit } from "@angular/core";
import { GoogleApiWrapperService } from "google-api-wrapper-v1";

@Component({
  selector: "app-translate",
  templateUrl: "./translate.component.html",
  styleUrls: ["./translate.component.css"],
})
export class TranslateComponent implements OnInit {
  constructor(private gls: GoogleApiWrapperService) {}

  async translateObject() {
    // Define the payload for translating text
    const payload = {
      data: JSON.stringify({
        greeting: "Good Morning",
        farewell: "Goodbye",
        question: "How are you?",
      }),
      selectedLanguage: "te", // Target language (Telugu)
    };

    // Call the Google Translate API service to get the translation
    try {
      const response = await this.gls.fetchTranslatedObject(payload);
      console.log({ response }); // Log the translated response
    } catch (error) {
      console.error("Error translating:", error); // Handle error
    }
  }

  ngOnInit() {
    // Call translate method when the component initializes
    this.translateObject();
  }
}

4. Response Format for fetchTranslatedObject

The response for fetchTranslatedObject will be an object with translated values:

{
  "greeting": "శుభోదయం",
  "farewell": "గుడ్‌బై",
  "question": "మీరు ఎలా ఉన్నారు?"
}

This object contains the translated text, which you can use in your Angular application as needed.

Notes:

  • The googleApi method translates simple arrays of text.
  • The fetchTranslatedObject method is used to translate key-value pairs in an object format.
  • Both methods return promises, so you can handle them with async/await or .then().
  • Since HttpClient is used in the service, make sure to import HttpClientModule in your main.ts (for standalone apps) or app.module.ts (for module-based apps).

License

MIT License


Support & Funding

If you find this package useful, please consider supporting its development.

How to Support:

Your support helps us improve and maintain this project. Thank you! 🚀

Contact for Queries:

If you have any questions, feel free to reach out:
📧 Email: [email protected]