From 4149ef48130c3a01e0fe72cfa2d09ede82cfba7c Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Mon, 16 Nov 2020 16:24:00 +0100 Subject: [PATCH] Internalization++ --- imports/NeoChat/Dialog/OpenFileDialog.qml | 2 +- imports/NeoChat/Dialog/OpenFolderDialog.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/imports/NeoChat/Dialog/OpenFileDialog.qml b/imports/NeoChat/Dialog/OpenFileDialog.qml index ecaf04afb..00096d215 100644 --- a/imports/NeoChat/Dialog/OpenFileDialog.qml +++ b/imports/NeoChat/Dialog/OpenFileDialog.qml @@ -11,7 +11,7 @@ FileDialog { id: root - title: "Please choose a file" + title: i18n("Please choose a file") onAccepted: chosen(file) } diff --git a/imports/NeoChat/Dialog/OpenFolderDialog.qml b/imports/NeoChat/Dialog/OpenFolderDialog.qml index de98a9893..6af42de4b 100644 --- a/imports/NeoChat/Dialog/OpenFolderDialog.qml +++ b/imports/NeoChat/Dialog/OpenFolderDialog.qml @@ -11,7 +11,7 @@ FolderDialog { id: root - title: "Please choose a folder" + title: i18n("Please choose a folder") onAccepted: chosen(folder) }