Commit graph

558 commits

Author SHA1 Message Date
Translation updater bot 4bc62f04c3 Localisation updates from https://translatewiki.net.
Change-Id: Iae0f85f66bc287d32e1956862d51e223b02f274c
2019-08-25 09:53:45 +02:00
Translation updater bot 54db05dd17 Localisation updates from https://translatewiki.net.
Change-Id: Id274dbe9cb3bd6701e6517c5e1f1dd26b72245ff
2019-08-21 10:20:17 +02:00
jenkins-bot 5873ab5a8a Merge "Provide access to original redirect page on toasts" 2019-08-20 19:21:13 +00:00
Translation updater bot 04998facb8 Localisation updates from https://translatewiki.net.
Change-Id: I046648d02ea0d88c785b6e44b3059945357c50c3
2019-08-15 08:33:36 +02:00
Translation updater bot 28979a02f8 Localisation updates from https://translatewiki.net.
Change-Id: I9e3c07f94d088ad27518010549d7ab1b5068ef9d
2019-08-14 08:34:43 +02:00
Translation updater bot 92672a4d96 Localisation updates from https://translatewiki.net.
Change-Id: I6a3c39fe1211520ff16fb7637bd10f342c7b2a61
2019-08-13 08:35:22 +02:00
jdlrobson ab8da137cb Provide access to original redirect page on toasts
Color progressive/destructive (blue and red) do not make
sense on a black background, so we use white and underlined
for both of these. Note these don't seem to be used currently
so this is not a breaking change.

Bug: T150189
Change-Id: I78a92b5b6c76638633b99fe32670911d355ce6f3
2019-08-12 22:48:14 +00:00
Translation updater bot 45da253b9b Localisation updates from https://translatewiki.net.
Change-Id: Id5230f763d68ec402fa8e51c58597462329b1100
2019-08-12 08:27:16 +02:00
Translation updater bot a6ed7d8968 Localisation updates from https://translatewiki.net.
Change-Id: I5fe502e529f965b8524dae2b05497d81203934aa
2019-08-10 22:05:11 +02:00
Translation updater bot f362a1bac0 Localisation updates from https://translatewiki.net.
Change-Id: Ib308aab3b3d3df3144b7828de8d5fc582f5d4b48
2019-08-07 08:44:33 +02:00
Translation updater bot 19b95d7e6f Localisation updates from https://translatewiki.net.
Change-Id: Idab080fe6a83f19863d4d1dbc0b0c6032f415a86
2019-08-05 08:32:00 +02:00
Translation updater bot 89d60596db Localisation updates from https://translatewiki.net.
Change-Id: I71560a9d5a294bc87c5a5a733b07555c722db875
2019-07-31 22:12:04 +02:00
Piotr Miazga 7b5e210ed8 Show warning when user tries to use enhanced RecentChanges view
Bug: T228516
Change-Id: I16e3d69b410f20a3f70f4bb213a279664613f725
2019-07-31 15:32:58 +00:00
Translation updater bot 0c5c84f0ad Localisation updates from https://translatewiki.net.
Change-Id: Ife8e0556b697c6524ba43626f27f4007f0d32ab5
2019-07-30 08:27:41 +02:00
Translation updater bot 725383771e Localisation updates from https://translatewiki.net.
Change-Id: Ie6d4d8ae1b4b58410d584c1104704b6f3582e160
2019-07-29 08:32:20 +02:00
Translation updater bot 6bf480c5a3 Localisation updates from https://translatewiki.net.
Change-Id: Iad66e696b050aa6f19f832f104529d9aeebb019b
2019-07-27 08:49:21 +02:00
Translation updater bot 61cf3b3328 Localisation updates from https://translatewiki.net.
Change-Id: Idb5ccc0369ca2c688bf7216f70929aa7091f22e0
2019-07-25 22:42:19 +02:00
Translation updater bot a2521d7d6a Localisation updates from https://translatewiki.net.
Change-Id: I270b3bd9ae40e31f6f467ba537624ed785b7d50b
2019-07-24 22:05:48 +02:00
Stephen Niedzielski 0a4f5b6126 [UI] [new] add user menu
Add new user menu. The changes required include:

- Break up AuthMenuEntry into reusable components. They're now simple,
  independent, static functions in AuthUtil that are easy to reason
  about and compose.

  There's lots of verbose code because of the builder and director
  patterns. That is, most of the code is for building the thing we
  actually want to build instead of just building it. It's easy to write
  but no fun to read--even simple configurations are extremely verbose
  expressions that must be threaded through the system.

  These builders are also single purpose and unlikely to be reusable
  unlike a URI builder, for example. As objects, they're not especially
  composable either.

- Similarly, break up Menu/DefaultBuilder into BuilderUtil and ban
  inheritance. Inheritance has not worked well on the frontend of
  MobileFrontend. I don't think it's going to work well here. E.g., I
  could have made changes to the base class' getPersonalTools() method
  such that the client passes a parameter for the advanced config or
  maybe I just override it in the subclass. In either case, I think it
  makes the whole hierarchy nuanced and harder to reason about for
  something that should be simple.

- Add ProfileMenuEntry and LogOutMenuEntry for the user menu.

- Rename insertLogInOutMenuItem() to insertAuthMenuItem() which matches
  the entry name, AuthMenuEntry.

- Extension:SandboxLink is needed to display the sandbox link in the
  user menu.

- Performance note: the toolbar is now processed in MinervaTemplate,
  which corresponds to removing the buildPersonalUrls() override.

- To mimic the design of main menu, the following steps would be
  necessary:

  1. Create a user/Default and user/Advanced user menu builder and also
     a user/IBuilder interface.
  2. Create a user/Director.
  3. Create a service entry for Minerva.Menu.UserDirector in
     ServiceWiring. The Director is actually powerless and doesn't get
     to make any decisions--the appropriate builder is passed in from
     ServiceWiring which checks the mode.
  4. Access the service in SkinMinerva to set a userMenuHTML data member
     on the Minerva QuickTemplate.
  5. In MinervaTemplate, access the userMenuHTML QuickTemplate member
     and do the usual song and dance of inflating a Mustache template.

  This patch does everything except add a service, which was agreed to
  be unnecessary, so that logic is now in SkinMinerva.

- Wrap the existing echo user notifications button and new user menu
  button in a nav element. This seems like a semantic improvement.

- The existing styling and logic for the search bar and search overlay
  are pretty messy and delicate. Changes made to that LESS endeavored to
  be surgical. There's lots of room for improvement in the toolbar but
  it's out of scope.

- Rename logout icon to logOut.

Bug: T214540
Change-Id: Ib517864fcf4e4d611e05525a6358ee6662fe4e05
2019-07-24 18:24:07 +00:00
Translation updater bot 2fbe2c5477 Localisation updates from https://translatewiki.net.
Change-Id: Ib0e52bf72f569b253602d0d18ab726f0596b58c7
2019-07-22 22:16:48 +02:00
Translation updater bot 882ca639d4 Localisation updates from https://translatewiki.net.
Change-Id: I56a62b484ce4253d52c5e0b9a7a093d866463723
2019-07-17 22:22:57 +02:00
Piotr Miazga dee1c197b9 On user pages, move language icon from Toolbar to Overflow menu
The Language icon is not useful on user pages as most probably there
are no translated user pages, thus there is no need to show all-time
disabled Language icon.

If overflow menu is available, don't show Language switcher icon in
toolbar, show it as first item in the overflow menu.

Bug: T224735
Follow-Up: I46d58758356e870c408a74b2c087a42d6ad0ddea
Change-Id: I05be9e6457257a1f2eb224ca9ec5808814bc9ed7
2019-07-16 17:51:11 +00:00
Translation updater bot 71d2a8fc6d Localisation updates from https://translatewiki.net.
Change-Id: Icdaaf79cb1cbaa35bec6b006931153118273c76e
2019-07-14 22:20:27 +02:00
Translation updater bot cec9e052b3 Localisation updates from https://translatewiki.net.
Change-Id: I67f664db917a299d679729d07b39c5dda41d7113
2019-07-11 22:10:34 +02:00
Translation updater bot 5cd5785a85 Localisation updates from https://translatewiki.net.
Change-Id: I151633bf3908e792369578f3a6bd3fc0e5c508a6
2019-07-08 22:17:19 +02:00
Translation updater bot 7610467f28 Localisation updates from https://translatewiki.net.
Change-Id: I7e91c8d281cf6ebfccfad584e9fc9f8182fe2610
2019-07-07 22:11:00 +02:00
Translation updater bot 195b9a9fd6 Localisation updates from https://translatewiki.net.
Change-Id: Iefb4fb1e328a5fc0a3488632c3dbf980992d16a2
2019-07-03 22:12:45 +02:00
Translation updater bot 5b92c238b3 Localisation updates from https://translatewiki.net.
Change-Id: I9e523205a86d3dcfa93480f8c195a2f1b8f0a451
2019-07-01 22:02:09 +02:00
Translation updater bot 2a3f2590dd Localisation updates from https://translatewiki.net.
Change-Id: Ib431a2b7786d7d83d36a8b14ecf57544930fce89
2019-06-26 22:01:47 +02:00
Translation updater bot 8d89172bac Localisation updates from https://translatewiki.net.
Change-Id: Ifadc568c590df9f67983668f7f8ed8c7455adf0b
2019-06-23 22:11:21 +02:00
Translation updater bot 4b24daa117 Localisation updates from https://translatewiki.net.
Change-Id: I6343b83298d36d9ae8c240f5fbb5f35c4393dcb5
2019-06-19 23:37:08 +02:00
Translation updater bot fffb5ab379 Localisation updates from https://translatewiki.net.
Change-Id: If6e23b739c2283e79b380104744dd75226d5a732
2019-06-17 22:09:24 +02:00
Translation updater bot 77779ce441 Localisation updates from https://translatewiki.net.
Change-Id: Ic64d6110f83ce3d8a06e1dabf76945e9145951e6
2019-06-16 22:07:40 +02:00
jenkins-bot 3461c9dd93 Merge "Add wikidata link to overflow menu" 2019-06-14 16:54:12 +00:00
Translation updater bot da4c7757cd Localisation updates from https://translatewiki.net.
Change-Id: I048054483859abd622bfc676fb447ac3e53c5261
2019-06-13 22:13:13 +02:00
Nicholas Ray 162f8aa95c Add wikidata link to overflow menu
The director is now passed the array from `BaseTemplate::getToolbox()`
as all of the server rendered links we show in the main namespace/user
namespace overflow menus (including wikibase) will be in the toolbox
array except for the "Uploads" link in the User overflow menu which is
added in the UserNamespaceOverflowBuilder.

Bug: T222630
Change-Id: I280537c6b8b32036d68a5a004571bb5a41c2e703
2019-06-12 19:50:48 -06:00
Translation updater bot 63f4d51f19 Localisation updates from https://translatewiki.net.
Change-Id: I84c95d100a021fc0df687abccb1eaff64fbc839d
2019-06-08 22:12:36 +02:00
Translation updater bot 89fb347e09 Localisation updates from https://translatewiki.net.
Change-Id: Icd66a27cf3a859798b36886905723254326d53d2
2019-06-02 22:00:52 +02:00
Translation updater bot af7c282e79 Localisation updates from https://translatewiki.net.
Change-Id: I70f7f8562de9d7c68e8c40a8727e38edfb10f1e3
2019-05-30 22:25:02 +02:00
Translation updater bot dc729b0a66 Localisation updates from https://translatewiki.net.
Change-Id: I2ac2ab1b33ac61cf350e5e07c796ea43b000b435
2019-05-27 21:58:25 +02:00
Translation updater bot cc92cb47e2 Localisation updates from https://translatewiki.net.
Change-Id: I600b8e36342bbc69f538fe37259fe02f0ee73fb2
2019-05-23 22:42:28 +02:00
Translation updater bot 4a54748cfe Localisation updates from https://translatewiki.net.
Change-Id: Iaa9428aac013c27cd7fa14167abada01590bac03
2019-05-22 22:06:01 +02:00
Translation updater bot 2fc8dd0204 Localisation updates from https://translatewiki.net.
Change-Id: If661b9ee8ddd326eb116e72255ad05a8eec048e3
2019-05-20 21:57:52 +02:00
Translation updater bot 9937a8a72d Localisation updates from https://translatewiki.net.
Change-Id: I26ee2e60d9bcc94bd8e816503fc402814f98ec92
2019-05-16 08:32:09 +02:00
Translation updater bot 1f00a454b2 Localisation updates from https://translatewiki.net.
Change-Id: I8c917a7c48fb9d230570eff8a928b9a121abdb7f
2019-05-15 08:12:17 +02:00
Translation updater bot 863f1a7265 Localisation updates from https://translatewiki.net.
Change-Id: I7ed41c19734c7062473b38e6a84b7746dc396e3c
2019-05-13 22:48:39 +02:00
Translation updater bot cece9ae956 Localisation updates from https://translatewiki.net.
Change-Id: I29a101693b7472515b6bc38d3593b96dc44b983e
2019-05-12 22:01:26 +02:00
Translation updater bot 26474f796d Localisation updates from https://translatewiki.net.
Change-Id: I3ca5955082a5bfcc0bf34ecabff43d8253c34740
2019-05-10 08:35:21 +02:00
Translation updater bot c6cb52a8c3 Localisation updates from https://translatewiki.net.
Change-Id: I94c931de753fc933baf58c216158c4570e0812b2
2019-05-08 22:02:13 +02:00
Translation updater bot 65f5a71d0c Localisation updates from https://translatewiki.net.
Change-Id: Ibd27803e5915f5df70dafb6596477dab31e6f298
2019-05-05 21:58:31 +02:00
Translation updater bot 1f8d45d40d Localisation updates from https://translatewiki.net.
Change-Id: I0547d3eb14142486c12a7c09ea450488578309d5
2019-05-03 22:06:45 +02:00
Translation updater bot eddffd2cfa Localisation updates from https://translatewiki.net.
Change-Id: Iaeda9f9d20c4a61a886317df4d4342ea411baea4
2019-04-30 22:00:09 +02:00
Translation updater bot 2a431c9746 Localisation updates from https://translatewiki.net.
Change-Id: I1f46077fda98bb0f7ffc2ba1881b66bbccb648cb
2019-04-29 21:58:50 +02:00
Translation updater bot 9f0bd0d05c Localisation updates from https://translatewiki.net.
Change-Id: If92d8c10619e4fa60fa9713140cac6e1cbacaf49
2019-04-26 22:03:35 +02:00
Translation updater bot eb2736cfe5 Localisation updates from https://translatewiki.net.
Change-Id: Idf354a99dc73a76c460b71c7efd440b9168efe2f
2019-04-24 21:56:45 +02:00
Translation updater bot 440e725030 Localisation updates from https://translatewiki.net.
Change-Id: I7751bc87fe78b0867a48a6f72a234e8c15ba2718
2019-04-23 22:27:33 +02:00
Translation updater bot 96abdd2597 Localisation updates from https://translatewiki.net.
Change-Id: I46a44bf6ca6de9ced4052a95a972fa326b16eb8e
2019-04-22 09:04:04 +02:00
Stephen Niedzielski 815f3386e3 Update: add secondary page actions submenu in AMC mode
When advanced mobile contributions mode is enabled and
`$wgMinervaOverflowInPageActions` is set, show a secondary overflow menu
on main namespace articles and user namespace pages. The menu content
varies for each namespace. The new submenu is *disabled* by default,
even when AMC is active. This feature should not be deployed until
instrumentation is available.

The secondary menu is rendered in PHP using the existing menu system
with some changes to the template. The checkbox hack is needed for no-
JavaScript keyboard navigation until :focus-within is supported. CSS
additions are documented in the source.

All client side toolbar execution occurs in Toolbar.js. Enhancements are
documented in the source.

Minor changes to the existing download button:
- Move download and edit button initialization to Toolbar.
- Update copy (not visible) from "Download" to "Download PDF".
- When the overflow menu is present, use the "hasText" / label style.

Wikimedia UI icons are copied from OOUI at d00a0ac and seem useful to
expose as HTTP URIs (not data URIs).

The overflow menu does not show for pages provided by the content proxy
since its entries depend on $tpl->data['nav_urls'] being populated.

Bug: T216418
Depends-On: I0781151a8232b6a7b52f79a34298afcecb8e4271
Change-Id: I4b50a0e519024a7ab91dae6ab40b23cf14a03861
2019-04-19 14:51:17 +00:00
Translation updater bot 3250ac6401 Localisation updates from https://translatewiki.net.
Change-Id: Ic23431a64ee7d57a3edaf22cad812c92799190f7
2019-04-14 22:03:31 +02:00
Translation updater bot 52e8eed461 Localisation updates from https://translatewiki.net.
Change-Id: Iacfa6f19920d505005b6d81dc0bb7e05316be0ba
2019-04-12 08:13:12 +02:00
Translation updater bot 32045f188c Localisation updates from https://translatewiki.net.
Change-Id: I8ea2f2ce37f41c55283e7235d957bcae77206e7e
2019-04-01 22:22:57 +02:00
Translation updater bot f977c1f8c6 Localisation updates from https://translatewiki.net.
Change-Id: I2a717c1f801c5e648522eb174788bb673b32bb31
2019-03-27 22:06:52 +01:00
Translation updater bot 784d3fa5ae Localisation updates from https://translatewiki.net.
Change-Id: Iadaebe1fd73083ff5b3d3e5f6cee9c150c2b36fc
2019-03-26 08:53:28 +01:00
Translation updater bot 6ed4d4557c Localisation updates from https://translatewiki.net.
Change-Id: I5ad5fd1fe0dc674f7dee0346484ff2054d1eea95
2019-03-20 22:05:39 +01:00
Translation updater bot 275293cd73 Localisation updates from https://translatewiki.net.
Change-Id: I93077238abb42672ae292d42921c05d0969f041a
2019-03-17 21:57:53 +01:00
Translation updater bot c68a38ae96 Localisation updates from https://translatewiki.net.
Change-Id: Icd32568e7efaa9bb487d703a859fe4469e1420f1
2019-03-11 21:59:32 +01:00
Translation updater bot fb8cee544b Localisation updates from https://translatewiki.net.
Change-Id: I2b3dac0b820fd1d2f80614030bc41a5915f2e999
2019-02-28 22:06:08 +01:00
Translation updater bot c912843293 Localisation updates from https://translatewiki.net.
Change-Id: Ie287722ce47109f322bf76c50a32dbc5b46078bb
2019-02-24 22:25:05 +01:00
Translation updater bot 9a5037ffd6 Localisation updates from https://translatewiki.net.
Change-Id: Ib493d3124ecda3b96a5f919f6c614d6a7323f147
2019-02-19 22:03:45 +01:00
Translation updater bot 526cad57cc Localisation updates from https://translatewiki.net.
Change-Id: I164741feb59c80f3787327c0a18cb9499994f76b
2019-02-18 22:08:37 +01:00
Translation updater bot e9fc5e581d Localisation updates from https://translatewiki.net.
Change-Id: Ide2e3e6244b8714cccefab9199a3e9f0eaeea9c2
2019-02-17 21:57:51 +01:00
Translation updater bot b45c46eef9 Localisation updates from https://translatewiki.net.
Change-Id: I7b0b474e664f860a8d7f1b421bf29b254b422bf8
2019-02-14 22:11:57 +01:00
Translation updater bot 88f33a48b0 Localisation updates from https://translatewiki.net.
Change-Id: Iede245f2092f7f28b711d8e6a9e980d347b753d9
2019-02-13 22:03:13 +01:00
Translation updater bot dcf5d5bb42 Localisation updates from https://translatewiki.net.
Change-Id: Ia39ca9e33c9449e9b5e5ca6b341994ef4fd6ae34
2019-02-12 22:08:34 +01:00
Translation updater bot de95f57456 Localisation updates from https://translatewiki.net.
Change-Id: I74f76960563d936892327e53f25bc0901af4ee0f
2019-02-11 22:01:21 +01:00
Translation updater bot e71258a80c Localisation updates from https://translatewiki.net.
Change-Id: I79553e7d23d17abb4bacb80b73d3f951c9cb9bfc
2019-02-10 22:02:30 +01:00
Translation updater bot 210758b550 Localisation updates from https://translatewiki.net.
Change-Id: Ifb0aae314f9fdadfc1e2c87e88faacf239c44a4f
2019-02-05 22:15:25 +01:00
Stephen Niedzielski 8d67044f3d Hygiene: remove unused string
Remove mobile-frontend-language-change which does not appear to be used
by Minerva or other repos.

Change-Id: I3a6e3bff921a46575b1c3cc7d914ace35a321b35
2019-02-05 11:30:29 -07:00
Translation updater bot e236d9307f Localisation updates from https://translatewiki.net.
Change-Id: I969eb328ddbdc49309b58121bed05837b19eddec
2019-02-04 21:57:52 +01:00
Translation updater bot 627f7df388 Localisation updates from https://translatewiki.net.
Change-Id: Iaa24354dc724500fd388c0b48519872e6d877559
2019-02-03 22:03:14 +01:00
Translation updater bot cb4ded7d0a Localisation updates from https://translatewiki.net.
Change-Id: I9d9bd116b280027cd4dfddf6e8b36dcd34120cb1
2019-01-31 22:03:21 +01:00
Translation updater bot 0d61dc1116 Localisation updates from https://translatewiki.net.
Change-Id: I97582a7c49c70a17e33df42d06d6efbec98feb0a
2019-01-30 21:56:09 +01:00
Translation updater bot 855f78f275 Localisation updates from https://translatewiki.net.
Change-Id: If7ea8eee61366ea740ddf39708fc6d2ad0262241
2019-01-28 22:11:45 +01:00
Translation updater bot 3516794133 Localisation updates from https://translatewiki.net.
Change-Id: Ia561e2066685f37e3a8c01b1be45d35fbbd04bdd
2019-01-23 22:12:57 +01:00
Translation updater bot b33008e6d0 Localisation updates from https://translatewiki.net.
Change-Id: Ieab18f6fe0a16c4b8c5825561fdaf2714968f6bb
2019-01-22 21:59:19 +01:00
Translation updater bot 9ed147c246 Localisation updates from https://translatewiki.net.
Change-Id: Ib5b1213831c2a8eaccf40107f0c424e70ec23901
2019-01-18 21:56:54 +01:00
Stephen Niedzielski b9f8b86c8b Fix: temporarily revert ur notification string
In 70d33d3, mobile-frontend-logged-in-homepage-notification was changed
to a blank string. This is forbidden by banana checker but l10n-bot
doesn't wait for commit gating tests to pass. Temporarily revert the
string change until a proper fix to banana can be made.

Change-Id: Ie2d2fdc5b16604dc39a4d6ccb8d557022822ec7f
2019-01-17 20:30:59 +00:00
Translation updater bot 70d33d3d56 Localisation updates from https://translatewiki.net.
Change-Id: I9152503afe740995a923424ddbc44ee682d09e06
2019-01-17 08:46:06 +01:00
Translation updater bot e1bb5359c5 Localisation updates from https://translatewiki.net.
Change-Id: Ib24a2c0a783c3c100b1f84156a38a7a55a89a58d
2019-01-12 22:14:03 +01:00
Translation updater bot dde7cad137 Localisation updates from https://translatewiki.net.
Change-Id: I0ab5b1702a33cd5e0e5bfbb41a1a81e715dd74d2
2019-01-08 22:15:04 +01:00
Translation updater bot b73f5c7520 Localisation updates from https://translatewiki.net.
Change-Id: Iba3d29ac12bc3f08791231a77c6ddbed1a296244
2019-01-07 22:21:56 +01:00
Translation updater bot 33819182f1 Localisation updates from https://translatewiki.net.
Change-Id: I8fd22413c6c5da517bb5898ba374952701533d19
2019-01-06 22:15:11 +01:00
Translation updater bot 4b49da4e6c Localisation updates from https://translatewiki.net.
Change-Id: I5cd0481d418cd05b49838241b86a7e7209911f6f
2019-01-03 22:27:01 +01:00
Translation updater bot e18ebe5311 Localisation updates from https://translatewiki.net.
Change-Id: I18a0e11686ff5b4fc8a301163c84b010bc51fe3c
2019-01-01 22:00:02 +01:00
Translation updater bot 22e3fe0dd2 Localisation updates from https://translatewiki.net.
Change-Id: I164fdf2ded86b80b340d5ac33e5d18fd7a0eaf6f
2018-12-27 09:20:15 +01:00
Translation updater bot b24a1d1f26 Localisation updates from https://translatewiki.net.
Change-Id: I163cefaafec4ce63498a6bb2fc8ac90563de648c
2018-12-20 22:26:19 +01:00
Translation updater bot 4842928f2b Localisation updates from https://translatewiki.net.
Change-Id: If338c7b94143f4464c0d185f435690970db0f7ae
2018-12-17 21:57:02 +01:00
Translation updater bot 339e31752a Localisation updates from https://translatewiki.net.
Change-Id: I4cd952aec11b76be8a71dcb0061ae21c72c62e73
2018-12-11 22:21:48 +01:00
Translation updater bot 857f5684bd Localisation updates from https://translatewiki.net.
Change-Id: Id92ed8ce680d235bb51eee651d51bee2c167d7f6
2018-12-09 22:16:15 +01:00
Translation updater bot dbf811b736 Localisation updates from https://translatewiki.net.
Change-Id: I36c993bfaf3ad697cc8921bfa0a48126a82f0ece
2018-12-07 22:06:25 +01:00
Translation updater bot c95c5ef29a Localisation updates from https://translatewiki.net.
Change-Id: I749bbe36ef57ae054c8fdfac55a23705646f648c
2018-12-06 22:12:28 +01:00
Translation updater bot 4246e079e4 Localisation updates from https://translatewiki.net.
Change-Id: I326243574708aba77901106fd9fa806cd1998b59
2018-12-05 22:09:38 +01:00
Translation updater bot f038060595 Localisation updates from https://translatewiki.net.
Change-Id: Ied038f408d97829d787e82a4876b38f5b6a208d7
2018-12-03 22:14:54 +01:00
Translation updater bot 923ab80dba Localisation updates from https://translatewiki.net.
Change-Id: I1c898d02af860833f22300b33cc109a4a73d048c
2018-12-02 21:55:02 +01:00
Translation updater bot 036db5e86d Localisation updates from https://translatewiki.net.
Change-Id: I4a8054a3ea37dc6d33b2c29d5f5edf78e4cd77c7
2018-12-01 22:02:06 +01:00
Translation updater bot da1417c1eb Localisation updates from https://translatewiki.net.
Change-Id: I61c6eb128dc8c2eb8cc0ff6414e7d749dc921979
2018-11-30 22:04:05 +01:00
Translation updater bot 7b68f3bfe3 Localisation updates from https://translatewiki.net.
Change-Id: I39d8f457769b18e03c57fc1d945905f7cbebcbfd
2018-11-29 22:37:28 +01:00
Translation updater bot d3269adc3f Localisation updates from https://translatewiki.net.
Change-Id: Ib903c546a895b312c89630423a3904e4232ab206
2018-11-27 21:59:56 +01:00
Translation updater bot 8dfd431744 Localisation updates from https://translatewiki.net.
Change-Id: Iab1c9ac32fb864e76069ade6ca94c6d796985c57
2018-11-25 22:19:14 +01:00
Translation updater bot 110285482b Localisation updates from https://translatewiki.net.
Change-Id: Ib5afa706d5e6be9fa4bc4e33bf9dff561ed3b6b3
2018-11-23 21:58:47 +01:00
Translation updater bot dd3d603e54 Localisation updates from https://translatewiki.net.
Change-Id: I438cab9a887dde3bf231769c242cd70eb9132bb2
2018-11-22 22:01:52 +01:00
Translation updater bot ae77727c7b Localisation updates from https://translatewiki.net.
Change-Id: Ie54ad80829f027188517c1de74ed53f904168ea5
2018-11-21 22:12:29 +01:00
jenkins-bot 58cfdbff89 Merge "page issues is feature flagged" 2018-11-20 22:44:40 +00:00
jdlrobson 97fd861a63 page issues is feature flagged
* New feature/skin option is added and value is read inside
the pageIssues setup code
* issues-group-a class is added to page on server side to remove
the flash of unstyled content
* issues-group-A class is dropped (it's not doing anything!)
* The minerva-issues flag will now accept any value to avoid confusion.
It is used to override the default setting of wgMinervaPageIssuesNewTreatment
A note has been added that this can be removed in future.

Bug: T206179
Change-Id: I3d98fd8f8e1adc818ea03589d2c8f68fe991e861
2018-11-20 12:41:41 -08:00
Translation updater bot 11764cb9d9 Localisation updates from https://translatewiki.net.
Change-Id: Ib5348ef1f9f5106be2ff059beb10068562c25f42
2018-11-19 21:59:25 +01:00
Translation updater bot 13017beb8d Localisation updates from https://translatewiki.net.
Change-Id: Ie556f92f87dfb26a899bec962b4860be001417cf
2018-11-18 22:27:43 +01:00
Translation updater bot 7b89beca05 Localisation updates from https://translatewiki.net.
Change-Id: I24dc5ce82880995d28360cefdda66e21878eeb81
2018-11-16 22:08:19 +01:00
Translation updater bot 2e7c44fdfa Localisation updates from https://translatewiki.net.
Change-Id: Ia4b0a54a29accaf25ad016abb5d9003da5136745
2018-11-15 22:43:55 +01:00
Bartosz Dziewoński b17d3f70da Remove 'skins.minerva.editor' module (moved to MobileFrontend)
Added in MobileFrontend in Iaaed72c32b9c4f4e15c320b79e29e9af3609069a.

(The module's name is included in cached page HTML, so to avoid
breaking them, 'skins.minerva.editor' must temporarily remain as an
alias for 'mobile.editor'. It is otherwise unused and can be removed
after caches expire on Wikimedia wikis.)

Depends-On: Iaaed72c32b9c4f4e15c320b79e29e9af3609069a
Bug: T198765
Change-Id: I52c4e0941dcf8f176e3ac32d8a1f72a0f8e1d6a6
2018-11-13 23:27:29 +01:00
Translation updater bot 6bc349f1d5 Localisation updates from https://translatewiki.net.
Change-Id: I769985bb9f72ce82e673de559ce80fa515dd0ee7
2018-11-12 21:58:12 +01:00
Translation updater bot 3b6d2cf9d8 Localisation updates from https://translatewiki.net.
Change-Id: Id85c6546e1d825cad963ab5d2324f9b1e46a5679
2018-11-10 22:06:35 +01:00
Translation updater bot 084d255fa4 Localisation updates from https://translatewiki.net.
Change-Id: I9df1e3acaf11b47be95e43105db9fcd9f7713e36
2018-11-09 21:56:29 +01:00
Translation updater bot 6681de52de Localisation updates from https://translatewiki.net.
Change-Id: Ic48b3a4f7b7594cfba0cc4ca6631d6f385f2d677
2018-11-08 22:00:23 +01:00
Translation updater bot eee902beff Localisation updates from https://translatewiki.net.
Change-Id: I86b27a622e2af8b15a36ea98674720cbd5fd5218
2018-11-07 22:03:12 +01:00
Translation updater bot 4306bf1bb2 Localisation updates from https://translatewiki.net.
Change-Id: I739e4db72822cd386591150448e7dc9958243f6f
2018-11-05 22:06:44 +01:00
Translation updater bot c009db0f70 Localisation updates from https://translatewiki.net.
Change-Id: Ic904a16401330a5e40dd0d912b4492fe8aa5a00e
2018-11-04 22:11:05 +01:00
Umherirrender f78c1aa4e6 Revert "Localisation updates from https://translatewiki.net."
Removed message key is still in en.json

This reverts commit 77ab4f66b4.

Change-Id: I7bef45396ecff24c3197a23b85bf93d81f2c3d49
2018-11-03 14:43:56 +00:00
Translation updater bot 77ab4f66b4 Localisation updates from https://translatewiki.net.
Change-Id: I53b71b49ee310f55aa78d4943de5ebdc90073c18
2018-11-03 10:39:58 +01:00
Bjornskjald 10978e5022
Add drawer when user is not logged in and anonymous edits are disabled
Bug: T206823
Change-Id: Ibd77ff0966f2d4b86e61f66caaafb94e85b02235
2018-11-02 23:01:22 +01:00
Translation updater bot c4dab10b76 Localisation updates from https://translatewiki.net.
Change-Id: I38f29dd0bd84a2de4dacc00e7e20a6a67cf28ae9
2018-10-23 21:55:04 +02:00
Translation updater bot 5e7d7e918f Localisation updates from https://translatewiki.net.
Change-Id: Ic3b7bc3222ca682f744550e18be9f0f077199f46
2018-10-22 22:00:32 +02:00
Translation updater bot d95680f73f Localisation updates from https://translatewiki.net.
Change-Id: Ia03f49c5aacb3636111ef960c6ce20a303888502
2018-10-20 22:19:25 +02:00
Translation updater bot 2c66aaed3f Localisation updates from https://translatewiki.net.
Change-Id: I86b416de3c968e96cb3f6e23cb5e81fb06dbc834
2018-10-17 23:24:08 +02:00
Translation updater bot e1c3fb68e4 Localisation updates from https://translatewiki.net.
Change-Id: I18a69fe74d743746674da1833c79cfd60dba7698
2018-10-16 22:00:23 +02:00
Translation updater bot ed5cdcee1f Localisation updates from https://translatewiki.net.
Change-Id: If7fa330023a7432ce103f88b8b8b98705f5b9cb1
2018-10-15 22:01:51 +02:00
Translation updater bot cbca710bf5 Localisation updates from https://translatewiki.net.
Change-Id: Ibb05f07fa1bee35b4ed338481cf2a389a55b039c
2018-10-14 22:07:01 +02:00
Translation updater bot 88a658cf60 Localisation updates from https://translatewiki.net.
Change-Id: Ibe8ad19d137952969a48a716044547c1fe4351ed
2018-10-13 09:53:16 +02:00
Piotr Miazga 5822ac58b4 Hygiene: improve texts for share button
We need to add an information that share feature is available
on supported browsers only.

Change-Id: I398165310cf11949d17f86acedf7193d4cad55b2
2018-10-12 22:56:01 +02:00
Piotr Miazga 51b6e8209b Add share icon as mobile web beta feature
Add a new beta feature - share icon. When user opts into beta
the share icon will be visible on supported devices (Android OS
and Chrome browser).

Bug: T181195
Change-Id: Ie4b9dd05eea9b63422bd174048d8b1251cb02bf4
2018-10-12 22:08:28 +02:00
jenkins-bot 5d4ad087c1 Merge "Remove code related to no-anonymous-editing mode of MobileFrontend" 2018-10-11 20:27:33 +00:00
Translation updater bot c568d260ee Localisation updates from https://translatewiki.net.
Change-Id: Ica13eff5ec3ff7344c2494b3875e26f014b72a48
2018-10-11 22:18:45 +02:00
Bartosz Dziewoński cada514ded Remove code related to no-anonymous-editing mode of MobileFrontend
All of this would only be used with the configuration setting
`$wgMFEditorOptions['anonymousEditing'] = false;`.

Removed features:
* Call-to-action popup in skins.minerva.editor (note that anonymous
  editors still get a CTA from MobileFrontend's EditorOverlay code)
* Pointer towards the edit button shown after registering via the CTA
  (entire skins.minerva.newusers module)

Bug: T205382
Change-Id: I66c7035f7a23581811dda87c911dea41d4a8e5da
2018-10-10 19:03:53 +00:00
Translation updater bot cb30d47a99 Localisation updates from https://translatewiki.net.
Change-Id: I5505e12ce91717444bc8beedbdd48f20592d80fa
2018-10-09 21:55:29 +02:00
Translation updater bot 1757691d30 Localisation updates from https://translatewiki.net.
Change-Id: I18eadbea53cdc5c641ef1567ad1609addaddfcef
2018-10-04 22:05:17 +02:00
Bartosz Dziewoński 1b61a14535 When browser doesn't support mobile editor, use fallback editor rather than none
Change-Id: I41bd554c3e979061dd8b1846a6412efb3284e7e9
2018-09-27 20:12:49 +00:00
jenkins-bot 282bdaaefa Merge "Less harsh failure mode when attempting to undo in mobile editor" 2018-09-26 20:19:00 +00:00
Translation updater bot abffc793d2 Localisation updates from https://translatewiki.net.
Change-Id: I6b3d5e3d106d44483a4723f40ecd7cd6423e2590
2018-09-26 13:11:48 +02:00
Bartosz Dziewoński b6672a4f9f Less harsh failure mode when attempting to undo in mobile editor
The fancy mobile editor doesn't support undo, but we can just use the
fallback (no-JS) editor. The experience is not very friendly (e.g. due
to two-column diff), but it works.

Previously we showed an old-school alert() message and then loaded the
fancy editor as if it was a normal edit, ignoring the undo parameters.

The whole thing is rather hypothetical, since there are no links to undo
in the mobile interface. See T191706.

Bug: T191706
Change-Id: I5147ada9e85d9188f19ae898fdd411985d19182f
2018-09-25 22:01:36 +00:00
Translation updater bot 08b8685f61 Localisation updates from https://translatewiki.net.
Change-Id: I49997bdce606347f4451fa1b4b4fa1ca3aff4af7
2018-09-22 09:37:45 +02:00
Translation updater bot 9beaf640d1 Localisation updates from https://translatewiki.net.
Change-Id: I5baa0b9d8308cbde91b41f30fca246db95b504de
2018-09-15 10:08:58 +02:00