change whiteboard translation

pull/1/head
XWiki SAS 8 years ago
parent c702313489
commit 49370764c1

@ -211,6 +211,9 @@ define(function () {
out.canvas_enable = "Enable draw";
out.canvas_width = "Width";
out.canvas_opacity = "Opacity";
out.canvas_opacityLabel = "opacity: {0}";
out.canvas_widthLabel = "Width: {0}";
// File manager

@ -97,7 +97,8 @@ window.canvas = canvas;
var updateBrushWidth = function () {
var val = $width.val();
canvas.freeDrawingBrush.width = Number(val);
$widthLabel.text(val);
$widthLabel.text(val)
$widthLabel.text(Cryptpad.Messages._getKey("canvas_widthLabel", [val]))
$widthLabel.text("width: " + $width.val())
createCursor();
console.log("change size")
@ -111,7 +112,7 @@ window.canvas = canvas;
brush.opacity = Number(val);
canvas.freeDrawingBrush.color = Colors.hex2rgba(brush.color, brush.opacity);
$opacityLabel.text(val)
$opacityLabel.text("opacity: " + $opacity.val());
$opacityLabel.text(Cryptpad.Messages._getKey("canvas_opacityLabel", [val]));
createCursor();
console.log("change opacity")
console.log("opacity: " + $opacity.val())

Loading…
Cancel
Save