- Accessibility: Begin work, add aria-label to some buttons and
form controls; add `role=main`; `<img alt>`; `<iframe title>`
- i18n: Add `lang` attribute
- Refactoring: lbs, simplify i18nized element retrieval call
- Docs: Some JSDoc descriptions, JSDoc spacing, fix svgIcons param
def; add todo
- Testing: Avoid reporting meta-viewport (have own zooming
controls and difficult to fix)
12 lines
211 B
JavaScript
12 lines
211 B
JavaScript
var svgEditorExtensionLocale_server_moinsave_en = (function () {
|
|
'use strict';
|
|
|
|
var en = {
|
|
saved: 'Saved! Return to Item View!',
|
|
hiddenframe: 'Frame to store hidden values'
|
|
};
|
|
|
|
return en;
|
|
|
|
}());
|