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:
parent
79fecd6b03
commit
3df5a9454e
@ -29,11 +29,11 @@
|
||||
case 'padlockcsv':
|
||||
importPadlockCsv(file, success, error);
|
||||
break;
|
||||
case '1password41pif':
|
||||
import1Password41Pif(file, success, error);
|
||||
case '1password1pif':
|
||||
import1Password1Pif(file, success, error);
|
||||
break;
|
||||
case '1password6csv':
|
||||
import1Password6Csv(file, success, error);
|
||||
case '1password6wincsv':
|
||||
import1Password6WinCsv(file, success, error);
|
||||
break;
|
||||
case 'chromecsv':
|
||||
importChromeCsv(file, success, error);
|
||||
@ -709,7 +709,7 @@
|
||||
});
|
||||
}
|
||||
|
||||
function import1Password41Pif(file, success, error) {
|
||||
function import1Password1Pif(file, success, error) {
|
||||
var folders = [],
|
||||
logins = [],
|
||||
loginRelationships = [],
|
||||
@ -794,7 +794,7 @@
|
||||
};
|
||||
}
|
||||
|
||||
function import1Password6Csv(file, success, error) {
|
||||
function import1Password6WinCsv(file, success, error) {
|
||||
var folders = [],
|
||||
logins = [],
|
||||
loginRelationships = [];
|
||||
|
@ -56,15 +56,15 @@
|
||||
'"Unsecured archive (readable) in CSV format" and save the CSV file.')
|
||||
},
|
||||
{
|
||||
id: '1password41pif',
|
||||
name: '1Password 4 (1pif)',
|
||||
id: '1password1pif',
|
||||
name: '1Password (1pif)',
|
||||
instructions: $sce.trustAsHtml('See detailed instructions on our help site at ' +
|
||||
'<a target="_blank" href="https://help.bitwarden.com/getting-started/import-from-1password/">' +
|
||||
'https://help.bitwarden.com/getting-started/import-from-1password/</a>')
|
||||
},
|
||||
{
|
||||
id: '1password6csv',
|
||||
name: '1Password 6 (csv)',
|
||||
id: '1password6wincsv',
|
||||
name: '1Password 6 Windows (csv)',
|
||||
instructions: $sce.trustAsHtml('See detailed instructions on our help site at ' +
|
||||
'<a target="_blank" href="https://help.bitwarden.com/getting-started/import-from-1password/">' +
|
||||
'https://help.bitwarden.com/getting-started/import-from-1password/</a>')
|
||||
|
Loading…
Reference in New Issue
Block a user