Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValdnet <47037905+Valdnet@users.noreply.github.com>2021-07-28 22:35:13 +0300
committerallexzander (Rebase PR Action) <allexzander@users.noreply.github.com>2021-07-30 09:21:05 +0300
commit7ebbb499e0123516e67e9979080f6b175e568b94 (patch)
treedb4ccc74ade3c50c1bd8ad46b5c14fc5bba805bb /src/gui/authenticationdialog.cpp
parent10b7907fa24a022db4ea8990dd017038a828107d (diff)
l10n: Replace apostrophe with double quotation
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
Diffstat (limited to 'src/gui/authenticationdialog.cpp')
-rw-r--r--src/gui/authenticationdialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/authenticationdialog.cpp b/src/gui/authenticationdialog.cpp
index c04176e15..1cc8e95ee 100644
--- a/src/gui/authenticationdialog.cpp
+++ b/src/gui/authenticationdialog.cpp
@@ -29,7 +29,7 @@ AuthenticationDialog::AuthenticationDialog(const QString &realm, const QString &
{
setWindowTitle(tr("Authentication Required"));
auto *lay = new QVBoxLayout(this);
- auto *label = new QLabel(tr("Enter username and password for '%1' at %2.").arg(realm, domain));
+ auto *label = new QLabel(tr("Enter username and password for \"%1\" at %2.").arg(realm, domain));
label->setTextFormat(Qt::PlainText);
lay->addWidget(label);