Don't use scare quotes when displaying the username.

See http://en.wikipedia.org/wiki/Scare_quotes for details.

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
This commit is contained in:
Koen Kooi 2014-09-30 09:44:45 +02:00
parent 7840ff0d7c
commit 197be925b8

View file

@ -10,7 +10,7 @@ function LoginStateViewModel() {
self.userMenuText = ko.computed(function() {
if (self.loggedIn()) {
return "\"" + self.username() + "\"";
return self.username();
} else {
return gettext("Login");
}