Se añade la macro para listar peticiones al menú contextual de macros de CKEditor
This commit is contained in:
parent
9e434f83bc
commit
e4a436c1e4
3 changed files with 23 additions and 2 deletions
|
@ -29,6 +29,9 @@ CKEDITOR.plugins.setLang( 'redmine', 'en', {
|
||||||
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.',
|
||||||
|
issues_list_by_id: 'List of issues using custom query by id.',
|
||||||
|
issues_list_by_name: 'List of issues using custom query by name.',
|
||||||
|
issues_list_by_attributes: 'List of issues filtering by attributes.',
|
||||||
glossary_name: 'name',
|
glossary_name: 'name',
|
||||||
glossary_project: 'project',
|
glossary_project: 'project',
|
||||||
glossary_term_by_id: 'Term of glossary by id',
|
glossary_term_by_id: 'Term of glossary by id',
|
||||||
|
|
|
@ -29,6 +29,9 @@ CKEDITOR.plugins.setLang( 'redmine', 'es', {
|
||||||
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.',
|
||||||
|
issues_list_by_id: 'Peticiones de consulta personalizada por id.',
|
||||||
|
issues_list_by_name: 'Peticiones de consulta personalizada por nombre.',
|
||||||
|
issues_list_by_attributes: 'Peticiones filtrando por campos.',
|
||||||
glossary_name: 'Nombre',
|
glossary_name: 'Nombre',
|
||||||
glossary_project: 'proyecto',
|
glossary_project: 'proyecto',
|
||||||
glossary_term_by_id: 'Término del glosario por número',
|
glossary_term_by_id: 'Término del glosario por número',
|
||||||
|
|
|
@ -213,16 +213,31 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 6,
|
id: 6,
|
||||||
|
title: '{{ref_issues([-0,]-i=id)}}',
|
||||||
|
description: lang.issues_list_by_id
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 7,
|
||||||
|
title: '{{ref_issues([-0,]-q=name)}}',
|
||||||
|
description: lang.issues_list_by_name
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 8,
|
||||||
|
title: '{{ref_issues([-0,][-c,]-f:<attr> <op> <[val[|val...]]>)}}',
|
||||||
|
description: lang.issues_list_by_attributes
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 9,
|
||||||
title: '{{termno(#)}}',
|
title: '{{termno(#)}}',
|
||||||
description: lang.glossary_term_by_id
|
description: lang.glossary_term_by_id
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 7,
|
id: 10,
|
||||||
title: '{{term(' + lang.glossary_name + ')}}',
|
title: '{{term(' + lang.glossary_name + ')}}',
|
||||||
description: lang.glossary_term_by_name
|
description: lang.glossary_term_by_name
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 8,
|
id: 11,
|
||||||
title: '{{term(' + lang.glossary_name + ',' + lang.glossary_project + ')}}',
|
title: '{{term(' + lang.glossary_name + ',' + lang.glossary_project + ')}}',
|
||||||
description: lang.glossary_term_by_name_in_proyect
|
description: lang.glossary_term_by_name_in_proyect
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue