1<?php
2
3// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0.
4// See the LICENCE file in the repository root for full licence text.
5
6return [
7 'load_failed' => '无法加载数据。',
8 'missing_route' => '网址无效或请求方法错误。',
9 'no_restricted_access' => '账户处于限制模式,无法执行该操作。',
10 'supporter_only' => '要使用此功能,请先成为 osu! 支持者。',
11 'unknown' => '发生了未知的错误。',
12
13 'codes' => [
14 'http-401' => '请先登录。',
15 'http-403' => '拒绝访问。',
16 'http-404' => '找不到页面。',
17 'http-429' => '请求过多,请稍后再试。',
18 ],
19 'account' => [
20 'profile-order' => [
21 'generic' => '发生未知错误,请尝试刷新页面。',
22 ],
23 ],
24 'beatmaps' => [
25 'invalid_mode' => '指定的游戏模式无效。',
26 'standard_converts_only' => '此谱面难度在请求的游戏模式下成绩不可用。',
27 ],
28 'checkout' => [
29 'generic' => '结账时发生了一个错误',
30 ],
31 'scores' => [
32 'invalid_id' => '无效成绩 ID。',
33 ],
34 'search' => [
35 'default' => '无法获得任何结果,请稍后再试。',
36 'invalid_cursor_exception' => '指定的光标参数无效。',
37 'operation_timeout_exception' => '搜索服务较繁忙,请稍后再试。',
38 ],
39 'user_report' => [
40 'recently_reported' => "你最近已经举报过这个问题。",
41 ],
42];