1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-07 10:46:24 +03:00

More translations..

This commit is contained in:
Kegan Dougal
2017-06-01 15:18:06 +01:00
parent b26f4ba578
commit f75e714c3a
13 changed files with 159 additions and 24 deletions

View File

@@ -45,7 +45,7 @@ function createRoom(opts) {
setTimeout(()=>{
Modal.createDialog(NeedToRegisterDialog, {
title: _t('Please Register'),
description: _t('Guest users can\'t create new rooms. Please register to create room and start a chat') + '.'
description: _t('Guest users can\'t create new rooms. Please register to create room and start a chat.')
});
}, 0);
return q(null);
@@ -106,7 +106,7 @@ function createRoom(opts) {
console.error("Failed to create room " + roomId + " " + err);
Modal.createDialog(ErrorDialog, {
title: _t("Failure to create room"),
description: _t("Server may be unavailable, overloaded, or you hit a bug") + ".",
description: _t("Server may be unavailable, overloaded, or you hit a bug."),
});
return null;
});