2023-10-23 15:51:36 +08:00

11 lines
483 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
$lang->restriction = new stdClass();
$lang->restriction->label = '登录限制';
$lang->restriction->open = '开启';
$lang->restriction->CIDRs = 'CIDR 组';
$lang->restriction->inputError = new stdClass();
$lang->restriction->inputError->empty = '输入不能为空';
$lang->restriction->inputError->invalid = '输入的 CIDR 有误';
$lang->restriction->inputError->placeholder = '请输入正确的CIDR例如“192.168.1.1/26”多个网段之间使用换行分隔';