Drupal6:带有i18n模块的可翻译主次链接

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Drupal6:带有i18n模块的可翻译主次链接相关的知识,希望对你有一定的参考价值。

Put this in settings.php
  1. /**
  2. * Multilingual settings
  3. *
  4. * This is a collection of variables that can be set up for each language when i18n is enabled.
  5. * These are the basic ones for Drupal core, but you can add your own here.
  6. */
  7. $conf['i18n_variables'] = array(
  8. // Site name, slogan, mission, etc..
  9. 'site_name',
  10. 'site_slogan',
  11. 'site_mission',
  12. 'site_footer',
  13. 'anonymous',
  14. // Different front page for each language
  15. 'site_frontpage',
  16. // Primary and secondary links
  17. 'menu_primary_links_source',
  18. 'menu_secondary_links_source',
  19. // Contact form information
  20. 'contact_form_information',
  21. );

以上是关于Drupal6:带有i18n模块的可翻译主次链接的主要内容,如果未能解决你的问题,请参考以下文章

odoo国际化翻译

Odoo国际化翻译方法及示例介绍

Ruby on Rails i18n - 想要在模型中翻译自定义消息

Node翻译i18n多语言文件,1分钟生成100种语言包

如何翻译 OpenERP 模块?

从 Rails 模型内部访问翻译文件 (i18n)