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

11 lines
483 B
PHP
Raw Permalink 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”多個網段之間使用換行分隔';