mirror of https://github.com/xwiki-labs/cryptpad
add page for listing missing translations
This commit is contained in:
parent
07f722fbd8
commit
0ca1775657
|
@ -0,0 +1,10 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta content="text/html; charset=utf-8" http-equiv="content-type"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||
<script data-main="main" src="/bower_components/requirejs/require.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -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');
|
||||
}
|
||||
});
|
Loading…
Reference in New Issue