1 |
efrain |
1 |
<?php
|
|
|
2 |
// This file is part of Moodle - http://moodle.org/
|
|
|
3 |
//
|
|
|
4 |
// This program is free software: you can redistribute it and/or modify
|
|
|
5 |
// it under the terms of the GNU General Public License as published by
|
|
|
6 |
// the Free Software Foundation, either version 3 of the License, or
|
|
|
7 |
// (at your option) any later version.
|
|
|
8 |
//
|
|
|
9 |
// This program is distributed in the hope that it will be useful,
|
|
|
10 |
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
11 |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
12 |
// GNU General Public License for more details.
|
|
|
13 |
//
|
|
|
14 |
// You should have received a copy of the GNU General Public License
|
|
|
15 |
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
16 |
|
|
|
17 |
/**
|
|
|
18 |
* zh strings for edusharing
|
|
|
19 |
*
|
|
|
20 |
* @package mod_edusharing
|
|
|
21 |
* @copyright metaVentis GmbH — http://metaventis.com
|
|
|
22 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
23 |
*/
|
|
|
24 |
|
|
|
25 |
defined('MOODLE_INTERNAL') || die();
|
|
|
26 |
|
|
|
27 |
$string['searchrec'] = '在edu-sharing资源库中搜索 ...';
|
|
|
28 |
$string['uploadrec'] = '上传到edu-sharing资源库 ...';
|
|
|
29 |
$string['pagewindow'] = '在页面中显示';
|
|
|
30 |
$string['newwindow'] = '在新窗口中显示';
|
|
|
31 |
$string['display'] = '显示';
|
|
|
32 |
$string['show_course_blocks'] = '显示课程板块';
|
|
|
33 |
|
|
|
34 |
// Modulename seems to be used in admin-panels.
|
|
|
35 |
// Pluginname seems to be used in course-view.
|
|
|
36 |
$string['modulename'] = 'edu-sharing 资源';
|
|
|
37 |
$string['pluginname'] = 'edu-sharing 资源';
|
|
|
38 |
$string['modulenameplural'] = 'edu-sharing';
|
|
|
39 |
$string['edusharing'] = 'edu-sharing';
|
|
|
40 |
|
|
|
41 |
$string['edusharing:addinstance'] = 'Adds the main edu-sharing plugin';
|
|
|
42 |
|
|
|
43 |
// Mod_form.php.
|
|
|
44 |
$string['edusharingname'] = '标题';
|
|
|
45 |
|
|
|
46 |
$string['object_url_fieldset'] = 'edu-sharing 学习对象';
|
|
|
47 |
$string['object_url'] = '对象';
|
|
|
48 |
$string['object_url_help'] = '请使用下方按钮从资源库中选择一个对象。对象ID将会被自动插入此处';
|
|
|
49 |
$string['object_title'] = 'Selected object';
|
|
|
50 |
$string['object_title_help'] = 'Please use the button below to select an object...';
|
|
|
51 |
|
|
|
52 |
$string['object_version_fieldset'] = '对象版本';
|
|
|
53 |
$string['object_version'] = '使用 ..';
|
|
|
54 |
$string['object_version_help'] = '选择使用的对象版本';
|
|
|
55 |
$string['object_version_use_exact'] = '使用选择的对象版本';
|
|
|
56 |
$string['object_version_use_latest'] = '使用最新的对象版本';
|
|
|
57 |
|
|
|
58 |
$string['object_display_fieldset'] = '对象显示选项';
|
|
|
59 |
$string['force_download'] = '强制下载';
|
|
|
60 |
$string['force_download_help'] = '强制对象下载';
|
|
|
61 |
$string['object_display_fieldset_help'] = '';
|
|
|
62 |
|
|
|
63 |
$string['show_course_blocks'] = '显示课程板块';
|
|
|
64 |
$string['show_course_blocks_help'] = '在目标窗口中显示课程板块';
|
|
|
65 |
|
|
|
66 |
$string['window_allow_resize'] = '允许调整尺寸';
|
|
|
67 |
$string['window_allow_resize_help'] = '允许调整目标窗口尺寸';
|
|
|
68 |
|
|
|
69 |
$string['window_allow_scroll'] = '允许滚动';
|
|
|
70 |
$string['window_allow_scroll_help'] = '允许在目标窗口中滚动';
|
|
|
71 |
|
|
|
72 |
$string['show_directory_links'] = '显示目录链接';
|
|
|
73 |
$string['show_directory_links_help'] = '显示目录链接';
|
|
|
74 |
|
|
|
75 |
$string['show_menu_bar'] = '显示菜单栏';
|
|
|
76 |
$string['show_menu_bar_help'] = '在目标窗口显示菜单栏';
|
|
|
77 |
|
|
|
78 |
$string['show_location_bar'] = '显示位置栏';
|
|
|
79 |
$string['show_location_bar_help'] = '在目标窗口显示位置栏';
|
|
|
80 |
|
|
|
81 |
$string['show_tool_bar'] = '显示工具栏';
|
|
|
82 |
$string['show_tool_bar_help'] = '在目标窗口显示工具栏';
|
|
|
83 |
|
|
|
84 |
$string['show_status_bar'] = '显示状态栏';
|
|
|
85 |
$string['show_status_bar_help'] = '在目标窗口显示状态栏';
|
|
|
86 |
|
|
|
87 |
$string['window_width'] = '显示宽度';
|
|
|
88 |
$string['window_width_help'] = '目标窗口宽度';
|
|
|
89 |
|
|
|
90 |
$string['window_height'] = '显示高度';
|
|
|
91 |
$string['window_height_help'] = '目标窗口的高度';
|
|
|
92 |
|
|
|
93 |
// General error message.
|
|
|
94 |
$string['exc_MESSAGE'] = '在连接edu-sharing.net时发生网络错误';
|
|
|
95 |
|
|
|
96 |
// Beautiful exceptions.
|
|
|
97 |
$string['exc_SENDACTIVATIONLINK_SUCCESS'] = '成功发送激活链接';
|
|
|
98 |
$string['exc_APPLICATIONACCESS_NOT_ACTIVATED_BY_USER'] = '访问未被用户激活';
|
|
|
99 |
$string['exc_COULD_NOT_CONNECT_TO_HOST'] = '连接主机失败';
|
|
|
100 |
$string['exc_INTEGRITY_VIOLATION'] = '完整性冲突';
|
|
|
101 |
$string['exc_INVALID_APPLICATION'] = '无效应用';
|
|
|
102 |
$string['exc_ERROR_FETCHING_HTTP_HEADERS'] = '获取HTTP头文件失败';
|
|
|
103 |
$string['exc_NODE_DOES_NOT_EXIST'] = '节点不存在';
|
|
|
104 |
$string['exc_ACCESS_DENIED'] = '访问被拒';
|
|
|
105 |
$string['exc_NO_PERMISSION'] = '权限不够';
|
|
|
106 |
$string['exc_UNKNOWN_ERROR'] = '未知错误';
|
|
|
107 |
$string['exc_NO_PUBLISH_RIGHTS'] = 'An edu-sharing object could not be restored due to missing publish rights and will be skipped.';
|
|
|
108 |
|
|
|
109 |
// Metadata.
|
|
|
110 |
$string['currentVersion'] = 'Current plugin version';
|
|
|
111 |
$string['conf_versiontext'] = 'Version:';
|
|
|
112 |
$string['conf_linktext'] = 'Connect moodle to home repository:';
|
|
|
113 |
$string['conf_btntext'] = 'Connect';
|
|
|
114 |
$string['conf_hinttext'] = 'This will open a new window where you can load the repository metadata and register the plugin with the repository';
|
|
|
115 |
$string['filter_not_authorized'] = 'You are not authorized to access the requested content.';
|
|
|
116 |
$string['connectToHomeRepository'] = 'Connect to Home Reposiory';
|
|
|
117 |
$string['conf_linktext'] = 'To connect moodle to home repository click here';
|
|
|
118 |
$string['appProperties'] = 'Application Properties';
|
|
|
119 |
$string['homerepProperties'] = 'Home Repository Properties';
|
|
|
120 |
$string['authparameters'] = 'Authentication Parameters';
|
|
|
121 |
$string['guestProperties'] = 'Guest properties';
|
|
|
122 |
$string['brandingSettings'] = 'UI settings';
|
|
|
123 |
$string['brandingInfo'] = 'Change the look & feel of the edu-sharing plugin.';
|
|
|
124 |
$string['appiconDescr'] = 'This icon replaces the edu-sharing icon (including the atto-button).';
|
|
|
125 |
$string['info_textDescr'] = 'The helptext for adding the edu-sharing module.';
|
|
|
126 |
$string['atto_hintDescr'] = 'The helptext for the edus-haring atto-popup.';
|
|
|
127 |
$string['repo_targetDescr'] = 'Configure the startpage in the repository';
|
|
|
128 |
$string['repoSearch'] = 'Search';
|
|
|
129 |
$string['repoCollection'] = 'Collections';
|
|
|
130 |
$string['repoWorkspace'] = 'My Files';
|
|
|
131 |
|
|
|
132 |
$string['save'] = 'Save changes';
|
|
|
133 |
$string['emptyForDefault'] = 'empty for default';
|
|
|
134 |
|
|
|
135 |
// Auth parameters.
|
|
|
136 |
$string['convey_global_groups_yes'] = 'Convey cohorts';
|
|
|
137 |
$string['convey_global_groups_no'] = 'Do not convey cohorts';
|
|
|
138 |
|
|
|
139 |
$string['soaprequired'] = 'The PHP extension soap must be activated.';
|
|
|
140 |
|
|
|
141 |
$string['error_missing_authwsdl'] = 'No "authenticationwebservice_wsdl" configured.';
|
|
|
142 |
$string['error_authservice_not_reachable'] = 'not reachable. Cannot utilize edu-sharing network.';
|
|
|
143 |
$string['error_invalid_ticket'] = 'Invalid ticket. Cannot utilize edu-sharing network.';
|
|
|
144 |
$string['error_auth_failed'] = 'Cannot utilize edu-sharing network because authentication failed.';
|
|
|
145 |
$string['error_load_course'] = 'Cannot load course from database.';
|
|
|
146 |
$string['error_missing_usagewsdl'] = 'No "usagewebservice_wsdl" configured.';
|
|
|
147 |
$string['error_load_resource'] = 'Cannot load resource from database.';
|
|
|
148 |
$string['error_get_object_id_from_url'] = 'Cannot get object id from url.';
|
|
|
149 |
$string['error_get_repository_id_from_url'] = 'Cannot get repository id from url.';
|
|
|
150 |
$string['error_detect_course'] = 'Cannot detect course id';
|
|
|
151 |
$string['error_loading_memento'] = 'Error loading temporary object.';
|
|
|
152 |
$string['error_set_soap_headers'] = 'Cannot set SOAP headers - ';
|
|
|
153 |
$string['error_get_app_properties'] = 'No app-properties found.';
|
|
|
154 |
$string['error_encrypt_with_repo_public'] = 'Cannot encrypt data.';
|