11 lines
521 B
PHP
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';
|