1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-07-07 12:24:49 +02:00
bitwarden-desktop/src/app/pipes/i18n.pipe.ts
2018-02-02 12:01:55 -05:00

18 lines
394 B
TypeScript

import {
Pipe,
PipeTransform,
} from '@angular/core';
import { I18nService } from 'jslib/abstractions/i18n.service';
@Pipe({
name: 'i18n',
})
export class I18nPipe implements PipeTransform {
constructor(private i18nService: I18nService) { }
transform(id: string, p1?: string, p2?: string, p3?: string): string {
return this.i18nService.t(id, p1, p2, p3);
}
}