. /** * EN language file. * * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * * @package availability_ipaddress * @copyright 2019-05-14 Mfreak.nl | LdesignMedia.nl - Luuk Verhoeven * @author Luuk Verhoeven **/ // We like comments and our own sorting. // phpcs:disable moodle.Files.LangFilesOrdering.UnexpectedComment // phpcs:disable moodle.Files.LangFilesOrdering.IncorrectOrder $string['pluginname'] = 'IP address'; $string['description'] = 'Restrict access by ip-address or subnet'; $string['title'] = 'IP address'; $string['require_condition'] = 'Matching ip-address/subnet. (Your IP:{$a})'; // Errors. $string['error_ipaddress'] = 'Incorrect ip-address/subnet format'; // Javascript strings. $string['js:ipaddress'] = 'Require network address'; // Privacy provider. $string['privacy:metadata'] = 'The restriction by activity ipaddress plugin does not store any personal data.'; // Predefined ranges. $string['setting:manage_predefined_ranges'] = 'IP address - Manage predefined IP ranges'; $string['manage_predefined_ranges'] = 'Manage predefined IP ranges'; $string['predefined_ranges'] = 'Predefined IP ranges'; $string['custom_ipaddress'] = 'Custom IP address(es)'; $string['use_predefined'] = 'Use predefined IP addresses'; $string['range_name'] = 'Range name'; $string['range_name_help'] = 'A descriptive name for this IP range, e.g., "Campus Network" or "Library Computers"'; $string['ipaddresses'] = 'IP addresses'; $string['ipaddresses_help'] = 'Enter IP addresses separated by commas. Supports single IPs (192.168.1.1), ranges (192.168.1.1-255), and subnets (192.168.1.0/24)'; $string['ipaddresses_help_help'] = '

Enter one or more IP addresses or ranges, separated by commas.

Examples:

'; $string['enabled'] = 'Enabled'; $string['sortorder'] = 'Sort order'; $string['existing_ranges'] = 'Existing IP ranges'; $string['range_created'] = 'IP range created successfully'; $string['range_updated'] = 'IP range updated successfully'; $string['range_deleted'] = 'IP range deleted successfully'; $string['confirm_delete_range'] = 'Deleting this IP range will remove it from all restrictions where it is used. Are you sure you want to permanently delete it?'; $string['range_in_use_count'] = 'This IP range is currently used in {$a} restriction(s).'; $string['and_x_more'] = '... and {$a} more.'; $string['confirm_disable_range'] = 'This IP range is currently in use. Disabling it will remove it from all restrictions where it is used. Are you sure you want to continue?'; $string['range_in_use_title'] = 'IP Range In Use'; $string['range_disabled_and_removed'] = 'IP range disabled and removed from {$a} restriction(s).'; $string['range_deleted_and_removed'] = 'IP range deleted and removed from {$a} restriction(s).';