1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 23:33:31 +00:00

[EC-772] Add i18n key typechecking in web (#4023)

This commit is contained in:
Thomas Rittson
2022-12-21 14:27:00 +10:00
committed by GitHub
parent b331f5b329
commit 5a1940f3f4
50 changed files with 176 additions and 109 deletions

View File

@@ -27,6 +27,7 @@ import {
// Register the locales for the application
import "./locales";
import { WebI18nPipe } from "../core/web-i18n.pipe";
/**
* This NgModule should contain the most basic shared directives, pipes, and components. They
@@ -65,6 +66,7 @@ import "./locales";
// Web specific
],
declarations: [WebI18nPipe],
exports: [
CommonModule,
DragDropModule,
@@ -93,6 +95,7 @@ import "./locales";
ColorPasswordModule,
// Web specific
WebI18nPipe,
],
providers: [DatePipe],
bootstrap: [],