mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 01:29:42 -06:00
i18n: Add comments and improve source strings
Most of these changes are to improve consistency in capitalization.
This commit is contained in:
@ -97,6 +97,7 @@ void AchievementBox::UpdateData()
|
||||
if (m_achievement->unlock_time != 0)
|
||||
{
|
||||
m_status->setText(
|
||||
// i18n: %1 is a date/time.
|
||||
tr("Unlocked at %1")
|
||||
.arg(QDateTime::fromSecsSinceEpoch(m_achievement->unlock_time).toString()));
|
||||
}
|
||||
|
@ -114,11 +114,13 @@ void AchievementSettingsWidget::CreateLayout()
|
||||
m_common_layout->addWidget(m_common_login_button);
|
||||
m_common_layout->addWidget(m_common_logout_button);
|
||||
m_common_layout->addWidget(m_common_login_failed);
|
||||
// i18n: Settings that affect the functionality of unlocking achievements.
|
||||
m_common_layout->addWidget(new QLabel(tr("Function Settings")));
|
||||
m_common_layout->addWidget(m_common_hardcore_enabled_input);
|
||||
m_common_layout->addWidget(m_common_unofficial_enabled_input);
|
||||
m_common_layout->addWidget(m_common_encore_enabled_input);
|
||||
m_common_layout->addWidget(m_common_spectator_enabled_input);
|
||||
// i18n: Settings that affect how achievements are displayed while playing.
|
||||
m_common_layout->addWidget(new QLabel(tr("Display Settings")));
|
||||
#ifdef USE_DISCORD_PRESENCE
|
||||
m_common_layout->addWidget(m_common_discord_presence_enabled_input);
|
||||
|
Reference in New Issue
Block a user