1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-06-26 04:01:04 +03:00

fix more i18n punctuation fails

This commit is contained in:
Matthew Hodgson
2017-05-27 17:36:02 +01:00
parent 730258bd3c
commit f442a665c8
10 changed files with 20 additions and 15 deletions

View File

@ -179,7 +179,7 @@ function textForHistoryVisibilityEvent(event) {
text += _t('anyone') + '.';
}
else {
text += ' ' + _t('unknown') + ' (' + vis + ')';
text += ' ' + _t('unknown') + ' (' + vis + ').';
}
return text;
}