This commit is contained in:
Ly-sec
2025-11-22 14:50:21 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -73,7 +73,7 @@ Scope {
root.unlocked();
} else {
Logger.i("LockContext", "Authentication failed");
errorMessage = "Authentication failed";
errorMessage = I18n.tr("lock-screen.authentication-failed");
showFailure = true;
root.failed();
}

View File

@@ -784,7 +784,7 @@ Popup {
}
NButton {
text: root.selectionMode === "folders" ? "Select Folder" : "Select File"
text: root.selectionMode === "folders" ? I18n.tr("widgets.file-picker.select-folder") : I18n.tr("widgets.file-picker.select-file")
icon: "filepicker-check"
enabled: filePickerPanel.currentSelection.length > 0
onClicked: root.confirmSelection()