UI touch-up

Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
2020-02-06 13:50:37 +01:00
parent 8d42db2f56
commit 0aab5f2e94
12 changed files with 1085 additions and 775 deletions

View File

@@ -950,7 +950,7 @@ protected:
wxString identity(m_cred_storage.get_identity());
m_storage_identity->SetLabel(
!identity.empty() ? identity :
m_cred_storage.empty() ? _("(empty)") : _("(blank ID)"));
m_cred_storage.empty() ? _("(none)") : _("(blank ID)"));
}
@@ -959,7 +959,7 @@ protected:
wxString identity(m_cred_config.get_identity());
m_config_identity->SetLabel(
!identity.empty() ? identity :
m_cred_config.empty() ? _("(empty)") : _("(blank ID)"));
m_cred_config.empty() ? _("(none)") : _("(blank ID)"));
}
/// \endcond