1<?php
2/*
3 * Interwiki Formatting 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['ignored_shortcuts'] = "Space separated list of interwiki shortcuts that should not be automatically formatted. Default: 'user'";
11$lang['strip_query'] = "Should the query part of the interwiki url be stripped? Default: Yes";
12$lang['strippable_extensions'] = "Space separated list of extensions that should be stripped from the formatted title. Default: 'asp htm html php'";
13$lang['word_separators'] = "Space separated list of characters that should be replaced with a space. Default: '_ : . -'";
14$lang['anchor_replacement'] = "What text should replace the standard url anchor symbol (#) in the display title? Default: ' - '";
15$lang['slash_replacement'] = "What text should replace the standard path separator symbol (/) in the display title? Default: ' - '";
16$lang['capitalize_words'] = "Should the first letter of each word be capitalized? Default: Yes";
17$lang['capitalize_exceptions'] = "Space separated list of words that will not be capitalized if the above option is checked. Default: 'the of a an and but or for nor are in'";
18
19?>