1

使用 Zend 框架,很容易记录没有翻译的字符串

我的问题:你如何记录有翻译的字符串?

谢谢!!

4

1 回答 1

0

在 Zend_Translate 中无法记录 translate() 调用,但您可以创建自己的帮助器,它将代理所有对原始 translate() 帮助器的调用并将其用于您的需要。

下面是一些辅助方法的例子:

/**
 * Translates provided message Id
 * 
 * You can give multiple params or an array of params.
 * If you want to output another locale just set it as last single parameter
 * Example 1: translate('%1\$s + %2\$s', $value1, $value2, $locale);
 * Example 2: translate('%1\$s + %2\$s', array($value1, $value2), $locale);
 *
 * @param  string $messageid Id of the message to be translated
 * @return string Translated message
 */
public function t_($messageid = null)
{
    /**
     * Process the arguments
     */
    $options = func_get_args();

    array_shift($options);

    $count  = count($options);
    $locale = null;
    if ($count > 0) {
        if (Zend_Locale::isLocale($options[($count - 1)], null, false) !== false) {
            $locale = array_pop($options);
        }
    }

    if ((count($options) === 1) and (is_array($options[0]) === true)) {
        $options = $options[0];
    }

/**
 * Get Zend_Translate_Adapter
 */
    $translator = $this->translate()      // get Zend_View_Helper_Translate
               ->getTranslator(); // Get Zend_Translate_Adapter

    /**
     * Proxify the call to Zend_Translate_Adapter
     */
    $message = $translator->translate($messageid, $locale);

    /**
     * If no any options provided then just return message
     */
    if ($count === 0) {
        return $message;
    }

    /**
     * Apply options in case we have them
     */
    return vsprintf($message, $options);
}

并像这样使用它:

echo $this->t_('message-id', $param1, $param2);

代替

echo $this->translate('message-id', $param1, $param2);

然后,您可以向该方法添加任何自定义功能来记录您需要的信息。

这个解决方案不是很快,但可以让你做到这一点。

我在尝试解决此问题时创建了此方法:

http://framework.zend.com/issues/browse/ZF-5547

于 2011-04-13T15:47:34.903 回答