37 lines
988 B
JavaScript
37 lines
988 B
JavaScript
var svgEditorExtensionLocale_imagelib_fr = (function () {
|
|
'use strict';
|
|
|
|
var fr = {
|
|
select_lib: "Choisir une bibliothèque d'images",
|
|
show_list: 'show_list',
|
|
import_single: 'import_single',
|
|
import_multi: 'import_multi',
|
|
open: 'open',
|
|
buttons: [{
|
|
title: "Bibliothèque d'images"
|
|
}],
|
|
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.'
|
|
}
|
|
*/
|
|
|
|
}]
|
|
};
|
|
|
|
return fr;
|
|
|
|
}());
|