mirror of
https://github.com/bitwarden/desktop.git
synced 2024-10-31 08:10:29 +01:00
[feature] Implement scope warning for exports (#1384)
This commit is contained in:
parent
4ce5e5fbdc
commit
54025f269a
@ -56,6 +56,7 @@ import { BrowserAnimationsModule } from "@angular/platform-browser/animations";
|
|||||||
|
|
||||||
import { AvatarComponent } from "jslib-angular/components/avatar.component";
|
import { AvatarComponent } from "jslib-angular/components/avatar.component";
|
||||||
import { CalloutComponent } from "jslib-angular/components/callout.component";
|
import { CalloutComponent } from "jslib-angular/components/callout.component";
|
||||||
|
import { ExportScopeCalloutComponent } from "jslib-angular/components/export-scope-callout.component";
|
||||||
import { IconComponent } from "jslib-angular/components/icon.component";
|
import { IconComponent } from "jslib-angular/components/icon.component";
|
||||||
import { BitwardenToastModule } from "jslib-angular/components/toastr.component";
|
import { BitwardenToastModule } from "jslib-angular/components/toastr.component";
|
||||||
import { A11yTitleDirective } from "jslib-angular/directives/a11y-title.directive";
|
import { A11yTitleDirective } from "jslib-angular/directives/a11y-title.directive";
|
||||||
@ -197,6 +198,7 @@ registerLocaleData(localeZhTw, "zh-TW");
|
|||||||
ColorPasswordPipe,
|
ColorPasswordPipe,
|
||||||
EnvironmentComponent,
|
EnvironmentComponent,
|
||||||
ExportComponent,
|
ExportComponent,
|
||||||
|
ExportScopeCalloutComponent,
|
||||||
FallbackSrcDirective,
|
FallbackSrcDirective,
|
||||||
FolderAddEditComponent,
|
FolderAddEditComponent,
|
||||||
GroupingsComponent,
|
GroupingsComponent,
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
>
|
>
|
||||||
{{ "personalVaultExportPolicyInEffect" | i18n }}
|
{{ "personalVaultExportPolicyInEffect" | i18n }}
|
||||||
</app-callout>
|
</app-callout>
|
||||||
|
<app-export-scope-callout *ngIf="!disabledByPolicy"></app-export-scope-callout>
|
||||||
<div class="box">
|
<div class="box">
|
||||||
<div class="box-header" id="exportTitle">
|
<div class="box-header" id="exportTitle">
|
||||||
{{ "exportVault" | i18n }}
|
{{ "exportVault" | i18n }}
|
||||||
|
@ -1816,5 +1816,17 @@
|
|||||||
},
|
},
|
||||||
"sessionTimeout": {
|
"sessionTimeout": {
|
||||||
"message": "Your session has timed out. Please go back and try logging in again."
|
"message": "Your session has timed out. Please go back and try logging in again."
|
||||||
|
},
|
||||||
|
"exportingPersonalVaultTitle": {
|
||||||
|
"message": "Exporting Personal Vault"
|
||||||
|
},
|
||||||
|
"exportingPersonalVaultDescription": {
|
||||||
|
"message": "Only the personal vault items associated with $EMAIL$ will be exported. Organization vault items will not be included.",
|
||||||
|
"placeholders": {
|
||||||
|
"email": {
|
||||||
|
"content": "$1",
|
||||||
|
"example": "name@example.com"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user