如何在PO文件和PHP中翻译分类法

时间:2013-06-25 18:05:44

标签: php wordpress po

我正在尝试使用PO和MO文件翻译主题,到目前为止,我设法将其添加到主页,但现在我正在尝试创建所有分类法的翻译,但他们有不同的格式,我不喜欢我知道如何编辑它们。

这是我需要翻译的代码:

$ptlabels = array(
    'name' => _x( 'Property Type', 'taxonomy general name', 'contempo' ),
    'singular_name' => _x( 'Property Type', 'taxonomy singular name', 'contempo' ),
    'search_items' =>  __( 'Search Property Types', 'contempo' ),
    'popular_items' => __( 'Popular Property Types', 'contempo' ),
    'all_items' => __( 'All Property Types', 'contempo' ),
    'parent_item' => null,
    'parent_item_colon' => null,
    'edit_item' => __( 'Edit Property Type', 'contempo' ),
    'update_item' => __( 'Update Property Type', 'contempo' ),
    'add_new_item' => __( 'Add New Property Type', 'contempo' ),
    'new_item_name' => __( 'New Property Type Name', 'contempo' ),
    'separate_items_with_commas' => __( 'Separate Property Types with commas', 'contempo' ),
    'add_or_remove_items' => __( 'Add or remove Property Types', 'contempo' ),
    'choose_from_most_used' => __( 'Choose from the most used Property Types', 'contempo' )
);

我需要能够翻译'Property Type''Search Property Types'等等......

我设法通过执行以下操作来翻译其他文件:

<label for="ct_price_from"><?php _e('Price From', 'contempo'); ?> (<?php currency(); ?>)</label>

然后在我的PO文件中添加一行:

#: includes/advanced-search.php:99
msgid "Price From"
msgstr "Valor Inicial"

我希望有人能为我的问题带来一些启示。

提前致谢!

0 个答案:

没有答案