The web team will soon remove the mobile version of Special:Contributions, replacing it with the core version. This has implications on ContentTranslation which adds some options to start new contributions in the Special:Contributions page:
{F34908549 size=full}
If nothing gets done, these options will be shown on mobile, which we want to avoid. Otherwise mobile users would be directed to the desktop version of content Translation on mobile.
As part of this ticket we want to make sure that the options to contribute are (a) still visible on desktop and (b) not visible on mobile (when mobile uses the core version).
Some technical details from the related ticket:
>>! In T298644#7613495, @Jdlrobson wrote:
>> Regarding the most immediate question: we don't want the current desktop options to be shown on mobile.
>
> Good to know. Depending on whether you want this on **desktop Minerva** you'll need to add a skinStyle to hide this OR alternatively, call the following in whatever code outputs the HTML to limit it to the mobile domain
> ```
> ExtensionRegistry::getInstance()->isLoaded( 'MobileFrontend' ) && MobileContext::singleton()->usingMobileDomain();
> ```
>
>
> e.g.
> https://en.wikipedia.org/wiki/Special:Contributions?useskin=minerva (is using skin minerva on desktop domain)
> https://en.m.wikipedia.org/wiki/Special:Contributions?useskin=vector (is using skin vector on mobile domain)
> https://en.m.wikipedia.org/wiki/Special:Contributions (is using skin minerva on mobile domain)
___
More context in {T298644}
As part of future tasks, a proper option to start contributions on mobile (T286466) will be provided and will be adapted to desktop in order to replace the current one.