30 lines
800 B
JavaScript
30 lines
800 B
JavaScript
|
export 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: '图像库'
|
||
|
}
|
||
|
],
|
||
|
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',
|
||
|
description: 'Free library of illustrations'
|
||
|
},
|
||
|
{
|
||
|
name: 'Openclipart',
|
||
|
url: 'https://openclipart.org/svgedit',
|
||
|
description: 'Share and Use Images. Over 50,000 Public Domain SVG Images and Growing.'
|
||
|
}
|
||
|
]
|
||
|
};
|