mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 13:48:23 +02:00
26 lines
854 B
JavaScript
26 lines
854 B
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
/**
|
|
* /!\ FIXME: THIS IS A HORRID HACK which fakes both the mozL10n and webL10n
|
|
* objects and makes them returning the string id and serialized vars if any,
|
|
* for any requested string id.
|
|
* @type {Object}
|
|
*/
|
|
navigator.mozL10n = document.mozL10n = {
|
|
initialize: function(){},
|
|
|
|
getDirection: function(){},
|
|
|
|
get: function(stringId, vars) {
|
|
|
|
// upcase the first letter
|
|
var readableStringId = stringId.replace(/^./, function(match) {
|
|
"use strict";
|
|
return match.toUpperCase();
|
|
}).replace(/_/g, " "); // and convert _ chars to spaces
|
|
|
|
return "" + readableStringId + (vars ? ";" + JSON.stringify(vars) : "");
|
|
}
|
|
};
|