Translate unknown presence label

Signed-off-by: Stefan Parviainen <pafcu@iki.fi>
pull/21833/head
Stefan Parviainen 2017-09-24 10:14:04 +02:00
parent dbae5a66e3
commit 2b5b708057
2 changed files with 3 additions and 2 deletions

View File

@ -70,7 +70,7 @@ module.exports = React.createClass({
if (presence === "online") return _t("Online"); if (presence === "online") return _t("Online");
if (presence === "unavailable") return _t("Idle"); // XXX: is this actually right? if (presence === "unavailable") return _t("Idle"); // XXX: is this actually right?
if (presence === "offline") return _t("Offline"); if (presence === "offline") return _t("Offline");
return "Unknown"; return _t("Unknown");
}, },
render: function() { render: function() {

View File

@ -881,5 +881,6 @@
"Failed to remove a user from the summary of %(groupId)s": "Failed to remove a user from the summary of %(groupId)s", "Failed to remove a user from the summary of %(groupId)s": "Failed to remove a user from the summary of %(groupId)s",
"The user '%(displayName)s' could not be removed from the summary.": "The user '%(displayName)s' could not be removed from the summary.", "The user '%(displayName)s' could not be removed from the summary.": "The user '%(displayName)s' could not be removed from the summary.",
"Light theme": "Light theme", "Light theme": "Light theme",
"Dark theme": "Dark theme" "Dark theme": "Dark theme",
"Unknown": "Unknown"
} }