add xml as import to allow roller to include in the build

This commit is contained in:
jfh
2020-08-27 00:09:55 +02:00
parent 9c8a2e358a
commit 2827efc88f
597 changed files with 269162 additions and 1 deletions

View File

@@ -0,0 +1,42 @@
System.register([], function (exports) {
'use strict';
return {
execute: function () {
var ptBR = exports('default', {
select_lib: 'Select an image library',
show_list: 'Show library list',
import_single: 'Import single',
import_multi: 'Import multiple',
open: 'Open as new document',
buttons: [
{
title: 'Biblioteca de Imagens'
}
],
imgLibs: [
{
name: 'Demo library (local)',
url: '{path}imagelib/index{modularVersion}.html',
description: 'Demonstration library for SVG-edit on this server'
},
{
name: 'IAN Symbol Libraries',
url: 'https://ian.umces.edu/symbols/catalog/svgedit/album_chooser.php?svgedit=3',
description: 'Free library of illustrations'
}
/*
// See message in "en" locale for further details
,
{
name: 'Openclipart',
url: 'https://openclipart.org/svgedit',
description: 'Share and Use Images. Over 100,000 Public Domain SVG Images and Growing.'
}
*/
]
});
}
};
});