New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

tl8

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tl8

TL8 is a system that enables every team member to edit translations on an Angular application that uses `ngx-translate`. For more information, visit the website [tl8.io](https://tl8.io).

latest
npmnpm
Version
7.0.0-beta.2
Version published
Weekly downloads
53
253.33%
Maintainers
1
Weekly downloads
 
Created
Source

TL8

TL8 is a system that enables every team member to edit translations on an Angular application that uses ngx-translate. For more information, visit the website tl8.io.

Compatibility

AngularTl8
177.*
155.*
143.*, 2.*
<141.*

Setup

Install

npm install --save tl8

Setup your module

Add the TL8 module to your application, ideally where you include the TranslateModule of ngx-translate

import { TL8Module } from 'tl8';

@NgModule({
  ...
  imports: [
    ...
    TranslateModule.forRoot(...),
    TL8Module.forRoot({
      langs: [
        { lang: 'en', label: 'English' },
        { lang: 'fr', label: 'French' },
        { lang: 'de', label: 'German' },
      ]
    }),
    ...
  ],
  ...
})
export class SharedModule { }

FAQs

Package last updated on 29 Mar 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts