blob: 87bb11de2537c534ac5b2e4963d4fce533f6ceab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<?php
/**
* Elgg GUID Tool
*
* @package ElggGUIDTool
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Curverider Ltd
* @copyright Curverider Ltd 2008
* @link http://elgg.com/
*/
/**
* Chinese Language Package
*
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @translator Cosmo Mao
* @copyright cOSmoCommerce.com 2008
* @link http://www.elggsns.cn/
* @version 0.1
*/
$chinese = array(
/**
* Menu items and titles
*/
'guidtool' => 'GUIDͬ����',
'guidtool:browse' => '��� GUIDs',
'guidtool:import' => '����',
'guidtool:import:desc' => 'ճ�����뵼������ݵ������У��ļ���ʽ������ "%s" �ġ�',
'guidtool:pickformat' => '��ѡ����Ҫ������ߵ����ĸ�ʽ��',
'guidbrowser:export' => '����',
);
add_translation("zh",$chinese);
?>
|