mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-12-20 18:56:07 -05: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
|
|
@ -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));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue