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

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Müller <fmueller@owncloud.com>2022-06-17 19:19:55 +0300
committerHannah von Reth <vonreth@kde.org>2022-06-21 12:11:27 +0300
commit040b185bff405824146eac4674c32c39d8267185 (patch)
tree1904e9fac45fb1e60d5fb75b98bf5b6e3e2fbcfc /src/libsync
parent1bee13bcef166df6281d3ee654bdedb8a7c32cb1 (diff)
Fix name
Diffstat (limited to 'src/libsync')
-rw-r--r--src/libsync/theme.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsync/theme.cpp b/src/libsync/theme.cpp
index 4ef29f6e5..c9d2c6f90 100644
--- a/src/libsync/theme.cpp
+++ b/src/libsync/theme.cpp
@@ -691,9 +691,9 @@ OWNCLOUDSYNC_EXPORT QString Utility::enumToDisplayName(Theme::UserIDType userIdT
{
switch (userIdType) {
case Theme::UserIDUserName:
- return QCoreApplication::tr("Username");
+ return QCoreApplication::translate("Type of user ID", "Username");
case Theme::UserIDEmail:
- return QCoreApplication::tr("E-mail address");
+ return QCoreApplication::translate("Type of user ID", "E-mail address");
case Theme::UserIDCustom:
return Theme::instance()->customUserID();
default: