21 lines
805 B
PHP
21 lines
805 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');
|
|
$meta['show_path'] = array('onoff');
|
|
|