https://bugzilla.wikimedia.org/show_bug.cgi?id=18771
Reedy <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED AssignedTo|[email protected] |[email protected] --- Comment #5 from Reedy <[email protected]> 2010-02-13 01:47:29 UTC --- Nice range of revisions between r62282 and r62415 Thats done most of the work... ApiBase.php array( 'code' => 'invalidparammix', 'info' => 'The parameters ' . implode( ', ', $intersection ) . ' can not be used together' ), array( 'code' => 'missingparam', 'info' => 'One of the parameters ' . implode( ', ', array_shift( func_get_args() ) ) . ' is required' ), array( 'code' => 'badtimestamp_{$encParamName}', 'info' => "Invalid value '$value' for timestamp parameter $encParamName" ), array( 'code' => 'baduser_{$encParamName}', 'info' => "Invalid value for user parameter $encParamName" ), array( 'code' => 'multival_$valueName', 'info' => "Only one $possibleValues is allowed for parameter '$valueName'" ), array( 'code' => 'unknown_$valueName', 'info' => "Unrecognized value for parameter '$valueName': {$valuesList[0]}" ), Are still to be done And, this is only the "top level" stuff.. Not anything (bar the login module...) Did show there are seemingly quite a few duplicated messages that should be removed and put into the message map.... (Another TODO) -- Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
