LoginSignup
3
3

More than 5 years have passed since last update.

ZendSkeletonApplicationのメッセージを日本語にする

Posted at

Zend Framework 2 で標準のWEBアプリケーションの雛形として
ZendSkeletonApplicationが用意されています。
https://github.com/zendframework/ZendSkeletonApplication

ただし、viewにてtranslateヘルパーが使用されていますが、Applicationモジュールのlocal設定では、en_USのみが記述されています。この設定を日本語を使用するようにオーバーライドするには、
config/autoload/global.phpに以下のように設定します。

<?php
return array(
    'translator' => array(
        'locale' => 'ja_JP',
    ),
);

日本語がおかしい場合は
https://github.com/zendframework/ZendSkeletonApplication/pull/91
などのPRを参考に訂正依頼をなげてください。

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3