mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 21:17:43 +03: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
|
@ -534,12 +534,12 @@ void DatabaseTabWidget::updateTabName(Database* db)
|
|||
if (db->metadata()->name().isEmpty()) {
|
||||
tabName = tr("New database");
|
||||
} else {
|
||||
tabName = QString("%1 [%2]").arg(db->metadata()->name(), tr("New database"));
|
||||
tabName = tr("%1 [New database]", "tab modifier").arg(db->metadata()->name());
|
||||
}
|
||||
}
|
||||
|
||||
if (dbStruct.dbWidget->currentMode() == DatabaseWidget::LockedMode) {
|
||||
tabName.append(QString(" [%1]").arg(tr("locked")));
|
||||
tabName = tr("%1 [locked]", "tab modifier").arg(tabName);
|
||||
}
|
||||
|
||||
if (dbStruct.modified) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue