2021-12-20 15:47:17 +01:00
|
|
|
import "zone.js/dist/zone";
|
2018-01-16 20:48:34 +01:00
|
|
|
|
2022-05-09 14:19:18 +02:00
|
|
|
import { registerLocaleData } from "@angular/common";
|
2021-12-20 15:47:17 +01:00
|
|
|
import localeAf from "@angular/common/locales/af";
|
|
|
|
import localeAz from "@angular/common/locales/az";
|
|
|
|
import localeBe from "@angular/common/locales/be";
|
|
|
|
import localeBg from "@angular/common/locales/bg";
|
|
|
|
import localeBn from "@angular/common/locales/bn";
|
2022-03-01 13:52:53 +01:00
|
|
|
import localeBs from "@angular/common/locales/bs";
|
2021-12-20 15:47:17 +01:00
|
|
|
import localeCa from "@angular/common/locales/ca";
|
|
|
|
import localeCs from "@angular/common/locales/cs";
|
|
|
|
import localeDa from "@angular/common/locales/da";
|
|
|
|
import localeDe from "@angular/common/locales/de";
|
|
|
|
import localeEl from "@angular/common/locales/el";
|
|
|
|
import localeEnGb from "@angular/common/locales/en-GB";
|
|
|
|
import localeEnIn from "@angular/common/locales/en-IN";
|
2022-03-01 13:52:53 +01:00
|
|
|
import localeEo from "@angular/common/locales/eo";
|
2021-12-20 15:47:17 +01:00
|
|
|
import localeEs from "@angular/common/locales/es";
|
|
|
|
import localeEt from "@angular/common/locales/et";
|
|
|
|
import localeFa from "@angular/common/locales/fa";
|
|
|
|
import localeFi from "@angular/common/locales/fi";
|
2022-03-01 13:52:53 +01:00
|
|
|
import localeFil from "@angular/common/locales/fil";
|
2021-12-20 15:47:17 +01:00
|
|
|
import localeFr from "@angular/common/locales/fr";
|
|
|
|
import localeHe from "@angular/common/locales/he";
|
2022-03-01 13:52:53 +01:00
|
|
|
import localeHi from "@angular/common/locales/hi";
|
2021-12-20 15:47:17 +01:00
|
|
|
import localeHr from "@angular/common/locales/hr";
|
|
|
|
import localeHu from "@angular/common/locales/hu";
|
|
|
|
import localeId from "@angular/common/locales/id";
|
|
|
|
import localeIt from "@angular/common/locales/it";
|
|
|
|
import localeJa from "@angular/common/locales/ja";
|
2022-03-01 13:52:53 +01:00
|
|
|
import localeKa from "@angular/common/locales/ka";
|
|
|
|
import localeKm from "@angular/common/locales/km";
|
2021-12-20 15:47:17 +01:00
|
|
|
import localeKn from "@angular/common/locales/kn";
|
|
|
|
import localeKo from "@angular/common/locales/ko";
|
|
|
|
import localeLv from "@angular/common/locales/lv";
|
|
|
|
import localeMl from "@angular/common/locales/ml";
|
|
|
|
import localeNb from "@angular/common/locales/nb";
|
|
|
|
import localeNl from "@angular/common/locales/nl";
|
2022-03-01 13:52:53 +01:00
|
|
|
import localeNn from "@angular/common/locales/nn";
|
2021-12-20 15:47:17 +01:00
|
|
|
import localePl from "@angular/common/locales/pl";
|
|
|
|
import localePtBr from "@angular/common/locales/pt";
|
|
|
|
import localePtPt from "@angular/common/locales/pt-PT";
|
|
|
|
import localeRo from "@angular/common/locales/ro";
|
|
|
|
import localeRu from "@angular/common/locales/ru";
|
2022-03-01 13:52:53 +01:00
|
|
|
import localeSi from "@angular/common/locales/si";
|
2021-12-20 15:47:17 +01:00
|
|
|
import localeSk from "@angular/common/locales/sk";
|
2022-03-01 13:52:53 +01:00
|
|
|
import localeSl from "@angular/common/locales/sl";
|
2021-12-20 15:47:17 +01:00
|
|
|
import localeSr from "@angular/common/locales/sr";
|
|
|
|
import localeMe from "@angular/common/locales/sr-Latn-ME";
|
|
|
|
import localeSv from "@angular/common/locales/sv";
|
|
|
|
import localeTh from "@angular/common/locales/th";
|
|
|
|
import localeTr from "@angular/common/locales/tr";
|
|
|
|
import localeUk from "@angular/common/locales/uk";
|
|
|
|
import localeVi from "@angular/common/locales/vi";
|
|
|
|
import localeZhCn from "@angular/common/locales/zh-Hans";
|
|
|
|
import localeZhTw from "@angular/common/locales/zh-Hant";
|
2022-02-24 20:50:19 +01:00
|
|
|
import { NgModule } from "@angular/core";
|
|
|
|
|
2022-06-09 14:14:31 +02:00
|
|
|
import { AccessibilityCookieComponent } from "./accounts/accessibility-cookie.component";
|
2022-07-29 21:49:58 +02:00
|
|
|
import { DeleteAccountComponent } from "./accounts/delete-account.component";
|
2022-02-24 20:50:19 +01:00
|
|
|
import { EnvironmentComponent } from "./accounts/environment.component";
|
|
|
|
import { HintComponent } from "./accounts/hint.component";
|
|
|
|
import { LockComponent } from "./accounts/lock.component";
|
|
|
|
import { LoginComponent } from "./accounts/login.component";
|
|
|
|
import { PremiumComponent } from "./accounts/premium.component";
|
|
|
|
import { RegisterComponent } from "./accounts/register.component";
|
|
|
|
import { RemovePasswordComponent } from "./accounts/remove-password.component";
|
|
|
|
import { SetPasswordComponent } from "./accounts/set-password.component";
|
|
|
|
import { SettingsComponent } from "./accounts/settings.component";
|
|
|
|
import { SsoComponent } from "./accounts/sso.component";
|
|
|
|
import { TwoFactorOptionsComponent } from "./accounts/two-factor-options.component";
|
|
|
|
import { TwoFactorComponent } from "./accounts/two-factor.component";
|
|
|
|
import { UpdateTempPasswordComponent } from "./accounts/update-temp-password.component";
|
|
|
|
import { VaultTimeoutInputComponent } from "./accounts/vault-timeout-input.component";
|
|
|
|
import { AppRoutingModule } from "./app-routing.module";
|
|
|
|
import { AppComponent } from "./app.component";
|
|
|
|
import { PasswordRepromptComponent } from "./components/password-reprompt.component";
|
|
|
|
import { SetPinComponent } from "./components/set-pin.component";
|
2022-04-19 17:29:43 +02:00
|
|
|
import { UserVerificationComponent } from "./components/user-verification.component";
|
2022-02-24 20:50:19 +01:00
|
|
|
import { AccountSwitcherComponent } from "./layout/account-switcher.component";
|
|
|
|
import { HeaderComponent } from "./layout/header.component";
|
|
|
|
import { NavComponent } from "./layout/nav.component";
|
|
|
|
import { SearchComponent } from "./layout/search/search.component";
|
|
|
|
import { AddEditComponent as SendAddEditComponent } from "./send/add-edit.component";
|
|
|
|
import { EffluxDatesComponent as SendEffluxDatesComponent } from "./send/efflux-dates.component";
|
|
|
|
import { SendComponent } from "./send/send.component";
|
2022-08-08 21:08:35 +02:00
|
|
|
import { SharedModule } from "./shared/shared.module";
|
2022-02-24 20:50:19 +01:00
|
|
|
import { AddEditCustomFieldsComponent } from "./vault/add-edit-custom-fields.component";
|
|
|
|
import { AddEditComponent } from "./vault/add-edit.component";
|
|
|
|
import { AttachmentsComponent } from "./vault/attachments.component";
|
|
|
|
import { CiphersComponent } from "./vault/ciphers.component";
|
|
|
|
import { CollectionsComponent } from "./vault/collections.component";
|
|
|
|
import { ExportComponent } from "./vault/export.component";
|
|
|
|
import { FolderAddEditComponent } from "./vault/folder-add-edit.component";
|
2022-04-01 00:49:53 +02:00
|
|
|
import { GeneratorComponent } from "./vault/generator.component";
|
2022-02-24 20:50:19 +01:00
|
|
|
import { PasswordGeneratorHistoryComponent } from "./vault/password-generator-history.component";
|
|
|
|
import { PasswordHistoryComponent } from "./vault/password-history.component";
|
|
|
|
import { ShareComponent } from "./vault/share.component";
|
2022-08-08 21:08:35 +02:00
|
|
|
import { VaultFilterModule } from "./vault/vault-filter/vault-filter.module";
|
2022-02-24 20:50:19 +01:00
|
|
|
import { VaultComponent } from "./vault/vault.component";
|
|
|
|
import { ViewCustomFieldsComponent } from "./vault/view-custom-fields.component";
|
|
|
|
import { ViewComponent } from "./vault/view.component";
|
2018-08-02 15:26:50 +02:00
|
|
|
|
2021-12-20 15:47:17 +01:00
|
|
|
registerLocaleData(localeAf, "af");
|
|
|
|
registerLocaleData(localeAz, "az");
|
|
|
|
registerLocaleData(localeBe, "be");
|
|
|
|
registerLocaleData(localeBg, "bg");
|
|
|
|
registerLocaleData(localeBn, "bn");
|
2022-03-01 13:52:53 +01:00
|
|
|
registerLocaleData(localeBs, "bs");
|
2021-12-20 15:47:17 +01:00
|
|
|
registerLocaleData(localeCa, "ca");
|
|
|
|
registerLocaleData(localeCs, "cs");
|
|
|
|
registerLocaleData(localeDa, "da");
|
|
|
|
registerLocaleData(localeDe, "de");
|
|
|
|
registerLocaleData(localeEl, "el");
|
|
|
|
registerLocaleData(localeEnGb, "en-GB");
|
|
|
|
registerLocaleData(localeEnIn, "en-IN");
|
2022-03-01 13:52:53 +01:00
|
|
|
registerLocaleData(localeEo, "eo");
|
2021-12-20 15:47:17 +01:00
|
|
|
registerLocaleData(localeEs, "es");
|
|
|
|
registerLocaleData(localeEt, "et");
|
|
|
|
registerLocaleData(localeFa, "fa");
|
|
|
|
registerLocaleData(localeFi, "fi");
|
2022-03-01 13:52:53 +01:00
|
|
|
registerLocaleData(localeFil, "fil");
|
2021-12-20 15:47:17 +01:00
|
|
|
registerLocaleData(localeFr, "fr");
|
|
|
|
registerLocaleData(localeHe, "he");
|
2022-03-01 13:52:53 +01:00
|
|
|
registerLocaleData(localeHi, "hi");
|
2021-12-20 15:47:17 +01:00
|
|
|
registerLocaleData(localeHr, "hr");
|
|
|
|
registerLocaleData(localeHu, "hu");
|
|
|
|
registerLocaleData(localeId, "id");
|
|
|
|
registerLocaleData(localeIt, "it");
|
|
|
|
registerLocaleData(localeJa, "ja");
|
2022-03-01 13:52:53 +01:00
|
|
|
registerLocaleData(localeKa, "ka");
|
|
|
|
registerLocaleData(localeKm, "km");
|
2021-12-20 15:47:17 +01:00
|
|
|
registerLocaleData(localeKn, "kn");
|
|
|
|
registerLocaleData(localeKo, "ko");
|
|
|
|
registerLocaleData(localeLv, "lv");
|
|
|
|
registerLocaleData(localeMe, "me");
|
|
|
|
registerLocaleData(localeMl, "ml");
|
|
|
|
registerLocaleData(localeNb, "nb");
|
|
|
|
registerLocaleData(localeNl, "nl");
|
2022-03-01 13:52:53 +01:00
|
|
|
registerLocaleData(localeNn, "nn");
|
2021-12-20 15:47:17 +01:00
|
|
|
registerLocaleData(localePl, "pl");
|
|
|
|
registerLocaleData(localePtBr, "pt-BR");
|
|
|
|
registerLocaleData(localePtPt, "pt-PT");
|
|
|
|
registerLocaleData(localeRo, "ro");
|
|
|
|
registerLocaleData(localeRu, "ru");
|
2022-03-01 13:52:53 +01:00
|
|
|
registerLocaleData(localeSi, "si");
|
2021-12-20 15:47:17 +01:00
|
|
|
registerLocaleData(localeSk, "sk");
|
2022-03-01 13:52:53 +01:00
|
|
|
registerLocaleData(localeSl, "sl");
|
2021-12-20 15:47:17 +01:00
|
|
|
registerLocaleData(localeSr, "sr");
|
|
|
|
registerLocaleData(localeSv, "sv");
|
|
|
|
registerLocaleData(localeTh, "th");
|
|
|
|
registerLocaleData(localeTr, "tr");
|
|
|
|
registerLocaleData(localeUk, "uk");
|
|
|
|
registerLocaleData(localeVi, "vi");
|
|
|
|
registerLocaleData(localeZhCn, "zh-CN");
|
|
|
|
registerLocaleData(localeZhTw, "zh-TW");
|
2018-08-02 15:26:50 +02:00
|
|
|
|
2018-01-16 20:48:34 +01:00
|
|
|
@NgModule({
|
2022-05-09 14:19:18 +02:00
|
|
|
imports: [SharedModule, AppRoutingModule, VaultFilterModule],
|
2021-12-20 15:47:17 +01:00
|
|
|
declarations: [
|
2022-06-09 14:14:31 +02:00
|
|
|
AccessibilityCookieComponent,
|
2022-03-21 11:39:35 +01:00
|
|
|
AccountSwitcherComponent,
|
2021-12-20 15:47:17 +01:00
|
|
|
AddEditComponent,
|
|
|
|
AddEditCustomFieldsComponent,
|
|
|
|
AppComponent,
|
|
|
|
AttachmentsComponent,
|
|
|
|
CiphersComponent,
|
|
|
|
CollectionsComponent,
|
2022-07-29 21:49:58 +02:00
|
|
|
DeleteAccountComponent,
|
2021-12-20 15:47:17 +01:00
|
|
|
EnvironmentComponent,
|
|
|
|
ExportComponent,
|
|
|
|
FolderAddEditComponent,
|
2022-03-21 11:39:35 +01:00
|
|
|
HeaderComponent,
|
2021-12-20 15:47:17 +01:00
|
|
|
HintComponent,
|
|
|
|
LockComponent,
|
|
|
|
LoginComponent,
|
|
|
|
NavComponent,
|
2022-04-01 00:49:53 +02:00
|
|
|
GeneratorComponent,
|
2021-12-20 15:47:17 +01:00
|
|
|
PasswordGeneratorHistoryComponent,
|
|
|
|
PasswordHistoryComponent,
|
|
|
|
PasswordRepromptComponent,
|
|
|
|
PremiumComponent,
|
|
|
|
RegisterComponent,
|
|
|
|
RemovePasswordComponent,
|
2022-03-21 11:39:35 +01:00
|
|
|
SearchComponent,
|
2021-12-20 15:47:17 +01:00
|
|
|
SendAddEditComponent,
|
|
|
|
SendComponent,
|
|
|
|
SendEffluxDatesComponent,
|
|
|
|
SetPasswordComponent,
|
|
|
|
SetPinComponent,
|
|
|
|
SettingsComponent,
|
|
|
|
ShareComponent,
|
|
|
|
SsoComponent,
|
|
|
|
TwoFactorComponent,
|
|
|
|
TwoFactorOptionsComponent,
|
|
|
|
UpdateTempPasswordComponent,
|
2022-04-19 17:29:43 +02:00
|
|
|
UserVerificationComponent,
|
2021-12-20 15:47:17 +01:00
|
|
|
VaultComponent,
|
|
|
|
VaultTimeoutInputComponent,
|
|
|
|
ViewComponent,
|
|
|
|
ViewCustomFieldsComponent,
|
|
|
|
],
|
|
|
|
bootstrap: [AppComponent],
|
2018-01-16 20:48:34 +01:00
|
|
|
})
|
2021-12-20 15:47:17 +01:00
|
|
|
export class AppModule {}
|