Stop using <> parentheses to avoid XML/HTML markup

Transifex treats strings enclosed in <> as HTML.
This commit is contained in:
2018-06-20 14:32:54 +02:00
parent 5ef1d72e42
commit 9d84831d9b
36 changed files with 241 additions and 241 deletions

View File

@@ -159,7 +159,7 @@ tstring eap::credentials::get_name() const
tstring identity(std::move(get_identity()));
return
!identity.empty() ? identity :
empty() ? _T("<empty>") : _T("<blank ID>");
empty() ? _T("(empty)") : _T("(blank ID)");
}