We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In the keepassxc/src/http/Service.cpp file, there is this line at 548:
keepassxc/src/http/Service.cpp
tr("Successfully removed %1 encryption-%2 from KeePassX/Http Settings.").arg(count).arg(count ? "keys" : "key")
The string should use plurals correctly, as right now key or keys are hardcoded. I would do the fix myself, but I don't know Qt.
key
keys
The text was updated successfully, but these errors were encountered:
There are more occurrences of problems like this. We need to fix them at some point.
Sorry, something went wrong.
I am no expert on either C++ or Qt, but this should fix it.
Solve issue keepassxreboot#874: Keyboard autofocus on search filed at…
bbba6f6
… startup Signed-off-by: Ettore Dreucci <[email protected]>
Fixed at #875
No branches or pull requests
In the
keepassxc/src/http/Service.cpp
file, there is this line at 548:tr("Successfully removed %1 encryption-%2 from KeePassX/Http Settings.").arg(count).arg(count ? "keys" : "key")
The string should use plurals correctly, as right now
key
orkeys
are hardcoded. I would do the fix myself, but I don't know Qt.The text was updated successfully, but these errors were encountered: