zh-TW.js 26.9 KB
Newer Older
Q
q4speed 已提交
1
export default {
Q
q4speed 已提交
2
  commons: {
Q
q4speed 已提交
3 4 5 6 7 8
    delete_cancelled: '已取消删除',
    workspace: '工作空間',
    organization: '組織',
    setting: '設置',
    project: '項目',
    about_us: '關於',
9
    current_project: '當前項目',
Q
q4speed 已提交
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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
    name: '名稱',
    description: '描述',
    clear: '清空',
    save: '保存',
    save_success: '保存成功',
    delete_success: '刪除成功',
    copy_success: '複製成功',
    modify_success: '修改成功',
    delete_cancel: '已取消刪除',
    confirm: '確定',
    cancel: '取消',
    prompt: '提示',
    operating: '操作',
    input_limit: '長度在 {0} 到 {1} 個字符',
    login: '登錄',
    welcome: '歡迎回來,請輸入用戶名和密碼登錄MeterSphere',
    username: '用戶名',
    password: '密碼',
    input_username: '請輸入用戶名',
    input_password: '請輸入密碼',
    test: '測試',
    create_time: '創建時間',
    update_time: '更新時間',
    add: '添加',
    member: '成員',
    email: '郵箱',
    phone: '電話',
    role: '角色',
    personal_info: '個人信息',
    status: '狀態',
    show_all: '顯示全部',
    show: '顯示',
    report: '報告',
    user: '用戶',
    system: '系統',
    personal_setting: '個人設置',
    test_resource_pool: '測試資源池',
    system_setting: '系統設置',
    api: '接口測試',
    performance: '性能測試',
    functional: '功能測試',
    input_content: '請輸入內容',
    create: '新建',
    edit: '編輯',
    copy: '複製',
    refresh: '刷新',
    remark: '備註',
    delete: '刪除',
    not_filled: '未填寫',
    please_select: '請選擇',
    search_by_name: '根據名稱搜索',
    personal_information: '個人信息',
    exit_system: '退出系統',
    verification: '驗證',
    title: '標題',
    custom: '自定義',
    select_date: '選擇日期',
    calendar_heatmap: '測試日曆',
    months_1: '一月',
    months_2: '二月',
    months_3: '三月',
    months_4: '四月',
    months_5: '五月',
    months_6: '六月',
    months_7: '七月',
    months_8: '八月',
    months_9: '九月',
    months_10: '十月',
    months_11: '十一月',
    months_12: '十二月',
    weeks_0: '周日',
    weeks_1: '周一',
    weeks_2: '周二',
    weeks_3: '周三',
    weeks_4: '周四',
    weeks_5: '周五',
    weeks_6: '周六',
    test_unit: '測試',
    system_parameter_setting: '系統參數設置',
    connection_successful: '連接成功',
    connection_failed: '連接失敗',
    save_failed: '保存失敗',
    host_cannot_be_empty: '主機不能為空',
    port_cannot_be_empty: '埠號不能為空',
    account_cannot_be_empty: '帳戶不能為空',
    remove: '移除',
    remove_cancel: '移除取消',
    remove_success: '移除成功',
    tips: '认認證資訊已過期,請重新登入',
    not_performed_yet: '尚未執行',
    incorrect_input: '輸入內容不正確',
    delete_confirm: '請輸入以下內容,確認刪除:',
    input_name: '請輸入名稱',
    formatErr: '格式錯誤',
C
chenjianxing 已提交
104
    please_save: '請先保存',
105
    id: 'ID',
106
    please_upload: '請上傳文件',
Q
q4speed 已提交
107 108 109 110 111 112 113 114
    date: {
      select_date: '選擇日期',
      start_date: '開始日期',
      end_date: '結束日期',
      select_date_time: '選擇日期時間',
      start_date_time: '開始日期時間',
      end_date_time: '結束日期時間',
      range_separator: "",
115
      data_time_error: "開始日期不能大於結束日期",
Q
q4speed 已提交
116 117 118 119 120 121 122 123 124 125
    },
    trigger_mode: {
      name: "觸發方式",
      manual: "手動觸發",
      schedule: "定時任務",
      api: "API調用"
    },
    adv_search: {
      title: '高級搜索',
      combine: '組合查詢',
Q
i18n  
q4speed 已提交
126 127
      test: "所屬測試",
      project: "所屬項目",
Q
q4speed 已提交
128
      search: "查詢",
Q
q4speed 已提交
129
      reset: "重置",
Q
q4speed 已提交
130 131 132 133 134 135 136 137 138 139 140 141 142
      and: '所有',
      or: '任意一個',
      operators: {
        like: "包含",
        not_like: "不包含",
        in: "屬於",
        not_in: "不屬於",
        gt: "大於",
        ge: "大於等於",
        lt: "小於",
        le: "小於等於",
        equals: "等於",
        between: "之間",
Q
q4speed 已提交
143
        current_user: "是當前用戶"
Q
q4speed 已提交
144 145
      }
    }
Q
q4speed 已提交
146 147
  },
  workspace: {
Q
q4speed 已提交
148 149 150 151 152 153 154 155 156 157 158 159 160 161
    create: '創建工作空間',
    update: '修改工作空間',
    delete: '刪除工作空間',
    delete_confirm: '删除該工作空間會關聯删除該工作空間下的所有資源(如:相關項目,測試用例等),確定要删除嗎?',
    add: '添加工作空間',
    input_name: '請輸入工作空間名稱',
    search_by_name: '根據名稱搜索',
    organization_name: '所屬組織',
    please_choose_organization: '請選擇組織',
    please_select_a_workspace_first: '請先選擇工作空間! ',
    none: '無工作空間',
    select: '選擇工作空間',
    special_characters_are_not_supported: '格式錯誤(不支持特殊字符,且不能以\'-\'開頭結尾)',
    delete_warning: '删除该工作空间将同步删除该工作空间下所有项目,以及项目中的所有用例、接口测试、性能测试等,确定要删除吗?',
Q
q4speed 已提交
162
  },
S
shiziyuan9527 已提交
163
  organization: {
Q
q4speed 已提交
164 165 166 167 168 169 170 171 172 173 174
    create: '創建組織',
    modify: '修改組織',
    delete: '刪除組織',
    delete_confirm: '删除該組織會關聯删除該組織下的所有資源(如:相關工作空間,項目,測試用例等),確定要删除嗎?',
    input_name: '請輸入組織名稱',
    select_organization: '請選擇組織',
    search_by_name: '根據名稱搜索',
    special_characters_are_not_supported: 'Incorrect format (special characters are not supported and cannot end with \'-\')',
    none: '無組織',
    select: '選擇組織',
    delete_warning: '删除该组织将同步删除该组织下所有相关工作空间和相关工作空间下的所有项目,以及项目中的所有用例、接口测试、性能测试等,确定要删除吗?',
W
wenyann 已提交
175

S
shiziyuan9527 已提交
176
  },
Q
q4speed 已提交
177
  project: {
Q
q4speed 已提交
178 179 180 181 182 183 184 185 186 187 188
    recent: '最近的項目',
    create: '創建項目',
    edit: '編輯項目',
    delete: '刪除項目',
    delete_confirm: '確定要刪除這個項目嗎?',
    delete_tip: '删除該項目,會删除該項目下所有測試資源,確定要删除嗎?',
    search_by_name: '根據名稱搜索',
    input_name: '請輸入項目名稱',
    owning_workspace: '所屬工作空間',
    please_choose_workspace: '請選擇工作空間',
    special_characters_are_not_supported: '格式錯誤(不支持特殊字符,且不能以\'-\'開頭結尾)',
C
zh-tw  
Captain.B 已提交
189 190
  },
  member: {
Q
q4speed 已提交
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
    create: '添加成員',
    modify: '修改成員',
    delete_confirm: '這個用戶確定要刪除嗎?',
    please_choose_member: '請選擇成員',
    search_by_name: '根據名稱搜索',
    modify_personal_info: '修改個人信息',
    edit_password: '修改密碼',
    edit_information: '編輯信息',
    input_name: '請輸入名稱',
    input_email: '請輸入郵箱',
    special_characters_are_not_supported: '不支持特殊字符',
    mobile_number_format_is_incorrect: '手機號碼格式不正確',
    email_format_is_incorrect: '郵箱格式不正確',
    password_format_is_incorrect: '有效密碼:8-16比特,英文大小寫字母+數位+特殊字元(可選)',
    old_password: '舊密碼',
    new_password: '新密碼',
    remove_member: '確定要移除該成員嗎',
    input_id_or_email: '請輸入用戶 ID, 或者 用戶郵箱',
    no_such_user: '無此用戶信息, 請輸入正確的用戶 ID 或者 用戶郵箱!',
C
zh-tw  
Captain.B 已提交
210 211
  },
  user: {
Q
q4speed 已提交
212 213 214 215 216 217 218 219 220 221 222 223
    create: '創建用戶',
    modify: '修改用戶',
    input_name: '請輸入用戶名',
    input_id: '請輸入ID',
    input_email: '請輸入郵箱',
    input_password: '請輸入密碼',
    input_phone: '請輸入電話號碼',
    special_characters_are_not_supported: '不支持特殊字符',
    mobile_number_format_is_incorrect: '手機號碼格式不正確',
    email_format_is_incorrect: '郵箱格式不正確',
    delete_confirm: '這個用戶確定要刪除嗎?',
    apikey_delete_confirm: '這個 API Key 確定要刪除嗎?',
S
shiziyuan9527 已提交
224 225
    input_id_placeholder: '請輸入ID (只支持數字、英文字母)',
    source: '用戶來源'
C
zh-tw  
Captain.B 已提交
226 227
  },
  role: {
Q
q4speed 已提交
228 229 230 231 232
    please_choose_role: '請選擇角色',
    admin: '系統管理員',
    org_admin: '組織管理員',
    test_manager: '測試經理',
    test_user: '測試人員',
233
    test_viewer: '只讀用戶',
Q
q4speed 已提交
234
    add: '添加角色',
C
zh-tw  
Captain.B 已提交
235 236
  },
  report: {
Q
q4speed 已提交
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
    name: '項目名稱',
    recent: '最近的報告',
    search_by_name: '根據名稱搜索',
    test_name: '所屬測試',
    test_overview: '測試概覽',
    test_request_statistics: '請求統計',
    test_error_log: '錯誤記錄',
    test_log_details: '日誌詳情',
    test_details: '測試詳情',
    test_duration: '持續時間:{0} 分鐘 {1} 秒',
    test_start_time: '開始時間',
    test_end_time: '結束時間',
    test_stop_now: '立即停止',
    test_stop_now_confirm: '確定要立即停止當前測試嗎?',
    test_rerun_confirm: '確定要再次執行當前測試嗎?',
    test_stop_success: '停止成功',
    test_execute_again: '再次執行',
    export: '導出',
    compare: '比較',
    generation_error: '報告生成錯誤,無法查看!',
    being_generated: '報告正在生成中...',
    delete_confirm: '確認刪除報告: ',
259
    start_status: '測試處於開始狀態, 我們生成報告後會自動展示到頁面上!',
Q
q4speed 已提交
260 261
    run_status: '測試處於運行狀態,請稍後查看報告!',
    user_name: '創建人',
262 263 264 265 266
    project_name: '所屬項目',
    force_stop_tips: '<strong>強制停止</strong>測試會立刻結束當前測試並刪除報告數據',
    stop_tips: '<strong>停止</strong>測試會結束當前測試並保留報告數據',
    force_stop_btn: '強制停止',
    stop_btn: '停止',
C
zh-tw  
Captain.B 已提交
267 268
  },
  load_test: {
Q
q4speed 已提交
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326
    operating: '操作',
    recent: '最近的測試',
    search_by_name: '根據名稱搜索',
    project_name: '所屬項目',
    delete_confirm: '確認刪除測試: ',
    input_name: '請輸入名稱',
    select_project: '請選擇項目',
    save_and_run: '保存並執行',
    basic_config: '場景配置',
    pressure_config: '壓力配置',
    advanced_config: '高級配置',
    runtime_config: '運行配置',
    is_running: '正在運行! ',
    test_name_is_null: '測試名稱不能為空! ',
    project_is_null: '項目不能為空! ',
    jmx_is_null: '必需包含一個JMX文件,且只能包含一個JMX文件!',
    file_name: '文件名',
    file_size: '文件大小',
    file_type: '文件類型',
    file_status: '文件狀態',
    last_modify_time: '修改時間',
    upload_tips: '將文件拖到此處,或<em>點擊上傳</em>',
    upload_type: '只能上傳JMX/CSV文件',
    related_file_not_found: "未找到關聯的測試文件!",
    delete_file_confirm: '確認刪除文件: ',
    file_size_limit: "文件個數超出限制!",
    delete_file: "文件已存在,請先刪除同名文件!",
    thread_num: '並髮用戶數:',
    input_thread_num: '請輸入線程數',
    duration: '壓測時長(分鐘):',
    input_duration: '請輸入時長',
    rps_limit: 'RPS上限:',
    input_rps_limit: '請輸入限制',
    ramp_up_time_within: '',
    ramp_up_time_minutes: '分鐘內,分',
    ramp_up_time_times: '次增加並髮用戶',
    advanced_config_error: '高級配置校驗失敗',
    domain_bind: '域名綁定',
    domain: '域名',
    enable: '是否啟用',
    ip: 'IP地址',
    params: '自定義屬性',
    param_name: '屬性名',
    param_value: '屬性值',
    domain_is_duplicate: '域名不能重複',
    param_is_duplicate: '參數名不能重複',
    domain_ip_is_empty: '域名和IP不能為空',
    param_name_value_is_empty: '參數名和參數值不能為空',
    connect_timeout: '建立連接超時時間',
    custom_http_code: '自定義 HTTP 響應成功狀態碼',
    separated_by_commas: '按逗號分隔',
    create: '創建測試',
    select_resource_pool: '請選擇資源池',
    resource_pool_is_null: '資源池為空',
    download_log_file: '下載完整日誌文件',
    pressure_prediction_chart: '壓力預估圖',
    user_name: '創建人',
    special_characters_are_not_supported: '測試名稱不支持特殊字符',
C
chenjianxing 已提交
327 328
    pressure_config_params_is_empty: '壓力配置參數不能為空!',
    schedule_tip: '間隔時間不能小於壓測時長'
C
zh-tw  
Captain.B 已提交
329 330
  },
  api_test: {
331
    creator: "創建人",
C
zh-tw  
Captain.B 已提交
332 333 334 335 336 337
    save_and_run: "保存並執行",
    run: "執行",
    running: "正在執行",
    reset: "重置",
    input_name: "請輸入測試名稱",
    select_project: "請選擇項目",
Q
q4speed 已提交
338
    variable_name: "變數名",
C
zh-tw  
Captain.B 已提交
339 340 341
    copied: "已拷貝",
    key: "",
    value: "",
Q
q4speed 已提交
342
    create_performance_test: "創建性能測試",
343
    export_config: "匯出",
C
i18n  
chenjianxing 已提交
344 345 346 347 348 349
    environment: {
      name: "環境名稱",
      socket: "環境域名",
      globalVariable: "全局變量",
      environment_list: "環境列表",
      environment_config: "環境配置",
350
      config_environment: "配置環境",
C
i18n  
chenjianxing 已提交
351
      environment: "環境",
352
      select_environment: "請選擇環境",
C
i18n  
chenjianxing 已提交
353 354
      please_save_test: "請先保存測試",
    },
C
zh-tw  
Captain.B 已提交
355
    scenario: {
Q
q4speed 已提交
356
      dubbo: "Dubbo配寘",
Q
q4speed 已提交
357
      creator: "創建人",
Q
q4speed 已提交
358
      config: "場景配寘",
C
zh-tw  
Captain.B 已提交
359 360 361
      input_name: "請輸入場景名稱",
      name: "場景名稱",
      base_url: "基礎URL",
Q
q4speed 已提交
362 363
      base_url_description: "基礎URL作為所有請求的URL首碼",
      variables: "自定義變數",
C
zh-tw  
Captain.B 已提交
364
      headers: "請求頭",
Q
q4speed 已提交
365
      kv_description: "所有請求可以使用自定義變數",
366 367
      copy: "複製場景",
      delete: "删除場景"
C
zh-tw  
Captain.B 已提交
368 369
    },
    request: {
370 371
      copy: "複製請求",
      delete: "删除請求",
C
zh-tw  
Captain.B 已提交
372
      input_name: "請輸入請求名稱",
A
AgAngle 已提交
373 374
      input_url: "請輸入請求URL",
      input_path: "請輸入請求路徑",
C
zh-tw  
Captain.B 已提交
375 376 377
      name: "請求名稱",
      method: "請求方法",
      url: "請求URL",
C
i18n  
chenjianxing 已提交
378 379 380 381 382
      path: "請求路徑",
      address: "請求地址",
      refer_to_environment: "引用環境",
      please_configure_environment_in_scenario: "請在場景中配置環境",
      please_add_environment_to_scenario: "請先在場景中添加環境配置",
Q
q4speed 已提交
383
      url_description: "例如:https://fit2cloud.com",
C
i18n  
chenjianxing 已提交
384
      path_description: "例如:/login",
Q
q4speed 已提交
385
      url_invalid: "URL無效",
C
zh-tw  
Captain.B 已提交
386
      parameters: "請求參數",
Q
q4speed 已提交
387
      parameters_desc: "參數追加到URL,例如https://fit2cloud.com/entries?key1=Value1&amp;Key2=Value2",
C
zh-tw  
Captain.B 已提交
388 389 390
      headers: "請求頭",
      body: "請求內容",
      body_kv: "鍵值對",
Q
q4speed 已提交
391
      body_text: "文字",
C
zh-tw  
Captain.B 已提交
392 393
      assertions: {
        label: "斷言",
Q
q4speed 已提交
394
        text: "文字",
C
zh-tw  
Captain.B 已提交
395
        regex: "正則",
Q
q4speed 已提交
396
        response_time: "回應時間",
C
zh-tw  
Captain.B 已提交
397 398 399 400 401 402
        select_type: "請選擇類型",
        select_subject: "請選擇對象",
        select_condition: "請選擇條件",
        contains: "包含",
        not_contains: "不包含",
        equals: "等於",
Q
q4speed 已提交
403 404
        start_with: "以…開始",
        end_with: "以…結束",
C
zh-tw  
Captain.B 已提交
405
        value: "",
Q
q4speed 已提交
406 407
        expression: "Perl型規則運算式",
        response_in_time: "回應時間在…毫秒以內",
C
zh-tw  
Captain.B 已提交
408 409
      },
      extract: {
Q
q4speed 已提交
410
        label: "選取",
C
zh-tw  
Captain.B 已提交
411
        select_type: "請選擇類型",
Q
q4speed 已提交
412
        description: "從響應結果中選取數據並將其存儲在變數中,在後續請求中使用變數。",
C
zh-tw  
Captain.B 已提交
413
        regex: "正則",
Q
q4speed 已提交
414 415 416
        regex_expression: "Perl型規則運算式",
        json_path_expression: "JSONPath運算式",
        xpath_expression: "XPath運算式",
Q
q4speed 已提交
417 418
      },
      dubbo: {
Q
q4speed 已提交
419 420 421 422
        protocol: "協定",
        input_interface: "請輸入Interface",
        input_method: "請輸入Method",
        input_config_center: "請輸入Config Center",
423
        get_provider_success: "獲取成功",
Q
q4speed 已提交
424 425 426
        input_registry_center: "請輸入Registry Center",
        input_consumer_service: "請輸入Consumer & Service",
        check_registry_center: "獲取失敗,請檢查Registry Center",
C
zh-tw  
Captain.B 已提交
427
      }
C
chenjianxing 已提交
428 429 430 431 432 433 434 435
    },
    api_import: {
      label: "導入",
      title: "接口測試導入",
      data_format: "數據格式",
      file_size_limit: "文件大小不超過 20 M",
      tip: "說明",
      export_tip: "導出方法",
Q
q4speed 已提交
436 437
      ms_tip: "支持 MeterSphere json 格式",
      ms_export_tip: "通過 MeterSphere Api 測試頁面或者瀏覽器插件導出 json 格式文件",
C
chenjianxing 已提交
438
      postman_tip: "只支持 Postman Collection v2.1 格式的 json 文件",
C
chenjianxing 已提交
439 440 441
      swagger_tip: "只支持 Swagger2.x 版本的 json 文件",
      post_export_tip: "通過 Postman 導出測試集合",
      swagger_export_tip: "通過 Swagger 頁面導出",
C
chenjianxing 已提交
442
      suffixFormatErr: "文件格式不符合要求",
C
chenjianxing 已提交
443
      swagger_url_import: "使用URL導入",
C
zh-tw  
Captain.B 已提交
444 445 446
    }
  },
  api_report: {
Q
q4speed 已提交
447
    title: "報告",
C
zh-tw  
Captain.B 已提交
448 449 450 451 452
    request: "請求",
    request_body: "請求內容",
    request_headers: "請求頭",
    request_cookie: "Cookie",
    response: "響應",
Q
q4speed 已提交
453
    delete_confirm: '確認删除報告:',
C
zh-tw  
Captain.B 已提交
454
    scenario_name: "場景名稱",
Q
q4speed 已提交
455 456
    response_time: "回應時間(ms)",
    latency: "網路延遲",
C
zh-tw  
Captain.B 已提交
457 458 459 460 461 462 463 464
    request_size: "請求大小",
    response_size: "響應大小",
    response_code: "狀態碼",
    response_message: "響應報文",
    error: "錯誤",
    assertions: "斷言",
    assertions_pass: "成功斷言",
    assertions_name: "斷言名稱",
Q
q4speed 已提交
465
    assertions_error_message: "錯誤資訊",
C
zh-tw  
Captain.B 已提交
466 467 468 469
    assertions_is_success: "是否成功",
    result: "結果",
    success: "成功",
    fail: "失敗",
Q
q4speed 已提交
470
    total: "全部",
471 472
    test_name: "所屬測試",
    request_result: "請求結果",
C
chenjianxing 已提交
473 474 475
    sub_result: "子請求",
    detail: "報告詳情",
    delete: "刪除報告",
476
    running: "測試執行中",
C
zh-tw  
Captain.B 已提交
477 478 479 480 481 482 483 484 485 486 487
  },
  test_track: {
    test_track: "測試跟踪",
    confirm: "確 定",
    cancel: "取 消",
    project: "項目",
    save: "保 存",
    return: "返 回",
    length_less_than: "長度必須小於",
    recent_plan: "最近的計劃",
    recent_case: "最近的用例",
C
chenjianxing 已提交
488
    pass_rate: "通過率",
489 490
    execution_result: ": 請選擇執行結果",
    actual_result: ": 實際結果為空",
C
zh-tw  
Captain.B 已提交
491 492 493 494 495 496 497
    case: {
      test_case: "測試用例",
      move: "移動用例",
      case_list: "用例列表",
      create_case: "創建用例",
      edit_case: "編輯用例",
      view_case: "查看用例",
Q
q4speed 已提交
498
      no_project: "該工作空間下無項目,請先創建項目",
C
zh-tw  
Captain.B 已提交
499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521
      priority: "優先級",
      type: "類型",
      method: "測試方式",
      auto: "自動",
      manual: "手動",
      create: "新建用例",
      case_type: "用例類型",
      name: "用例名稱",
      module: "所屬模塊",
      maintainer: "維護人",
      steps: "執行步驟",
      number: "編號",
      prerequisite: "前置條件",
      step_desc: "步驟描述",
      expected_results: "預期結果",
      input_name: "請輸入名稱",
      input_module: "請選擇模塊",
      input_maintainer: "請選擇維護人",
      input_priority: "請選擇優先級",
      input_type: "請選擇用例類型",
      input_method: "請選擇測試方式",
      input_prerequisite: "請輸入前置條件",
      delete_confirm: "確認刪除測試用例: ",
C
chenjianxing 已提交
522
      delete: "删除用例",
C
chenjianxing 已提交
523
      save_create_continue: "保存並繼續創建",
C
chenjianxing 已提交
524
      please_create_project: "暫無項目,請先創建項目",
525
      create_module_first: "請先新建模塊",
C
i18n  
chenjianxing 已提交
526
      relate_test: "關聯測試",
527
      relate_test_not_find: '關聯的測試不存在,請檢查用例',
C
zh-tw  
Captain.B 已提交
528 529 530 531 532
      import: {
        import: "導入用例",
        case_import: "導入測試用例",
        download_template: "下載模版",
        click_upload: "點擊上傳",
Q
q4speed 已提交
533
        upload_limit: "只能上傳xls/xlsx文件,且不超過20M",
C
zh-tw  
Captain.B 已提交
534 535 536 537
        upload_limit_count: "一次只能上傳一個文件",
        upload_limit_format: "上傳文件只能是 xls、xlsx格式!",
        upload_limit_size: "上傳文件大小不能超過 20MB!",
        success: "導入成功!",
C
chenjianxing 已提交
538
        importing: "導入中...",
C
zh-tw  
Captain.B 已提交
539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
      },
      export: {
        export: "導出用例"
      }
    },
    plan: {
      test_plan: "測試計劃",
      create_plan: "創建測試計劃",
      edit_plan: "編輯測試計劃",
      plan_name: "計劃名稱",
      plan_project: "所屬項目",
      plan_stage: "測試階段",
      plan_status: "當前狀態",
      smoke_test: "冒煙測試",
      functional_test: "功能測試",
      regression_test: "回歸測試",
      integration_testing: "集成測試",
      system_test: "系統測試",
      version_validation: "版本驗證",
      plan_principal: "負責人",
      input_plan_name: "請輸入測試計劃名稱",
      input_plan_principal: "請選擇負責人",
      input_plan_project: "請選擇所屬項目",
      input_plan_stage: "請選擇測試階段",
      plan_status_prepare: "未開始",
      plan_status_running: "進行中",
      plan_status_completed: "已完成",
C
chenjianxing 已提交
566
      plan_delete_confirm: "將刪除該測試計劃下所有用例,確認刪除測試計劃: ",
C
chenjianxing 已提交
567
      plan_delete: "刪除計劃",
C
zh-tw  
Captain.B 已提交
568 569 570 571 572 573 574 575 576
    },
    module: {
      search: "搜索模塊",
      rename: "重命名",
      add_submodule: "添加子模塊",
      add_module: "添加模塊",
      name: "模塊名稱",
      delete_confirm: "確認刪除模塊: ",
      delete_all_resource: "以及模塊下所有子模塊和測試用例",
C
chenjianxing 已提交
577 578 579 580 581 582 583
      module: "模塊",
    },
    home: {
      recent_test: "最近測試",
      my_plan: "我的計劃",
      test_rate: "測試進度",
      tested_case: "已測用例",
C
zh-tw  
Captain.B 已提交
584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606
    },
    plan_view: {
      plan: "計劃",
      relevance_test_case: "關聯測試用例",
      executor: "執行人",
      execute_result: "執行結果",
      pass: "通過",
      failure: "失敗",
      blocking: "阻塞",
      skip: "跳過",
      actual_result: "實際結果",
      step_result: "步驟執行結果",
      my_case: "我的用例",
      all_case: "全部用例",
      pre_case: "上一條用例",
      next_case: "下一條用例",
      change_execution_results: "更改執行結果",
      change_executor: "更改執行人",
      select_executor: "請選擇執行人",
      select_execute_result: "選擇執行結果",
      cancel_relevance: "取消關聯",
      confirm_cancel_relevance: "確認取消關聯",
      select_manipulate: "請選擇需要操作的數據",
C
chenjianxing 已提交
607 608
      select_template: "選擇模版",
      step: "步驟",
C
chenjianxing 已提交
609
      submit_issues: "提缺陷",
C
chenjianxing 已提交
610 611 612 613 614 615 616 617 618
      operate_step: "操作步驟",
      edit_component: "編輯組件",
      base_info: "基礎信息",
      test_result: "測試結果",
      result_distribution: "測試結果分布",
      custom_component: "自定義模塊",
      create_report: "創建測試報告",
      view_report: "查看測試報告",
      component_library: "組件庫",
Q
q4speed 已提交
619
      component_library_tip: "拖拽組件庫中組件,添加至右側,預覽報告效果,每個系統組件只能添加壹個。",
C
chenjianxing 已提交
620 621
      delete_component_tip: "請至少保留壹個組件",
      input_template_name: "輸入模版名稱",
622
      template_special_characters: '模版名稱不支持特殊字符',
C
chenjianxing 已提交
623
      case_count: "用例數",
C
chenjianxing 已提交
624
      issues_count: "缺陷數",
C
chenjianxing 已提交
625 626 627 628
      result_statistics: "測試結果統計",
      result_statistics_chart: "測試結果統計圖",
      create_template: "新建模版",
      report_template: "測試報告模版",
629
      test_detail: "測試詳情",
630
      failure_case: "失敗用例",
C
zh-tw  
Captain.B 已提交
631 632 633
    }
  },
  test_resource_pool: {
Q
q4speed 已提交
634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649
    type: '類型',
    enable_disable: '啟用/禁用',
    search_by_name: '根據名稱搜索',
    create_resource_pool: '創建資源池',
    update_resource_pool: '修改資源池',
    select_pool_type: '選擇資源類型',
    max_threads: '最大並發數',
    input_pool_name: '請輸入資源池名稱',
    pool_name_valid: '資源池名稱不支持特殊字符',
    cannot_remove_all_node: '不能刪除所有獨立節點',
    cannot_empty: '資源池不能為空',
    fill_the_data: '請完善數據',
    delete_prompt: '此操作將永久刪除該資源池, 是否繼續?',
    status_change_success: '狀態修改成功!',
    status_change_failed: '狀態修改失敗, 校驗不通過!',
    check_in: '校驗中',
Q
q4speed 已提交
650
  },
W
..  
wenyann 已提交
651
  system_parameter_setting: {
Q
q4speed 已提交
652 653 654 655 656 657 658 659 660 661
    mailbox_service_settings: '郵件設置',
    ldap_setting: 'LDAP設置',
    test_connection: '測試連結',
    SMTP_host: 'SMTP主機',
    SMTP_port: 'SMTP埠',
    SMTP_account: 'SMTP帳戶',
    SMTP_password: 'SMTP密碼',
    SSL: '開啟SSL(如果SMTP埠是465,通常需要啟用SSL)',
    TLS: '開啟TLS(如果SMTP埠是587,通常需要啟用TLS)',
    SMTP: '是否匿名 SMTP',
W
wenyann 已提交
662 663 664
    host: '主機號不能為空',
    port: '埠號不能為空',
    account: '帳戶不能為空',
W
..  
wenyann 已提交
665
  },
Q
q4speed 已提交
666
  i18n: {
Q
q4speed 已提交
667
    home: '首頁'
S
i18n  
shiziyuan9527 已提交
668 669
  },
  ldap: {
Q
q4speed 已提交
670 671 672 673 674 675 676 677 678 679 680 681 682 683 684
    url: 'LDAP地址',
    dn: '綁定DN',
    password: '密碼',
    ou: '用戶OU',
    filter: '用戶過濾器',
    mapping: 'LDAP屬性映射',
    open: '啟用LDAP認證',
    input_url: '請輸入LDAP地址',
    input_dn: '請輸入DN',
    input_password: '請輸入密碼',
    input_ou: '請輸入用戶OU',
    input_filter: '請輸入用戶過濾器',
    input_mapping: '請輸入LDAP屬性映射',
    input_username: '請輸入用戶名',
    input_url_placeholder: '請輸入LDAP地址 (如 ldap://localhost:389)',
685
    input_ou_placeholder: '輸入用戶OU (使用|分隔各OU)',
Q
q4speed 已提交
686
    input_filter_placeholder: '輸入過濾器 [可能的選項是cn或uid或sAMAccountName={0}, 如:(uid={0})]',
S
shiziyuan9527 已提交
687
    input_mapping_placeholder: '如:{"username":"uid","name":"sn","email":"mail"}, username映射的選項可能是cn或uid或sAMAccountName',
Q
q4speed 已提交
688 689 690 691 692 693 694 695 696
    test_connect: '測試連接',
    test_login: '測試登錄',
    edit: '編輯',
    login_success: '登錄成功',
    url_cannot_be_empty: 'LDAP 地址不能為空',
    dn_cannot_be_empty: 'LDAP DN不能為空',
    ou_cannot_be_empty: 'LDAP OU不能為空',
    filter_cannot_be_empty: 'LDAP 用戶過濾器不能為空',
    password_cannot_be_empty: 'LDAP 密碼不能為空',
S
shiziyuan9527 已提交
697
    mapping_cannot_be_empty: 'LDAP 用戶屬性映射不能為空',
C
i18n  
chenjianxing 已提交
698 699 700 701 702 703 704 705
  },
  schedule: {
    not_set: "未設置",
    next_execution_time: "下次執行時間",
    edit_timer_task: "編輯定時任務",
    please_input_cron_expression: "請輸入 Cron 表達式",
    generate_expression: "生成表達式",
    cron_expression_format_error: "Cron 表達式格式錯誤",
706
    cron_expression_interval_short_error: "間隔時間小於 3 分鐘, 請避免執行耗時過長的測試",
C
i18n  
chenjianxing 已提交
707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739
    cron: {
      seconds: "",
      minutes: "分鐘",
      hours: "小時",
      day: "",
      month: "",
      weeks: "",
      years: "",
      week: "星期",
      time_expression: "時間表達式",
      complete_expression: "完整表達式",
      allowed_wildcards: "允許的通配符[, - * /]",
      day_allowed_wildcards: "允許的通配符[, - * / L M]",
      weeks_allowed_wildcards: "允許的通配符[, - * / L M]",
      not_specify: "不指定",
      specify: "指定",
      period: "周期",
      from: "",
      every: "",
      day_unit: "",
      start: "開始",
      execute_once: "執行壹次",
      last_working_day: "最近的那個工作日",
      last_day_of_the_month: "本月最後壹天",
      multi_select: "可多選",
      num: "",
      week_of_weeks: "周的星期",
      last_week_of_the_month: "本月最後壹個星期",
      not_fill: "不填",
      recent_run_time: "最近5次運行時間",
      no_qualifying_results: "沒有達到條件的結果",
    }
  },
Q
q4speed 已提交
740
};