Page MenuHomePhabricator

Remove Translate workflow state "updating" for metawiki
Closed, ResolvedPublic

Description

We've analysed[1,2] the workflow states that are set in 'wmgTranslateWorkflowStates'[1] for Meta Wiki recently, and found that the state "updating" doesn't really serve any purpose.

  1. Please change all groups set to state "updating" to "needs-updating"
  2. Remove "updating" from 'wmgTranslateWorkflowStates' for 'metawiki'.

[1] Niklas, Amir, Jon Harald, Siebrand
[2] http://etherpad.wikimedia.org/l10n-translate-centralnotice (lines 4-28)
[3] http://noc.wikimedia.org/conf/highlight.php?file=InitialiseSettings.php


Version: unspecified
Severity: enhancement

Details

Reference
bz37148

Event Timeline

bzimport raised the priority of this task from to Medium.Nov 22 2014, 12:24 AM
bzimport set Reference to bz37148.

Config change is https://gerrit.wikimedia.org/r/47355

mysql:wikiadmin@db1041 [metawiki]> select * from translate_groupreviews where tgr_state='updating';
+-------------------------------------------------------------------------+-----------+-----------+

tgr_grouptgr_langtgr_state

+-------------------------------------------------------------------------+-----------+-----------+

agg-WMF_Blog_Postshiupdating
agg-Wikimedia_chapter_reportsruupdating
page-Fundraising 2012/Translation/Donor information pagesruupdating
page-Fundraising 2012/Translation/Impact Of Wikipedia Video (subtitles)de-formalupdating
page-Fundraising 2012/Translation/Impact Of Wikipedia Video (subtitles)zh-hantupdating
page-Fundraising 2012/Translation/Ways to giveslupdating
page-Fundraising and Funds Dissemination/Recommendationsheupdating
page-Grants:Indexfaupdating
page-Guidelines on potential conflicts of interestdeupdating
page-User:Jsoby/Testnoupdating
page-Wikidataisupdating
page-Wikimedia Chapters Associationdeupdating
page-Wikimedia Highlights, September 2012ptupdating
page-Wikimedia Indigenous Languagesfrupdating

+-------------------------------------------------------------------------+-----------+-----------+
14 rows in set (0.05 sec)

mysql:wikiadmin@db1041 [metawiki]> UPDATE translate_groupreviews SET tgr_state = 'needs-updating' where tgr_state='updating';
Query OK, 14 rows affected (0.06 sec)
Rows matched: 14 Changed: 14 Warnings: 0

mysql:wikiadmin@db1041 [metawiki]> select * from translate_groupreviews where tgr_state='updating';
Empty set (0.03 sec)