mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-08-20 03:58:10 -04:00
Make more strings translatable
Includes making certain modifiers (like "[locked]") positionable, in case languages put this before the word
This commit is contained in:
parent
3def6a3bc4
commit
e66adfbf68
10 changed files with 24 additions and 25 deletions
|
@ -179,8 +179,9 @@ QString KdbxXmlReader::errorString() const
|
|||
{
|
||||
if (m_error) {
|
||||
return m_errorStr;
|
||||
}if (m_xml.hasError()) {
|
||||
return QString("XML error:\n%1\nLine %2, column %3")
|
||||
}
|
||||
if (m_xml.hasError()) {
|
||||
return tr("XML error:\n%1\nLine %2, column %3")
|
||||
.arg(m_xml.errorString())
|
||||
.arg(m_xml.lineNumber())
|
||||
.arg(m_xml.columnNumber());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue