mirror of
https://github.com/YunoHost-Apps/dokuwiki_ynh.git
synced 2024-09-03 18:26:20 +02:00
20 lines
764 B
PHP
20 lines
764 B
PHP
<?php
|
|
/**
|
|
* Options for the translation plugin
|
|
*
|
|
* @author Andreas Gohr <andi@splitbrain.org>
|
|
*/
|
|
|
|
$meta['translations'] = array('string','_pattern' => '/^(|[a-zA-Z\- ,]+)$/');
|
|
$meta['translationns'] = array('string','_pattern' => '/^(|[\w:\-]+)$/');
|
|
$meta['skiptrans'] = array('string');
|
|
$meta['dropdown'] = array('onoff');
|
|
$meta['display'] = array('multicheckbox',
|
|
'_choices' => array('langcode','name','flag','title','twolines'));
|
|
$meta['translateui'] = array('onoff');
|
|
$meta['redirectstart'] = array('onoff');
|
|
$meta['checkage'] = array('onoff');
|
|
$meta['about'] = array('string','_pattern' => '/^(|[\w:\-]+)$/');
|
|
$meta['localabout'] = array('onoff');
|
|
$meta['copytrans'] = array('onoff');
|
|
|