Merge pull request #12963 from JosJuice/i18n-2024-07-28

i18n: Add comments and improve source strings
This commit is contained in:
Tilka
2024-08-07 03:28:01 +01:00
committed by GitHub
15 changed files with 84 additions and 79 deletions

View File

@ -197,8 +197,12 @@ void GeneralPane::CreateAutoUpdate()
auto_update_group_layout->addRow(tr("&Auto Update:"), m_combobox_update_track);
for (const QString& option :
{tr("Don't Update"), tr("Releases (every few months)"), tr("Dev (multiple times a day)")})
{tr("Don't Update"),
// i18n: Releases is a noun.
tr("Releases (every few months)"), tr("Dev (multiple times a day)")})
{
m_combobox_update_track->addItem(option);
}
}
void GeneralPane::CreateFallbackRegion()