Translation aids (or translation helpers) are modules that provide helpful and necessary information for the translator when translating. Different aids can provide suggestions from translation memory and machine translation, documentation about the message or even such a basic thing as the message definition – the text that needs to be translated.
There is some overlap between the data provided by message collection and the aids, but the rule of thumb is that message collection only provides information that is absolutely needed to present the list of messages: definition, translation, status of translation, last translator (because one can only review translations made by someone else) etc.
Translate comes with many aid classes. Each class that extends the TranslationAid class only needs to implement one method called getData
. It should return the information in structured format (nested arrays). These modules can be called either directly from PHP or via the WebAPI.
Simple example to get the message documentation of a message, if available.
$title = Title::newFromText( 'MediaWiki:Jan/de' ); $handle = new MessageHandle( $title ); $group = $handle->getGroup(); $context = RequestContext::newExtraneousContext( $title ); $aid = new DocumentationAid( $group, $handle, $context ); try { $data = $aid->getData(); $docHtml = $aid['html']; } catch ( TranslationHelperException $e ) { return; } echo $docHtml . "\n";
As already seen above, translation aids are available via a WebAPI, which is using the MediaWiki WebAPI framework. Getting translation aids is as simple as doing HTTP GET for the URL http://translatewiki.net/w/api.php?action=translationaids&title=MediaWiki%3AJan%2Fde . It provides various different formats, but JSON and XML are the most popular ones. This API does not need authentication, but some translation aids like "inotherlanguages" uses user preferences to determine which languages to use. To use that aid you should log in first, as described in the MediaWiki WebAPI documentation.
The returned data should look like this (shown in pretty json format):
{ "helpers": { "definition": { "value": "Jan", "language": "en" }, "translation": { "language": "de", "fuzzy": false, "value": "Jan." }, "inotherlanguages": [ ], "documentation": { "language": "en", "value": "Abbreviation of January, the first month of the Gregorian calendar", "html": "<p>Abbreviation of January, the first month of the Gregorian calendar\n<\/p>" }, "mt": [ { "target": "Jan", "service": "Microsoft", "source_language": "en", "source": "Jan" }, { "target": "Jan", "service": "Yandex", "source_language": "en", "source": "Jan" } ], "definitiondiff": { "error": "No changes" }, "ttmserver": [ { "source": "Jan", "target": "Jan.", "context": "MediaWiki:Jan", "location": "MediaWiki:Jan\/de", "quality": 1, "wiki": "mediawiki-bw_", "service": "TTMServer", "source_language": "en", "local": true, "uri": "https:\/\/translatewiki.net\/wiki\/MediaWiki:Jan\/de" } ], "support": { "url": "\/\/translatewiki.net\/w\/i.php?title=Support&lqt_method=talkpage_new_thread&lqt_subject_field=About+%5B%5BMediaWiki%3AJan%2Fde%5D%5D" } }
Every requested aid is guaranteed to have a key here (until the request fails miserably), but while we use exceptions in the PHP side, in the JavaScript side each aid may have the key "error" set with the error message set as value. You can see an example of this above with definitiondiff
. It signals that it cannot display a diff, because there have been no changes to the definition since last translation.
Here is the same thing for JavaScript. By default the API returns all aids, but you can request specific ones with the prop
param. In the example we are using jsonp to work around cross site request limitations. Be aware that you cannot execute any write actions with jsonp, so if you are using this API from JavaScript you will need: to have a proxy; to run the script on the same host; or to load a little helper (not yet implemented) from the target site.
apiURL = 'https://translatewiki.net/w/api.php?callback=?'; queryParams = { action: 'translationaids', title: 'MediaWiki:Jan/de', format: 'json' }; $.getJSON( apiURL, queryParams ) .complete( function( data ) { console.log( data ); } ) .fail( function () { console.log( "Failed" ); } );
Each translation aid has a unique string identifier. Identifiers should avoid special characters, especially those which are not valid in JavaScript identifiers, like -
and *
.
The array that is returned by each translation aid is up to the developer, but should follow some general recommendations.
If only one text value is returned, it should use value
as the key of the field. Language should be provided in field language
. Users of this data should ensure that in HTML and elsewhere the text is tagged properly with the provided language and directionality (not provided here). If there is HTML output, it should be available with key html
. Examples of this are message documentation and diffs.
Various kinds of translation suggestions like machine translation and translation memories should use these keys when they make sense:
source
, source_language
, target
(target language is implicitly the same as the language of the translation)server
: identifier of the service usedquality
: value in range [0,1], higher value means that the quality of the suggestions is very good.When returning arrays, you must set the **
field to contain an element name. For machine translation and translation memory this is suggestion
. This is mandated by the MediaWiki WebAPI framework. It is visible in the XML format, but in JSON format the output is just a list.
{{[$1]
|field}} Means that the return value is a list. In PHP that means array with numerical indexes + one with key **
; see above why this is needed.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4