Stop using <> parentheses to avoid XML/HTML markup
Transifex treats strings enclosed in <> as HTML.
This commit is contained in:
@@ -785,11 +785,11 @@ protected:
|
||||
m_cred_storage.clear();
|
||||
m_has_storage = false;
|
||||
} else {
|
||||
m_storage_identity->SetLabel(wxString::Format(_("<error %u>"), err.number()));
|
||||
m_storage_identity->SetLabel(wxString::Format(_("(error %u)"), err.number()));
|
||||
m_has_storage = true;
|
||||
}
|
||||
} catch (...) {
|
||||
m_storage_identity->SetLabel(_("<error>"));
|
||||
m_storage_identity->SetLabel(_("(error)"));
|
||||
m_has_storage = true;
|
||||
}
|
||||
}
|
||||
@@ -800,7 +800,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() ? _("(empty)") : _("(blank ID)"));
|
||||
}
|
||||
|
||||
|
||||
@@ -809,7 +809,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() ? _("(empty)") : _("(blank ID)"));
|
||||
}
|
||||
|
||||
/// \endcond
|
||||
@@ -997,7 +997,7 @@ inline wxIcon wxLoadIconFromResource(HINSTANCE hinst, PCWSTR pszName, const wxSi
|
||||
inline wxString wxEAPGetProviderName(const std::wstring &id)
|
||||
{
|
||||
return
|
||||
!id.empty() ? id : _("<Your Organization>");
|
||||
!id.empty() ? id : _("(Your Organization)");
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user