Incorporación del glosario a la edición de contenidos con nuevas macros
This commit is contained in:
parent
3aaa1e115a
commit
863f1c8b05
3 changed files with 27 additions and 2 deletions
|
@ -28,5 +28,10 @@ CKEDITOR.plugins.setLang( 'redmine', 'en', {
|
||||||
include_page: 'Page',
|
include_page: 'Page',
|
||||||
include: 'Include a wiki page.',
|
include: 'Include a wiki page.',
|
||||||
include_project: 'project',
|
include_project: 'project',
|
||||||
include_from_project: 'Include a page of a specific project wiki.'
|
include_from_project: 'Include a page of a specific project wiki.',
|
||||||
|
glossary_name: 'name',
|
||||||
|
glossary_project: 'project',
|
||||||
|
glossary_term_by_id: 'Term of glossary by id',
|
||||||
|
glossary_term_by_name: 'Term of glossary by name',
|
||||||
|
glossary_term_by_name_in_project: 'Term by name of project\'s glossary'
|
||||||
});
|
});
|
||||||
|
|
|
@ -28,5 +28,10 @@ CKEDITOR.plugins.setLang( 'redmine', 'es', {
|
||||||
include_page: 'Página',
|
include_page: 'Página',
|
||||||
include: 'Incluye una página del wiki.',
|
include: 'Incluye una página del wiki.',
|
||||||
include_project: 'proyecto',
|
include_project: 'proyecto',
|
||||||
include_from_project: 'Incluye una página del wiki de otro proyecto.'
|
include_from_project: 'Incluye una página del wiki de otro proyecto.',
|
||||||
|
glossary_name: 'Nombre',
|
||||||
|
glossary_project: 'proyecto',
|
||||||
|
glossary_term_by_id: 'Término del glosario por número',
|
||||||
|
glossary_term_by_name: 'Término del glosario por nombre',
|
||||||
|
glossary_term_by_name_in_project: 'Término por nombre del glosario del proyecto'
|
||||||
});
|
});
|
||||||
|
|
|
@ -210,6 +210,21 @@
|
||||||
id: 5,
|
id: 5,
|
||||||
title: '{{include(' + lang.include_project + ':' + lang.include_page + ')}}',
|
title: '{{include(' + lang.include_project + ':' + lang.include_page + ')}}',
|
||||||
description: lang.include_from_project
|
description: lang.include_from_project
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 6,
|
||||||
|
title: '{{termno(#)}}',
|
||||||
|
description: lang.glossary_term_by_id
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 7,
|
||||||
|
title: '{{term(' + lang.glossary_name + ')}}',
|
||||||
|
description: lang.glossary_term_by_name
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 8,
|
||||||
|
title: '{{term(' + lang.glossary_name + ',' + lang.glossary_project + ')}}',
|
||||||
|
description: lang.glossary_term_by_name_in_proyect
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue