テーマの翻訳

    各テーマにはlanguagesフォルダーがあります。このフォルダーには、言語ごとに異なる言語ファイルを作成できます。

    /bl-themes/{テーマ名}/languages/
        de_DE.json
        en.json
        es.json
        fr_FR.json
        ...
    ファイルエンコーディング
    すべての言語ファイルはJSONファイルで、UTF-8でエンコーディングされています。

    これは英語の言語ファイル(en.json)の例です。en.jsonファイルの各行はキーと値のペアで左側がキー、右側が値になっています。

    {
        "theme-data":
        {
            "name": "Pure",
            "description": "Simple and clean, based on the framework Pure.css."
        }
    }

    theme-dataというフィールドがあります。このフィールドには、テーマの名前と説明があります。

    これはスペイン語言語ファイルの例です。このファイルは/bl-themes/{テーマ名}/languages/es.jsonにあります。

    {
        "theme-data":
        {
            "name": "Pure",
            "description": "Simple y minimalista, basado en el framework Pure.css."
        }
    }

    Bludit Documentation Powered by Bludit