mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-09-22 13:54:41 -04:00
Make TriState strings translatable.
This commit is contained in:
parent
b17cb60b5c
commit
59da03d660
1 changed files with 3 additions and 3 deletions
|
@ -130,9 +130,9 @@ void EditGroupWidget::cancel()
|
||||||
|
|
||||||
void EditGroupWidget::addTriStateItems(QComboBox* comboBox)
|
void EditGroupWidget::addTriStateItems(QComboBox* comboBox)
|
||||||
{
|
{
|
||||||
comboBox->addItem("Inherit");
|
comboBox->addItem(tr("Inherit"));
|
||||||
comboBox->addItem("Enable");
|
comboBox->addItem(tr("Enable"));
|
||||||
comboBox->addItem("Disable");
|
comboBox->addItem(tr("Disable"));
|
||||||
}
|
}
|
||||||
|
|
||||||
int EditGroupWidget::indexFromTriState(Group::TriState triState)
|
int EditGroupWidget::indexFromTriState(Group::TriState triState)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue