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

11 lines
521 B
PHP

<?php
$lang->restriction = new stdClass();
$lang->restriction->label = 'Login restrictions';
$lang->restriction->open = 'Open';
$lang->restriction->CIDRs = 'CIDR Group';
$lang->restriction->inputError = new stdClass();
$lang->restriction->inputError->empty ='The input cannot be empty';
$lang->restriction->inputError->invalid ='The entered CIDR is incorrect';
$lang->restriction->inputError->placeholder ='Please enter the correct CIDR, such as "192.168.1.1/26", use line breaks to separate multiple network segments';