Localisation updates from https://translatewiki.net.

Change-Id: I3b1bfe78bb932b1139bbea0fd71ff7bdd4ecbe51
2 files changed
tree: ac069cbb0f61cd7a58ee376b64f704d818faeb35
  1. .eslintrc.json
  2. .gitignore
  3. .gitreview
  4. .phpcs.xml
  5. .stylelintrc.json
  6. CODE_OF_CONDUCT.md
  7. COPYING
  8. Gruntfile.js
  9. README.md
  10. collapsibleTabs.js
  11. components/
  12. composer.json
  13. hooks.txt
  14. i18n/
  15. images/
  16. includes/
  17. jsduck.json
  18. package.json
  19. print.less
  20. responsive.less
  21. screen-hd.less
  22. screen.less
  23. screenshots/
  24. skin.json
  25. skinStyles/
  26. tests/
  27. variables.less
  28. vector.js
README.md

Vector Skin

Configuration options

$wgVectorPrintLogo

Logo used in print styles. Keys are url, width, and height (in pixels). Note that this solution only works correctly if the image pointed to by url is an SVG that does not specify width and height attributes, or its width and height match the corresponding variables below. Alternatively, a PNG or other type of image can be used, but its dimensions also need to match the corresponding variable below. That in turn may result in blurry images, though.

The URL can be absolute or relative.

Example configuration:

$wgVectorPrintLogo = [
	'url' => 'https://en.wikipedia.org/static/images/mobile/copyright/wikipedia-wordmark-en.svg',
	'width' => 174,
	'height' => 27
];
  • Type: Array
  • Default: false