Make more strings translatable

Includes making certain modifiers (like "[locked]") positionable, in
case languages put this before the word
This commit is contained in:
Edward Jones 2018-03-13 20:02:38 +00:00
parent 3def6a3bc4
commit e66adfbf68
10 changed files with 24 additions and 25 deletions

View file

@ -82,23 +82,23 @@ AboutDialog::AboutDialog(QWidget* parent)
QString extensions;
#ifdef WITH_XC_AUTOTYPE
extensions += "\n- Auto-Type";
extensions += "\n- " + tr("Auto-Type");
#endif
#ifdef WITH_XC_BROWSER
extensions += "\n- Browser Integration";
extensions += "\n- " + tr("Browser Integration");
#endif
#ifdef WITH_XC_HTTP
extensions += "\n- Legacy Browser Integration (KeePassHTTP)";
extensions += "\n- " + tr("Legacy Browser Integration (KeePassHTTP)");
#endif
#ifdef WITH_XC_SSHAGENT
extensions += "\n- SSH Agent";
extensions += "\n- " + tr("SSH Agent");
#endif
#ifdef WITH_XC_YUBIKEY
extensions += "\n- YubiKey";
extensions += "\n- " + tr("YubiKey");
#endif
if (extensions.isEmpty())
extensions = " None";
extensions = " " + tr("None");
debugInfo.append(tr("Enabled extensions:").append(extensions));