francoisfaubert/strata-polyglot

此包已被废弃,不再维护。未建议替代包。
此包最新版本(0.16.419)没有可用的许可信息。

Strata上的Wordpress本地化插件。

安装数: 4,070

依赖项: 0

建议者: 0

安全性: 0

星标: 0

关注者: 1

分支: 0

类型:wordpress-plugin

0.16.419 2016-04-18 13:33 UTC

This package is not auto-updated.

Last update: 2020-01-24 15:37:06 UTC


README

配置

~/config/strata.php下声明应用程序的本地化。您可以指定URL键以及本地化代码。本地化代码必须遵循ISO标准。它必须有两位字符(en)或包含国家信息的完整版本(en_US)。

<?php
$strata = array(
    "routes" => array(),
    "custom-post-types" => array(),

    "i18n" => array(
        "textdomain" => "my_website",
        "default_locale_fallback" => true,
        "locales" => array(
            "en_CA" => array("nativeLabel" => "English", "default" => true),
            "fr_CA" => array("nativeLabel" => "Français", "url" => "francais"),
            "pi" => array("nativeLabel" => "Pirate"),
         )
    )
);

return $strata;
?>