// The orderBy value stays 'Newest' — the app maps label->sort field by that string.
window.Nimstrata = window.Nimstrata || {};
window.Nimstrata.translations = window.Nimstrata.translations || {};
// The app's translation snippet is emitted more than once (a copy lands after this script) and each
// copy reassigns translations.default with its "Newest" default — so re-apply ours on every assignment.
// Labels only: orderBy values stay 'Newest'/'Relevance' (the app maps sort fields and our Number Order
// patch by those strings).
(function (t) {
var labels = { 'sort_options.newest': 'Newly Added', 'sort_options.relevance': 'Featured' };
var d = Object.assign(t.default || {}, labels);
Object.defineProperty(t, 'default', {
configurable: true, enumerable: true,
get: function () { return d; },
set: function (v) { d = Object.assign(v || {}, labels); }
});
})(window.Nimstrata.translations);