LoginSignup
0
0

More than 5 years have passed since last update.

Views Moduleのページタイトルを翻訳したい

Posted at

テーマファイルの中のtemplate.php編集してテーマ関数をオーバーライドする。
Wordpressでいうところのfunction.php

template.php
// MYTHEME部分はテーマ名で置き換える
function MYTHEME_views_pre_render(&$view) {
  $view->set_title(t($view->get_title()));
}

Views Pageのタイトルを入力して、から/admin/config/regional/translate/translateに移動しタイトル文字列を検索して対応する言語の翻訳内容を追加する。

以上

0
0
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
0
0