22 lines
375 B
JavaScript
22 lines
375 B
JavaScript
var fr = {
|
|
name: 'Arrows',
|
|
langList: [
|
|
{id: 'arrow_none', textContent: 'Sans flèche'}
|
|
],
|
|
contextTools: [
|
|
{
|
|
title: 'Select arrow type',
|
|
options: {
|
|
none: 'No arrow',
|
|
end: '---->',
|
|
start: '<----',
|
|
both: '<--->',
|
|
mid: '-->--',
|
|
mid_bk: '--<--'
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
export default fr;
|