diff options
author | Michał Turek <mturek@fandom.com> | 2021-05-13 13:18:14 +0200 |
---|---|---|
committer | Michał Turek <mturek@fandom.com> | 2021-05-13 13:35:54 +0200 |
commit | 5180b743119d8fdadeb797b527961dffc455cadb (patch) | |
tree | 59441a3f8fcb2e49ce4fd337349d778f6f51394e /includes/api | |
parent | 071d2c0dd0e232e49f6e852f9400fb952ef1871e (diff) | |
download | mediawikicore-5180b743119d8fdadeb797b527961dffc455cadb.tar.gz mediawikicore-5180b743119d8fdadeb797b527961dffc455cadb.zip |
ApiQueryUserContribs: Clarify the labels for ucstart and ucend
The documentation labels for `ucstart` and `ucend` are misleading because contributions are shown from later to earlier. This PR adds clarification to the labels, to inform the API user that they need to provide the timestamp before the revisions for `ucstart` and timestamp after the revisions in `ucend`.
Does not include i18n.
Bug: T262834
Change-Id: I85af0772a412345aa3b5fe51911481be491584b9
Diffstat (limited to 'includes/api')
-rw-r--r-- | includes/api/i18n/en.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/api/i18n/en.json b/includes/api/i18n/en.json index 3e0fef1719f5..43f8cd6dbbb8 100644 --- a/includes/api/i18n/en.json +++ b/includes/api/i18n/en.json @@ -1310,8 +1310,8 @@ "apihelp-query+usercontribs-summary": "Get all edits by a user.", "apihelp-query+usercontribs-param-limit": "The maximum number of contributions to return.", - "apihelp-query+usercontribs-param-start": "The start timestamp to return from.", - "apihelp-query+usercontribs-param-end": "The end timestamp to return to.", + "apihelp-query+usercontribs-param-start": "The start timestamp to return from, i.e. revisions before this timestamp.", + "apihelp-query+usercontribs-param-end": "The end timestamp to return to, i.e. revisions after this timestamp.", "apihelp-query+usercontribs-param-user": "The users to retrieve contributions for. Cannot be used with <var>$1userids</var> or <var>$1userprefix</var>.", "apihelp-query+usercontribs-param-userprefix": "Retrieve contributions for all users whose names begin with this value. Cannot be used with <var>$1user</var> or <var>$1userids</var>.", "apihelp-query+usercontribs-param-userids": "The user IDs to retrieve contributions for. Cannot be used with <var>$1user</var> or <var>$1userprefix</var>.", |