-
Notifications
You must be signed in to change notification settings - Fork 806
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
l10n: Replace apostrophe with double quotation #3279
Conversation
src/gui/folderstatusmodel.cpp
Outdated
} else { | ||
//: Argument is a file name | ||
allFilenames.append(tr("'%1'").arg(fileName)); | ||
allFilenames.append("'%1'").arg(fileName); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please replace the tr
with QLatin1String
instead of removing it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need to use the special QLatin1String
better use QStringLiteral
.
QLatin1String
may be useful but in very rare cases (wanting to use an override method highly optimized with it) and that is not the case there
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changes made 😉.
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
AppImage file: Nextcloud-PR-3279-793c211232332621b8d3439813c2d5badd4efa91-x86_64.AppImage |
Signed-off-by: Valdnet 47037905+Valdnet@users.noreply.github.com