Home Reference Source

stdlib/obj/translation.js

"use strict";

Object.defineProperty(exports, "__esModule", {
	value: true
});

var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();

function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }

/**
 * Handles looking up translation strings
 * @class
 */
var translation = exports.translation = function () {
	function translation() {
		_classCallCheck(this, translation);
	}

	_createClass(translation, null, [{
		key: "lookup",

		/** Converts a string to its translated equivalent
   * @param msg - The message to convert
   * @param arg1 - The first argument (optional)
   * @param arg2 - The second argument (optional)
   * @param arg3 - The third argument (optional)
   * @param arg4 - The forth argument (optional)
   */
		value: function lookup(msg, arg1, arg2, arg3, arg4) {
			return global.__std_TranslationGet(msg, arg1, arg2, arg3, arg4);
		}
	}]);

	return translation;
}();