如何在我的应用程序中创建语言切换器? 我使用Zend Framework 2.
index.phtml:
<?php echo $this->translate('Users') ?>
module.config.php:
'translator' => array(
'locale' => 'pl_PL',
'translation_file_patterns' => array(
array(
'type' => 'gettext',
'base_dir' => __DIR__ . '/../language',
'pattern' => '%s.mo',
),
),
),
我有pl_PL.mo,一切正常,但是如何添加切换器?