我正在尝试使用 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"
我希望有人可以为我的问题带来一些启示。
提前致谢!