1

我的多语言站点已经成功地使用了 Zend 翻译的“数组”方法。

我想从该方法转换为“gettext”方法,因为我读过 gettext 是优越的。

我试过使用http://docs.translatehouse.org/projects/translate-toolkit/en/latest/commands/php2po.html但无法让它工作。

我认为这并不意味着将 Zend 数组作为输入来处理。

我的 Zend 文件(有效)如下所示:

<?php

return array(    
    'choose your favorite stores' => 'Choose your %1$sfavorite stores%2$s',
    'P.S. If you ever have question' => 'P.S. If you ever have questions, %1$semail us%2$s any time.',
    'You can also find quick answer' => 'You can also find quick answers on our %1$sHelp page%2$s.',
    'Earn X cash' => '%1$sEarn 1-30%% cash back%2$s, get money-saving coupons, and find the best price on every purchase at %3$s2,500+ stores%4$s.'
);

(但它要长得多,而且我有多种语言,每种语言都有自己的 PHP 文件。)

4

1 回答 1

0

使用您为我提供转换的代码段。

$ php2po en.php en.po -t en.php 
processing 1 files...
[###########################################] 100%

$ cat en.po 
#. extracted from en.php, en.php
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-12-19 10:08+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.9.1-pre\n"

#: return+array%28-%3E%27choose+your+favorite+stores%27
msgid "Choose your %1$sfavorite stores%2$s"
msgstr "Choose your %1$sfavorite stores%2$s"

#: return+array%28-%3E%27P.S.+If+you+ever+have+question%27
msgid "P.S. If you ever have questions, %1$semail us%2$s any time."
msgstr "P.S. If you ever have questions, %1$semail us%2$s any time."

#: return+array%28-%3E%27You+can+also+find+quick+answer%27
msgid "You can also find quick answers on our %1$sHelp page%2$s."
msgstr "You can also find quick answers on our %1$sHelp page%2$s."

我正在使用git master的翻译工具包版本,也许你应该尝试一下。

于 2012-12-19T09:14:50.740 回答