wiki.techinc.nl/skins
Translation updater bot f0a9299191 Update git submodules
* Update skins/Vector from branch 'REL1_43'
  to 9b00e930902b409649c836fd94560867a2ba8f7d
  - Localisation updates from https://translatewiki.net.
    
    Change-Id: I5c5928d65464f04b60e704e6a0936ed1f76350ac
2025-03-11 06:27:22 +00:00
..
MinervaNeue@3f46718b9d Update git submodules 2025-03-11 06:27:19 +00:00
MonoBook@4f2266626b Update git submodules 2025-02-25 06:31:11 +00:00
Timeless@14c4c89dea Update git submodules 2025-03-04 06:20:36 +00:00
Vector@9b00e93090 Update git submodules 2025-03-11 06:27:22 +00:00
.gitignore
.vsls.json
README

== User Information ==

Skins, such as the default skin Vector, are distributed separately. Drop them
into this directory and enable as per the skin's installation instructions.

You can find a list of available skins at
<https://www.mediawiki.org/wiki/Special:MyLanguage/Category:All_skins>,
and more information about installing and configuring skins at
<https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Skin_configuration>.

If you are a developer, you might want to fetch the skin tree in another
directory and make a symbolic link:

 mediawiki/skins$ ln -s ../../skins-trunk/FooBar

The default skin Vector can be installed by cloning from Git:
    git clone https://gerrit.wikimedia.org/g/mediawiki/extensions/Vector

Other skins are also available:
    https://gerrit.wikimedia.org/g/mediawiki/extensions


Please note that under POSIX systems (Linux...), parent of a symbolic path
refers to the link source, NOT to the target! You should check the env
variable MW_INSTALL_PATH in case the extension is not in the default location.

The following code snippet lets you override the default path:

 $IP = getenv( 'MW_INSTALL_PATH' );
 if ( $IP === false ) {
	$IP = __DIR__ . '/../..';
 }
 require_once "$IP/maintenance/Maintenance.php"; // a MediaWiki core file