Translate unknown presence label
Signed-off-by: Stefan Parviainen <pafcu@iki.fi>
This commit is contained in:
parent
dbae5a66e3
commit
2b5b708057
2 changed files with 3 additions and 2 deletions
|
@ -70,7 +70,7 @@ module.exports = React.createClass({
|
|||
if (presence === "online") return _t("Online");
|
||||
if (presence === "unavailable") return _t("Idle"); // XXX: is this actually right?
|
||||
if (presence === "offline") return _t("Offline");
|
||||
return "Unknown";
|
||||
return _t("Unknown");
|
||||
},
|
||||
|
||||
render: function() {
|
||||
|
|
|
@ -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",
|
||||
"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",
|
||||
"Dark theme": "Dark theme"
|
||||
"Dark theme": "Dark theme",
|
||||
"Unknown": "Unknown"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue