Translation updater bot
9e2bab234c
Localisation updates from https://translatewiki.net .
...
Change-Id: I3805dc58fcd9f246c49cbe5f7c57a7971629e323
2018-06-16 22:06:51 +02:00
Translation updater bot
f282f793ab
Localisation updates from https://translatewiki.net .
...
Change-Id: I191f8544647940e2bbd74447d4cfca521dfc825a
2018-06-15 22:14:00 +02:00
Translation updater bot
f2bbb3774d
Localisation updates from https://translatewiki.net .
...
Change-Id: Ib3a5f8df481d2d527411d35f4a223b9682f75887
2018-06-14 22:18:19 +02:00
Translation updater bot
e8284a2e91
Localisation updates from https://translatewiki.net .
...
Change-Id: I36ecdda16296f5d80a2242124f1184cb1f408860
2018-06-13 22:07:33 +02:00
Translation updater bot
5a964ea134
Localisation updates from https://translatewiki.net .
...
Change-Id: I86327e7ef36c18ce9d62b986cbc2f877b6ce11eb
2018-06-11 22:17:33 +02:00
Translation updater bot
4e8e303105
Localisation updates from https://translatewiki.net .
...
Change-Id: Ic9a7d53d55641f106bfbb53d4a2cb8544603813d
2018-06-10 22:04:18 +02:00
Translation updater bot
d2d4f348d1
Localisation updates from https://translatewiki.net .
...
Change-Id: I81a9029d1888aeb3f07e5235d0817dab3c62225e
2018-06-07 23:22:45 +02:00
Translation updater bot
6b6b2bda6d
Localisation updates from https://translatewiki.net .
...
Change-Id: I79aa213768b2fa92a30dfecc59b867cd1f052fa8
2018-06-05 22:01:16 +02:00
Translation updater bot
1d44463f07
Localisation updates from https://translatewiki.net .
...
Change-Id: Ic82b72c3dceee0a2e8f1cb46f4fca4aeafe491ef
2018-06-04 22:30:14 +02:00
Translation updater bot
9c817cdc86
Localisation updates from https://translatewiki.net .
...
Change-Id: Id8d75ca8749a4be63eb54eb36f71e6a4a0dd18e6
2018-06-03 22:19:07 +02:00
Translation updater bot
9d7d4b455b
Localisation updates from https://translatewiki.net .
...
Change-Id: Ied8c5a7a502018b18ad8e2a5552a45e43a45a778
2018-06-02 22:27:07 +02:00
Translation updater bot
708fcac6fc
Localisation updates from https://translatewiki.net .
...
Change-Id: I88493dc83000a4af058906f3fa3f9858cf1a300b
2018-06-01 22:07:11 +02:00
Translation updater bot
df443f3b40
Localisation updates from https://translatewiki.net .
...
Change-Id: I0862bd1410313e39e68e5899166400c5429c1809
2018-05-31 22:12:03 +02:00
Translation updater bot
426230807c
Localisation updates from https://translatewiki.net .
...
Change-Id: I00e284dd80a751bfc328359d97bf38ad222be489
2018-05-30 22:09:59 +02:00
Translation updater bot
fa92823789
Localisation updates from https://translatewiki.net .
...
Change-Id: Ie2d7980f0d3b756b98e8e0e8ac16a06a667fcc1d
2018-05-29 22:05:23 +02:00
Translation updater bot
e3c7bbbdf8
Localisation updates from https://translatewiki.net .
...
Change-Id: I15f51191f488ab69c9fdabef6166fdcc1b0cfdfe
2018-05-28 22:21:58 +02:00
Translation updater bot
0ad5ede208
Localisation updates from https://translatewiki.net .
...
Change-Id: Icf1215b84e3945c143c0d55b929736ad0059eb73
2018-05-27 21:59:14 +02:00
Translation updater bot
a1cbaa36d1
Localisation updates from https://translatewiki.net .
...
Change-Id: I9e08898d83d64e95215c7148d856a8728b40f841
2018-05-26 23:14:56 +02:00
Translation updater bot
b7350372af
Localisation updates from https://translatewiki.net .
...
Change-Id: Id3527861399991b6fd9d6cec3e3b3997b8f7a349
2018-05-25 21:59:39 +02:00
Translation updater bot
a55d9b3e21
Localisation updates from https://translatewiki.net .
...
Change-Id: I32d1b7a5db51054ded19a14db4ea48fe7795e4d9
2018-05-24 21:56:08 +02:00
jenkins-bot
e0502f027c
Merge "Re-implement and improve mw-jump links with pure CSS"
2018-05-24 00:31:29 +00:00
Timo Tijhof
b843094a2d
Re-implement and improve mw-jump links with pure CSS
...
* Improve their accessibility by giving both links
a full label "Jump to x" and "Jump to y" instead
of "Jump to: ", "x", "y".
This also makes things much better for localisation, for which
we generally discourage use of concatenation.
* Use pure CSS for the toggling of the visibility on focus,
instead of relying on JavaScript. Especially given the
JS comes form core's 'jquery.mw-jump' module, which is
considered technical debt per T195256. Alternatively,
that could be copied to vector.js, but pure CSS
is possible, so why not.
* Use plain <a> links in the HTML instead of wrapped in a <div>.
This solves the long-standing problem whereby the margin
between #contentSub and #mw-content-text had to be awkwardly
negated and overridden in core and on various to make sure that
the wrapper itself would become visible as needed, in a way that
has margin around this. This whole problem doesn't apply when
simply using inline links that aren't part of the regular flow
with .mixin-screen-reader-text. On focus, the individually
focussed link appears in regular flow, without the need for
any custom styles.
* This uses :not(:focus) to naturally make it render in the default
way on focus, and visibibly hidden/clipped otherwise.
This is supported in IE9+ and Android 2+.
There is a way to make it work with CSS2 for IE7-8, by applying
the mixin to '.mw-jump-link' only and then undoing all of
'position', 'width', 'height', 'clip', and 'margin' on :focus.
But I'm not sure that's worth it here. The fallback in IE7-8
for not supporting ":not(:focus)" is that the accessibility
link is simply visible always, which seems like a good fallback
for accessibility, and doesn't hurt anything.
Bug: T195256
Change-Id: Icaadb290f692b3617688d32cbb66dfb007f1c82c
2018-05-24 00:08:02 +00:00
Translation updater bot
b80e2c8ccd
Localisation updates from https://translatewiki.net .
...
Change-Id: Ic72a6eaa564b66c09d42c2b33962cfe658769920
2018-05-20 22:27:31 +02:00
Translation updater bot
ebb2ef8dc5
Localisation updates from https://translatewiki.net .
...
Change-Id: I6b09a843355ded66f7c1a739374e95515046e386
2018-05-18 22:26:15 +02:00
Translation updater bot
0819a3b007
Localisation updates from https://translatewiki.net .
...
Change-Id: I1e9c5116cdd7516381aecdd06b43f1f8a75d8db2
2018-05-08 22:01:00 +02:00
Translation updater bot
458095e570
Localisation updates from https://translatewiki.net .
...
Change-Id: I56a5a4a42c8e4c2f8cd6b64295684cb5f9f96c8e
2018-05-05 21:57:31 +02:00
Translation updater bot
971a0bdfa9
Localisation updates from https://translatewiki.net .
...
Change-Id: I61d19250c1f53f6ae1ce963c3e80709ada74f91b
2018-04-30 22:04:12 +02:00
Translation updater bot
ff17dfc9a3
Localisation updates from https://translatewiki.net .
...
Change-Id: I24e7fcbf7fd4060c0fd146c2990aca173b9604de
2018-04-29 22:08:11 +02:00
Translation updater bot
317467b7ef
Localisation updates from https://translatewiki.net .
...
Change-Id: I0530ad1a5e71318da5cf30e428276db736fb9caf
2018-04-25 22:24:49 +02:00
Translation updater bot
6330395cfd
Localisation updates from https://translatewiki.net .
...
Change-Id: I5fe95a9116f420b3fef1d64b959744456b4f62b2
2018-04-24 22:01:45 +02:00
Translation updater bot
781162b9ab
Localisation updates from https://translatewiki.net .
...
Change-Id: Iecf3d1ae5118c03af8d0a04febbf91c2adcc12fc
2018-04-23 22:14:51 +02:00
Translation updater bot
fc4a8a1a9f
Localisation updates from https://translatewiki.net .
...
Change-Id: I6d7a989c5aae248f16b3bd938c651c460c7b9753
2018-04-18 21:56:58 +02:00
Translation updater bot
f0327dc555
Localisation updates from https://translatewiki.net .
...
Change-Id: Ib4891e59a522a5c81138c814eaef13225d4d84e8
2018-04-17 22:03:33 +02:00
Translation updater bot
cc99dda2e4
Localisation updates from https://translatewiki.net .
...
Change-Id: I8c54db08bc09c2afc01abe27371ac78d429b454e
2018-04-13 21:57:49 +02:00
Translation updater bot
f0dc1152f9
Localisation updates from https://translatewiki.net .
...
Change-Id: I1901c7160da9a1e0ccb2baba4098265d89553f33
2018-04-10 22:01:14 +02:00
Translation updater bot
a9ad1609e5
Localisation updates from https://translatewiki.net .
...
Change-Id: Ice585d95930addb613c586f63801dc39f6aaed7d
2018-04-01 08:28:07 +02:00
Translation updater bot
3c90c748a8
Localisation updates from https://translatewiki.net .
...
Change-Id: Ide552761f767e672c8c2fb9f6147613bffb55a91
2018-03-27 21:55:14 +02:00
Translation updater bot
26df7db792
Localisation updates from https://translatewiki.net .
...
Change-Id: Ic4974b9fe3fb4b01b3a289dde32143cf10b63db9
2018-03-26 22:06:18 +02:00
Translation updater bot
5f3d50a56c
Localisation updates from https://translatewiki.net .
...
Change-Id: Ia9902746d1ad0433d46f735211877becca209780
2018-03-24 22:07:42 +01:00
Translation updater bot
2bfe935bc4
Localisation updates from https://translatewiki.net .
...
Change-Id: I57b71720dc25c45779a8d11c8e21e814fabee954
2018-03-21 22:19:29 +01:00
Translation updater bot
3f74e86532
Localisation updates from https://translatewiki.net .
...
Change-Id: I1a1b283ba6090fa41978b6814adf32ff34ca2823
2018-03-19 22:03:48 +01:00
Translation updater bot
5db0c43a45
Localisation updates from https://translatewiki.net .
...
Change-Id: I854e5c120217f47675e398df6d853824d3958af4
2018-03-10 21:57:38 +01:00
Translation updater bot
7fd74c1169
Localisation updates from https://translatewiki.net .
...
Change-Id: Iecd2bee6daefb00e95baad3aa927cb6748b187b4
2018-03-09 22:03:36 +01:00
Translation updater bot
b53cdbbcde
Localisation updates from https://translatewiki.net .
...
Change-Id: I6c27334283055465b33df2dca520d6a4b2183c81
2018-03-08 22:25:35 +01:00
Translation updater bot
485ed08363
Localisation updates from https://translatewiki.net .
...
Change-Id: I2deef17dfc9c5970a338597b24e2c87c3fa2e7c3
2018-03-07 22:26:24 +01:00
Translation updater bot
3151afdc24
Localisation updates from https://translatewiki.net .
...
Change-Id: I97ac74701e32450a0b279c02da42a40ed1a0ace9
2018-03-05 22:07:12 +01:00
Translation updater bot
9d3d47adb4
Localisation updates from https://translatewiki.net .
...
Change-Id: Idabb533c281f4071fe84ea0c76f5bb0fe3266b5d
2018-03-01 21:59:09 +01:00
Translation updater bot
453fe279b9
Localisation updates from https://translatewiki.net .
...
Change-Id: Iafbd772c90f5a290a258ffdef3181267eadbcc53
2018-02-25 22:08:15 +01:00
Translation updater bot
8551cf6d47
Localisation updates from https://translatewiki.net .
...
Change-Id: Iadf82e4e6b20ab8b6edb8cb17137a1734f315373
2018-02-20 22:06:25 +01:00
Translation updater bot
b05bd6637a
Localisation updates from https://translatewiki.net .
...
Change-Id: I1e94cfd15f93b1d10cd4d5cc94d876c90a706601
2018-02-18 22:16:31 +01:00