add translation annotations

pull/1/head
ansuz 4 years ago
parent b557fc9b5b
commit 17d10e3637

@ -1028,7 +1028,7 @@ define([
}; };
if (typeof(cfg.embed) === "function") { if (typeof(cfg.embed) === "function") {
actions.embed = { actions.embed = { // Messages.mdToolbar_embed
icon: 'fa-picture-o', icon: 'fa-picture-o',
action: function () { action: function () {
var _cfg = { var _cfg = {
@ -2258,7 +2258,7 @@ define([
// Title // Title
//$creation.append(h('h2.cp-creation-title', Messages.newButtonTitle)); //$creation.append(h('h2.cp-creation-title', Messages.newButtonTitle));
var newPadH3Title = Messages['button_new' + type]; var newPadH3Title = Messages['button_new' + type]; // Messages.button_newform
var title = h('div.cp-creation-title', [ var title = h('div.cp-creation-title', [
UI.getFileIcon({type: type})[0], UI.getFileIcon({type: type})[0],

@ -129,6 +129,7 @@ define([
var type, typeSelect; var type, typeSelect;
if (opts.type) { if (opts.type) {
// Messages.form_text_text.form_text_number.form_text_url.form_text_email
var options = ['text', 'number', 'url', 'email'].map(function (t) { var options = ['text', 'number', 'url', 'email'].map(function (t) {
return { return {
tag: 'a', tag: 'a',
@ -214,6 +215,7 @@ define([
var type, typeSelect; var type, typeSelect;
if (v.type) { if (v.type) {
// Messages.form_poll_text.form_poll_day.form_poll_time
var options = ['text', 'day', 'time'].map(function (t) { var options = ['text', 'day', 'time'].map(function (t) {
return { return {
tag: 'a', tag: 'a',
@ -910,6 +912,7 @@ define([
}, },
get: function (opts, a, n, evOnChange) { get: function (opts, a, n, evOnChange) {
if (!opts) { opts = TYPES.input.defaultOpts; } if (!opts) { opts = TYPES.input.defaultOpts; }
// Messages.form_input_ph_email.form_input_ph_url
var tag = h('input', { var tag = h('input', {
type: opts.type, type: opts.type,
placeholder: Messages['form_input_ph_'+opts.type] || '' placeholder: Messages['form_input_ph_'+opts.type] || ''
@ -1658,6 +1661,8 @@ define([
var print = model.printResults(answers, uid, form); var print = model.printResults(answers, uid, form);
var q = h('div.cp-form-block-question', block.q || Messages.form_default); var q = h('div.cp-form-block-question', block.q || Messages.form_default);
//Messages.form_type_checkbox.form_type_input.form_type_md.form_type_multicheck.form_type_multiradio.form_type_poll.form_type_radio.form_type_sort.form_type_textarea
return h('div.cp-form-block', [ return h('div.cp-form-block', [
h('div.cp-form-block-type', [ h('div.cp-form-block-type', [
TYPES[type].icon.cloneNode(), TYPES[type].icon.cloneNode(),

Loading…
Cancel
Save