backup.js: Remove references to nonexistent i18n strings
This commit is contained in:
parent
ea8e76d9de
commit
d0c4152d99
1 changed files with 2 additions and 7 deletions
|
@ -909,7 +909,7 @@ function exportConversations(db, options) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function getDirectory(options) {
|
function getDirectory(options = {}) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
const browserWindow = BrowserWindow.getFocusedWindow();
|
const browserWindow = BrowserWindow.getFocusedWindow();
|
||||||
const dialogOptions = {
|
const dialogOptions = {
|
||||||
|
@ -1199,11 +1199,7 @@ function assembleLookup(db, storeName, keyFunction) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function getDirectoryForExport() {
|
function getDirectoryForExport() {
|
||||||
const options = {
|
return getDirectory();
|
||||||
title: i18n('exportChooserTitle'),
|
|
||||||
buttonLabel: i18n('exportButton'),
|
|
||||||
};
|
|
||||||
return getDirectory(options);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function createZip(zipDir, targetDir) {
|
function createZip(zipDir, targetDir) {
|
||||||
|
@ -1324,7 +1320,6 @@ async function exportToDirectory(directory, options) {
|
||||||
function getDirectoryForImport() {
|
function getDirectoryForImport() {
|
||||||
const options = {
|
const options = {
|
||||||
title: i18n('importChooserTitle'),
|
title: i18n('importChooserTitle'),
|
||||||
buttonLabel: i18n('importButton'),
|
|
||||||
};
|
};
|
||||||
return getDirectory(options);
|
return getDirectory(options);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue