1.0.15 • Published 1 year ago
localisr v1.0.15
Installing
Using npm:
$ npm install localisrUsing yarn:
$ yarn add localisrOnce the package is installed, you can import the library using import or require approach:
import {LocalisrClient} from 'localisr'or
const {LocalisrClient} = require('localisr')Example
This shows the method for getting translations of all the keys within a group.
import {LocalisrClient} from 'localisr'
// initialize Localisr client
const localisr = new LocalisrClient(
<LOCALISR_ACCESS_TOKEN>,
<LOCALISR_PROJECT_KEY>
);
// get translations for all the keys in 'user-login' group
const translations = await localisr
.setLanguage(<language>)
.groups()
.getTranslations(<group-name>)
.catch((error) => {
console.log(error.response)
});Get all added documents
// initialize Localisr client
const localisr = new LocalisrClient(
<LOCALISR_ACCESS_TOKEN>,
<LOCALISR_PROJECT_KEY>
);
// get translations for all the keys in 'user-login' group
const documents = await localisr
.documents()
.getAll()
.catch((error) => {
console.log(error.response)
});