You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/components/Draw/Editor.vue
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@
18
18
:aria-label="t('libresign', 'Choose color')" />
19
19
</NcColorPicker>
20
20
</div>
21
+
<!-- TRANSLATORS Accessible label for the button that clears the current drawing from the canvas. Does not delete any saved file. -->
21
22
<NcButton:aria-label="t('libresign', 'Delete')"
22
23
@click="clear">
23
24
<template #icon>
@@ -26,8 +27,14 @@
26
27
</NcButton>
27
28
</div>
28
29
<divref="canvasWrapper"class="canvas-wrapper">
30
+
<pclass="sr-only">
31
+
<!-- TRANSLATORS Screen-reader-only instruction for the signature drawing canvas. "Text" and "Upload" must match the translated labels of the other two tabs in this dialog. -->
32
+
{{ t('libresign', 'Drawing area. Use a mouse or touch screen to draw your signature. If you cannot draw, use the Text or Upload tabs instead.') }}
33
+
</p>
29
34
<canvasref="canvas"
30
35
class="canvas"
36
+
:aria-label="t('libresign', 'Draw your signature here')"
0 commit comments