机车 CMS - 访问翻译数据



我正在使用机车CMS,我想翻译一些字符串。我的tanslations.yml文件中有以下数据:

  general: 
    404: 
      title: 
        en: "404 Page Not Found"
        fr: "404 - Page non trouvée"
        de: "404 Seite nicht gefunden"
        es: "404 Página no encontrada"
        pt-BR: "404 Página não encontrada"
      subtext_html: 
        en: 'The page you requested does not exist. Click <a href="/collections/all">here</a> to continue shopping.'
        fr: "Cette page n'est pas disponible. <a href= '/collections/all'>Retourner au magasin</a>"
        de: 'Die von Ihnen angeforderte Seite existiert nicht. Klicken Sie <a href="/collections/all">hier</a>, um den Einkauf fortzusetzen.'
        es: 'La página que ha solicitado no existe. Haga clic <a href="/collections/all">aquí</a> para continuar la compra.'
        pt-BR: 'A página que você solicitou não existe. Clique <a href="/collections/all">aqui</a> para voltar às compras.'

而且我无法访问我的 404.liquid 页面中的这些数据:

---
title: Page not found
published: false
---
{% extends theme %}
    {% block 'content' %}
        {{ 'general.404.title' | translate }}
        {{ 'general.404.subtext_html' | t }}
    {% endblock %}

在机车/安装机/翻译.rb 文件中,只有 2 个字段:键和值

module Locomotive
  module Mounter
    module Models
      class Translation < Base
        ## fields ##
        field :key
        field :values
        ## methods ##
        def get(locale)
          self.values[locale.to_s]
        end
        def to_params
          { key: self.key, values: self.values }
        end
        def to_s
          "Translation #{self.key} (#{self.values.keys.join(', ')})"
        end
      end
    end
  end
end

这是否意味着我们不能像这样构建翻译数据?

不。从官方页面:

在机车CMS中,您需要为每个区域设置提供一个单独的模板。为日语本地化创建一个名为 app/views/pages/404.ja.liquid 的新 404 模板,并粘贴以下内容。

---
title: お探しのページが見つかりません
published: true
---
{% extends 'index' %}
{% block 'main' %}
  <p>
    申し訳ありません。そのページは存在しません。
  </p>
{% endblock %}

您可以在此处查看整个教程。

相关内容

  • 没有找到相关文章

最新更新