add page for listing missing translations

This commit is contained in:
ansuz
2017-02-02 11:27:08 +01:00
parent 07f722fbd8
commit 0ca1775657
2 changed files with 31 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
define([
'/bower_components/jquery/dist/jquery.min.js',
'/common/cryptpad-common.js',
], function (jQuery, Cryptpad) {
var $ = window.jQuery;
var $body = $('body');
var missing = Cryptpad.Messages._checkTranslationState();
var pre = function (text, opt) {
return $('<pre>', opt).text(text);
};
if (missing.length) {
$body.append(pre(missing.map(function (msg) {
return '* ' + msg;
}).join('\n')));
} else {
$body.text('All keys are present in all translations');
}
});