
// Provide a default path to dwr.engine
if (typeof this['dwr'] == 'undefined') this.dwr = {};
if (typeof dwr['engine'] == 'undefined') dwr.engine = {};

if (typeof this['ServiceApi'] == 'undefined') this.ServiceApi = {};

ServiceApi._path = '/wl/ajax/';

ServiceApi.translate = function(p0, p1, p2, p3, callback) {
  dwr.engine._execute(ServiceApi._path, 'ServiceApi', 'translate', p0, p1, p2, p3, callback);
};

ServiceApi.retrieveTranslation = function(p0, callback) {
  dwr.engine._execute(ServiceApi._path, 'ServiceApi', 'retrieveTranslation', p0, callback);
};



