From 3b1a69d0d306b7f5c19207057ad2a6cc8afa1836 Mon Sep 17 00:00:00 2001 From: hugo yuan <429632952@163.com> Date: Sat, 10 Nov 2018 15:20:44 +0800 Subject: [PATCH] Correct typo in SSR Plus --- .../luasrc/model/cbi/shadowsocksr/client-config.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/lean/luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/client-config.lua b/package/lean/luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/client-config.lua index d783d9efa..d87a6b82e 100644 --- a/package/lean/luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/client-config.lua +++ b/package/lean/luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/client-config.lua @@ -125,13 +125,13 @@ o = s:option(Value, "alias", translate("Alias(optional)")) if nixio.fs.access("/usr/bin/v2ray") then o = s:option(ListValue, "type", translate("Server Node Type")) o:value("ssr", translate("ShadowsocksR")) -o:value("ss", translate("Shadowsocks New Vesion")) +o:value("ss", translate("Shadowsocks New Version")) o:value("v2ray", translate("V2Ray")) o.description = translate("Using incorrect encryption mothod may causes service fail to start") else o = s:option(ListValue, "type", translate("Server Node Type")) o:value("ssr", translate("ShadowsocksR")) -o:value("ss", translate("Shadowsocks New Vesion")) +o:value("ss", translate("Shadowsocks New Version")) o.description = translate("Using incorrect encryption mothod may causes service fail to start") end