我在Zend 2项目中使用 ZfcUser 。但我要使用意大利语翻译,而不是英语翻译。
我的项目已经改变了 模块/应用/配置/ module.config.php 在翻译属性和所有开始意大利语,而不是模块的一部分。
在目录中 供应商/ ZfcUser / src目录/ ZfcUser /语言 有it_IT.po和it_IT.mo文件。
没有任何改变。如何使用模块链接我的应用程序的语言?
MOD1:
我添加了翻译,但似乎没有任何效果
添加了代码:
return array(
'view_manager' => array(
'template_path_stack' => array(
'zfcuser' => __DIR__ . '/../view',
),
),
'controllers' => array(
'invokables' => array(
'zfcuser' => 'ZfcUser\Controller\UserController',
),
),
'service_manager' => array(
'aliases' => array(
'zfcuser_zend_db_adapter' => 'Zend\Db\Adapter\Adapter',
'translator' => 'MvcTranslator',
),
),
'router' => array(
'routes' => array(
'zfcuser' => array(
'type' => 'Literal',
'priority' => 1000,
'options' => array(
'route' => '/utente',
'defaults' => array(
'controller' => 'zfcuser',
'action' => 'index',
),
),
'may_terminate' => true,
'child_routes' => array(
'login' => array(
'type' => 'Literal',
'options' => array(
'route' => '/login',
'defaults' => array(
'controller' => 'zfcuser',
'action' => 'login',
),
),
),
'authenticate' => array(
'type' => 'Literal',
'options' => array(
'route' => '/autenticati',
'defaults' => array(
'controller' => 'zfcuser',
'action' => 'authenticate',
),
),
),
'logout' => array(
'type' => 'Literal',
'options' => array(
'route' => '/logout',
'defaults' => array(
'controller' => 'zfcuser',
'action' => 'logout',
),
),
),
'register' => array(
'type' => 'Literal',
'options' => array(
'route' => '/registrazione',
'defaults' => array(
'controller' => 'zfcuser',
'action' => 'register',
),
),
),
'changepassword' => array(
'type' => 'Literal',
'options' => array(
'route' => '/cambia-password',
'defaults' => array(
'controller' => 'zfcuser',
'action' => 'changepassword',
),
),
),
'changeemail' => array(
'type' => 'Literal',
'options' => array(
'route' => '/cambia-email',
'defaults' => array(
'controller' => 'zfcuser',
'action' => 'changeemail',
),
),
),
),
),
),
),
'translator' => array(
'locale' => 'it_IT',
'translation_file_patterns' => array(
array(
'type' => 'gettext',
'base_dir' => __DIR__ . '/../language',
'pattern' => '%s.mo',
),
),
)
);
提前致谢
答案 0 :(得分:0)
我找到了解决方案:
在我的ZfcUser模块中,\ ZfcUser \ src \ ZfcUser \下的语言包位于错误的位置,它可以将其放入\ ZfcUser root