1
0
mirror of https://github.com/bitwarden/browser synced 2024-12-25 17:32:46 +01:00

1password importer naming adjustments

This commit is contained in:
Kyle Spearrin 2017-01-21 02:08:14 -05:00
parent 79fecd6b03
commit 3df5a9454e
2 changed files with 10 additions and 10 deletions

View File

@ -29,11 +29,11 @@
case 'padlockcsv': case 'padlockcsv':
importPadlockCsv(file, success, error); importPadlockCsv(file, success, error);
break; break;
case '1password41pif': case '1password1pif':
import1Password41Pif(file, success, error); import1Password1Pif(file, success, error);
break; break;
case '1password6csv': case '1password6wincsv':
import1Password6Csv(file, success, error); import1Password6WinCsv(file, success, error);
break; break;
case 'chromecsv': case 'chromecsv':
importChromeCsv(file, success, error); importChromeCsv(file, success, error);
@ -709,7 +709,7 @@
}); });
} }
function import1Password41Pif(file, success, error) { function import1Password1Pif(file, success, error) {
var folders = [], var folders = [],
logins = [], logins = [],
loginRelationships = [], loginRelationships = [],
@ -794,7 +794,7 @@
}; };
} }
function import1Password6Csv(file, success, error) { function import1Password6WinCsv(file, success, error) {
var folders = [], var folders = [],
logins = [], logins = [],
loginRelationships = []; loginRelationships = [];

View File

@ -56,15 +56,15 @@
'"Unsecured archive (readable) in CSV format" and save the CSV file.') '"Unsecured archive (readable) in CSV format" and save the CSV file.')
}, },
{ {
id: '1password41pif', id: '1password1pif',
name: '1Password 4 (1pif)', name: '1Password (1pif)',
instructions: $sce.trustAsHtml('See detailed instructions on our help site at ' + instructions: $sce.trustAsHtml('See detailed instructions on our help site at ' +
'<a target="_blank" href="https://help.bitwarden.com/getting-started/import-from-1password/">' + '<a target="_blank" href="https://help.bitwarden.com/getting-started/import-from-1password/">' +
'https://help.bitwarden.com/getting-started/import-from-1password/</a>') 'https://help.bitwarden.com/getting-started/import-from-1password/</a>')
}, },
{ {
id: '1password6csv', id: '1password6wincsv',
name: '1Password 6 (csv)', name: '1Password 6 Windows (csv)',
instructions: $sce.trustAsHtml('See detailed instructions on our help site at ' + instructions: $sce.trustAsHtml('See detailed instructions on our help site at ' +
'<a target="_blank" href="https://help.bitwarden.com/getting-started/import-from-1password/">' + '<a target="_blank" href="https://help.bitwarden.com/getting-started/import-from-1password/">' +
'https://help.bitwarden.com/getting-started/import-from-1password/</a>') 'https://help.bitwarden.com/getting-started/import-from-1password/</a>')