Page MenuHomePhabricator

wrong "localname"s in sitematrix config
Closed, DuplicatePublic

Description

when looking at the sitematrix.json in the parsoid repo (mediawiki/services/parsoid), the variable "localname" seems to be inconsistent.

For most languages it is set to the name of the language in English, but for some it is set to the name of the language in the language itself. compare, for example:

			"localname": "Chinese"
			"localname": "Classical Chinese"
			"localname": "Chinese (Min Nan)"

vs.

			"localname": "беларуская (тарашкевіца)‎"
			"localname": "भोजपुरी"

Besides making this consistent, it should probably be clarified what this "localname" really means here. Do we just assume English as the local language for sitematrix and that is a problem in itself?

Event Timeline

Dzahn raised the priority of this task from to Needs Triage.
Dzahn updated the task description. (Show Details)
Dzahn subscribed.

@Dzahn, this file is just a copy of the sitematrix found on enwiki. We pull it into the parsoid codebase (effectively a cached copy) via https://github.com/wikimedia/parsoid/blob/master/tools/fetch-sitematrix.js .. Can you redirect your questions to enwiki sitematrix updates?

Dzahn added a project: SiteMatrix.
Dzahn removed a subscriber: ssastry.

(so it comes from https://en.wikipedia.org/w/api.php?action=sitematrix&format=json)

Let's first find out what this is supposed to be , does "localname" mean the name of the language in the language itself? Yes, right?

Where would i edit these? Can't seem to find the values in mw-config repo.