1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

added missing i18n strings (#1)

This commit is contained in:
Kyle Spearrin
2016-11-19 01:36:09 -05:00
parent 1968dd2d08
commit e7e4a66750
26 changed files with 262 additions and 92 deletions

View File

@@ -17,11 +17,11 @@
$scope.launchImport = function () {
SweetAlert.swal({
title: 'Import Logins',
text: 'You can bulk import logins from the bitwarden.com web vault. Do you want to visit the website now?',
title: i18nService.importLogins,
text: i18nService.importLoginsConfirmation,
showCancelButton: true,
confirmButtonText: 'Yes',
cancelButtonText: 'Cancel'
confirmButtonText: i18nService.yes,
cancelButtonText: i18nService.cancel
}, function (confirmed) {
if (confirmed) {
chrome.tabs.create({ url: 'https://vault.bitwarden.com' });