1<?php 2/* 3 * Display Orphans Plugin 4 * Copyright (c) 2016 Jay Jeckel 5 * Licensed under the MIT license: https://opensource.org/licenses/MIT 6 * Permission is granted to use, copy, modify, and distribute the work. 7 * Full license information available in the project LICENSE file. 8*/ 9 10$lang['show_table_header'] = "Should generated tables include header elements? Default: Yes"; 11$lang['sort_table_ascending'] = "Should generated tables be sorted in ascending order? Default: Yes"; 12 13$lang['ignore_orphaned_pages'] = "Space-separated list of pages to ignore when generating tables of orphaned pages. Default: empty"; 14$lang['ignore_orphaned_namespaces'] = "Space-separated list of namespaces to ignore when generating tables of orphaned pages. Default: empty"; 15$lang['ignore_wanted_pages'] = "Space-separated list of pages to ignore when generating tables of wanted pages. Default: empty"; 16$lang['ignore_wanted_namespaces'] = "Space-separated list of namespaces to ignore when generating tables of wanted pages. Default: empty"; 17$lang['ignore_linked_pages'] = "Space-separated list of pages to ignore when generating tables of linked pages. Default: empty"; 18$lang['ignore_linked_namespaces'] = "Space-separated list of namespaces to ignore when generating tables of linked pages. Default: empty"; 19 20?>