LuCI - OpenWrt Configuration Interface
Revision | 5bdfbabe8757ee2b8750d3fa9382f9caa3b3d8d0 (tree) |
---|---|
Time | 2023-03-19 00:54:10 |
Author | Tianling Shen <cnsztl@immo...> |
Commiter | Tianling Shen |
luci-app-v2raya: drop deprecated option
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
@@ -44,26 +44,6 @@ function renderStatus(isRunning, port) { | ||
44 | 44 | return renderHTML; |
45 | 45 | } |
46 | 46 | |
47 | -function uploadCertificate(type, filename, ev) { | |
48 | - L.resolveDefault(fs.exec('/bin/mkdir', [ '-p', '/etc/v2raya/' ])); | |
49 | - | |
50 | - return ui.uploadFile('/etc/v2raya/' + filename, ev.target) | |
51 | - .then(L.bind(function(btn, res) { | |
52 | - btn.firstChild.data = _('Checking %s...').format(type); | |
53 | - | |
54 | - if (res.size <= 0) { | |
55 | - ui.addNotification(null, E('p', _('The uploaded %s is empty.').format(type))); | |
56 | - return fs.remove('/etc/v2raya/' + filename); | |
57 | - } | |
58 | - | |
59 | - ui.addNotification(null, E('p', _('Your %s was successfully uploaded. Size: %sB.').format(type, res.size))); | |
60 | - }, this, ev.target)) | |
61 | - .catch(function(e) { ui.addNotification(null, E('p', e.message)) }) | |
62 | - .finally(L.bind(function(btn, input) { | |
63 | - btn.firstChild.data = _('Upload...'); | |
64 | - }, this, ev.target)); | |
65 | -} | |
66 | - | |
67 | 47 | return view.extend({ |
68 | 48 | load: function() { |
69 | 49 | return Promise.all([ |
@@ -155,23 +135,6 @@ return view.extend({ | ||
155 | 135 | _('Additional v2ray config directory, files in it will be combined with config generated by v2rayA.')); |
156 | 136 | o.datatype = 'path'; |
157 | 137 | |
158 | - o = s.option(form.Value, 'vless_grpc_inbound_cert_key', _('Certpath for gRPC inbound'), | |
159 | - _('Specify the certification path instead of automatically generating a self-signed certificate.')); | |
160 | - o.value('', _('Automatically generate')); | |
161 | - o.value('/etc/v2raya/grpc_certificate.crt,/etc/v2raya/grpc_private.key'); | |
162 | - | |
163 | - o = s.option(form.Button, '_upload_cert', _('Upload certificate')); | |
164 | - o.inputstyle = 'action'; | |
165 | - o.inputtitle = _('Upload...'); | |
166 | - o.onclick = L.bind(uploadCertificate, this, _('certificate'), 'grpc_certificate.crt'); | |
167 | - o.depends('vless_grpc_inbound_cert_key', '/etc/v2raya/grpc_certificate.crt,/etc/v2raya/grpc_private.key'); | |
168 | - | |
169 | - o = s.option(form.Button, '_upload_key', _('Upload privateKey')); | |
170 | - o.inputstyle = 'action'; | |
171 | - o.inputtitle = _('Upload...'); | |
172 | - o.onclick = L.bind(uploadCertificate, this, _('private key'), 'grpc_private.key'); | |
173 | - o.depends('vless_grpc_inbound_cert_key', '/etc/v2raya/grpc_certificate.crt,/etc/v2raya/grpc_private.key'); | |
174 | - | |
175 | 138 | return m.render(); |
176 | 139 | } |
177 | 140 | }); |
@@ -1,67 +1,55 @@ | ||
1 | 1 | msgid "" |
2 | 2 | msgstr "Content-Type: text/plain; charset=UTF-8" |
3 | 3 | |
4 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:155 | |
4 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:135 | |
5 | 5 | msgid "" |
6 | 6 | "Additional v2ray config directory, files in it will be combined with config " |
7 | 7 | "generated by v2rayA." |
8 | 8 | msgstr "" |
9 | 9 | |
10 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:114 | |
10 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 | |
11 | 11 | msgid "Auto" |
12 | 12 | msgstr "" |
13 | 13 | |
14 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:160 | |
15 | -msgid "Automatically generate" | |
16 | -msgstr "" | |
17 | - | |
18 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:158 | |
19 | -msgid "Certpath for gRPC inbound" | |
20 | -msgstr "" | |
21 | - | |
22 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:52 | |
23 | -msgid "Checking %s..." | |
24 | -msgstr "" | |
25 | - | |
26 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 | |
14 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:72 | |
27 | 15 | #: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:35 |
28 | 16 | msgid "Collecting data..." |
29 | 17 | msgstr "" |
30 | 18 | |
31 | -#: applications/luci-app-v2raya/root/usr/share/rpcd/luci/menu.d/luci-app-v2raya.json:14 | |
19 | +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:14 | |
32 | 20 | msgid "Configuration" |
33 | 21 | msgstr "" |
34 | 22 | |
35 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:107 | |
23 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 | |
36 | 24 | msgid "Configuration directory" |
37 | 25 | msgstr "" |
38 | 26 | |
39 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:122 | |
27 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:102 | |
40 | 28 | msgid "Debug" |
41 | 29 | msgstr "" |
42 | 30 | |
43 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:142 | |
31 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:122 | |
44 | 32 | msgid "Disable log color output" |
45 | 33 | msgstr "" |
46 | 34 | |
47 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:146 | |
35 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:126 | |
48 | 36 | msgid "Disable log timestamp" |
49 | 37 | msgstr "" |
50 | 38 | |
51 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:98 | |
39 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 | |
52 | 40 | msgid "Enable" |
53 | 41 | msgstr "" |
54 | 42 | |
55 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:125 | |
43 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:105 | |
56 | 44 | msgid "Error" |
57 | 45 | msgstr "" |
58 | 46 | |
59 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:151 | |
47 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:131 | |
60 | 48 | msgid "" |
61 | 49 | "Executable v2ray binary path. Auto-detect if put it empty (recommended)." |
62 | 50 | msgstr "" |
63 | 51 | |
64 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:154 | |
52 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:134 | |
65 | 53 | msgid "Extra config directory" |
66 | 54 | msgstr "" |
67 | 55 |
@@ -69,15 +57,15 @@ msgstr "" | ||
69 | 57 | msgid "Grant access to v2rayA configuration" |
70 | 58 | msgstr "" |
71 | 59 | |
72 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:112 | |
60 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 | |
73 | 61 | msgid "IPv6 support" |
74 | 62 | msgstr "" |
75 | 63 | |
76 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:123 | |
64 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:103 | |
77 | 65 | msgid "Info" |
78 | 66 | msgstr "" |
79 | 67 | |
80 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:102 | |
68 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:82 | |
81 | 69 | msgid "Listening address" |
82 | 70 | msgstr "" |
83 | 71 |
@@ -85,7 +73,7 @@ msgstr "" | ||
85 | 73 | msgid "Loading..." |
86 | 74 | msgstr "" |
87 | 75 | |
88 | -#: applications/luci-app-v2raya/root/usr/share/rpcd/luci/menu.d/luci-app-v2raya.json:22 | |
76 | +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:22 | |
89 | 77 | msgid "Log" |
90 | 78 | msgstr "" |
91 | 79 |
@@ -93,7 +81,7 @@ msgstr "" | ||
93 | 81 | msgid "Log file does not exist." |
94 | 82 | msgstr "" |
95 | 83 | |
96 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:129 | |
84 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:109 | |
97 | 85 | msgid "Log file path" |
98 | 86 | msgstr "" |
99 | 87 |
@@ -101,19 +89,19 @@ msgstr "" | ||
101 | 89 | msgid "Log is clean." |
102 | 90 | msgstr "" |
103 | 91 | |
104 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:120 | |
92 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 | |
105 | 93 | msgid "Log level" |
106 | 94 | msgstr "" |
107 | 95 | |
108 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:113 | |
96 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 | |
109 | 97 | msgid "Make sure your IPv6 network works fine before you turn it on." |
110 | 98 | msgstr "" |
111 | 99 | |
112 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:136 | |
100 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:116 | |
113 | 101 | msgid "Max log retention period" |
114 | 102 | msgstr "" |
115 | 103 | |
116 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:137 | |
104 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:117 | |
117 | 105 | msgid "Maximum number of days to keep log files." |
118 | 106 | msgstr "" |
119 | 107 |
@@ -121,11 +109,11 @@ msgstr "" | ||
121 | 109 | msgid "NOT RUNNING" |
122 | 110 | msgstr "" |
123 | 111 | |
124 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:116 | |
112 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 | |
125 | 113 | msgid "Off" |
126 | 114 | msgstr "" |
127 | 115 | |
128 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:115 | |
116 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 | |
129 | 117 | msgid "On" |
130 | 118 | msgstr "" |
131 | 119 |
@@ -141,17 +129,7 @@ msgstr "" | ||
141 | 129 | msgid "Refresh every %s seconds." |
142 | 130 | msgstr "" |
143 | 131 | |
144 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:159 | |
145 | -msgid "" | |
146 | -"Specify the certification path instead of automatically generating a self-" | |
147 | -"signed certificate." | |
148 | -msgstr "" | |
149 | - | |
150 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:55 | |
151 | -msgid "The uploaded %s is empty." | |
152 | -msgstr "" | |
153 | - | |
154 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:121 | |
132 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:101 | |
155 | 133 | msgid "Trace" |
156 | 134 | msgstr "" |
157 | 135 |
@@ -159,48 +137,22 @@ msgstr "" | ||
159 | 137 | msgid "Unknown error: %s" |
160 | 138 | msgstr "" |
161 | 139 | |
162 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:163 | |
163 | -msgid "Upload certificate" | |
164 | -msgstr "" | |
165 | - | |
166 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:169 | |
167 | -msgid "Upload privateKey" | |
168 | -msgstr "" | |
169 | - | |
170 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:63 | |
171 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:165 | |
172 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:171 | |
173 | -msgid "Upload..." | |
174 | -msgstr "" | |
175 | - | |
176 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:124 | |
140 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 | |
177 | 141 | msgid "Warn" |
178 | 142 | msgstr "" |
179 | 143 | |
180 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:59 | |
181 | -msgid "Your %s was successfully uploaded. Size: %sB." | |
182 | -msgstr "" | |
183 | - | |
184 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:166 | |
185 | -msgid "certificate" | |
186 | -msgstr "" | |
187 | - | |
188 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:172 | |
189 | -msgid "private key" | |
190 | -msgstr "" | |
191 | - | |
192 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:150 | |
144 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:130 | |
193 | 145 | msgid "v2ray binary path" |
194 | 146 | msgstr "" |
195 | 147 | |
196 | 148 | #: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:39 |
197 | 149 | #: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:41 |
198 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 | |
199 | -#: applications/luci-app-v2raya/root/usr/share/rpcd/luci/menu.d/luci-app-v2raya.json:3 | |
150 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:58 | |
151 | +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 | |
200 | 152 | msgid "v2rayA" |
201 | 153 | msgstr "" |
202 | 154 | |
203 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 | |
155 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:59 | |
204 | 156 | msgid "" |
205 | 157 | "v2rayA is a V2Ray Linux client supporting global transparent proxy, " |
206 | 158 | "compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." |
@@ -8,68 +8,56 @@ msgstr "" | ||
8 | 8 | "MIME-Version: 1.0\n" |
9 | 9 | "Content-Transfer-Encoding: 8bit\n" |
10 | 10 | |
11 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:155 | |
11 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:135 | |
12 | 12 | msgid "" |
13 | 13 | "Additional v2ray config directory, files in it will be combined with config " |
14 | 14 | "generated by v2rayA." |
15 | 15 | msgstr "" |
16 | 16 | "附加 v2ray 配置目录,包含在其中的文件将被合并至 v2rayA 生成的配置文件中。" |
17 | 17 | |
18 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:114 | |
18 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:94 | |
19 | 19 | msgid "Auto" |
20 | 20 | msgstr "自动" |
21 | 21 | |
22 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:160 | |
23 | -msgid "Automatically generate" | |
24 | -msgstr "自动生成" | |
25 | - | |
26 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:158 | |
27 | -msgid "Certpath for gRPC inbound" | |
28 | -msgstr "gPRC 入站证书目录" | |
29 | - | |
30 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:52 | |
31 | -msgid "Checking %s..." | |
32 | -msgstr "检查%s中..." | |
33 | - | |
34 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 | |
22 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:72 | |
35 | 23 | #: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/log.js:35 |
36 | 24 | msgid "Collecting data..." |
37 | 25 | msgstr "收集数据中..." |
38 | 26 | |
39 | -#: applications/luci-app-v2raya/root/usr/share/rpcd/luci/menu.d/luci-app-v2raya.json:14 | |
27 | +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:14 | |
40 | 28 | msgid "Configuration" |
41 | 29 | msgstr "配置" |
42 | 30 | |
43 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:107 | |
31 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:87 | |
44 | 32 | msgid "Configuration directory" |
45 | 33 | msgstr "配置文件目录" |
46 | 34 | |
47 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:122 | |
35 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:102 | |
48 | 36 | msgid "Debug" |
49 | 37 | msgstr "调试" |
50 | 38 | |
51 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:142 | |
39 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:122 | |
52 | 40 | msgid "Disable log color output" |
53 | 41 | msgstr "禁用日志彩色输出" |
54 | 42 | |
55 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:146 | |
43 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:126 | |
56 | 44 | msgid "Disable log timestamp" |
57 | 45 | msgstr "禁用日志时间戳" |
58 | 46 | |
59 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:98 | |
47 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 | |
60 | 48 | msgid "Enable" |
61 | 49 | msgstr "启用" |
62 | 50 | |
63 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:125 | |
51 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:105 | |
64 | 52 | msgid "Error" |
65 | 53 | msgstr "错误" |
66 | 54 | |
67 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:151 | |
55 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:131 | |
68 | 56 | msgid "" |
69 | 57 | "Executable v2ray binary path. Auto-detect if put it empty (recommended)." |
70 | 58 | msgstr "v2ray 可执行二进制文件目录。留空以自动检测(推荐)。" |
71 | 59 | |
72 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:154 | |
60 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:134 | |
73 | 61 | msgid "Extra config directory" |
74 | 62 | msgstr "附加配置目录" |
75 | 63 |
@@ -77,15 +65,15 @@ msgstr "附加配置目录" | ||
77 | 65 | msgid "Grant access to v2rayA configuration" |
78 | 66 | msgstr "授予访问 v2rayA 配置的权限" |
79 | 67 | |
80 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:112 | |
68 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:92 | |
81 | 69 | msgid "IPv6 support" |
82 | 70 | msgstr "IPv6 支持" |
83 | 71 | |
84 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:123 | |
72 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:103 | |
85 | 73 | msgid "Info" |
86 | 74 | msgstr "信息" |
87 | 75 | |
88 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:102 | |
76 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:82 | |
89 | 77 | msgid "Listening address" |
90 | 78 | msgstr "监听地址" |
91 | 79 |
@@ -93,7 +81,7 @@ msgstr "监听地址" | ||
93 | 81 | msgid "Loading..." |
94 | 82 | msgstr "加载中..." |
95 | 83 | |
96 | -#: applications/luci-app-v2raya/root/usr/share/rpcd/luci/menu.d/luci-app-v2raya.json:22 | |
84 | +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:22 | |
97 | 85 | msgid "Log" |
98 | 86 | msgstr "日志" |
99 | 87 |
@@ -101,7 +89,7 @@ msgstr "日志" | ||
101 | 89 | msgid "Log file does not exist." |
102 | 90 | msgstr "日志文件不存在。" |
103 | 91 | |
104 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:129 | |
92 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:109 | |
105 | 93 | msgid "Log file path" |
106 | 94 | msgstr "日志文件路径" |
107 | 95 |
@@ -109,19 +97,19 @@ msgstr "日志文件路径" | ||
109 | 97 | msgid "Log is clean." |
110 | 98 | msgstr "日志为空。" |
111 | 99 | |
112 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:120 | |
100 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:100 | |
113 | 101 | msgid "Log level" |
114 | 102 | msgstr "日志等级" |
115 | 103 | |
116 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:113 | |
104 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:93 | |
117 | 105 | msgid "Make sure your IPv6 network works fine before you turn it on." |
118 | 106 | msgstr "开启前,请确保您的 IPv6 网络工作正常。" |
119 | 107 | |
120 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:136 | |
108 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:116 | |
121 | 109 | msgid "Max log retention period" |
122 | 110 | msgstr "最长日志保留时间" |
123 | 111 | |
124 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:137 | |
112 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:117 | |
125 | 113 | msgid "Maximum number of days to keep log files." |
126 | 114 | msgstr "保留日志文件的最长天数。" |
127 | 115 |
@@ -129,11 +117,11 @@ msgstr "保留日志文件的最长天数。" | ||
129 | 117 | msgid "NOT RUNNING" |
130 | 118 | msgstr "未运行" |
131 | 119 | |
132 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:116 | |
120 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:96 | |
133 | 121 | msgid "Off" |
134 | 122 | msgstr "关" |
135 | 123 | |
136 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:115 | |
124 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:95 | |
137 | 125 | msgid "On" |
138 | 126 | msgstr "开" |
139 | 127 |
@@ -149,17 +137,7 @@ msgstr "运行中" | ||
149 | 137 | msgid "Refresh every %s seconds." |
150 | 138 | msgstr "每 %s 秒刷新。" |
151 | 139 | |
152 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:159 | |
153 | -msgid "" | |
154 | -"Specify the certification path instead of automatically generating a self-" | |
155 | -"signed certificate." | |
156 | -msgstr "指定证书目录而不是自动生成自签证书。" | |
157 | - | |
158 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:55 | |
159 | -msgid "The uploaded %s is empty." | |
160 | -msgstr "上传的%s为空。" | |
161 | - | |
162 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:121 | |
140 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:101 | |
163 | 141 | msgid "Trace" |
164 | 142 | msgstr "跟踪" |
165 | 143 |
@@ -167,48 +145,22 @@ msgstr "跟踪" | ||
167 | 145 | msgid "Unknown error: %s" |
168 | 146 | msgstr "未知错误:%s" |
169 | 147 | |
170 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:163 | |
171 | -msgid "Upload certificate" | |
172 | -msgstr "上传证书" | |
173 | - | |
174 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:169 | |
175 | -msgid "Upload privateKey" | |
176 | -msgstr "上传私钥" | |
177 | - | |
178 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:63 | |
179 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:165 | |
180 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:171 | |
181 | -msgid "Upload..." | |
182 | -msgstr "上传..." | |
183 | - | |
184 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:124 | |
148 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:104 | |
185 | 149 | msgid "Warn" |
186 | 150 | msgstr "警告" |
187 | 151 | |
188 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:59 | |
189 | -msgid "Your %s was successfully uploaded. Size: %sB." | |
190 | -msgstr "您的%s上传成功。大小:%sB。" | |
191 | - | |
192 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:166 | |
193 | -msgid "certificate" | |
194 | -msgstr "证书" | |
195 | - | |
196 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:172 | |
197 | -msgid "private key" | |
198 | -msgstr "私钥" | |
199 | - | |
200 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:150 | |
152 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:130 | |
201 | 153 | msgid "v2ray binary path" |
202 | 154 | msgstr "v2ray 二进制路径" |
203 | 155 | |
204 | 156 | #: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:39 |
205 | 157 | #: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:41 |
206 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:78 | |
207 | -#: applications/luci-app-v2raya/root/usr/share/rpcd/luci/menu.d/luci-app-v2raya.json:3 | |
158 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:58 | |
159 | +#: applications/luci-app-v2raya/root/usr/share/luci/menu.d/luci-app-v2raya.json:3 | |
208 | 160 | msgid "v2rayA" |
209 | 161 | msgstr "v2rayA" |
210 | 162 | |
211 | -#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:79 | |
163 | +#: applications/luci-app-v2raya/htdocs/luci-static/resources/view/v2raya/config.js:59 | |
212 | 164 | msgid "" |
213 | 165 | "v2rayA is a V2Ray Linux client supporting global transparent proxy, " |
214 | 166 | "compatible with SS, SSR, Trojan(trojan-go), PingTunnel protocols." |